blob: 8f55281f406dc0bf97e71b66b990795db353d7cc [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 Denk30b87322005-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
wdenkbe9c1cb2004-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
wdenkb4ad9622005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkb4ad9622005-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 Tyserf7a48ca2010-09-30 11:25:48 -050083#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000084#include "rarp.h"
Peter Tyserf7a48ca2010-09-30 11:25:48 -050085#endif
wdenkbe9c1cb2004-02-24 02:00:03 +000086#include "nfs.h"
wdenk49c3f672003-10-08 22:33:00 +000087#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -050091#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +000092#include "sntp.h"
93#endif
Peter Tyser62948502008-11-03 09:30:59 -060094#if defined(CONFIG_CDP_VERSION)
95#include <timestamp.h>
96#endif
Robin Getz82f0d232009-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 Denk6405a152006-03-31 18:32:53 +0200101DECLARE_GLOBAL_DATA_PTR;
102
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200103#ifndef CONFIG_ARP_TIMEOUT
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000104/* Milliseconds before trying ARP again */
105# define ARP_TIMEOUT 5000UL
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200106#else
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200107# define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200108#endif
109
110
wdenke6466f62003-06-05 19:27:42 +0000111#ifndef CONFIG_NET_RETRY_COUNT
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200112# define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
wdenke6466f62003-06-05 19:27:42 +0000113#else
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200114# define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
wdenke6466f62003-06-05 19:27:42 +0000115#endif
116
wdenk2d966952002-10-31 22:12:35 +0000117/** BOOTP EXTENTIONS **/
118
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000119/* Our subnet mask (0=unknown) */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000120IPaddr_t NetOurSubnetMask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000121/* Our gateways IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000122IPaddr_t NetOurGatewayIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000123/* Our DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000124IPaddr_t NetOurDNSIP;
Jon Loeliger5336a762007-07-09 22:08:34 -0500125#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000126/* Our 2nd DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000127IPaddr_t NetOurDNS2IP;
stroesee0aadfb2003-08-28 14:17:32 +0000128#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000129/* Our NIS domain */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000130char NetOurNISDomain[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000131/* Our hostname */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000132char NetOurHostName[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000133/* Our bootpath */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000134char NetOurRootPath[64] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000135/* Our bootfile size in blocks */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000136ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000137
David Updegraff7280da72007-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 Ceresoli5c83a962011-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 Ceresolid01bc1c2011-05-11 03:59:55 +0000149uchar NetServerEther[6];
Luca Ceresoli5c83a962011-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 Ceresolid01bc1c2011-05-11 03:59:55 +0000161uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162uchar NetEtherNullAddr[6];
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100163#ifdef CONFIG_API
164void (*push_packet)(volatile void *, int len) = 0;
165#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500166#if defined(CONFIG_CMD_CDP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000167/* Ethernet bcast address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000168uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
wdenk145d2c12004-04-15 21:48:45 +0000169#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000170/* Network loop state */
171int NetState;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000172/* Tried all network devices */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000173int NetRestartWrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000174/* Network loop restarted */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000175static int NetRestarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000176/* At least one device configured */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000177static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000178
wdenk05939202004-04-18 17:39:38 +0000179/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000180/* default is without VLAN */
181ushort NetOurVLAN = 0xFFFF;
182/* ditto */
183ushort NetOurNativeVLAN = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000184
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000185/* Boot File name */
186char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000187
Jon Loeliger54f35c22007-07-09 17:45:14 -0500188#if defined(CONFIG_CMD_PING)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000189/* the ip address to ping */
190IPaddr_t NetPingIP;
wdenke6466f62003-06-05 19:27:42 +0000191
192static void PingStart(void);
193#endif
194
Jon Loeliger54f35c22007-07-09 17:45:14 -0500195#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000196static void CDPStart(void);
197#endif
198
Jon Loeliger54f35c22007-07-09 17:45:14 -0500199#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000200/* NTP server IP address */
201IPaddr_t NetNtpServerIP;
202/* offset time from UTC */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000203int NetTimeOffset;
wdenkb4ad9622005-04-01 00:25:43 +0000204#endif
205
wdenkb8fb6192004-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 Ceresoli5c83a962011-05-11 03:59:54 +0000213/* Receive packet */
214volatile uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000215
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000216/* Current RX packet handler */
217static rxhand_f *packetHandler;
Simon Glass2928cd82011-10-26 14:18:38 +0000218#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000219static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Simon Glass2928cd82011-10-26 14:18:38 +0000220#endif
Luca Ceresoli5c83a962011-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 Ceresolid01bc1c2011-05-11 03:59:55 +0000228volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000229
Simon Glassd6c5f552011-10-24 18:00:02 +0000230static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000231
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100232static int NetTryCount;
233
wdenk2d966952002-10-31 22:12:35 +0000234/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000235
236IPaddr_t NetArpWaitPacketIP;
237IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000238/* MAC address of waiting packet's destination */
239uchar *NetArpWaitPacketMAC;
240/* THE transmit packet */
241uchar *NetArpWaitTxPacket;
wdenke6466f62003-06-05 19:27:42 +0000242int NetArpWaitTxPacketSize;
Wolfgang Denka1be4762008-05-20 16:00:29 +0200243uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenke6466f62003-06-05 19:27:42 +0000244ulong NetArpWaitTimerStart;
245int NetArpWaitTry;
246
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000247void ArpRequest(void)
wdenke6466f62003-06-05 19:27:42 +0000248{
wdenke6466f62003-06-05 19:27:42 +0000249 volatile uchar *pkt;
wdenk05939202004-04-18 17:39:38 +0000250 ARP_t *arp;
wdenke6466f62003-06-05 19:27:42 +0000251
Robin Getz9e0a4d62009-07-23 03:01:03 -0400252 debug("ARP broadcast %d\n", NetArpWaitTry);
253
wdenke6466f62003-06-05 19:27:42 +0000254 pkt = NetTxPacket;
255
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenke6466f62003-06-05 19:27:42 +0000257
wdenk05939202004-04-18 17:39:38 +0000258 arp = (ARP_t *) pkt;
wdenke6466f62003-06-05 19:27:42 +0000259
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
wdenke6466f62003-06-05 19:27:42 +0000262 arp->ar_hln = 6;
263 arp->ar_pln = 4;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000264 arp->ar_op = htons(ARPOP_REQUEST);
wdenke6466f62003-06-05 19:27:42 +0000265
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000266 /* source ET addr */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000267 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000268 /* source IP addr */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
Simon Glasse4655c52011-10-26 14:18:39 +0000270 /* dest ET addr = 0 */
271 memset(&arp->ar_data[10], '\0', 6);
wdenk05939202004-04-18 17:39:38 +0000272 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
273 (NetOurIP & NetOurSubnetMask)) {
274 if (NetOurGatewayIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000275 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denk98ceffb2006-03-12 01:13:30 +0100276 NetArpWaitReplyIP = NetArpWaitPacketIP;
277 } else {
278 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk05939202004-04-18 17:39:38 +0000279 }
wdenk05939202004-04-18 17:39:38 +0000280 } else {
281 NetArpWaitReplyIP = NetArpWaitPacketIP;
282 }
wdenke6466f62003-06-05 19:27:42 +0000283
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000284 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
285 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenke6466f62003-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 Sieka56668462008-10-01 15:26:28 +0200298 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenke6466f62003-06-05 19:27:42 +0000299 NetArpWaitTry++;
300
301 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000302 puts("\nARP Retry count exceeded; starting again\n");
wdenke6466f62003-06-05 19:27:42 +0000303 NetArpWaitTry = 0;
304 NetStartAgain();
305 } else {
306 NetArpWaitTimerStart = t;
307 ArpRequest();
308 }
309 }
310}
311
Simon Glass5234ad12011-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 Glassd6c5f552011-10-24 18:00:02 +0000342static void NetInitLoop(enum proto_t protocol)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100343{
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000344 static int env_changed_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100345 bd_t *bd = gd->bd;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000346 int env_id = get_env_id();
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100347
348 /* update only when the environment has changed */
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300349 if (env_changed_id != env_id) {
Enric Balletbo i Serra7019d252011-05-31 21:01:47 +0000350 NetOurIP = getenv_IPaddr("ipaddr");
351 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000352 NetOurGatewayIP = getenv_IPaddr("gatewayip");
353 NetOurSubnetMask = getenv_IPaddr("netmask");
354 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100355 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300356 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz82f0d232009-07-20 14:53:54 -0400357#if defined(CONFIG_CMD_DNS)
358 NetOurDNSIP = getenv_IPaddr("dnsip");
359#endif
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300360 env_changed_id = env_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100361 }
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300362
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200363 return;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100364}
365
wdenke6466f62003-06-05 19:27:42 +0000366/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000367/*
368 * Main network processing loop.
369 */
370
Simon Glassd6c5f552011-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 Glass230467c2011-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
wdenke6466f62003-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 Bohmer0ddb8e82009-10-28 22:13:39 +0100386 NetTryCount = 1;
wdenke6466f62003-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 Ceresolie8ccbb02011-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;
wdenke6466f62003-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();
wdenk145d2c12004-04-15 21:48:45 +0000406 eth_set_current();
wdenkfa66e932005-04-03 14:52:59 +0000407 if (eth_init(bd) < 0) {
408 eth_halt();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +0000409 return -1;
wdenkfa66e932005-04-03 14:52:59 +0000410 }
wdenk2d966952002-10-31 22:12:35 +0000411
412restart:
Luca Ceresoli7cbd7482011-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 Schocher0c303fa2009-02-10 09:38:52 +0100422 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000423
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000424 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000425 case 1:
426 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000427 eth_halt();
Luca Ceresoli5fe6de22011-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 Glassd6c5f552011-10-24 18:00:02 +0000436 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000437 switch (protocol) {
Simon Glassd6c5f552011-10-24 18:00:02 +0000438 case TFTPGET:
Simon Glass6a398d22011-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 Glassd6c5f552011-10-24 18:00:02 +0000443 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000444 break;
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000445#ifdef CONFIG_CMD_TFTPSRV
446 case TFTPSRV:
447 TftpStartServer();
448 break;
449#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500450#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000451 case DHCP:
wdenkc3919532004-10-11 22:51:13 +0000452 BootpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300453 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000454 DhcpRequest(); /* Basically same as BOOTP */
455 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500456#endif
wdenk2d966952002-10-31 22:12:35 +0000457
458 case BOOTP:
459 BootpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300460 NetOurIP = 0;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000461 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000462 break;
463
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500464#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000465 case RARP:
466 RarpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300467 NetOurIP = 0;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000468 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000469 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500470#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500471#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000472 case PING:
473 PingStart();
474 break;
475#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500476#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +0000477 case NFS:
478 NfsStart();
479 break;
480#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500481#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000482 case CDP:
483 CDPStart();
484 break;
485#endif
wdenkb8fb6192004-08-02 21:11:11 +0000486#ifdef CONFIG_NETCONSOLE
487 case NETCONS:
488 NcStart();
489 break;
490#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500491#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +0000492 case SNTP:
493 SntpStart();
494 break;
495#endif
Robin Getz82f0d232009-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 Loeliger54f35c22007-07-09 17:45:14 -0500508#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000509#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
510 defined(CONFIG_STATUS_LED) && \
511 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000512 /*
wdenk9c53f402003-10-15 23:53:47 +0000513 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000514 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000515 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000516 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000517 else
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000518 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200519#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-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
wdenk27fa5852005-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 Liakhovetskib38c2b32008-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()) {
wdenk57b2d802003-06-27 21:31:46 +0000544 eth_halt();
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000545 puts("\nAbort\n");
Simon Glass230467c2011-10-24 18:00:01 +0000546 goto done;
wdenk2d966952002-10-31 22:12:35 +0000547 }
548
wdenke6466f62003-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 */
wdenk5d841732003-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 Loeliger54f35c22007-07-09 17:45:14 -0500558#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000559#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
560 defined(CONFIG_STATUS_LED) && \
561 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000562 /*
wdenk9c53f402003-10-15 23:53:47 +0000563 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000564 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000565 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000566 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000567 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenk49c3f672003-10-08 22:33:00 +0000568 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000569 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenk49c3f672003-10-08 22:33:00 +0000570 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000571#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-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 Denk084d0ce2007-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 Denk084d0ce2007-09-12 00:48:57 +0200591 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000592 setenv("filesize", buf);
wdenk145d2c12004-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 Glass230467c2011-10-24 18:00:01 +0000598 ret = NetBootFileXferSize;
599 goto done;
wdenk2d966952002-10-31 22:12:35 +0000600
601 case NETLOOP_FAIL:
Simon Glass230467c2011-10-24 18:00:01 +0000602 goto done;
wdenk2d966952002-10-31 22:12:35 +0000603 }
604 }
Simon Glass230467c2011-10-24 18:00:01 +0000605
606done:
Simon Glass2928cd82011-10-26 14:18:38 +0000607#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000608 /* Clear out the handlers */
609 NetSetHandler(NULL);
610 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000611#endif
Simon Glass230467c2011-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 Ceresoli428ab362011-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 Ceresoli7cbd7482011-05-11 03:59:56 +0000630void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000631{
wdenk05939202004-04-18 17:39:38 +0000632 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100633 int retry_forever = 0;
634 unsigned long retrycnt = 0;
wdenk145d2c12004-04-15 21:48:45 +0000635
Remy Bohmer0ddb8e82009-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();
wdenk145d2c12004-04-15 21:48:45 +0000651 NetState = NETLOOP_FAIL;
652 return;
653 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100654
655 NetTryCount++;
656
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000657 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100658#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000659 eth_try_another(!NetRestarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100660#endif
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000661 eth_init(gd->bd);
wdenk05939202004-04-18 17:39:38 +0000662 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000663 NetRestartWrap = 0;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100664 if (NetDevExists) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000665 NetSetTimeout(10000UL, startAgainTimeout);
666 NetSetHandler(startAgainHandler);
wdenk05939202004-04-18 17:39:38 +0000667 } else {
wdenk2d966952002-10-31 22:12:35 +0000668 NetState = NETLOOP_FAIL;
669 }
wdenk05939202004-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 Ceresolif27d91f2011-05-04 02:40:44 +0000681NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000682{
683 packetHandler = f;
684}
685
Simon Glass2928cd82011-10-26 14:18:38 +0000686#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000687void net_set_icmp_handler(rxhand_icmp_f *f)
688{
689 packet_icmp_handler = f;
690}
Simon Glass2928cd82011-10-26 14:18:38 +0000691#endif
wdenk2d966952002-10-31 22:12:35 +0000692
693void
Luca Ceresolif27d91f2011-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;
wdenk5d841732003-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 Ceresolif27d91f2011-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
wdenke6466f62003-06-05 19:27:42 +0000712int
713NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
714{
wdenk145d2c12004-04-15 21:48:45 +0000715 uchar *pkt;
716
wdenke6466f62003-06-05 19:27:42 +0000717 /* convert to new style broadcast */
718 if (dest == 0)
719 dest = 0xFFFFFFFF;
720
721 /* if broadcast, make the ether address a broadcast and don't do ARP */
722 if (dest == 0xFFFFFFFF)
723 ether = NetBcastAddr;
724
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000725 /*
726 * if MAC address was not discovered yet, save the packet and do
727 * an ARP request
728 */
wdenke6466f62003-06-05 19:27:42 +0000729 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
730
Robin Getz9e0a4d62009-07-23 03:01:03 -0400731 debug("sending ARP for %08lx\n", dest);
732
wdenke6466f62003-06-05 19:27:42 +0000733 NetArpWaitPacketIP = dest;
734 NetArpWaitPacketMAC = ether;
wdenk145d2c12004-04-15 21:48:45 +0000735
736 pkt = NetArpWaitTxPacket;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000737 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenk145d2c12004-04-15 21:48:45 +0000738
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000739 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000740 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
741 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenke6466f62003-06-05 19:27:42 +0000742
743 /* size of the waiting packet */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000744 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
745 IP_HDR_SIZE + len;
wdenke6466f62003-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
Robin Getz9e0a4d62009-07-23 03:01:03 -0400754 debug("sending UDP to %08lx/%pM\n", dest, ether);
wdenke6466f62003-06-05 19:27:42 +0000755
wdenk145d2c12004-04-15 21:48:45 +0000756 pkt = (uchar *)NetTxPacket;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000757 pkt += NetSetEther(pkt, ether, PROT_IP);
758 NetSetIP(pkt, dest, dport, sport, len);
wdenk145d2c12004-04-15 21:48:45 +0000759 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenke6466f62003-06-05 19:27:42 +0000760
wdenk05939202004-04-18 17:39:38 +0000761 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000762}
763
Jon Loeliger54f35c22007-07-09 17:45:14 -0500764#if defined(CONFIG_CMD_PING)
wdenke6466f62003-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;
wdenk145d2c12004-04-15 21:48:45 +0000772 uchar *pkt;
wdenke6466f62003-06-05 19:27:42 +0000773
774 /* XXX always send arp request */
775
776 memcpy(mac, NetEtherNullAddr, 6);
777
Robin Getz9e0a4d62009-07-23 03:01:03 -0400778 debug("sending ARP for %08lx\n", NetPingIP);
wdenke6466f62003-06-05 19:27:42 +0000779
780 NetArpWaitPacketIP = NetPingIP;
781 NetArpWaitPacketMAC = mac;
782
wdenk145d2c12004-04-15 21:48:45 +0000783 pkt = NetArpWaitTxPacket;
784 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenke6466f62003-06-05 19:27:42 +0000785
wdenk145d2c12004-04-15 21:48:45 +0000786 ip = (volatile IP_t *)pkt;
wdenke6466f62003-06-05 19:27:42 +0000787
788 /*
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000789 * Construct an IP and ICMP header.
790 * (need to set no fragment bit - XXX)
wdenke6466f62003-06-05 19:27:42 +0000791 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000792 /* IP_HDR_SIZE / 4 (not including UDP) */
793 ip->ip_hl_v = 0x45;
wdenke6466f62003-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 Tyser0885bf02008-12-01 16:26:20 -0600797 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenke6466f62003-06-05 19:27:42 +0000798 ip->ip_ttl = 255;
799 ip->ip_p = 0x01; /* ICMP */
800 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000801 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000802 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000803 /* - "" - */
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000804 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenke6466f62003-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 Denka1be4762008-05-20 16:00:29 +0200810 s[2] = 0; /* identifier */
wdenke6466f62003-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 Ceresoli5c83a962011-05-11 03:59:54 +0000815 NetArpWaitTxPacketSize =
816 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenke6466f62003-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 Ceresoli7cbd7482011-05-11 03:59:56 +0000826PingTimeout(void)
wdenke6466f62003-06-05 19:27:42 +0000827{
828 eth_halt();
829 NetState = NETLOOP_FAIL; /* we did not get the reply */
830}
831
832static void
Luca Ceresoli428ab362011-04-18 06:19:50 +0000833PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
834 unsigned len)
wdenke6466f62003-06-05 19:27:42 +0000835{
Luca Ceresoli428ab362011-04-18 06:19:50 +0000836 if (sip != NetPingIP)
wdenke6466f62003-06-05 19:27:42 +0000837 return;
838
839 NetState = NETLOOP_SUCCESS;
840}
841
842static void PingStart(void)
843{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000844 printf("Using %s device\n", eth_get_name());
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000845 NetSetTimeout(10000UL, PingTimeout);
846 NetSetHandler(PingHandler);
wdenke6466f62003-06-05 19:27:42 +0000847
848 PingSend();
849}
Jon Loeligera9807e52007-07-10 11:05:02 -0500850#endif
wdenk145d2c12004-04-15 21:48:45 +0000851
Jon Loeliger54f35c22007-07-09 17:45:14 -0500852#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-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 Sieka56668462008-10-01 15:26:28 +0200868#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenk145d2c12004-04-15 21:48:45 +0000869
870static int CDPSeq;
871static int CDPOK;
872
873ushort CDPNativeVLAN;
874ushort CDPApplianceVLAN;
875
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000876static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
877 0x00 };
wdenk145d2c12004-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 Denk7fb52662005-10-13 16:45:02 +0200885 ushort *p;
wdenk145d2c12004-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 Denk7fb52662005-10-13 16:45:02 +0200895 p = (ushort *)buff;
896 result += *p++;
897 buff = (uchar *)p;
wdenk145d2c12004-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 Denkf0711132005-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 Ceresoli5c83a962011-05-11 03:59:54 +0000908 result = (result & 0xffff0000) |
909 ((result + leftover) & 0x0000ffff);
wdenk145d2c12004-04-15 21:48:45 +0000910 }
911 while (result >> 16)
912 result = (result & 0xFFFF) + (result >> 16);
913
914 if (odd)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000915 result = ((result >> 8) & 0xff) |
916 ((result & 0xff) << 8);
wdenk145d2c12004-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;
wdenk145d2c12004-04-15 21:48:45 +0000942 int len;
943 ushort chksum;
Luca Ceresoli7cbd7482011-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)
wdenk05939202004-04-18 17:39:38 +0000946 char buf[32];
947#endif
wdenk145d2c12004-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 Ceresoli5c83a962011-05-11 03:59:54 +0000969 /* checksum (0 for later calculation) */
970 *s++ = htons(0);
wdenk145d2c12004-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 Frysinger79ca1b92009-02-11 18:23:48 -0500976 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenk145d2c12004-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 Ceresoli5c83a962011-05-11 03:59:54 +00001042 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1043 (uchar *)s - (NetTxPacket + len));
wdenk145d2c12004-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 Ceresoli7cbd7482011-05-11 03:59:56 +00001053CDPTimeout(void)
wdenk145d2c12004-04-15 21:48:45 +00001054{
1055 CDPSeq++;
1056
1057 if (CDPSeq < 3) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001058 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenk145d2c12004-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 Ceresoli428ab362011-04-18 06:19:50 +00001071CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1072 unsigned len)
wdenk145d2c12004-04-15 21:48:45 +00001073{
1074 /* nothing */
1075}
1076
1077static void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001078CDPHandler(const uchar *pkt, unsigned len)
wdenk145d2c12004-04-15 21:48:45 +00001079{
1080 const uchar *t;
1081 const ushort *ss;
1082 ushort type, tlen;
1083 uchar applid;
1084 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 Ceresoli5c83a962011-05-11 03:59:54 +00001101 /*
1102 * if version is greater than 0x02 maybe we'll have a problem;
1103 * output a warning
1104 */
wdenk145d2c12004-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 Ceresolie8ccbb02011-05-04 02:40:43 +00001124 if (tlen > len)
wdenk145d2c12004-04-15 21:48:45 +00001125 goto pkt_short;
wdenk145d2c12004-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 Ceresolib19d0b72011-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;
wdenk145d2c12004-04-15 21:48:45 +00001154
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001155 applid = t[0];
1156 ss = (const ushort *)(t + 1);
wdenk145d2c12004-04-15 21:48:45 +00001157
1158#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001159 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1160 vlan = *ss;
wdenk145d2c12004-04-15 21:48:45 +00001161#else
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001162 /* XXX will this work; dunno */
1163 vlan = ntohs(*ss);
wdenk145d2c12004-04-15 21:48:45 +00001164#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001165 t += 3; tlen -= 3;
1166 }
1167 break;
1168 case CDP_TRIGGER_TLV:
1169 break;
1170 case CDP_POWER_CONSUMPTION_TLV:
1171 break;
1172 case CDP_SYSNAME_TLV:
1173 break;
1174 case CDP_SYSOBJECT_TLV:
1175 break;
1176 case CDP_MANAGEMENT_ADDRESS_TLV:
1177 break;
wdenk145d2c12004-04-15 21:48:45 +00001178 }
1179 }
1180
1181 CDPApplianceVLAN = vlan;
1182 CDPNativeVLAN = nvlan;
1183
1184 CDPOK = 1;
1185 return;
1186
1187 pkt_short:
1188 printf("** CDP packet is too short\n");
1189 return;
1190}
1191
1192static void CDPStart(void)
1193{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001194 printf("Using %s device\n", eth_get_name());
wdenk145d2c12004-04-15 21:48:45 +00001195 CDPSeq = 0;
1196 CDPOK = 0;
1197
1198 CDPNativeVLAN = htons(-1);
1199 CDPApplianceVLAN = htons(-1);
1200
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001201 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1202 NetSetHandler(CDPDummyHandler);
wdenk145d2c12004-04-15 21:48:45 +00001203
1204 CDPSendTrigger();
1205}
Jon Loeligera9807e52007-07-10 11:05:02 -05001206#endif
wdenk145d2c12004-04-15 21:48:45 +00001207
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001208#ifdef CONFIG_IP_DEFRAG
1209/*
1210 * This function collects fragments in a single packet, according
1211 * to the algorithm in RFC815. It returns NULL or the pointer to
1212 * a complete packet, in static storage
1213 */
1214#ifndef CONFIG_NET_MAXDEFRAG
1215#define CONFIG_NET_MAXDEFRAG 16384
1216#endif
1217/*
1218 * MAXDEFRAG, above, is chosen in the config file and is real data
1219 * so we need to add the NFS overhead, which is more than TFTP.
1220 * To use sizeof in the internal unnamed structures, we need a real
1221 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1222 * The compiler doesn't complain nor allocates the actual structure
1223 */
1224static struct rpc_t rpc_specimen;
1225#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1226
1227#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1228
1229/*
1230 * this is the packet being assembled, either data or frag control.
1231 * Fragments go by 8 bytes, so this union must be 8 bytes long
1232 */
1233struct hole {
1234 /* first_byte is address of this structure */
1235 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1236 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1237 u16 prev_hole; /* index of prev, 0 == none */
1238 u16 unused;
1239};
1240
1241static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1242{
1243 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1244 static u16 first_hole, total_len;
1245 struct hole *payload, *thisfrag, *h, *newh;
1246 IP_t *localip = (IP_t *)pkt_buff;
1247 uchar *indata = (uchar *)ip;
1248 int offset8, start, len, done = 0;
1249 u16 ip_off = ntohs(ip->ip_off);
1250
1251 /* payload starts after IP header, this fragment is in there */
1252 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1253 offset8 = (ip_off & IP_OFFS);
1254 thisfrag = payload + offset8;
1255 start = offset8 * 8;
1256 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1257
1258 if (start + len > IP_MAXUDP) /* fragment extends too far */
1259 return NULL;
1260
1261 if (!total_len || localip->ip_id != ip->ip_id) {
1262 /* new (or different) packet, reset structs */
1263 total_len = 0xffff;
1264 payload[0].last_byte = ~0;
1265 payload[0].next_hole = 0;
1266 payload[0].prev_hole = 0;
1267 first_hole = 0;
1268 /* any IP header will work, copy the first we received */
1269 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1270 }
1271
1272 /*
1273 * What follows is the reassembly algorithm. We use the payload
1274 * array as a linked list of hole descriptors, as each hole starts
1275 * at a multiple of 8 bytes. However, last byte can be whatever value,
1276 * so it is represented as byte count, not as 8-byte blocks.
1277 */
1278
1279 h = payload + first_hole;
1280 while (h->last_byte < start) {
1281 if (!h->next_hole) {
1282 /* no hole that far away */
1283 return NULL;
1284 }
1285 h = payload + h->next_hole;
1286 }
1287
Fillod Stephanee7ade8b2010-06-11 19:26:43 +02001288 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1289 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001290 /* no overlap with holes (dup fragment?) */
1291 return NULL;
1292 }
1293
1294 if (!(ip_off & IP_FLAGS_MFRAG)) {
1295 /* no more fragmentss: truncate this (last) hole */
1296 total_len = start + len;
1297 h->last_byte = start + len;
1298 }
1299
1300 /*
1301 * There is some overlap: fix the hole list. This code doesn't
1302 * deal with a fragment that overlaps with two different holes
1303 * (thus being a superset of a previously-received fragment).
1304 */
1305
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001306 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001307 /* complete overlap with hole: remove hole */
1308 if (!h->prev_hole && !h->next_hole) {
1309 /* last remaining hole */
1310 done = 1;
1311 } else if (!h->prev_hole) {
1312 /* first hole */
1313 first_hole = h->next_hole;
1314 payload[h->next_hole].prev_hole = 0;
1315 } else if (!h->next_hole) {
1316 /* last hole */
1317 payload[h->prev_hole].next_hole = 0;
1318 } else {
1319 /* in the middle of the list */
1320 payload[h->next_hole].prev_hole = h->prev_hole;
1321 payload[h->prev_hole].next_hole = h->next_hole;
1322 }
1323
1324 } else if (h->last_byte <= start + len) {
1325 /* overlaps with final part of the hole: shorten this hole */
1326 h->last_byte = start;
1327
1328 } else if (h >= thisfrag) {
1329 /* overlaps with initial part of the hole: move this hole */
1330 newh = thisfrag + (len / 8);
1331 *newh = *h;
1332 h = newh;
1333 if (h->next_hole)
1334 payload[h->next_hole].prev_hole = (h - payload);
1335 if (h->prev_hole)
1336 payload[h->prev_hole].next_hole = (h - payload);
1337 else
1338 first_hole = (h - payload);
1339
1340 } else {
1341 /* fragment sits in the middle: split the hole */
1342 newh = thisfrag + (len / 8);
1343 *newh = *h;
1344 h->last_byte = start;
1345 h->next_hole = (newh - payload);
1346 newh->prev_hole = (h - payload);
1347 if (newh->next_hole)
1348 payload[newh->next_hole].prev_hole = (newh - payload);
1349 }
1350
1351 /* finally copy this fragment and possibly return whole packet */
1352 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1353 if (!done)
1354 return NULL;
1355
1356 localip->ip_len = htons(total_len);
1357 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1358 return localip;
1359}
1360
1361static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1362{
1363 u16 ip_off = ntohs(ip->ip_off);
1364 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1365 return ip; /* not a fragment */
1366 return __NetDefragment(ip, lenp);
1367}
1368
1369#else /* !CONFIG_IP_DEFRAG */
1370
1371static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1372{
1373 u16 ip_off = ntohs(ip->ip_off);
1374 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1375 return ip; /* not a fragment */
1376 return NULL;
1377}
1378#endif
wdenk2d966952002-10-31 22:12:35 +00001379
Simon Glass43c72962011-10-24 18:00:00 +00001380/**
1381 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1382 * drop others.
1383 *
1384 * @parma ip IP packet containing the ICMP
1385 */
1386static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
1387{
1388 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
1389
1390 switch (icmph->type) {
1391 case ICMP_REDIRECT:
1392 if (icmph->code != ICMP_REDIR_HOST)
1393 return;
1394 printf(" ICMP Host Redirect to %pI4 ",
1395 &icmph->un.gateway);
1396 break;
1397#if defined(CONFIG_CMD_PING)
1398 case ICMP_ECHO_REPLY:
1399 /*
1400 * IP header OK. Pass the packet to the
1401 * current handler.
1402 */
1403 /*
1404 * XXX point to ip packet - should this use
1405 * packet_icmp_handler?
1406 */
1407 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1408 break;
1409 case ICMP_ECHO_REQUEST:
1410 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1411 ETHER_HDR_SIZE + len);
1412
1413 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1414 memcpy(&et->et_src[0], NetOurEther, 6);
1415
1416 ip->ip_sum = 0;
1417 ip->ip_off = 0;
1418 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1419 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1420 ip->ip_sum = ~NetCksum((uchar *)ip,
1421 IP_HDR_SIZE_NO_UDP >> 1);
1422
1423 icmph->type = ICMP_ECHO_REPLY;
1424 icmph->checksum = 0;
1425 icmph->checksum = ~NetCksum((uchar *)icmph,
1426 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1427 (void) eth_send((uchar *)et,
1428 ETHER_HDR_SIZE + len);
1429 break;
1430#endif
1431 default:
Simon Glass2928cd82011-10-26 14:18:38 +00001432#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001433 if (packet_icmp_handler)
1434 packet_icmp_handler(icmph->type, icmph->code,
1435 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
1436 icmph->un.data, ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001437#endif
Simon Glass43c72962011-10-24 18:00:00 +00001438 break;
1439 }
1440}
1441
wdenk2d966952002-10-31 22:12:35 +00001442void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001443NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001444{
1445 Ethernet_t *et;
1446 IP_t *ip;
1447 ARP_t *arp;
1448 IPaddr_t tmp;
Luca Ceresoli428ab362011-04-18 06:19:50 +00001449 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001450 int x;
wdenk145d2c12004-04-15 21:48:45 +00001451 uchar *pkt;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001452#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001453 int iscdp;
1454#endif
1455 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001456
Robin Getz9e0a4d62009-07-23 03:01:03 -04001457 debug("packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001458
Mike Frysingerdc166032009-07-18 21:04:08 -04001459 NetRxPacket = inpkt;
1460 NetRxPacketLen = len;
wdenk145d2c12004-04-15 21:48:45 +00001461 et = (Ethernet_t *)inpkt;
1462
1463 /* too small packet? */
1464 if (len < ETHER_HDR_SIZE)
1465 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001466
1467#ifdef CONFIG_API
1468 if (push_packet) {
1469 (*push_packet)(inpkt, len);
1470 return;
1471 }
1472#endif
wdenk145d2c12004-04-15 21:48:45 +00001473
Jon Loeliger54f35c22007-07-09 17:45:14 -05001474#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001475 /* keep track if packet is CDP */
1476 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1477#endif
1478
1479 myvlanid = ntohs(NetOurVLAN);
1480 if (myvlanid == (ushort)-1)
1481 myvlanid = VLAN_NONE;
1482 mynvlanid = ntohs(NetOurNativeVLAN);
1483 if (mynvlanid == (ushort)-1)
1484 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001485
1486 x = ntohs(et->et_protlen);
1487
Robin Getz9e0a4d62009-07-23 03:01:03 -04001488 debug("packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001489
wdenk2d966952002-10-31 22:12:35 +00001490 if (x < 1514) {
1491 /*
1492 * Got a 802 packet. Check the other protocol field.
1493 */
1494 x = ntohs(et->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001495
1496 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001497 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001498
1499 } else if (x != PROT_VLAN) { /* normal packet */
1500 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001501 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001502
1503 } else { /* VLAN packet */
1504 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1505
Robin Getz9e0a4d62009-07-23 03:01:03 -04001506 debug("VLAN packet received\n");
1507
wdenk145d2c12004-04-15 21:48:45 +00001508 /* too small packet? */
1509 if (len < VLAN_ETHER_HDR_SIZE)
1510 return;
1511
1512 /* if no VLAN active */
1513 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001514#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001515 && iscdp == 0
1516#endif
1517 )
1518 return;
1519
1520 cti = ntohs(vet->vet_tag);
1521 vlanid = cti & VLAN_IDMASK;
1522 x = ntohs(vet->vet_type);
1523
1524 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1525 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001526 }
1527
Robin Getz9e0a4d62009-07-23 03:01:03 -04001528 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001529
Jon Loeliger54f35c22007-07-09 17:45:14 -05001530#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001531 if (iscdp) {
1532 CDPHandler((uchar *)ip, len);
1533 return;
1534 }
1535#endif
1536
1537 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1538 if (vlanid == VLAN_NONE)
1539 vlanid = (mynvlanid & VLAN_IDMASK);
1540 /* not matched? */
1541 if (vlanid != (myvlanid & VLAN_IDMASK))
1542 return;
1543 }
1544
wdenk2d966952002-10-31 22:12:35 +00001545 switch (x) {
1546
1547 case PROT_ARP:
1548 /*
1549 * We have to deal with two types of ARP packets:
wdenk57b2d802003-06-27 21:31:46 +00001550 * - REQUEST packets will be answered by sending our
1551 * IP address - if we know it.
1552 * - REPLY packates are expected only after we asked
1553 * for the TFTP server's or the gateway's ethernet
1554 * address; so if we receive such a packet, we set
1555 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001556 */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001557 debug("Got ARP\n");
1558
wdenk2d966952002-10-31 22:12:35 +00001559 arp = (ARP_t *)ip;
1560 if (len < ARP_HDR_SIZE) {
1561 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1562 return;
1563 }
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001564 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001565 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001566 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001567 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001568 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001569 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001570 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001571 return;
wdenk2d966952002-10-31 22:12:35 +00001572
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001573 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001574 return;
wdenk2d966952002-10-31 22:12:35 +00001575
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001576 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001577 return;
wdenk2d966952002-10-31 22:12:35 +00001578
1579 switch (ntohs(arp->ar_op)) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001580 case ARPOP_REQUEST:
1581 /* reply with our IP address */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001582 debug("Got ARP REQUEST, return our IP\n");
wdenk145d2c12004-04-15 21:48:45 +00001583 pkt = (uchar *)et;
1584 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001585 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001586 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001587 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001588 memcpy(&arp->ar_data[0], NetOurEther, 6);
1589 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001590 (void) eth_send((uchar *)et,
1591 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001592 return;
wdenke6466f62003-06-05 19:27:42 +00001593
1594 case ARPOP_REPLY: /* arp reply */
1595 /* are we waiting for a reply */
1596 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1597 break;
Robin Getz470a6d42009-07-21 12:15:28 -04001598
1599#ifdef CONFIG_KEEP_SERVERADDR
1600 if (NetServerIP == NetArpWaitPacketIP) {
1601 char buf[20];
1602 sprintf(buf, "%pM", arp->ar_data);
1603 setenv("serveraddr", buf);
1604 }
1605#endif
1606
Robin Getz9e0a4d62009-07-23 03:01:03 -04001607 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger79ca1b92009-02-11 18:23:48 -05001608 arp->ar_data);
wdenke6466f62003-06-05 19:27:42 +00001609
1610 tmp = NetReadIP(&arp->ar_data[6]);
1611
1612 /* matched waiting packet's address */
1613 if (tmp == NetArpWaitReplyIP) {
Robin Getz9e0a4d62009-07-23 03:01:03 -04001614 debug("Got it\n");
wdenke6466f62003-06-05 19:27:42 +00001615 /* save address for later use */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001616 memcpy(NetArpWaitPacketMAC,
1617 &arp->ar_data[0], 6);
wdenke6466f62003-06-05 19:27:42 +00001618
wdenkb8fb6192004-08-02 21:11:11 +00001619#ifdef CONFIG_NETCONSOLE
Luca Ceresoli428ab362011-04-18 06:19:50 +00001620 (*packetHandler)(0, 0, 0, 0, 0);
wdenkb8fb6192004-08-02 21:11:11 +00001621#endif
wdenke6466f62003-06-05 19:27:42 +00001622 /* modify header, and transmit it */
1623 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001624 (void) eth_send(NetArpWaitTxPacket,
1625 NetArpWaitTxPacketSize);
wdenke6466f62003-06-05 19:27:42 +00001626
1627 /* no arp request pending now */
1628 NetArpWaitPacketIP = 0;
1629 NetArpWaitTxPacketSize = 0;
1630 NetArpWaitPacketMAC = NULL;
1631
1632 }
wdenk2d966952002-10-31 22:12:35 +00001633 return;
1634 default:
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001635 debug("Unexpected ARP opcode 0x%x\n",
1636 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001637 return;
1638 }
wdenkcb99da52005-01-12 00:15:14 +00001639 break;
wdenk2d966952002-10-31 22:12:35 +00001640
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001641#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001642 case PROT_RARP:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001643 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001644 arp = (ARP_t *)ip;
1645 if (len < ARP_HDR_SIZE) {
1646 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1647 return;
1648 }
1649
1650 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1651 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1652 (ntohs(arp->ar_pro) != PROT_IP) ||
1653 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1654
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001655 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001656 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001657 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk4989f872004-03-14 15:06:13 +00001658 if (NetServerIP == 0)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001659 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1660 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001661
Luca Ceresoli428ab362011-04-18 06:19:50 +00001662 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001663 }
1664 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001665#endif
wdenk2d966952002-10-31 22:12:35 +00001666 case PROT_IP:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001667 debug("Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001668 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001669 if (len < IP_HDR_SIZE) {
Robin Getz9e0a4d62009-07-23 03:01:03 -04001670 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001671 return;
1672 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001673 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001674 if (len < ntohs(ip->ip_len)) {
1675 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1676 return;
1677 }
1678 len = ntohs(ip->ip_len);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001679 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1680
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001681 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001682 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001683 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001684 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001685 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001686 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001687 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001688 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001689 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001690 return;
1691 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001692 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001693 tmp = NetReadIP(&ip->ip_dst);
1694 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff7280da72007-06-11 10:41:07 -05001695#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk627f5c32007-08-14 09:47:27 +02001696 if (Mcast_addr != tmp)
David Updegraff7280da72007-06-11 10:41:07 -05001697#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001698 return;
wdenk2d966952002-10-31 22:12:35 +00001699 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001700 /* Read source IP address for later use */
1701 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001702 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001703 * The function returns the unchanged packet if it's not
1704 * a fragment, and either the complete packet or NULL if
1705 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1706 */
Luca Ceresolidb210822011-05-04 02:40:47 +00001707 ip = NetDefragment(ip, &len);
1708 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001709 return;
1710 /*
wdenk2d966952002-10-31 22:12:35 +00001711 * watch for ICMP host redirects
1712 *
wdenk57b2d802003-06-27 21:31:46 +00001713 * There is no real handler code (yet). We just watch
1714 * for ICMP host redirect messages. In case anybody
1715 * sees these messages: please contact me
1716 * (wd@denx.de), or - even better - send me the
1717 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001718 *
wdenk57b2d802003-06-27 21:31:46 +00001719 * Note: in all cases where I have seen this so far
1720 * it was a problem with the router configuration,
1721 * for instance when a router was configured in the
1722 * BOOTP reply, but the TFTP server was on the same
1723 * subnet. So this is probably a warning that your
1724 * configuration might be wrong. But I'm not really
1725 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001726 *
1727 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1728 * we send a tftp packet to a dead connection, or when
1729 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001730 */
1731 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001732 receive_icmp(ip, len, src_ip, et);
1733 return;
wdenk2d966952002-10-31 22:12:35 +00001734 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1735 return;
1736 }
1737
Stefan Roesedfced812005-08-12 20:06:52 +02001738#ifdef CONFIG_UDP_CHECKSUM
1739 if (ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001740 ulong xsum;
Stefan Roesedfced812005-08-12 20:06:52 +02001741 ushort *sumptr;
1742 ushort sumlen;
1743
1744 xsum = ip->ip_p;
1745 xsum += (ntohs(ip->udp_len));
1746 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1747 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1748 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1749 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1750
1751 sumlen = ntohs(ip->udp_len);
1752 sumptr = (ushort *) &(ip->udp_src);
1753
1754 while (sumlen > 1) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001755 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001756
1757 sumdata = *sumptr++;
1758 xsum += ntohs(sumdata);
1759 sumlen -= 2;
1760 }
1761 if (sumlen > 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001762 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001763
1764 sumdata = *(unsigned char *) sumptr;
Wolfgang Denk30b87322005-08-12 23:43:12 +02001765 sumdata = (sumdata << 8) & 0xff00;
Stefan Roesedfced812005-08-12 20:06:52 +02001766 xsum += sumdata;
1767 }
1768 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001769 xsum = (xsum & 0x0000ffff) +
1770 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001771 }
1772 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001773 printf(" UDP wrong checksum %08lx %08x\n",
1774 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001775 return;
1776 }
1777 }
1778#endif
1779
David Updegraff7280da72007-06-11 10:41:07 -05001780
wdenkb8fb6192004-08-02 21:11:11 +00001781#ifdef CONFIG_NETCONSOLE
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001782 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenkb8fb6192004-08-02 21:11:11 +00001783 ntohs(ip->udp_dst),
1784 ntohs(ip->udp_src),
1785 ntohs(ip->udp_len) - 8);
1786#endif
wdenk2d966952002-10-31 22:12:35 +00001787 /*
1788 * IP header OK. Pass the packet to the current handler.
1789 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001790 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001791 ntohs(ip->udp_dst),
Luca Ceresoli428ab362011-04-18 06:19:50 +00001792 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001793 ntohs(ip->udp_src),
1794 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001795 break;
1796 }
1797}
1798
1799
1800/**********************************************************************/
1801
Simon Glassd6c5f552011-10-24 18:00:02 +00001802static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001803{
1804 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001805 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001806#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001807 case PING:
wdenk05939202004-04-18 17:39:38 +00001808 if (NetPingIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001809 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001810 return 1;
wdenk05939202004-04-18 17:39:38 +00001811 }
1812 goto common;
wdenke6466f62003-06-05 19:27:42 +00001813#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001814#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +00001815 case SNTP:
1816 if (NetNtpServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001817 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001818 return 1;
wdenkb4ad9622005-04-01 00:25:43 +00001819 }
1820 goto common;
1821#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001822#if defined(CONFIG_CMD_DNS)
1823 case DNS:
1824 if (NetOurDNSIP == 0) {
1825 puts("*** ERROR: DNS server address not given\n");
1826 return 1;
1827 }
1828 goto common;
1829#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001830#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001831 case NFS:
1832#endif
Simon Glassd6c5f552011-10-24 18:00:02 +00001833 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001834 case TFTPPUT:
wdenk05939202004-04-18 17:39:38 +00001835 if (NetServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001836 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001837 return 1;
wdenk05939202004-04-18 17:39:38 +00001838 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001839#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1840 defined(CONFIG_CMD_DNS)
1841common:
wdenke6466f62003-06-05 19:27:42 +00001842#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001843 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001844
Simon Guinot00dceba2011-05-01 23:38:40 +00001845 case NETCONS:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001846 case TFTPSRV:
wdenk05939202004-04-18 17:39:38 +00001847 if (NetOurIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001848 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001849 return 1;
wdenk05939202004-04-18 17:39:38 +00001850 }
1851 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001852
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001853#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001854 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001855#endif
wdenk2d966952002-10-31 22:12:35 +00001856 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001857 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001858 case DHCP:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001859 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001860 extern int eth_get_dev_index(void);
1861 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001862
wdenk05939202004-04-18 17:39:38 +00001863 switch (num) {
1864 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001865 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001866 return 1;
wdenk05939202004-04-18 17:39:38 +00001867 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001868 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001869 break;
wdenk05939202004-04-18 17:39:38 +00001870 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001871 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001872 num);
1873 break;
wdenk05939202004-04-18 17:39:38 +00001874 }
wdenk2d966952002-10-31 22:12:35 +00001875
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001876 NetStartAgain();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001877 return 2;
wdenk05939202004-04-18 17:39:38 +00001878 }
1879 /* Fall through */
1880 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001881 return 0;
wdenk2d966952002-10-31 22:12:35 +00001882 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001883 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001884}
1885/**********************************************************************/
1886
1887int
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001888NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001889{
1890 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1891}
1892
1893
1894unsigned
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001895NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001896{
1897 ulong xsum;
Stefan Roeseac553282005-08-31 12:55:50 +02001898 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001899
1900 xsum = 0;
1901 while (len-- > 0)
Wolfgang Denk3135c542005-08-26 01:36:03 +02001902 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001903 xsum = (xsum & 0xffff) + (xsum >> 16);
1904 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001905 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001906}
1907
wdenk145d2c12004-04-15 21:48:45 +00001908int
1909NetEthHdrSize(void)
1910{
1911 ushort myvlanid;
1912
1913 myvlanid = ntohs(NetOurVLAN);
1914 if (myvlanid == (ushort)-1)
1915 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001916
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001917 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1918 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001919}
1920
1921int
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001922NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001923{
1924 Ethernet_t *et = (Ethernet_t *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001925 ushort myvlanid;
1926
1927 myvlanid = ntohs(NetOurVLAN);
1928 if (myvlanid == (ushort)-1)
1929 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001930
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001931 memcpy(et->et_dest, addr, 6);
1932 memcpy(et->et_src, NetOurEther, 6);
wdenk145d2c12004-04-15 21:48:45 +00001933 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001934 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001935 return ETHER_HDR_SIZE;
1936 } else {
1937 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001938
wdenk145d2c12004-04-15 21:48:45 +00001939 vet->vet_vlan_type = htons(PROT_VLAN);
1940 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1941 vet->vet_type = htons(prot);
1942 return VLAN_ETHER_HDR_SIZE;
1943 }
1944}
wdenk2d966952002-10-31 22:12:35 +00001945
1946void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001947NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001948{
Olav Morkene8a02772009-01-23 12:56:26 +01001949 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001950
1951 /*
1952 * If the data is an odd number of bytes, zero the
1953 * byte after the last byte so that the checksum
1954 * will work.
1955 */
1956 if (len & 1)
1957 xip[IP_HDR_SIZE + len] = 0;
1958
1959 /*
1960 * Construct an IP and UDP header.
wdenk05939202004-04-18 17:39:38 +00001961 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001962 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001963 /* IP_HDR_SIZE / 4 (not including UDP) */
1964 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001965 ip->ip_tos = 0;
1966 ip->ip_len = htons(IP_HDR_SIZE + len);
1967 ip->ip_id = htons(NetIPID++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001968 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001969 ip->ip_ttl = 255;
1970 ip->ip_p = 17; /* UDP */
1971 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001972 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001973 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001974 /* - "" - */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001975 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001976 ip->udp_src = htons(sport);
1977 ip->udp_dst = htons(dport);
1978 ip->udp_len = htons(8 + len);
1979 ip->udp_xsum = 0;
1980 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1981}
1982
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001983void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001984{
1985 if (*src && (*src == '"')) {
1986 ++src;
1987 --size;
1988 }
1989
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001990 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001991 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001992 *dst = '\0';
1993}
1994
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001995#if defined(CONFIG_CMD_NFS) || \
1996 defined(CONFIG_CMD_SNTP) || \
1997 defined(CONFIG_CMD_DNS)
Robin Getz82f0d232009-07-20 14:53:54 -04001998/*
Robin Getz55b50e92010-03-08 14:07:00 -05001999 * make port a little random (1024-17407)
2000 * This keeps the math somewhat trivial to compute, and seems to work with
2001 * all supported protocols/clients/servers
Robin Getz82f0d232009-07-20 14:53:54 -04002002 */
2003unsigned int random_port(void)
2004{
Robin Getz55b50e92010-03-08 14:07:00 -05002005 return 1024 + (get_timer(0) % 0x4000);
Robin Getz82f0d232009-07-20 14:53:54 -04002006}
2007#endif
2008
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00002009void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00002010{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00002011 x = ntohl(x);
2012 sprintf(s, "%d.%d.%d.%d",
2013 (int) ((x >> 24) & 0xff),
2014 (int) ((x >> 16) & 0xff),
2015 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00002016 );
wdenk2d966952002-10-31 22:12:35 +00002017}
2018
wdenk145d2c12004-04-15 21:48:45 +00002019void VLAN_to_string(ushort x, char *s)
2020{
2021 x = ntohs(x);
2022
2023 if (x == (ushort)-1)
2024 x = VLAN_NONE;
2025
2026 if (x == VLAN_NONE)
2027 strcpy(s, "none");
2028 else
2029 sprintf(s, "%d", x & VLAN_IDMASK);
2030}
2031
Mike Frysinger89c73922010-10-20 07:16:48 -04002032ushort string_to_VLAN(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00002033{
2034 ushort id;
2035
2036 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00002037 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00002038
2039 if (*s < '0' || *s > '9')
2040 id = VLAN_NONE;
2041 else
2042 id = (ushort)simple_strtoul(s, NULL, 10);
2043
wdenk656140b2004-04-25 13:18:40 +00002044 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00002045}
2046
wdenk145d2c12004-04-15 21:48:45 +00002047ushort getenv_VLAN(char *var)
2048{
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00002049 return string_to_VLAN(getenv(var));
wdenk145d2c12004-04-15 21:48:45 +00002050}