blob: 5e67886b6806d98b7fc000ae8c996d6dfe2003cd [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;
218/* Current timeout handler */
219static thand_f *timeHandler;
220/* Time base value */
221static ulong timeStart;
222/* Current timeout value */
223static ulong timeDelta;
224/* THE transmit packet */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000225volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000226
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000227static int net_check_prereq(proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000228
Remy Bohmer67b96e82009-10-28 22:13:39 +0100229static int NetTryCount;
230
wdenk2d966952002-10-31 22:12:35 +0000231/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000232
233IPaddr_t NetArpWaitPacketIP;
234IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000235/* MAC address of waiting packet's destination */
236uchar *NetArpWaitPacketMAC;
237/* THE transmit packet */
238uchar *NetArpWaitTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000239int NetArpWaitTxPacketSize;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200240uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenk73a8b272003-06-05 19:27:42 +0000241ulong NetArpWaitTimerStart;
242int NetArpWaitTry;
243
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000244void ArpRequest(void)
wdenk73a8b272003-06-05 19:27:42 +0000245{
246 int i;
247 volatile uchar *pkt;
wdenk6e592382004-04-18 17:39:38 +0000248 ARP_t *arp;
wdenk73a8b272003-06-05 19:27:42 +0000249
Robin Getz0ebf04c2009-07-23 03:01:03 -0400250 debug("ARP broadcast %d\n", NetArpWaitTry);
251
wdenk73a8b272003-06-05 19:27:42 +0000252 pkt = NetTxPacket;
253
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000254 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenk73a8b272003-06-05 19:27:42 +0000255
wdenk6e592382004-04-18 17:39:38 +0000256 arp = (ARP_t *) pkt;
wdenk73a8b272003-06-05 19:27:42 +0000257
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000258 arp->ar_hrd = htons(ARP_ETHER);
259 arp->ar_pro = htons(PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000260 arp->ar_hln = 6;
261 arp->ar_pln = 4;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000262 arp->ar_op = htons(ARPOP_REQUEST);
wdenk73a8b272003-06-05 19:27:42 +0000263
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000264 /* source ET addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000265 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000266 /* source IP addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000267 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
wdenk6e592382004-04-18 17:39:38 +0000268 for (i = 10; i < 16; ++i) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000269 /* dest ET addr = 0 */
270 arp->ar_data[i] = 0;
wdenk73a8b272003-06-05 19:27:42 +0000271 }
272
wdenk6e592382004-04-18 17:39:38 +0000273 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
274 (NetOurIP & NetOurSubnetMask)) {
275 if (NetOurGatewayIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000276 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denkd509b812006-03-12 01:13:30 +0100277 NetArpWaitReplyIP = NetArpWaitPacketIP;
278 } else {
279 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk6e592382004-04-18 17:39:38 +0000280 }
wdenk6e592382004-04-18 17:39:38 +0000281 } else {
282 NetArpWaitReplyIP = NetArpWaitPacketIP;
283 }
wdenk73a8b272003-06-05 19:27:42 +0000284
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000285 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
286 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenk73a8b272003-06-05 19:27:42 +0000287}
288
289void ArpTimeoutCheck(void)
290{
291 ulong t;
292
293 if (!NetArpWaitPacketIP)
294 return;
295
296 t = get_timer(0);
297
298 /* check for arp timeout */
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200299 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenk73a8b272003-06-05 19:27:42 +0000300 NetArpWaitTry++;
301
302 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000303 puts("\nARP Retry count exceeded; starting again\n");
wdenk73a8b272003-06-05 19:27:42 +0000304 NetArpWaitTry = 0;
305 NetStartAgain();
306 } else {
307 NetArpWaitTimerStart = t;
308 ArpRequest();
309 }
310 }
311}
312
Heiko Schocherda954272009-04-28 08:36:11 +0200313static void
Heiko Schocher2f70c492009-02-10 09:38:52 +0100314NetInitLoop(proto_t protocol)
315{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000316 static int env_changed_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100317 bd_t *bd = gd->bd;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000318 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100319
320 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300321 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000322 NetOurIP = getenv_IPaddr("ipaddr");
323 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000324 NetOurGatewayIP = getenv_IPaddr("gatewayip");
325 NetOurSubnetMask = getenv_IPaddr("netmask");
326 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100327 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300328 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400329#if defined(CONFIG_CMD_DNS)
330 NetOurDNSIP = getenv_IPaddr("dnsip");
331#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300332 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100333 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300334
Heiko Schocherda954272009-04-28 08:36:11 +0200335 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100336}
337
wdenk73a8b272003-06-05 19:27:42 +0000338/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000339/*
340 * Main network processing loop.
341 */
342
343int
344NetLoop(proto_t protocol)
345{
wdenk2d966952002-10-31 22:12:35 +0000346 bd_t *bd = gd->bd;
347
wdenk2d966952002-10-31 22:12:35 +0000348 NetRestarted = 0;
349 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000350
wdenk73a8b272003-06-05 19:27:42 +0000351 /* XXX problem with bss workaround */
352 NetArpWaitPacketMAC = NULL;
353 NetArpWaitTxPacket = NULL;
354 NetArpWaitPacketIP = 0;
355 NetArpWaitReplyIP = 0;
356 NetArpWaitTxPacket = NULL;
357 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100358 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000359
wdenk2d966952002-10-31 22:12:35 +0000360 if (!NetTxPacket) {
361 int i;
wdenk2d966952002-10-31 22:12:35 +0000362 /*
363 * Setup packet buffers, aligned correctly.
364 */
365 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
366 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000367 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000368 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000369 }
370
371 if (!NetArpWaitTxPacket) {
372 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
373 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
374 NetArpWaitTxPacketSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000375 }
376
377 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000378 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000379 if (eth_init(bd) < 0) {
380 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000381 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000382 }
wdenk2d966952002-10-31 22:12:35 +0000383
384restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000385 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000386
387 NetState = NETLOOP_CONTINUE;
388
389 /*
390 * Start the ball rolling with the given start function. From
391 * here on, this code is a state machine driven by received
392 * packets and timer events.
393 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100394 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000395
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000396 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000397 case 1:
398 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000399 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000400 return -1;
wdenk2d966952002-10-31 22:12:35 +0000401
wdenk2d966952002-10-31 22:12:35 +0000402 case 2:
403 /* network device not configured */
404 break;
wdenk2d966952002-10-31 22:12:35 +0000405
406 case 0:
wdenk2d966952002-10-31 22:12:35 +0000407 NetDevExists = 1;
wdenk2d966952002-10-31 22:12:35 +0000408 switch (protocol) {
409 case TFTP:
410 /* always use ARP to get server ethernet address */
wdenk73a8b272003-06-05 19:27:42 +0000411 TftpStart();
wdenk2d966952002-10-31 22:12:35 +0000412 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000413#ifdef CONFIG_CMD_TFTPSRV
414 case TFTPSRV:
415 TftpStartServer();
416 break;
417#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500418#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000419 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000420 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300421 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000422 DhcpRequest(); /* Basically same as BOOTP */
423 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500424#endif
wdenk2d966952002-10-31 22:12:35 +0000425
426 case BOOTP:
427 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300428 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000429 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000430 break;
431
Peter Tyserbf6cb242010-09-30 11:25:48 -0500432#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000433 case RARP:
434 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300435 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000436 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000437 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500438#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500439#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000440 case PING:
441 PingStart();
442 break;
443#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500444#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000445 case NFS:
446 NfsStart();
447 break;
448#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500449#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000450 case CDP:
451 CDPStart();
452 break;
453#endif
wdenk68ceb292004-08-02 21:11:11 +0000454#ifdef CONFIG_NETCONSOLE
455 case NETCONS:
456 NcStart();
457 break;
458#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500459#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000460 case SNTP:
461 SntpStart();
462 break;
463#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400464#if defined(CONFIG_CMD_DNS)
465 case DNS:
466 DnsStart();
467 break;
468#endif
wdenk2d966952002-10-31 22:12:35 +0000469 default:
470 break;
471 }
472
473 NetBootFileXferSize = 0;
474 break;
475 }
476
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500477#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000478#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
479 defined(CONFIG_STATUS_LED) && \
480 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000481 /*
wdenk42d1f032003-10-15 23:53:47 +0000482 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000483 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000484 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000485 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000486 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000487 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200488#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000489#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000490
491 /*
492 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000493 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000494 */
495 for (;;) {
496 WATCHDOG_RESET();
497#ifdef CONFIG_SHOW_ACTIVITY
498 {
499 extern void show_activity(int arg);
500 show_activity(1);
501 }
502#endif
503 /*
504 * Check the ethernet for a new packet. The ethernet
505 * receive routine will process it.
506 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200507 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000508
509 /*
510 * Abort if ctrl-c was pressed.
511 */
512 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000513 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000514 puts("\nAbort\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +0000515 return -1;
wdenk2d966952002-10-31 22:12:35 +0000516 }
517
wdenk73a8b272003-06-05 19:27:42 +0000518 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000519
520 /*
521 * Check for a timeout, and run the timeout handler
522 * if we have one.
523 */
wdenke0ac62d2003-08-17 18:55:18 +0000524 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000525 thand_f *x;
526
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500527#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000528#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
529 defined(CONFIG_STATUS_LED) && \
530 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000531 /*
wdenk42d1f032003-10-15 23:53:47 +0000532 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000533 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000534 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000535 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000536 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000537 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000538 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000539 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000540#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000541#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000542 x = timeHandler;
543 timeHandler = (thand_f *)0;
544 (*x)();
545 }
546
547
548 switch (NetState) {
549
550 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000551 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000552 goto restart;
553
554 case NETLOOP_SUCCESS:
555 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200556 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000557 printf("Bytes transferred = %ld (%lx hex)\n",
558 NetBootFileXferSize,
559 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200560 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000561 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000562
563 sprintf(buf, "%lX", (unsigned long)load_addr);
564 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000565 }
566 eth_halt();
567 return NetBootFileXferSize;
568
569 case NETLOOP_FAIL:
Luca Ceresoli92895de2011-05-04 02:40:45 +0000570 return -1;
wdenk2d966952002-10-31 22:12:35 +0000571 }
572 }
573}
574
575/**********************************************************************/
576
577static void
578startAgainTimeout(void)
579{
580 NetState = NETLOOP_RESTART;
581}
582
583static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000584startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
585 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000586{
587 /* Totally ignore the packet */
588}
589
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000590void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000591{
wdenk6e592382004-04-18 17:39:38 +0000592 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100593 int retry_forever = 0;
594 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000595
Remy Bohmer67b96e82009-10-28 22:13:39 +0100596 nretry = getenv("netretry");
597 if (nretry) {
598 if (!strcmp(nretry, "yes"))
599 retry_forever = 1;
600 else if (!strcmp(nretry, "no"))
601 retrycnt = 0;
602 else if (!strcmp(nretry, "once"))
603 retrycnt = 1;
604 else
605 retrycnt = simple_strtoul(nretry, NULL, 0);
606 } else
607 retry_forever = 1;
608
609 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
610 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000611 NetState = NETLOOP_FAIL;
612 return;
613 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100614
615 NetTryCount++;
616
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000617 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100618#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000619 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100620#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000621 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000622 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000623 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100624 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000625 NetSetTimeout(10000UL, startAgainTimeout);
626 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000627 } else {
wdenk2d966952002-10-31 22:12:35 +0000628 NetState = NETLOOP_FAIL;
629 }
wdenk6e592382004-04-18 17:39:38 +0000630 } else {
wdenk2d966952002-10-31 22:12:35 +0000631 NetState = NETLOOP_RESTART;
632 }
wdenk2d966952002-10-31 22:12:35 +0000633}
634
635/**********************************************************************/
636/*
637 * Miscelaneous bits.
638 */
639
640void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000641NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000642{
643 packetHandler = f;
644}
645
646
647void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000648NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000649{
650 if (iv == 0) {
651 timeHandler = (thand_f *)0;
652 } else {
653 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000654 timeStart = get_timer(0);
655 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000656 }
657}
658
659
660void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000661NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000662{
663 (void) eth_send(pkt, len);
664}
665
wdenk73a8b272003-06-05 19:27:42 +0000666int
667NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
668{
wdenka3d991b2004-04-15 21:48:45 +0000669 uchar *pkt;
670
wdenk73a8b272003-06-05 19:27:42 +0000671 /* convert to new style broadcast */
672 if (dest == 0)
673 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000674
wdenk73a8b272003-06-05 19:27:42 +0000675 /* if broadcast, make the ether address a broadcast and don't do ARP */
676 if (dest == 0xFFFFFFFF)
677 ether = NetBcastAddr;
678
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000679 /*
680 * if MAC address was not discovered yet, save the packet and do
681 * an ARP request
682 */
wdenk73a8b272003-06-05 19:27:42 +0000683 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
684
Robin Getz0ebf04c2009-07-23 03:01:03 -0400685 debug("sending ARP for %08lx\n", dest);
686
wdenk73a8b272003-06-05 19:27:42 +0000687 NetArpWaitPacketIP = dest;
688 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000689
690 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000691 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000692
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000693 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000694 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
695 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000696
697 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000698 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
699 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000700
701 /* and do the ARP request */
702 NetArpWaitTry = 1;
703 NetArpWaitTimerStart = get_timer(0);
704 ArpRequest();
705 return 1; /* waiting */
706 }
707
Robin Getz0ebf04c2009-07-23 03:01:03 -0400708 debug("sending UDP to %08lx/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000709
wdenka3d991b2004-04-15 21:48:45 +0000710 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000711 pkt += NetSetEther(pkt, ether, PROT_IP);
712 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000713 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000714
wdenk6e592382004-04-18 17:39:38 +0000715 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000716}
717
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500718#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000719static ushort PingSeqNo;
720
721int PingSend(void)
722{
723 static uchar mac[6];
724 volatile IP_t *ip;
725 volatile ushort *s;
wdenka3d991b2004-04-15 21:48:45 +0000726 uchar *pkt;
wdenk73a8b272003-06-05 19:27:42 +0000727
728 /* XXX always send arp request */
729
730 memcpy(mac, NetEtherNullAddr, 6);
731
Robin Getz0ebf04c2009-07-23 03:01:03 -0400732 debug("sending ARP for %08lx\n", NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000733
734 NetArpWaitPacketIP = NetPingIP;
735 NetArpWaitPacketMAC = mac;
736
wdenka3d991b2004-04-15 21:48:45 +0000737 pkt = NetArpWaitTxPacket;
738 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000739
wdenka3d991b2004-04-15 21:48:45 +0000740 ip = (volatile IP_t *)pkt;
wdenk73a8b272003-06-05 19:27:42 +0000741
742 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000743 * Construct an IP and ICMP header.
744 * (need to set no fragment bit - XXX)
wdenk73a8b272003-06-05 19:27:42 +0000745 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000746 /* IP_HDR_SIZE / 4 (not including UDP) */
747 ip->ip_hl_v = 0x45;
wdenk73a8b272003-06-05 19:27:42 +0000748 ip->ip_tos = 0;
749 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
750 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -0600751 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk73a8b272003-06-05 19:27:42 +0000752 ip->ip_ttl = 255;
753 ip->ip_p = 0x01; /* ICMP */
754 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000755 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000756 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000757 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000758 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000759 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
760
761 s = &ip->udp_src; /* XXX ICMP starts here */
762 s[0] = htons(0x0800); /* echo-request, code */
763 s[1] = 0; /* checksum */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200764 s[2] = 0; /* identifier */
wdenk73a8b272003-06-05 19:27:42 +0000765 s[3] = htons(PingSeqNo++); /* sequence number */
766 s[1] = ~NetCksum((uchar *)s, 8/2);
767
768 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000769 NetArpWaitTxPacketSize =
770 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenk73a8b272003-06-05 19:27:42 +0000771
772 /* and do the ARP request */
773 NetArpWaitTry = 1;
774 NetArpWaitTimerStart = get_timer(0);
775 ArpRequest();
776 return 1; /* waiting */
777}
778
779static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000780PingTimeout(void)
wdenk73a8b272003-06-05 19:27:42 +0000781{
782 eth_halt();
783 NetState = NETLOOP_FAIL; /* we did not get the reply */
784}
785
786static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000787PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
788 unsigned len)
wdenk73a8b272003-06-05 19:27:42 +0000789{
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000790 if (sip != NetPingIP)
wdenk73a8b272003-06-05 19:27:42 +0000791 return;
792
793 NetState = NETLOOP_SUCCESS;
794}
795
796static void PingStart(void)
797{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000798 printf("Using %s device\n", eth_get_name());
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000799 NetSetTimeout(10000UL, PingTimeout);
800 NetSetHandler(PingHandler);
wdenk73a8b272003-06-05 19:27:42 +0000801
802 PingSend();
803}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500804#endif
wdenk2d966952002-10-31 22:12:35 +0000805
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500806#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000807
808#define CDP_DEVICE_ID_TLV 0x0001
809#define CDP_ADDRESS_TLV 0x0002
810#define CDP_PORT_ID_TLV 0x0003
811#define CDP_CAPABILITIES_TLV 0x0004
812#define CDP_VERSION_TLV 0x0005
813#define CDP_PLATFORM_TLV 0x0006
814#define CDP_NATIVE_VLAN_TLV 0x000a
815#define CDP_APPLIANCE_VLAN_TLV 0x000e
816#define CDP_TRIGGER_TLV 0x000f
817#define CDP_POWER_CONSUMPTION_TLV 0x0010
818#define CDP_SYSNAME_TLV 0x0014
819#define CDP_SYSOBJECT_TLV 0x0015
820#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
821
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200822#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenka3d991b2004-04-15 21:48:45 +0000823
824static int CDPSeq;
825static int CDPOK;
826
827ushort CDPNativeVLAN;
828ushort CDPApplianceVLAN;
829
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000830static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
831 0x00 };
wdenka3d991b2004-04-15 21:48:45 +0000832
833static ushort CDP_compute_csum(const uchar *buff, ushort len)
834{
835 ushort csum;
836 int odd;
837 ulong result = 0;
838 ushort leftover;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200839 ushort *p;
wdenka3d991b2004-04-15 21:48:45 +0000840
841 if (len > 0) {
842 odd = 1 & (ulong)buff;
843 if (odd) {
844 result = *buff << 8;
845 len--;
846 buff++;
847 }
848 while (len > 1) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200849 p = (ushort *)buff;
850 result += *p++;
851 buff = (uchar *)p;
wdenka3d991b2004-04-15 21:48:45 +0000852 if (result & 0x80000000)
853 result = (result & 0xFFFF) + (result >> 16);
854 len -= 2;
855 }
856 if (len) {
857 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denk3ada8342005-11-10 20:59:46 +0100858 /* CISCO SUCKS big time! (and blows too):
859 * CDP uses the IP checksum algorithm with a twist;
860 * for the last byte it *sign* extends and sums.
861 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000862 result = (result & 0xffff0000) |
863 ((result + leftover) & 0x0000ffff);
wdenka3d991b2004-04-15 21:48:45 +0000864 }
865 while (result >> 16)
866 result = (result & 0xFFFF) + (result >> 16);
867
868 if (odd)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000869 result = ((result >> 8) & 0xff) |
870 ((result & 0xff) << 8);
wdenka3d991b2004-04-15 21:48:45 +0000871 }
872
873 /* add up 16-bit and 17-bit words for 17+c bits */
874 result = (result & 0xffff) + (result >> 16);
875 /* add up 16-bit and 2-bit for 16+c bit */
876 result = (result & 0xffff) + (result >> 16);
877 /* add up carry.. */
878 result = (result & 0xffff) + (result >> 16);
879
880 /* negate */
881 csum = ~(ushort)result;
882
883 /* run time endian detection */
884 if (csum != htons(csum)) /* little endian */
885 csum = htons(csum);
886
887 return csum;
888}
889
890int CDPSendTrigger(void)
891{
892 volatile uchar *pkt;
893 volatile ushort *s;
894 volatile ushort *cp;
895 Ethernet_t *et;
wdenka3d991b2004-04-15 21:48:45 +0000896 int len;
897 ushort chksum;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000898#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
899 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk6e592382004-04-18 17:39:38 +0000900 char buf[32];
901#endif
wdenka3d991b2004-04-15 21:48:45 +0000902
903 pkt = NetTxPacket;
904 et = (Ethernet_t *)pkt;
905
906 /* NOTE: trigger sent not on any VLAN */
907
908 /* form ethernet header */
909 memcpy(et->et_dest, NetCDPAddr, 6);
910 memcpy(et->et_src, NetOurEther, 6);
911
912 pkt += ETHER_HDR_SIZE;
913
914 /* SNAP header */
915 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
916 pkt += sizeof(CDP_SNAP_hdr);
917
918 /* CDP header */
919 *pkt++ = 0x02; /* CDP version 2 */
920 *pkt++ = 180; /* TTL */
921 s = (volatile ushort *)pkt;
922 cp = s;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000923 /* checksum (0 for later calculation) */
924 *s++ = htons(0);
wdenka3d991b2004-04-15 21:48:45 +0000925
926 /* CDP fields */
927#ifdef CONFIG_CDP_DEVICE_ID
928 *s++ = htons(CDP_DEVICE_ID_TLV);
929 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger95823ca2009-02-11 18:23:48 -0500930 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenka3d991b2004-04-15 21:48:45 +0000931 memcpy((uchar *)s, buf, 16);
932 s += 16 / 2;
933#endif
934
935#ifdef CONFIG_CDP_PORT_ID
936 *s++ = htons(CDP_PORT_ID_TLV);
937 memset(buf, 0, sizeof(buf));
938 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
939 len = strlen(buf);
940 if (len & 1) /* make it even */
941 len++;
942 *s++ = htons(len + 4);
943 memcpy((uchar *)s, buf, len);
944 s += len / 2;
945#endif
946
947#ifdef CONFIG_CDP_CAPABILITIES
948 *s++ = htons(CDP_CAPABILITIES_TLV);
949 *s++ = htons(8);
950 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
951 s += 2;
952#endif
953
954#ifdef CONFIG_CDP_VERSION
955 *s++ = htons(CDP_VERSION_TLV);
956 memset(buf, 0, sizeof(buf));
957 strcpy(buf, CONFIG_CDP_VERSION);
958 len = strlen(buf);
959 if (len & 1) /* make it even */
960 len++;
961 *s++ = htons(len + 4);
962 memcpy((uchar *)s, buf, len);
963 s += len / 2;
964#endif
965
966#ifdef CONFIG_CDP_PLATFORM
967 *s++ = htons(CDP_PLATFORM_TLV);
968 memset(buf, 0, sizeof(buf));
969 strcpy(buf, CONFIG_CDP_PLATFORM);
970 len = strlen(buf);
971 if (len & 1) /* make it even */
972 len++;
973 *s++ = htons(len + 4);
974 memcpy((uchar *)s, buf, len);
975 s += len / 2;
976#endif
977
978#ifdef CONFIG_CDP_TRIGGER
979 *s++ = htons(CDP_TRIGGER_TLV);
980 *s++ = htons(8);
981 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
982 s += 2;
983#endif
984
985#ifdef CONFIG_CDP_POWER_CONSUMPTION
986 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
987 *s++ = htons(6);
988 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
989#endif
990
991 /* length of ethernet packet */
992 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
993 et->et_protlen = htons(len);
994
995 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000996 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
997 (uchar *)s - (NetTxPacket + len));
wdenka3d991b2004-04-15 21:48:45 +0000998 if (chksum == 0)
999 chksum = 0xFFFF;
1000 *cp = htons(chksum);
1001
1002 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1003 return 0;
1004}
1005
1006static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001007CDPTimeout(void)
wdenka3d991b2004-04-15 21:48:45 +00001008{
1009 CDPSeq++;
1010
1011 if (CDPSeq < 3) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001012 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenka3d991b2004-04-15 21:48:45 +00001013 CDPSendTrigger();
1014 return;
1015 }
1016
1017 /* if not OK try again */
1018 if (!CDPOK)
1019 NetStartAgain();
1020 else
1021 NetState = NETLOOP_SUCCESS;
1022}
1023
1024static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001025CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1026 unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001027{
1028 /* nothing */
1029}
1030
1031static void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001032CDPHandler(const uchar *pkt, unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001033{
1034 const uchar *t;
1035 const ushort *ss;
1036 ushort type, tlen;
1037 uchar applid;
1038 ushort vlan, nvlan;
1039
1040 /* minimum size? */
1041 if (len < sizeof(CDP_SNAP_hdr) + 4)
1042 goto pkt_short;
1043
1044 /* check for valid CDP SNAP header */
1045 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1046 return;
1047
1048 pkt += sizeof(CDP_SNAP_hdr);
1049 len -= sizeof(CDP_SNAP_hdr);
1050
1051 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1052 if (pkt[0] < 0x02 || pkt[1] == 0)
1053 return;
1054
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001055 /*
1056 * if version is greater than 0x02 maybe we'll have a problem;
1057 * output a warning
1058 */
wdenka3d991b2004-04-15 21:48:45 +00001059 if (pkt[0] != 0x02)
1060 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1061 pkt[0] & 0xff);
1062
1063 if (CDP_compute_csum(pkt, len) != 0)
1064 return;
1065
1066 pkt += 4;
1067 len -= 4;
1068
1069 vlan = htons(-1);
1070 nvlan = htons(-1);
1071 while (len > 0) {
1072 if (len < 4)
1073 goto pkt_short;
1074
1075 ss = (const ushort *)pkt;
1076 type = ntohs(ss[0]);
1077 tlen = ntohs(ss[1]);
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001078 if (tlen > len)
wdenka3d991b2004-04-15 21:48:45 +00001079 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001080
1081 pkt += tlen;
1082 len -= tlen;
1083
1084 ss += 2; /* point ss to the data of the TLV */
1085 tlen -= 4;
1086
1087 switch (type) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001088 case CDP_DEVICE_ID_TLV:
1089 break;
1090 case CDP_ADDRESS_TLV:
1091 break;
1092 case CDP_PORT_ID_TLV:
1093 break;
1094 case CDP_CAPABILITIES_TLV:
1095 break;
1096 case CDP_VERSION_TLV:
1097 break;
1098 case CDP_PLATFORM_TLV:
1099 break;
1100 case CDP_NATIVE_VLAN_TLV:
1101 nvlan = *ss;
1102 break;
1103 case CDP_APPLIANCE_VLAN_TLV:
1104 t = (const uchar *)ss;
1105 while (tlen > 0) {
1106 if (tlen < 3)
1107 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001108
Luca Ceresolic819abe2011-05-04 02:40:46 +00001109 applid = t[0];
1110 ss = (const ushort *)(t + 1);
wdenka3d991b2004-04-15 21:48:45 +00001111
1112#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Luca Ceresolic819abe2011-05-04 02:40:46 +00001113 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1114 vlan = *ss;
wdenka3d991b2004-04-15 21:48:45 +00001115#else
Luca Ceresolic819abe2011-05-04 02:40:46 +00001116 /* XXX will this work; dunno */
1117 vlan = ntohs(*ss);
wdenka3d991b2004-04-15 21:48:45 +00001118#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001119 t += 3; tlen -= 3;
1120 }
1121 break;
1122 case CDP_TRIGGER_TLV:
1123 break;
1124 case CDP_POWER_CONSUMPTION_TLV:
1125 break;
1126 case CDP_SYSNAME_TLV:
1127 break;
1128 case CDP_SYSOBJECT_TLV:
1129 break;
1130 case CDP_MANAGEMENT_ADDRESS_TLV:
1131 break;
wdenka3d991b2004-04-15 21:48:45 +00001132 }
1133 }
1134
1135 CDPApplianceVLAN = vlan;
1136 CDPNativeVLAN = nvlan;
1137
1138 CDPOK = 1;
1139 return;
1140
1141 pkt_short:
1142 printf("** CDP packet is too short\n");
1143 return;
1144}
1145
1146static void CDPStart(void)
1147{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001148 printf("Using %s device\n", eth_get_name());
wdenka3d991b2004-04-15 21:48:45 +00001149 CDPSeq = 0;
1150 CDPOK = 0;
1151
1152 CDPNativeVLAN = htons(-1);
1153 CDPApplianceVLAN = htons(-1);
1154
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001155 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1156 NetSetHandler(CDPDummyHandler);
wdenka3d991b2004-04-15 21:48:45 +00001157
1158 CDPSendTrigger();
1159}
Jon Loeliger610f2e92007-07-10 11:05:02 -05001160#endif
wdenka3d991b2004-04-15 21:48:45 +00001161
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001162#ifdef CONFIG_IP_DEFRAG
1163/*
1164 * This function collects fragments in a single packet, according
1165 * to the algorithm in RFC815. It returns NULL or the pointer to
1166 * a complete packet, in static storage
1167 */
1168#ifndef CONFIG_NET_MAXDEFRAG
1169#define CONFIG_NET_MAXDEFRAG 16384
1170#endif
1171/*
1172 * MAXDEFRAG, above, is chosen in the config file and is real data
1173 * so we need to add the NFS overhead, which is more than TFTP.
1174 * To use sizeof in the internal unnamed structures, we need a real
1175 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1176 * The compiler doesn't complain nor allocates the actual structure
1177 */
1178static struct rpc_t rpc_specimen;
1179#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1180
1181#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1182
1183/*
1184 * this is the packet being assembled, either data or frag control.
1185 * Fragments go by 8 bytes, so this union must be 8 bytes long
1186 */
1187struct hole {
1188 /* first_byte is address of this structure */
1189 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1190 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1191 u16 prev_hole; /* index of prev, 0 == none */
1192 u16 unused;
1193};
1194
1195static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1196{
1197 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1198 static u16 first_hole, total_len;
1199 struct hole *payload, *thisfrag, *h, *newh;
1200 IP_t *localip = (IP_t *)pkt_buff;
1201 uchar *indata = (uchar *)ip;
1202 int offset8, start, len, done = 0;
1203 u16 ip_off = ntohs(ip->ip_off);
1204
1205 /* payload starts after IP header, this fragment is in there */
1206 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1207 offset8 = (ip_off & IP_OFFS);
1208 thisfrag = payload + offset8;
1209 start = offset8 * 8;
1210 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1211
1212 if (start + len > IP_MAXUDP) /* fragment extends too far */
1213 return NULL;
1214
1215 if (!total_len || localip->ip_id != ip->ip_id) {
1216 /* new (or different) packet, reset structs */
1217 total_len = 0xffff;
1218 payload[0].last_byte = ~0;
1219 payload[0].next_hole = 0;
1220 payload[0].prev_hole = 0;
1221 first_hole = 0;
1222 /* any IP header will work, copy the first we received */
1223 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1224 }
1225
1226 /*
1227 * What follows is the reassembly algorithm. We use the payload
1228 * array as a linked list of hole descriptors, as each hole starts
1229 * at a multiple of 8 bytes. However, last byte can be whatever value,
1230 * so it is represented as byte count, not as 8-byte blocks.
1231 */
1232
1233 h = payload + first_hole;
1234 while (h->last_byte < start) {
1235 if (!h->next_hole) {
1236 /* no hole that far away */
1237 return NULL;
1238 }
1239 h = payload + h->next_hole;
1240 }
1241
Fillod Stephanee397e592010-06-11 19:26:43 +02001242 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1243 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001244 /* no overlap with holes (dup fragment?) */
1245 return NULL;
1246 }
1247
1248 if (!(ip_off & IP_FLAGS_MFRAG)) {
1249 /* no more fragmentss: truncate this (last) hole */
1250 total_len = start + len;
1251 h->last_byte = start + len;
1252 }
1253
1254 /*
1255 * There is some overlap: fix the hole list. This code doesn't
1256 * deal with a fragment that overlaps with two different holes
1257 * (thus being a superset of a previously-received fragment).
1258 */
1259
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001260 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001261 /* complete overlap with hole: remove hole */
1262 if (!h->prev_hole && !h->next_hole) {
1263 /* last remaining hole */
1264 done = 1;
1265 } else if (!h->prev_hole) {
1266 /* first hole */
1267 first_hole = h->next_hole;
1268 payload[h->next_hole].prev_hole = 0;
1269 } else if (!h->next_hole) {
1270 /* last hole */
1271 payload[h->prev_hole].next_hole = 0;
1272 } else {
1273 /* in the middle of the list */
1274 payload[h->next_hole].prev_hole = h->prev_hole;
1275 payload[h->prev_hole].next_hole = h->next_hole;
1276 }
1277
1278 } else if (h->last_byte <= start + len) {
1279 /* overlaps with final part of the hole: shorten this hole */
1280 h->last_byte = start;
1281
1282 } else if (h >= thisfrag) {
1283 /* overlaps with initial part of the hole: move this hole */
1284 newh = thisfrag + (len / 8);
1285 *newh = *h;
1286 h = newh;
1287 if (h->next_hole)
1288 payload[h->next_hole].prev_hole = (h - payload);
1289 if (h->prev_hole)
1290 payload[h->prev_hole].next_hole = (h - payload);
1291 else
1292 first_hole = (h - payload);
1293
1294 } else {
1295 /* fragment sits in the middle: split the hole */
1296 newh = thisfrag + (len / 8);
1297 *newh = *h;
1298 h->last_byte = start;
1299 h->next_hole = (newh - payload);
1300 newh->prev_hole = (h - payload);
1301 if (newh->next_hole)
1302 payload[newh->next_hole].prev_hole = (newh - payload);
1303 }
1304
1305 /* finally copy this fragment and possibly return whole packet */
1306 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1307 if (!done)
1308 return NULL;
1309
1310 localip->ip_len = htons(total_len);
1311 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1312 return localip;
1313}
1314
1315static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1316{
1317 u16 ip_off = ntohs(ip->ip_off);
1318 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1319 return ip; /* not a fragment */
1320 return __NetDefragment(ip, lenp);
1321}
1322
1323#else /* !CONFIG_IP_DEFRAG */
1324
1325static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1326{
1327 u16 ip_off = ntohs(ip->ip_off);
1328 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1329 return ip; /* not a fragment */
1330 return NULL;
1331}
1332#endif
wdenka3d991b2004-04-15 21:48:45 +00001333
wdenk2d966952002-10-31 22:12:35 +00001334void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001335NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001336{
1337 Ethernet_t *et;
1338 IP_t *ip;
1339 ARP_t *arp;
1340 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001341 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001342 int x;
wdenka3d991b2004-04-15 21:48:45 +00001343 uchar *pkt;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001344#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001345 int iscdp;
1346#endif
1347 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001348
Robin Getz0ebf04c2009-07-23 03:01:03 -04001349 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001350
Mike Frysingerd9bec9f2009-07-18 21:04:08 -04001351 NetRxPacket = inpkt;
1352 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +00001353 et = (Ethernet_t *)inpkt;
1354
1355 /* too small packet? */
1356 if (len < ETHER_HDR_SIZE)
1357 return;
1358
Rafal Jaworowskif85b6072007-12-27 18:19:02 +01001359#ifdef CONFIG_API
1360 if (push_packet) {
1361 (*push_packet)(inpkt, len);
1362 return;
1363 }
1364#endif
1365
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001366#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001367 /* keep track if packet is CDP */
1368 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1369#endif
1370
1371 myvlanid = ntohs(NetOurVLAN);
1372 if (myvlanid == (ushort)-1)
1373 myvlanid = VLAN_NONE;
1374 mynvlanid = ntohs(NetOurNativeVLAN);
1375 if (mynvlanid == (ushort)-1)
1376 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001377
1378 x = ntohs(et->et_protlen);
1379
Robin Getz0ebf04c2009-07-23 03:01:03 -04001380 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001381
wdenk2d966952002-10-31 22:12:35 +00001382 if (x < 1514) {
1383 /*
1384 * Got a 802 packet. Check the other protocol field.
1385 */
1386 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +00001387
1388 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001389 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001390
1391 } else if (x != PROT_VLAN) { /* normal packet */
1392 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001393 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001394
1395 } else { /* VLAN packet */
1396 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1397
Robin Getz0ebf04c2009-07-23 03:01:03 -04001398 debug("VLAN packet received\n");
1399
wdenka3d991b2004-04-15 21:48:45 +00001400 /* too small packet? */
1401 if (len < VLAN_ETHER_HDR_SIZE)
1402 return;
1403
1404 /* if no VLAN active */
1405 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001406#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001407 && iscdp == 0
1408#endif
1409 )
1410 return;
1411
1412 cti = ntohs(vet->vet_tag);
1413 vlanid = cti & VLAN_IDMASK;
1414 x = ntohs(vet->vet_type);
1415
1416 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1417 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001418 }
1419
Robin Getz0ebf04c2009-07-23 03:01:03 -04001420 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001421
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001422#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001423 if (iscdp) {
1424 CDPHandler((uchar *)ip, len);
1425 return;
1426 }
1427#endif
1428
1429 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1430 if (vlanid == VLAN_NONE)
1431 vlanid = (mynvlanid & VLAN_IDMASK);
1432 /* not matched? */
1433 if (vlanid != (myvlanid & VLAN_IDMASK))
1434 return;
1435 }
1436
wdenk2d966952002-10-31 22:12:35 +00001437 switch (x) {
1438
1439 case PROT_ARP:
1440 /*
1441 * We have to deal with two types of ARP packets:
wdenk8bde7f72003-06-27 21:31:46 +00001442 * - REQUEST packets will be answered by sending our
1443 * IP address - if we know it.
1444 * - REPLY packates are expected only after we asked
1445 * for the TFTP server's or the gateway's ethernet
1446 * address; so if we receive such a packet, we set
1447 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001448 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001449 debug("Got ARP\n");
1450
wdenk2d966952002-10-31 22:12:35 +00001451 arp = (ARP_t *)ip;
1452 if (len < ARP_HDR_SIZE) {
1453 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1454 return;
1455 }
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001456 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001457 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001458 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001459 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001460 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001461 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001462 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001463 return;
wdenk2d966952002-10-31 22:12:35 +00001464
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001465 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001466 return;
wdenk2d966952002-10-31 22:12:35 +00001467
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001468 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001469 return;
wdenk2d966952002-10-31 22:12:35 +00001470
1471 switch (ntohs(arp->ar_op)) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001472 case ARPOP_REQUEST:
1473 /* reply with our IP address */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001474 debug("Got ARP REQUEST, return our IP\n");
wdenka3d991b2004-04-15 21:48:45 +00001475 pkt = (uchar *)et;
1476 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001477 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001478 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001479 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001480 memcpy(&arp->ar_data[0], NetOurEther, 6);
1481 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001482 (void) eth_send((uchar *)et,
1483 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001484 return;
wdenk73a8b272003-06-05 19:27:42 +00001485
1486 case ARPOP_REPLY: /* arp reply */
1487 /* are we waiting for a reply */
1488 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1489 break;
Robin Getz97cfe862009-07-21 12:15:28 -04001490
1491#ifdef CONFIG_KEEP_SERVERADDR
1492 if (NetServerIP == NetArpWaitPacketIP) {
1493 char buf[20];
1494 sprintf(buf, "%pM", arp->ar_data);
1495 setenv("serveraddr", buf);
1496 }
1497#endif
1498
Robin Getz0ebf04c2009-07-23 03:01:03 -04001499 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger95823ca2009-02-11 18:23:48 -05001500 arp->ar_data);
wdenk73a8b272003-06-05 19:27:42 +00001501
1502 tmp = NetReadIP(&arp->ar_data[6]);
1503
1504 /* matched waiting packet's address */
1505 if (tmp == NetArpWaitReplyIP) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001506 debug("Got it\n");
wdenk73a8b272003-06-05 19:27:42 +00001507 /* save address for later use */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001508 memcpy(NetArpWaitPacketMAC,
1509 &arp->ar_data[0], 6);
wdenk73a8b272003-06-05 19:27:42 +00001510
wdenk68ceb292004-08-02 21:11:11 +00001511#ifdef CONFIG_NETCONSOLE
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001512 (*packetHandler)(0, 0, 0, 0, 0);
wdenk68ceb292004-08-02 21:11:11 +00001513#endif
wdenk73a8b272003-06-05 19:27:42 +00001514 /* modify header, and transmit it */
1515 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001516 (void) eth_send(NetArpWaitTxPacket,
1517 NetArpWaitTxPacketSize);
wdenk73a8b272003-06-05 19:27:42 +00001518
1519 /* no arp request pending now */
1520 NetArpWaitPacketIP = 0;
1521 NetArpWaitTxPacketSize = 0;
1522 NetArpWaitPacketMAC = NULL;
1523
1524 }
wdenk2d966952002-10-31 22:12:35 +00001525 return;
1526 default:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001527 debug("Unexpected ARP opcode 0x%x\n",
1528 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001529 return;
1530 }
wdenk289f9322005-01-12 00:15:14 +00001531 break;
wdenk2d966952002-10-31 22:12:35 +00001532
Peter Tyserbf6cb242010-09-30 11:25:48 -05001533#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001534 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001535 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001536 arp = (ARP_t *)ip;
1537 if (len < ARP_HDR_SIZE) {
1538 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1539 return;
1540 }
1541
1542 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1543 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1544 (ntohs(arp->ar_pro) != PROT_IP) ||
1545 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1546
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001547 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001548 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001549 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +00001550 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001551 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1552 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001553
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001554 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001555 }
1556 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001557#endif
wdenk2d966952002-10-31 22:12:35 +00001558 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001559 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001560 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001561 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001562 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001563 return;
1564 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001565 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001566 if (len < ntohs(ip->ip_len)) {
1567 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1568 return;
1569 }
1570 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001571 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1572
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001573 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001574 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001575 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001576 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001577 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001578 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001579 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001580 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001581 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001582 return;
1583 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001584 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001585 tmp = NetReadIP(&ip->ip_dst);
1586 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001587#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001588 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001589#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001590 return;
wdenk2d966952002-10-31 22:12:35 +00001591 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001592 /* Read source IP address for later use */
1593 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001594 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001595 * The function returns the unchanged packet if it's not
1596 * a fragment, and either the complete packet or NULL if
1597 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1598 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001599 ip = NetDefragment(ip, &len);
1600 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001601 return;
1602 /*
wdenk2d966952002-10-31 22:12:35 +00001603 * watch for ICMP host redirects
1604 *
wdenk8bde7f72003-06-27 21:31:46 +00001605 * There is no real handler code (yet). We just watch
1606 * for ICMP host redirect messages. In case anybody
1607 * sees these messages: please contact me
1608 * (wd@denx.de), or - even better - send me the
1609 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001610 *
wdenk8bde7f72003-06-27 21:31:46 +00001611 * Note: in all cases where I have seen this so far
1612 * it was a problem with the router configuration,
1613 * for instance when a router was configured in the
1614 * BOOTP reply, but the TFTP server was on the same
1615 * subnet. So this is probably a warning that your
1616 * configuration might be wrong. But I'm not really
1617 * sure if there aren't any other situations.
wdenk2d966952002-10-31 22:12:35 +00001618 */
1619 if (ip->ip_p == IPPROTO_ICMP) {
1620 ICMP_t *icmph = (ICMP_t *)&(ip->udp_src);
1621
wdenk73a8b272003-06-05 19:27:42 +00001622 switch (icmph->type) {
1623 case ICMP_REDIRECT:
wdenk90dc6702005-05-03 14:12:25 +00001624 if (icmph->code != ICMP_REDIR_HOST)
1625 return;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001626 printf(" ICMP Host Redirect to %pI4 ",
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001627 &icmph->un.gateway);
Stefan Roese8534bf92005-08-12 20:06:52 +02001628 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001629#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001630 case ICMP_ECHO_REPLY:
1631 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001632 * IP header OK. Pass the packet to the
1633 * current handler.
wdenk73a8b272003-06-05 19:27:42 +00001634 */
1635 /* XXX point to ip packet */
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001636 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
Stefan Roese8534bf92005-08-12 20:06:52 +02001637 return;
Ed Swarthout83853172007-03-07 12:14:50 -06001638 case ICMP_ECHO_REQUEST:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001639 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001640 ETHER_HDR_SIZE + len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001641
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001642 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1643 memcpy(&et->et_src[0], NetOurEther, 6);
Ed Swarthout83853172007-03-07 12:14:50 -06001644
1645 ip->ip_sum = 0;
1646 ip->ip_off = 0;
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001647 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1648 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001649 ip->ip_sum = ~NetCksum((uchar *)ip,
1650 IP_HDR_SIZE_NO_UDP >> 1);
Ed Swarthout83853172007-03-07 12:14:50 -06001651
1652 icmph->type = ICMP_ECHO_REPLY;
1653 icmph->checksum = 0;
1654 icmph->checksum = ~NetCksum((uchar *)icmph,
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001655 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1656 (void) eth_send((uchar *)et,
1657 ETHER_HDR_SIZE + len);
Ed Swarthout83853172007-03-07 12:14:50 -06001658 return;
wdenk73a8b272003-06-05 19:27:42 +00001659#endif
1660 default:
1661 return;
1662 }
wdenk2d966952002-10-31 22:12:35 +00001663 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1664 return;
1665 }
1666
Stefan Roese8534bf92005-08-12 20:06:52 +02001667#ifdef CONFIG_UDP_CHECKSUM
1668 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001669 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001670 ushort *sumptr;
1671 ushort sumlen;
1672
1673 xsum = ip->ip_p;
1674 xsum += (ntohs(ip->udp_len));
1675 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1676 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1677 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1678 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1679
1680 sumlen = ntohs(ip->udp_len);
1681 sumptr = (ushort *) &(ip->udp_src);
1682
1683 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001684 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001685
1686 sumdata = *sumptr++;
1687 xsum += ntohs(sumdata);
1688 sumlen -= 2;
1689 }
1690 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001691 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001692
1693 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001694 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001695 xsum += sumdata;
1696 }
1697 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001698 xsum = (xsum & 0x0000ffff) +
1699 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001700 }
1701 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001702 printf(" UDP wrong checksum %08lx %08x\n",
1703 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001704 return;
1705 }
1706 }
1707#endif
1708
David Updegraff53a5c422007-06-11 10:41:07 -05001709
wdenk68ceb292004-08-02 21:11:11 +00001710#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001711 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001712 ntohs(ip->udp_dst),
1713 ntohs(ip->udp_src),
1714 ntohs(ip->udp_len) - 8);
1715#endif
wdenk2d966952002-10-31 22:12:35 +00001716 /*
1717 * IP header OK. Pass the packet to the current handler.
1718 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001719 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001720 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001721 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001722 ntohs(ip->udp_src),
1723 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001724 break;
1725 }
1726}
1727
1728
1729/**********************************************************************/
1730
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001731static int net_check_prereq(proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001732{
1733 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001734 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001735#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001736 case PING:
wdenk6e592382004-04-18 17:39:38 +00001737 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001738 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001739 return 1;
wdenk6e592382004-04-18 17:39:38 +00001740 }
1741 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001742#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001743#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001744 case SNTP:
1745 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001746 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001747 return 1;
wdenkea287de2005-04-01 00:25:43 +00001748 }
1749 goto common;
1750#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001751#if defined(CONFIG_CMD_DNS)
1752 case DNS:
1753 if (NetOurDNSIP == 0) {
1754 puts("*** ERROR: DNS server address not given\n");
1755 return 1;
1756 }
1757 goto common;
1758#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001759#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001760 case NFS:
1761#endif
wdenk2d966952002-10-31 22:12:35 +00001762 case TFTP:
wdenk6e592382004-04-18 17:39:38 +00001763 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001764 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001765 return 1;
wdenk6e592382004-04-18 17:39:38 +00001766 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001767#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1768 defined(CONFIG_CMD_DNS)
1769common:
wdenk73a8b272003-06-05 19:27:42 +00001770#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001771 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001772
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001773 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001774 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001775 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001776 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001777 return 1;
wdenk6e592382004-04-18 17:39:38 +00001778 }
1779 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001780
Peter Tyserbf6cb242010-09-30 11:25:48 -05001781#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001782 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001783#endif
wdenk2d966952002-10-31 22:12:35 +00001784 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001785 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001786 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001787 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001788 extern int eth_get_dev_index(void);
1789 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001790
wdenk6e592382004-04-18 17:39:38 +00001791 switch (num) {
1792 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001793 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001794 return 1;
wdenk6e592382004-04-18 17:39:38 +00001795 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001796 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001797 break;
wdenk6e592382004-04-18 17:39:38 +00001798 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001799 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001800 num);
1801 break;
wdenk2d966952002-10-31 22:12:35 +00001802 }
wdenk6e592382004-04-18 17:39:38 +00001803
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001804 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001805 return 2;
wdenk6e592382004-04-18 17:39:38 +00001806 }
1807 /* Fall through */
1808 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001809 return 0;
wdenk2d966952002-10-31 22:12:35 +00001810 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001811 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001812}
1813/**********************************************************************/
1814
1815int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001816NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001817{
1818 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1819}
1820
1821
1822unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001823NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001824{
1825 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001826 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001827
1828 xsum = 0;
1829 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001830 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001831 xsum = (xsum & 0xffff) + (xsum >> 16);
1832 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001833 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001834}
1835
wdenka3d991b2004-04-15 21:48:45 +00001836int
1837NetEthHdrSize(void)
1838{
1839 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001840
wdenka3d991b2004-04-15 21:48:45 +00001841 myvlanid = ntohs(NetOurVLAN);
1842 if (myvlanid == (ushort)-1)
1843 myvlanid = VLAN_NONE;
1844
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001845 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1846 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001847}
1848
1849int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001850NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001851{
1852 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001853 ushort myvlanid;
1854
1855 myvlanid = ntohs(NetOurVLAN);
1856 if (myvlanid == (ushort)-1)
1857 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001858
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001859 memcpy(et->et_dest, addr, 6);
1860 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001861 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001862 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001863 return ETHER_HDR_SIZE;
1864 } else {
1865 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001866
wdenka3d991b2004-04-15 21:48:45 +00001867 vet->vet_vlan_type = htons(PROT_VLAN);
1868 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1869 vet->vet_type = htons(prot);
1870 return VLAN_ETHER_HDR_SIZE;
1871 }
1872}
wdenk2d966952002-10-31 22:12:35 +00001873
1874void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001875NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001876{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001877 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001878
1879 /*
1880 * If the data is an odd number of bytes, zero the
1881 * byte after the last byte so that the checksum
1882 * will work.
1883 */
1884 if (len & 1)
1885 xip[IP_HDR_SIZE + len] = 0;
1886
1887 /*
1888 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001889 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001890 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001891 /* IP_HDR_SIZE / 4 (not including UDP) */
1892 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001893 ip->ip_tos = 0;
1894 ip->ip_len = htons(IP_HDR_SIZE + len);
1895 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001896 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001897 ip->ip_ttl = 255;
1898 ip->ip_p = 17; /* UDP */
1899 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001900 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001901 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001902 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001903 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001904 ip->udp_src = htons(sport);
1905 ip->udp_dst = htons(dport);
1906 ip->udp_len = htons(8 + len);
1907 ip->udp_xsum = 0;
1908 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1909}
1910
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001911void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001912{
1913 if (*src && (*src == '"')) {
1914 ++src;
1915 --size;
1916 }
1917
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001918 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001919 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001920 *dst = '\0';
1921}
1922
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001923#if defined(CONFIG_CMD_NFS) || \
1924 defined(CONFIG_CMD_SNTP) || \
1925 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001926/*
Robin Getz97399462010-03-08 14:07:00 -05001927 * make port a little random (1024-17407)
1928 * This keeps the math somewhat trivial to compute, and seems to work with
1929 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001930 */
1931unsigned int random_port(void)
1932{
Robin Getz97399462010-03-08 14:07:00 -05001933 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001934}
1935#endif
1936
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001937void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001938{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001939 x = ntohl(x);
1940 sprintf(s, "%d.%d.%d.%d",
1941 (int) ((x >> 24) & 0xff),
1942 (int) ((x >> 16) & 0xff),
1943 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001944 );
wdenk2d966952002-10-31 22:12:35 +00001945}
1946
wdenka3d991b2004-04-15 21:48:45 +00001947void VLAN_to_string(ushort x, char *s)
1948{
1949 x = ntohs(x);
1950
1951 if (x == (ushort)-1)
1952 x = VLAN_NONE;
1953
1954 if (x == VLAN_NONE)
1955 strcpy(s, "none");
1956 else
1957 sprintf(s, "%d", x & VLAN_IDMASK);
1958}
1959
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001960ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001961{
1962 ushort id;
1963
1964 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001965 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001966
1967 if (*s < '0' || *s > '9')
1968 id = VLAN_NONE;
1969 else
1970 id = (ushort)simple_strtoul(s, NULL, 10);
1971
wdenkb9711de2004-04-25 13:18:40 +00001972 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001973}
1974
wdenka3d991b2004-04-15 21:48:45 +00001975ushort getenv_VLAN(char *var)
1976{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001977 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001978}