blob: 045405b7a89742c1d1933f73d5a977cb82d3b270 [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
405 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000406 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000407 if (eth_init(bd) < 0) {
408 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000409 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000410 }
wdenk2d966952002-10-31 22:12:35 +0000411
412restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000413 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000414
415 NetState = NETLOOP_CONTINUE;
416
417 /*
418 * Start the ball rolling with the given start function. From
419 * here on, this code is a state machine driven by received
420 * packets and timer events.
421 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100422 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000423
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000424 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000425 case 1:
426 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000427 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000428 return -1;
wdenk2d966952002-10-31 22:12:35 +0000429
wdenk2d966952002-10-31 22:12:35 +0000430 case 2:
431 /* network device not configured */
432 break;
wdenk2d966952002-10-31 22:12:35 +0000433
434 case 0:
wdenk2d966952002-10-31 22:12:35 +0000435 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000436 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000437 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000438 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000439#ifdef CONFIG_CMD_TFTPPUT
440 case TFTPPUT:
441#endif
wdenk2d966952002-10-31 22:12:35 +0000442 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000443 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000444 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000445#ifdef CONFIG_CMD_TFTPSRV
446 case TFTPSRV:
447 TftpStartServer();
448 break;
449#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500450#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000451 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000452 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300453 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000454 DhcpRequest(); /* Basically same as BOOTP */
455 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500456#endif
wdenk2d966952002-10-31 22:12:35 +0000457
458 case BOOTP:
459 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300460 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000461 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000462 break;
463
Peter Tyserbf6cb242010-09-30 11:25:48 -0500464#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000465 case RARP:
466 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300467 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000468 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000469 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500470#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500471#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000472 case PING:
473 PingStart();
474 break;
475#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500476#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000477 case NFS:
478 NfsStart();
479 break;
480#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500481#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000482 case CDP:
483 CDPStart();
484 break;
485#endif
wdenk68ceb292004-08-02 21:11:11 +0000486#ifdef CONFIG_NETCONSOLE
487 case NETCONS:
488 NcStart();
489 break;
490#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500491#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000492 case SNTP:
493 SntpStart();
494 break;
495#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400496#if defined(CONFIG_CMD_DNS)
497 case DNS:
498 DnsStart();
499 break;
500#endif
wdenk2d966952002-10-31 22:12:35 +0000501 default:
502 break;
503 }
504
wdenk2d966952002-10-31 22:12:35 +0000505 break;
506 }
507
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500508#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000509#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
510 defined(CONFIG_STATUS_LED) && \
511 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000512 /*
wdenk42d1f032003-10-15 23:53:47 +0000513 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000514 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000515 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000516 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000517 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000518 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200519#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000520#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000521
522 /*
523 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000524 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000525 */
526 for (;;) {
527 WATCHDOG_RESET();
528#ifdef CONFIG_SHOW_ACTIVITY
529 {
530 extern void show_activity(int arg);
531 show_activity(1);
532 }
533#endif
534 /*
535 * Check the ethernet for a new packet. The ethernet
536 * receive routine will process it.
537 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200538 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000539
540 /*
541 * Abort if ctrl-c was pressed.
542 */
543 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000544 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000545 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000546 goto done;
wdenk2d966952002-10-31 22:12:35 +0000547 }
548
wdenk73a8b272003-06-05 19:27:42 +0000549 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000550
551 /*
552 * Check for a timeout, and run the timeout handler
553 * if we have one.
554 */
wdenke0ac62d2003-08-17 18:55:18 +0000555 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000556 thand_f *x;
557
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500558#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000559#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
560 defined(CONFIG_STATUS_LED) && \
561 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000562 /*
wdenk42d1f032003-10-15 23:53:47 +0000563 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000564 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000565 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000566 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000567 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000568 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000569 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000570 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000571#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000572#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000573 x = timeHandler;
574 timeHandler = (thand_f *)0;
575 (*x)();
576 }
577
578
579 switch (NetState) {
580
581 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000582 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000583 goto restart;
584
585 case NETLOOP_SUCCESS:
586 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200587 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000588 printf("Bytes transferred = %ld (%lx hex)\n",
589 NetBootFileXferSize,
590 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200591 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000592 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000593
594 sprintf(buf, "%lX", (unsigned long)load_addr);
595 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000596 }
597 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000598 ret = NetBootFileXferSize;
599 goto done;
wdenk2d966952002-10-31 22:12:35 +0000600
601 case NETLOOP_FAIL:
Simon Glass4793ee62011-10-24 18:00:01 +0000602 goto done;
wdenk2d966952002-10-31 22:12:35 +0000603 }
604 }
Simon Glass4793ee62011-10-24 18:00:01 +0000605
606done:
Simon Glass39bccd22011-10-26 14:18:38 +0000607#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000608 /* Clear out the handlers */
609 NetSetHandler(NULL);
610 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000611#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000612 return ret;
wdenk2d966952002-10-31 22:12:35 +0000613}
614
615/**********************************************************************/
616
617static void
618startAgainTimeout(void)
619{
620 NetState = NETLOOP_RESTART;
621}
622
623static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000624startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
625 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000626{
627 /* Totally ignore the packet */
628}
629
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000630void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000631{
wdenk6e592382004-04-18 17:39:38 +0000632 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100633 int retry_forever = 0;
634 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000635
Remy Bohmer67b96e82009-10-28 22:13:39 +0100636 nretry = getenv("netretry");
637 if (nretry) {
638 if (!strcmp(nretry, "yes"))
639 retry_forever = 1;
640 else if (!strcmp(nretry, "no"))
641 retrycnt = 0;
642 else if (!strcmp(nretry, "once"))
643 retrycnt = 1;
644 else
645 retrycnt = simple_strtoul(nretry, NULL, 0);
646 } else
647 retry_forever = 1;
648
649 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
650 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000651 NetState = NETLOOP_FAIL;
652 return;
653 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100654
655 NetTryCount++;
656
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000657 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100658#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000659 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100660#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000661 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000662 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000663 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100664 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000665 NetSetTimeout(10000UL, startAgainTimeout);
666 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000667 } else {
wdenk2d966952002-10-31 22:12:35 +0000668 NetState = NETLOOP_FAIL;
669 }
wdenk6e592382004-04-18 17:39:38 +0000670 } else {
wdenk2d966952002-10-31 22:12:35 +0000671 NetState = NETLOOP_RESTART;
672 }
wdenk2d966952002-10-31 22:12:35 +0000673}
674
675/**********************************************************************/
676/*
677 * Miscelaneous bits.
678 */
679
680void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000681NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000682{
683 packetHandler = f;
684}
685
Simon Glass39bccd22011-10-26 14:18:38 +0000686#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000687void net_set_icmp_handler(rxhand_icmp_f *f)
688{
689 packet_icmp_handler = f;
690}
Simon Glass39bccd22011-10-26 14:18:38 +0000691#endif
wdenk2d966952002-10-31 22:12:35 +0000692
693void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000694NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000695{
696 if (iv == 0) {
697 timeHandler = (thand_f *)0;
698 } else {
699 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000700 timeStart = get_timer(0);
701 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000702 }
703}
704
705
706void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000707NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000708{
709 (void) eth_send(pkt, len);
710}
711
wdenk73a8b272003-06-05 19:27:42 +0000712int
713NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
714{
wdenka3d991b2004-04-15 21:48:45 +0000715 uchar *pkt;
716
wdenk73a8b272003-06-05 19:27:42 +0000717 /* convert to new style broadcast */
718 if (dest == 0)
719 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000720
wdenk73a8b272003-06-05 19:27:42 +0000721 /* if broadcast, make the ether address a broadcast and don't do ARP */
722 if (dest == 0xFFFFFFFF)
723 ether = NetBcastAddr;
724
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000725 /*
726 * if MAC address was not discovered yet, save the packet and do
727 * an ARP request
728 */
wdenk73a8b272003-06-05 19:27:42 +0000729 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
730
Matthias Weisserea45cb02011-12-03 03:29:44 +0000731 debug("sending ARP for %08x\n", dest);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400732
wdenk73a8b272003-06-05 19:27:42 +0000733 NetArpWaitPacketIP = dest;
734 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000735
736 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000737 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000738
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000739 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000740 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
741 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000742
743 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000744 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
745 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000746
747 /* and do the ARP request */
748 NetArpWaitTry = 1;
749 NetArpWaitTimerStart = get_timer(0);
750 ArpRequest();
751 return 1; /* waiting */
752 }
753
Matthias Weisserea45cb02011-12-03 03:29:44 +0000754 debug("sending UDP to %08x/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000755
wdenka3d991b2004-04-15 21:48:45 +0000756 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000757 pkt += NetSetEther(pkt, ether, PROT_IP);
758 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000759 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000760
wdenk6e592382004-04-18 17:39:38 +0000761 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000762}
763
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500764#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000765static ushort PingSeqNo;
766
767int PingSend(void)
768{
769 static uchar mac[6];
770 volatile IP_t *ip;
771 volatile ushort *s;
wdenka3d991b2004-04-15 21:48:45 +0000772 uchar *pkt;
wdenk73a8b272003-06-05 19:27:42 +0000773
774 /* XXX always send arp request */
775
776 memcpy(mac, NetEtherNullAddr, 6);
777
Matthias Weisserea45cb02011-12-03 03:29:44 +0000778 debug("sending ARP for %08x\n", NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000779
780 NetArpWaitPacketIP = NetPingIP;
781 NetArpWaitPacketMAC = mac;
782
wdenka3d991b2004-04-15 21:48:45 +0000783 pkt = NetArpWaitTxPacket;
784 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000785
wdenka3d991b2004-04-15 21:48:45 +0000786 ip = (volatile IP_t *)pkt;
wdenk73a8b272003-06-05 19:27:42 +0000787
788 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000789 * Construct an IP and ICMP header.
790 * (need to set no fragment bit - XXX)
wdenk73a8b272003-06-05 19:27:42 +0000791 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000792 /* IP_HDR_SIZE / 4 (not including UDP) */
793 ip->ip_hl_v = 0x45;
wdenk73a8b272003-06-05 19:27:42 +0000794 ip->ip_tos = 0;
795 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
796 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -0600797 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk73a8b272003-06-05 19:27:42 +0000798 ip->ip_ttl = 255;
799 ip->ip_p = 0x01; /* ICMP */
800 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000801 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000802 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000803 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000804 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000805 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
806
807 s = &ip->udp_src; /* XXX ICMP starts here */
808 s[0] = htons(0x0800); /* echo-request, code */
809 s[1] = 0; /* checksum */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200810 s[2] = 0; /* identifier */
wdenk73a8b272003-06-05 19:27:42 +0000811 s[3] = htons(PingSeqNo++); /* sequence number */
812 s[1] = ~NetCksum((uchar *)s, 8/2);
813
814 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000815 NetArpWaitTxPacketSize =
816 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenk73a8b272003-06-05 19:27:42 +0000817
818 /* and do the ARP request */
819 NetArpWaitTry = 1;
820 NetArpWaitTimerStart = get_timer(0);
821 ArpRequest();
822 return 1; /* waiting */
823}
824
825static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000826PingTimeout(void)
wdenk73a8b272003-06-05 19:27:42 +0000827{
828 eth_halt();
829 NetState = NETLOOP_FAIL; /* we did not get the reply */
830}
831
832static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000833PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
834 unsigned len)
wdenk73a8b272003-06-05 19:27:42 +0000835{
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000836 if (sip != NetPingIP)
wdenk73a8b272003-06-05 19:27:42 +0000837 return;
838
839 NetState = NETLOOP_SUCCESS;
840}
841
842static void PingStart(void)
843{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000844 printf("Using %s device\n", eth_get_name());
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000845 NetSetTimeout(10000UL, PingTimeout);
846 NetSetHandler(PingHandler);
wdenk73a8b272003-06-05 19:27:42 +0000847
848 PingSend();
849}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500850#endif
wdenk2d966952002-10-31 22:12:35 +0000851
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500852#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000853
854#define CDP_DEVICE_ID_TLV 0x0001
855#define CDP_ADDRESS_TLV 0x0002
856#define CDP_PORT_ID_TLV 0x0003
857#define CDP_CAPABILITIES_TLV 0x0004
858#define CDP_VERSION_TLV 0x0005
859#define CDP_PLATFORM_TLV 0x0006
860#define CDP_NATIVE_VLAN_TLV 0x000a
861#define CDP_APPLIANCE_VLAN_TLV 0x000e
862#define CDP_TRIGGER_TLV 0x000f
863#define CDP_POWER_CONSUMPTION_TLV 0x0010
864#define CDP_SYSNAME_TLV 0x0014
865#define CDP_SYSOBJECT_TLV 0x0015
866#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
867
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200868#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenka3d991b2004-04-15 21:48:45 +0000869
870static int CDPSeq;
871static int CDPOK;
872
873ushort CDPNativeVLAN;
874ushort CDPApplianceVLAN;
875
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000876static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
877 0x00 };
wdenka3d991b2004-04-15 21:48:45 +0000878
879static ushort CDP_compute_csum(const uchar *buff, ushort len)
880{
881 ushort csum;
882 int odd;
883 ulong result = 0;
884 ushort leftover;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200885 ushort *p;
wdenka3d991b2004-04-15 21:48:45 +0000886
887 if (len > 0) {
888 odd = 1 & (ulong)buff;
889 if (odd) {
890 result = *buff << 8;
891 len--;
892 buff++;
893 }
894 while (len > 1) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200895 p = (ushort *)buff;
896 result += *p++;
897 buff = (uchar *)p;
wdenka3d991b2004-04-15 21:48:45 +0000898 if (result & 0x80000000)
899 result = (result & 0xFFFF) + (result >> 16);
900 len -= 2;
901 }
902 if (len) {
903 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denk3ada8342005-11-10 20:59:46 +0100904 /* CISCO SUCKS big time! (and blows too):
905 * CDP uses the IP checksum algorithm with a twist;
906 * for the last byte it *sign* extends and sums.
907 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000908 result = (result & 0xffff0000) |
909 ((result + leftover) & 0x0000ffff);
wdenka3d991b2004-04-15 21:48:45 +0000910 }
911 while (result >> 16)
912 result = (result & 0xFFFF) + (result >> 16);
913
914 if (odd)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000915 result = ((result >> 8) & 0xff) |
916 ((result & 0xff) << 8);
wdenka3d991b2004-04-15 21:48:45 +0000917 }
918
919 /* add up 16-bit and 17-bit words for 17+c bits */
920 result = (result & 0xffff) + (result >> 16);
921 /* add up 16-bit and 2-bit for 16+c bit */
922 result = (result & 0xffff) + (result >> 16);
923 /* add up carry.. */
924 result = (result & 0xffff) + (result >> 16);
925
926 /* negate */
927 csum = ~(ushort)result;
928
929 /* run time endian detection */
930 if (csum != htons(csum)) /* little endian */
931 csum = htons(csum);
932
933 return csum;
934}
935
936int CDPSendTrigger(void)
937{
938 volatile uchar *pkt;
939 volatile ushort *s;
940 volatile ushort *cp;
941 Ethernet_t *et;
wdenka3d991b2004-04-15 21:48:45 +0000942 int len;
943 ushort chksum;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000944#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
945 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk6e592382004-04-18 17:39:38 +0000946 char buf[32];
947#endif
wdenka3d991b2004-04-15 21:48:45 +0000948
949 pkt = NetTxPacket;
950 et = (Ethernet_t *)pkt;
951
952 /* NOTE: trigger sent not on any VLAN */
953
954 /* form ethernet header */
955 memcpy(et->et_dest, NetCDPAddr, 6);
956 memcpy(et->et_src, NetOurEther, 6);
957
958 pkt += ETHER_HDR_SIZE;
959
960 /* SNAP header */
961 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
962 pkt += sizeof(CDP_SNAP_hdr);
963
964 /* CDP header */
965 *pkt++ = 0x02; /* CDP version 2 */
966 *pkt++ = 180; /* TTL */
967 s = (volatile ushort *)pkt;
968 cp = s;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000969 /* checksum (0 for later calculation) */
970 *s++ = htons(0);
wdenka3d991b2004-04-15 21:48:45 +0000971
972 /* CDP fields */
973#ifdef CONFIG_CDP_DEVICE_ID
974 *s++ = htons(CDP_DEVICE_ID_TLV);
975 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger95823ca2009-02-11 18:23:48 -0500976 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenka3d991b2004-04-15 21:48:45 +0000977 memcpy((uchar *)s, buf, 16);
978 s += 16 / 2;
979#endif
980
981#ifdef CONFIG_CDP_PORT_ID
982 *s++ = htons(CDP_PORT_ID_TLV);
983 memset(buf, 0, sizeof(buf));
984 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
985 len = strlen(buf);
986 if (len & 1) /* make it even */
987 len++;
988 *s++ = htons(len + 4);
989 memcpy((uchar *)s, buf, len);
990 s += len / 2;
991#endif
992
993#ifdef CONFIG_CDP_CAPABILITIES
994 *s++ = htons(CDP_CAPABILITIES_TLV);
995 *s++ = htons(8);
996 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
997 s += 2;
998#endif
999
1000#ifdef CONFIG_CDP_VERSION
1001 *s++ = htons(CDP_VERSION_TLV);
1002 memset(buf, 0, sizeof(buf));
1003 strcpy(buf, CONFIG_CDP_VERSION);
1004 len = strlen(buf);
1005 if (len & 1) /* make it even */
1006 len++;
1007 *s++ = htons(len + 4);
1008 memcpy((uchar *)s, buf, len);
1009 s += len / 2;
1010#endif
1011
1012#ifdef CONFIG_CDP_PLATFORM
1013 *s++ = htons(CDP_PLATFORM_TLV);
1014 memset(buf, 0, sizeof(buf));
1015 strcpy(buf, CONFIG_CDP_PLATFORM);
1016 len = strlen(buf);
1017 if (len & 1) /* make it even */
1018 len++;
1019 *s++ = htons(len + 4);
1020 memcpy((uchar *)s, buf, len);
1021 s += len / 2;
1022#endif
1023
1024#ifdef CONFIG_CDP_TRIGGER
1025 *s++ = htons(CDP_TRIGGER_TLV);
1026 *s++ = htons(8);
1027 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1028 s += 2;
1029#endif
1030
1031#ifdef CONFIG_CDP_POWER_CONSUMPTION
1032 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1033 *s++ = htons(6);
1034 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1035#endif
1036
1037 /* length of ethernet packet */
1038 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1039 et->et_protlen = htons(len);
1040
1041 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001042 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1043 (uchar *)s - (NetTxPacket + len));
wdenka3d991b2004-04-15 21:48:45 +00001044 if (chksum == 0)
1045 chksum = 0xFFFF;
1046 *cp = htons(chksum);
1047
1048 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1049 return 0;
1050}
1051
1052static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001053CDPTimeout(void)
wdenka3d991b2004-04-15 21:48:45 +00001054{
1055 CDPSeq++;
1056
1057 if (CDPSeq < 3) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001058 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenka3d991b2004-04-15 21:48:45 +00001059 CDPSendTrigger();
1060 return;
1061 }
1062
1063 /* if not OK try again */
1064 if (!CDPOK)
1065 NetStartAgain();
1066 else
1067 NetState = NETLOOP_SUCCESS;
1068}
1069
1070static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001071CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1072 unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001073{
1074 /* nothing */
1075}
1076
1077static void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001078CDPHandler(const uchar *pkt, unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001079{
1080 const uchar *t;
1081 const ushort *ss;
1082 ushort type, tlen;
wdenka3d991b2004-04-15 21:48:45 +00001083 ushort vlan, nvlan;
1084
1085 /* minimum size? */
1086 if (len < sizeof(CDP_SNAP_hdr) + 4)
1087 goto pkt_short;
1088
1089 /* check for valid CDP SNAP header */
1090 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1091 return;
1092
1093 pkt += sizeof(CDP_SNAP_hdr);
1094 len -= sizeof(CDP_SNAP_hdr);
1095
1096 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1097 if (pkt[0] < 0x02 || pkt[1] == 0)
1098 return;
1099
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001100 /*
1101 * if version is greater than 0x02 maybe we'll have a problem;
1102 * output a warning
1103 */
wdenka3d991b2004-04-15 21:48:45 +00001104 if (pkt[0] != 0x02)
1105 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1106 pkt[0] & 0xff);
1107
1108 if (CDP_compute_csum(pkt, len) != 0)
1109 return;
1110
1111 pkt += 4;
1112 len -= 4;
1113
1114 vlan = htons(-1);
1115 nvlan = htons(-1);
1116 while (len > 0) {
1117 if (len < 4)
1118 goto pkt_short;
1119
1120 ss = (const ushort *)pkt;
1121 type = ntohs(ss[0]);
1122 tlen = ntohs(ss[1]);
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001123 if (tlen > len)
wdenka3d991b2004-04-15 21:48:45 +00001124 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001125
1126 pkt += tlen;
1127 len -= tlen;
1128
1129 ss += 2; /* point ss to the data of the TLV */
1130 tlen -= 4;
1131
1132 switch (type) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001133 case CDP_DEVICE_ID_TLV:
1134 break;
1135 case CDP_ADDRESS_TLV:
1136 break;
1137 case CDP_PORT_ID_TLV:
1138 break;
1139 case CDP_CAPABILITIES_TLV:
1140 break;
1141 case CDP_VERSION_TLV:
1142 break;
1143 case CDP_PLATFORM_TLV:
1144 break;
1145 case CDP_NATIVE_VLAN_TLV:
1146 nvlan = *ss;
1147 break;
1148 case CDP_APPLIANCE_VLAN_TLV:
1149 t = (const uchar *)ss;
1150 while (tlen > 0) {
1151 if (tlen < 3)
1152 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001153
Luca Ceresolic819abe2011-05-04 02:40:46 +00001154 ss = (const ushort *)(t + 1);
wdenka3d991b2004-04-15 21:48:45 +00001155
1156#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Wolfgang Denk5c104192011-11-04 15:55:42 +00001157 if (t[0] == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
Luca Ceresolic819abe2011-05-04 02:40:46 +00001158 vlan = *ss;
wdenka3d991b2004-04-15 21:48:45 +00001159#else
Luca Ceresolic819abe2011-05-04 02:40:46 +00001160 /* XXX will this work; dunno */
1161 vlan = ntohs(*ss);
wdenka3d991b2004-04-15 21:48:45 +00001162#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001163 t += 3; tlen -= 3;
1164 }
1165 break;
1166 case CDP_TRIGGER_TLV:
1167 break;
1168 case CDP_POWER_CONSUMPTION_TLV:
1169 break;
1170 case CDP_SYSNAME_TLV:
1171 break;
1172 case CDP_SYSOBJECT_TLV:
1173 break;
1174 case CDP_MANAGEMENT_ADDRESS_TLV:
1175 break;
wdenka3d991b2004-04-15 21:48:45 +00001176 }
1177 }
1178
1179 CDPApplianceVLAN = vlan;
1180 CDPNativeVLAN = nvlan;
1181
1182 CDPOK = 1;
1183 return;
1184
1185 pkt_short:
1186 printf("** CDP packet is too short\n");
1187 return;
1188}
1189
1190static void CDPStart(void)
1191{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001192 printf("Using %s device\n", eth_get_name());
wdenka3d991b2004-04-15 21:48:45 +00001193 CDPSeq = 0;
1194 CDPOK = 0;
1195
1196 CDPNativeVLAN = htons(-1);
1197 CDPApplianceVLAN = htons(-1);
1198
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001199 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1200 NetSetHandler(CDPDummyHandler);
wdenka3d991b2004-04-15 21:48:45 +00001201
1202 CDPSendTrigger();
1203}
Jon Loeliger610f2e92007-07-10 11:05:02 -05001204#endif
wdenka3d991b2004-04-15 21:48:45 +00001205
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001206#ifdef CONFIG_IP_DEFRAG
1207/*
1208 * This function collects fragments in a single packet, according
1209 * to the algorithm in RFC815. It returns NULL or the pointer to
1210 * a complete packet, in static storage
1211 */
1212#ifndef CONFIG_NET_MAXDEFRAG
1213#define CONFIG_NET_MAXDEFRAG 16384
1214#endif
1215/*
1216 * MAXDEFRAG, above, is chosen in the config file and is real data
1217 * so we need to add the NFS overhead, which is more than TFTP.
1218 * To use sizeof in the internal unnamed structures, we need a real
1219 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1220 * The compiler doesn't complain nor allocates the actual structure
1221 */
1222static struct rpc_t rpc_specimen;
1223#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1224
1225#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1226
1227/*
1228 * this is the packet being assembled, either data or frag control.
1229 * Fragments go by 8 bytes, so this union must be 8 bytes long
1230 */
1231struct hole {
1232 /* first_byte is address of this structure */
1233 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1234 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1235 u16 prev_hole; /* index of prev, 0 == none */
1236 u16 unused;
1237};
1238
1239static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1240{
1241 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1242 static u16 first_hole, total_len;
1243 struct hole *payload, *thisfrag, *h, *newh;
1244 IP_t *localip = (IP_t *)pkt_buff;
1245 uchar *indata = (uchar *)ip;
1246 int offset8, start, len, done = 0;
1247 u16 ip_off = ntohs(ip->ip_off);
1248
1249 /* payload starts after IP header, this fragment is in there */
1250 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1251 offset8 = (ip_off & IP_OFFS);
1252 thisfrag = payload + offset8;
1253 start = offset8 * 8;
1254 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1255
1256 if (start + len > IP_MAXUDP) /* fragment extends too far */
1257 return NULL;
1258
1259 if (!total_len || localip->ip_id != ip->ip_id) {
1260 /* new (or different) packet, reset structs */
1261 total_len = 0xffff;
1262 payload[0].last_byte = ~0;
1263 payload[0].next_hole = 0;
1264 payload[0].prev_hole = 0;
1265 first_hole = 0;
1266 /* any IP header will work, copy the first we received */
1267 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1268 }
1269
1270 /*
1271 * What follows is the reassembly algorithm. We use the payload
1272 * array as a linked list of hole descriptors, as each hole starts
1273 * at a multiple of 8 bytes. However, last byte can be whatever value,
1274 * so it is represented as byte count, not as 8-byte blocks.
1275 */
1276
1277 h = payload + first_hole;
1278 while (h->last_byte < start) {
1279 if (!h->next_hole) {
1280 /* no hole that far away */
1281 return NULL;
1282 }
1283 h = payload + h->next_hole;
1284 }
1285
Fillod Stephanee397e592010-06-11 19:26:43 +02001286 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1287 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001288 /* no overlap with holes (dup fragment?) */
1289 return NULL;
1290 }
1291
1292 if (!(ip_off & IP_FLAGS_MFRAG)) {
1293 /* no more fragmentss: truncate this (last) hole */
1294 total_len = start + len;
1295 h->last_byte = start + len;
1296 }
1297
1298 /*
1299 * There is some overlap: fix the hole list. This code doesn't
1300 * deal with a fragment that overlaps with two different holes
1301 * (thus being a superset of a previously-received fragment).
1302 */
1303
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001304 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001305 /* complete overlap with hole: remove hole */
1306 if (!h->prev_hole && !h->next_hole) {
1307 /* last remaining hole */
1308 done = 1;
1309 } else if (!h->prev_hole) {
1310 /* first hole */
1311 first_hole = h->next_hole;
1312 payload[h->next_hole].prev_hole = 0;
1313 } else if (!h->next_hole) {
1314 /* last hole */
1315 payload[h->prev_hole].next_hole = 0;
1316 } else {
1317 /* in the middle of the list */
1318 payload[h->next_hole].prev_hole = h->prev_hole;
1319 payload[h->prev_hole].next_hole = h->next_hole;
1320 }
1321
1322 } else if (h->last_byte <= start + len) {
1323 /* overlaps with final part of the hole: shorten this hole */
1324 h->last_byte = start;
1325
1326 } else if (h >= thisfrag) {
1327 /* overlaps with initial part of the hole: move this hole */
1328 newh = thisfrag + (len / 8);
1329 *newh = *h;
1330 h = newh;
1331 if (h->next_hole)
1332 payload[h->next_hole].prev_hole = (h - payload);
1333 if (h->prev_hole)
1334 payload[h->prev_hole].next_hole = (h - payload);
1335 else
1336 first_hole = (h - payload);
1337
1338 } else {
1339 /* fragment sits in the middle: split the hole */
1340 newh = thisfrag + (len / 8);
1341 *newh = *h;
1342 h->last_byte = start;
1343 h->next_hole = (newh - payload);
1344 newh->prev_hole = (h - payload);
1345 if (newh->next_hole)
1346 payload[newh->next_hole].prev_hole = (newh - payload);
1347 }
1348
1349 /* finally copy this fragment and possibly return whole packet */
1350 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1351 if (!done)
1352 return NULL;
1353
1354 localip->ip_len = htons(total_len);
1355 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1356 return localip;
1357}
1358
1359static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1360{
1361 u16 ip_off = ntohs(ip->ip_off);
1362 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1363 return ip; /* not a fragment */
1364 return __NetDefragment(ip, lenp);
1365}
1366
1367#else /* !CONFIG_IP_DEFRAG */
1368
1369static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1370{
1371 u16 ip_off = ntohs(ip->ip_off);
1372 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1373 return ip; /* not a fragment */
1374 return NULL;
1375}
1376#endif
wdenka3d991b2004-04-15 21:48:45 +00001377
Simon Glass8f79bb12011-10-24 18:00:00 +00001378/**
1379 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1380 * drop others.
1381 *
1382 * @parma ip IP packet containing the ICMP
1383 */
1384static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
1385{
1386 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
1387
1388 switch (icmph->type) {
1389 case ICMP_REDIRECT:
1390 if (icmph->code != ICMP_REDIR_HOST)
1391 return;
1392 printf(" ICMP Host Redirect to %pI4 ",
1393 &icmph->un.gateway);
1394 break;
1395#if defined(CONFIG_CMD_PING)
1396 case ICMP_ECHO_REPLY:
1397 /*
1398 * IP header OK. Pass the packet to the
1399 * current handler.
1400 */
1401 /*
1402 * XXX point to ip packet - should this use
1403 * packet_icmp_handler?
1404 */
1405 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1406 break;
1407 case ICMP_ECHO_REQUEST:
1408 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1409 ETHER_HDR_SIZE + len);
1410
1411 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1412 memcpy(&et->et_src[0], NetOurEther, 6);
1413
1414 ip->ip_sum = 0;
1415 ip->ip_off = 0;
1416 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1417 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1418 ip->ip_sum = ~NetCksum((uchar *)ip,
1419 IP_HDR_SIZE_NO_UDP >> 1);
1420
1421 icmph->type = ICMP_ECHO_REPLY;
1422 icmph->checksum = 0;
1423 icmph->checksum = ~NetCksum((uchar *)icmph,
1424 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1425 (void) eth_send((uchar *)et,
1426 ETHER_HDR_SIZE + len);
1427 break;
1428#endif
1429 default:
Simon Glass39bccd22011-10-26 14:18:38 +00001430#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +00001431 if (packet_icmp_handler)
1432 packet_icmp_handler(icmph->type, icmph->code,
1433 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
1434 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +00001435#endif
Simon Glass8f79bb12011-10-24 18:00:00 +00001436 break;
1437 }
1438}
1439
wdenk2d966952002-10-31 22:12:35 +00001440void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001441NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001442{
1443 Ethernet_t *et;
1444 IP_t *ip;
1445 ARP_t *arp;
1446 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001447 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001448 int x;
wdenka3d991b2004-04-15 21:48:45 +00001449 uchar *pkt;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001450#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001451 int iscdp;
1452#endif
1453 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001454
Robin Getz0ebf04c2009-07-23 03:01:03 -04001455 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001456
Mike Frysingerd9bec9f2009-07-18 21:04:08 -04001457 NetRxPacket = inpkt;
1458 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +00001459 et = (Ethernet_t *)inpkt;
1460
1461 /* too small packet? */
1462 if (len < ETHER_HDR_SIZE)
1463 return;
1464
Rafal Jaworowskif85b6072007-12-27 18:19:02 +01001465#ifdef CONFIG_API
1466 if (push_packet) {
1467 (*push_packet)(inpkt, len);
1468 return;
1469 }
1470#endif
1471
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001472#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001473 /* keep track if packet is CDP */
1474 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1475#endif
1476
1477 myvlanid = ntohs(NetOurVLAN);
1478 if (myvlanid == (ushort)-1)
1479 myvlanid = VLAN_NONE;
1480 mynvlanid = ntohs(NetOurNativeVLAN);
1481 if (mynvlanid == (ushort)-1)
1482 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001483
1484 x = ntohs(et->et_protlen);
1485
Robin Getz0ebf04c2009-07-23 03:01:03 -04001486 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001487
wdenk2d966952002-10-31 22:12:35 +00001488 if (x < 1514) {
1489 /*
1490 * Got a 802 packet. Check the other protocol field.
1491 */
1492 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +00001493
1494 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001495 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001496
1497 } else if (x != PROT_VLAN) { /* normal packet */
1498 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001499 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001500
1501 } else { /* VLAN packet */
1502 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1503
Robin Getz0ebf04c2009-07-23 03:01:03 -04001504 debug("VLAN packet received\n");
1505
wdenka3d991b2004-04-15 21:48:45 +00001506 /* too small packet? */
1507 if (len < VLAN_ETHER_HDR_SIZE)
1508 return;
1509
1510 /* if no VLAN active */
1511 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001512#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001513 && iscdp == 0
1514#endif
1515 )
1516 return;
1517
1518 cti = ntohs(vet->vet_tag);
1519 vlanid = cti & VLAN_IDMASK;
1520 x = ntohs(vet->vet_type);
1521
1522 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1523 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001524 }
1525
Robin Getz0ebf04c2009-07-23 03:01:03 -04001526 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001527
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001528#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001529 if (iscdp) {
1530 CDPHandler((uchar *)ip, len);
1531 return;
1532 }
1533#endif
1534
1535 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1536 if (vlanid == VLAN_NONE)
1537 vlanid = (mynvlanid & VLAN_IDMASK);
1538 /* not matched? */
1539 if (vlanid != (myvlanid & VLAN_IDMASK))
1540 return;
1541 }
1542
wdenk2d966952002-10-31 22:12:35 +00001543 switch (x) {
1544
1545 case PROT_ARP:
1546 /*
1547 * We have to deal with two types of ARP packets:
wdenk8bde7f72003-06-27 21:31:46 +00001548 * - REQUEST packets will be answered by sending our
1549 * IP address - if we know it.
1550 * - REPLY packates are expected only after we asked
1551 * for the TFTP server's or the gateway's ethernet
1552 * address; so if we receive such a packet, we set
1553 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001554 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001555 debug("Got ARP\n");
1556
wdenk2d966952002-10-31 22:12:35 +00001557 arp = (ARP_t *)ip;
1558 if (len < ARP_HDR_SIZE) {
1559 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1560 return;
1561 }
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001562 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001563 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001564 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001565 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001566 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001567 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001568 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001569 return;
wdenk2d966952002-10-31 22:12:35 +00001570
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001571 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001572 return;
wdenk2d966952002-10-31 22:12:35 +00001573
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001574 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001575 return;
wdenk2d966952002-10-31 22:12:35 +00001576
1577 switch (ntohs(arp->ar_op)) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001578 case ARPOP_REQUEST:
1579 /* reply with our IP address */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001580 debug("Got ARP REQUEST, return our IP\n");
wdenka3d991b2004-04-15 21:48:45 +00001581 pkt = (uchar *)et;
1582 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001583 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001584 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001585 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001586 memcpy(&arp->ar_data[0], NetOurEther, 6);
1587 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001588 (void) eth_send((uchar *)et,
1589 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001590 return;
wdenk73a8b272003-06-05 19:27:42 +00001591
1592 case ARPOP_REPLY: /* arp reply */
1593 /* are we waiting for a reply */
1594 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1595 break;
Robin Getz97cfe862009-07-21 12:15:28 -04001596
1597#ifdef CONFIG_KEEP_SERVERADDR
1598 if (NetServerIP == NetArpWaitPacketIP) {
1599 char buf[20];
1600 sprintf(buf, "%pM", arp->ar_data);
1601 setenv("serveraddr", buf);
1602 }
1603#endif
1604
Robin Getz0ebf04c2009-07-23 03:01:03 -04001605 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger95823ca2009-02-11 18:23:48 -05001606 arp->ar_data);
wdenk73a8b272003-06-05 19:27:42 +00001607
1608 tmp = NetReadIP(&arp->ar_data[6]);
1609
1610 /* matched waiting packet's address */
1611 if (tmp == NetArpWaitReplyIP) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001612 debug("Got it\n");
wdenk73a8b272003-06-05 19:27:42 +00001613 /* save address for later use */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001614 memcpy(NetArpWaitPacketMAC,
1615 &arp->ar_data[0], 6);
wdenk73a8b272003-06-05 19:27:42 +00001616
wdenk68ceb292004-08-02 21:11:11 +00001617#ifdef CONFIG_NETCONSOLE
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001618 (*packetHandler)(0, 0, 0, 0, 0);
wdenk68ceb292004-08-02 21:11:11 +00001619#endif
wdenk73a8b272003-06-05 19:27:42 +00001620 /* modify header, and transmit it */
1621 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001622 (void) eth_send(NetArpWaitTxPacket,
1623 NetArpWaitTxPacketSize);
wdenk73a8b272003-06-05 19:27:42 +00001624
1625 /* no arp request pending now */
1626 NetArpWaitPacketIP = 0;
1627 NetArpWaitTxPacketSize = 0;
1628 NetArpWaitPacketMAC = NULL;
1629
1630 }
wdenk2d966952002-10-31 22:12:35 +00001631 return;
1632 default:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001633 debug("Unexpected ARP opcode 0x%x\n",
1634 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001635 return;
1636 }
wdenk289f9322005-01-12 00:15:14 +00001637 break;
wdenk2d966952002-10-31 22:12:35 +00001638
Peter Tyserbf6cb242010-09-30 11:25:48 -05001639#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001640 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001641 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001642 arp = (ARP_t *)ip;
1643 if (len < ARP_HDR_SIZE) {
1644 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1645 return;
1646 }
1647
1648 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1649 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1650 (ntohs(arp->ar_pro) != PROT_IP) ||
1651 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1652
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001653 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001654 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001655 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +00001656 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001657 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1658 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001659
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001660 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001661 }
1662 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001663#endif
wdenk2d966952002-10-31 22:12:35 +00001664 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001665 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001666 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001667 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001668 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001669 return;
1670 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001671 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001672 if (len < ntohs(ip->ip_len)) {
1673 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1674 return;
1675 }
1676 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001677 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1678
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001679 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001680 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001681 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001682 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001683 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001684 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001685 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001686 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001687 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001688 return;
1689 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001690 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001691 tmp = NetReadIP(&ip->ip_dst);
1692 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001693#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001694 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001695#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001696 return;
wdenk2d966952002-10-31 22:12:35 +00001697 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001698 /* Read source IP address for later use */
1699 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001700 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001701 * The function returns the unchanged packet if it's not
1702 * a fragment, and either the complete packet or NULL if
1703 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1704 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001705 ip = NetDefragment(ip, &len);
1706 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001707 return;
1708 /*
wdenk2d966952002-10-31 22:12:35 +00001709 * watch for ICMP host redirects
1710 *
wdenk8bde7f72003-06-27 21:31:46 +00001711 * There is no real handler code (yet). We just watch
1712 * for ICMP host redirect messages. In case anybody
1713 * sees these messages: please contact me
1714 * (wd@denx.de), or - even better - send me the
1715 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001716 *
wdenk8bde7f72003-06-27 21:31:46 +00001717 * Note: in all cases where I have seen this so far
1718 * it was a problem with the router configuration,
1719 * for instance when a router was configured in the
1720 * BOOTP reply, but the TFTP server was on the same
1721 * subnet. So this is probably a warning that your
1722 * configuration might be wrong. But I'm not really
1723 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001724 *
1725 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1726 * we send a tftp packet to a dead connection, or when
1727 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001728 */
1729 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001730 receive_icmp(ip, len, src_ip, et);
1731 return;
wdenk2d966952002-10-31 22:12:35 +00001732 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1733 return;
1734 }
1735
Stefan Roese8534bf92005-08-12 20:06:52 +02001736#ifdef CONFIG_UDP_CHECKSUM
1737 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001738 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001739 ushort *sumptr;
1740 ushort sumlen;
1741
1742 xsum = ip->ip_p;
1743 xsum += (ntohs(ip->udp_len));
1744 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1745 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1746 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1747 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1748
1749 sumlen = ntohs(ip->udp_len);
1750 sumptr = (ushort *) &(ip->udp_src);
1751
1752 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001753 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001754
1755 sumdata = *sumptr++;
1756 xsum += ntohs(sumdata);
1757 sumlen -= 2;
1758 }
1759 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001760 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001761
1762 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001763 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001764 xsum += sumdata;
1765 }
1766 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001767 xsum = (xsum & 0x0000ffff) +
1768 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001769 }
1770 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001771 printf(" UDP wrong checksum %08lx %08x\n",
1772 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001773 return;
1774 }
1775 }
1776#endif
1777
David Updegraff53a5c422007-06-11 10:41:07 -05001778
wdenk68ceb292004-08-02 21:11:11 +00001779#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001780 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001781 ntohs(ip->udp_dst),
1782 ntohs(ip->udp_src),
1783 ntohs(ip->udp_len) - 8);
1784#endif
wdenk2d966952002-10-31 22:12:35 +00001785 /*
1786 * IP header OK. Pass the packet to the current handler.
1787 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001788 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001789 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001790 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001791 ntohs(ip->udp_src),
1792 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001793 break;
1794 }
1795}
1796
1797
1798/**********************************************************************/
1799
Simon Glasse4bf0c52011-10-24 18:00:02 +00001800static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001801{
1802 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001803 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001804#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001805 case PING:
wdenk6e592382004-04-18 17:39:38 +00001806 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001807 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001808 return 1;
wdenk6e592382004-04-18 17:39:38 +00001809 }
1810 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001811#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001812#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001813 case SNTP:
1814 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001815 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001816 return 1;
wdenkea287de2005-04-01 00:25:43 +00001817 }
1818 goto common;
1819#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001820#if defined(CONFIG_CMD_DNS)
1821 case DNS:
1822 if (NetOurDNSIP == 0) {
1823 puts("*** ERROR: DNS server address not given\n");
1824 return 1;
1825 }
1826 goto common;
1827#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001828#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001829 case NFS:
1830#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001831 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001832 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001833 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001834 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001835 return 1;
wdenk6e592382004-04-18 17:39:38 +00001836 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001837#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1838 defined(CONFIG_CMD_DNS)
1839common:
wdenk73a8b272003-06-05 19:27:42 +00001840#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001841 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001842
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001843 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001844 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001845 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001846 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001847 return 1;
wdenk6e592382004-04-18 17:39:38 +00001848 }
1849 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001850
Peter Tyserbf6cb242010-09-30 11:25:48 -05001851#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001852 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001853#endif
wdenk2d966952002-10-31 22:12:35 +00001854 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001855 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001856 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001857 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001858 extern int eth_get_dev_index(void);
1859 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001860
wdenk6e592382004-04-18 17:39:38 +00001861 switch (num) {
1862 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001863 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001864 return 1;
wdenk6e592382004-04-18 17:39:38 +00001865 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001866 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001867 break;
wdenk6e592382004-04-18 17:39:38 +00001868 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001869 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001870 num);
1871 break;
wdenk2d966952002-10-31 22:12:35 +00001872 }
wdenk6e592382004-04-18 17:39:38 +00001873
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001874 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001875 return 2;
wdenk6e592382004-04-18 17:39:38 +00001876 }
1877 /* Fall through */
1878 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001879 return 0;
wdenk2d966952002-10-31 22:12:35 +00001880 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001881 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001882}
1883/**********************************************************************/
1884
1885int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001886NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001887{
1888 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1889}
1890
1891
1892unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001893NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001894{
1895 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001896 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001897
1898 xsum = 0;
1899 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001900 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001901 xsum = (xsum & 0xffff) + (xsum >> 16);
1902 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001903 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001904}
1905
wdenka3d991b2004-04-15 21:48:45 +00001906int
1907NetEthHdrSize(void)
1908{
1909 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001910
wdenka3d991b2004-04-15 21:48:45 +00001911 myvlanid = ntohs(NetOurVLAN);
1912 if (myvlanid == (ushort)-1)
1913 myvlanid = VLAN_NONE;
1914
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001915 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1916 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001917}
1918
1919int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001920NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001921{
1922 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001923 ushort myvlanid;
1924
1925 myvlanid = ntohs(NetOurVLAN);
1926 if (myvlanid == (ushort)-1)
1927 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001928
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001929 memcpy(et->et_dest, addr, 6);
1930 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001931 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001932 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001933 return ETHER_HDR_SIZE;
1934 } else {
1935 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001936
wdenka3d991b2004-04-15 21:48:45 +00001937 vet->vet_vlan_type = htons(PROT_VLAN);
1938 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1939 vet->vet_type = htons(prot);
1940 return VLAN_ETHER_HDR_SIZE;
1941 }
1942}
wdenk2d966952002-10-31 22:12:35 +00001943
1944void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001945NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001946{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001947 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001948
1949 /*
1950 * If the data is an odd number of bytes, zero the
1951 * byte after the last byte so that the checksum
1952 * will work.
1953 */
1954 if (len & 1)
1955 xip[IP_HDR_SIZE + len] = 0;
1956
1957 /*
1958 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001959 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001960 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001961 /* IP_HDR_SIZE / 4 (not including UDP) */
1962 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001963 ip->ip_tos = 0;
1964 ip->ip_len = htons(IP_HDR_SIZE + len);
1965 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001966 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001967 ip->ip_ttl = 255;
1968 ip->ip_p = 17; /* UDP */
1969 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001970 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001971 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001972 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001973 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001974 ip->udp_src = htons(sport);
1975 ip->udp_dst = htons(dport);
1976 ip->udp_len = htons(8 + len);
1977 ip->udp_xsum = 0;
1978 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1979}
1980
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001981void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001982{
1983 if (*src && (*src == '"')) {
1984 ++src;
1985 --size;
1986 }
1987
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001988 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001989 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001990 *dst = '\0';
1991}
1992
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001993#if defined(CONFIG_CMD_NFS) || \
1994 defined(CONFIG_CMD_SNTP) || \
1995 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001996/*
Robin Getz97399462010-03-08 14:07:00 -05001997 * make port a little random (1024-17407)
1998 * This keeps the math somewhat trivial to compute, and seems to work with
1999 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04002000 */
2001unsigned int random_port(void)
2002{
Robin Getz97399462010-03-08 14:07:00 -05002003 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04002004}
2005#endif
2006
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00002007void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00002008{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00002009 x = ntohl(x);
2010 sprintf(s, "%d.%d.%d.%d",
2011 (int) ((x >> 24) & 0xff),
2012 (int) ((x >> 16) & 0xff),
2013 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00002014 );
wdenk2d966952002-10-31 22:12:35 +00002015}
2016
wdenka3d991b2004-04-15 21:48:45 +00002017void VLAN_to_string(ushort x, char *s)
2018{
2019 x = ntohs(x);
2020
2021 if (x == (ushort)-1)
2022 x = VLAN_NONE;
2023
2024 if (x == VLAN_NONE)
2025 strcpy(s, "none");
2026 else
2027 sprintf(s, "%d", x & VLAN_IDMASK);
2028}
2029
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04002030ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00002031{
2032 ushort id;
2033
2034 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00002035 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00002036
2037 if (*s < '0' || *s > '9')
2038 id = VLAN_NONE;
2039 else
2040 id = (ushort)simple_strtoul(s, NULL, 10);
2041
wdenkb9711de2004-04-25 13:18:40 +00002042 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00002043}
2044
wdenka3d991b2004-04-15 21:48:45 +00002045ushort getenv_VLAN(char *var)
2046{
Luca Ceresoli92895de2011-05-04 02:40:45 +00002047 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00002048}