blob: 7a93542122cb14be38c276e3d4a23d8cc1d8b91a [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;
wdenk2d966952002-10-31 22:12:35 +0000172#ifdef CONFIG_NET_MULTI
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000173/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000174int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000175/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000176static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000177/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000178static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000179#endif
180
wdenk6e592382004-04-18 17:39:38 +0000181/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000182/* default is without VLAN */
183ushort NetOurVLAN = 0xFFFF;
184/* ditto */
185ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000186
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000187/* Boot File name */
188char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000189
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500190#if defined(CONFIG_CMD_PING)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000191/* the ip address to ping */
192IPaddr_t NetPingIP;
wdenk73a8b272003-06-05 19:27:42 +0000193
194static void PingStart(void);
195#endif
196
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500197#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000198static void CDPStart(void);
199#endif
200
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500201#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000202/* NTP server IP address */
203IPaddr_t NetNtpServerIP;
204/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000205int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000206#endif
207
wdenk68ceb292004-08-02 21:11:11 +0000208#ifdef CONFIG_NETCONSOLE
209void NcStart(void);
210int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
211#endif
212
wdenk2d966952002-10-31 22:12:35 +0000213volatile uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
214
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000215/* Receive packet */
216volatile uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000217
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000218/* Current RX packet handler */
219static rxhand_f *packetHandler;
220/* Current timeout handler */
221static thand_f *timeHandler;
222/* Time base value */
223static ulong timeStart;
224/* Current timeout value */
225static ulong timeDelta;
226/* THE transmit packet */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000227volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000228
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000229static int net_check_prereq(proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000230
Remy Bohmer67b96e82009-10-28 22:13:39 +0100231static int NetTryCount;
232
wdenk2d966952002-10-31 22:12:35 +0000233/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000234
235IPaddr_t NetArpWaitPacketIP;
236IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000237/* MAC address of waiting packet's destination */
238uchar *NetArpWaitPacketMAC;
239/* THE transmit packet */
240uchar *NetArpWaitTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000241int NetArpWaitTxPacketSize;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200242uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenk73a8b272003-06-05 19:27:42 +0000243ulong NetArpWaitTimerStart;
244int NetArpWaitTry;
245
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000246void ArpRequest(void)
wdenk73a8b272003-06-05 19:27:42 +0000247{
248 int i;
249 volatile uchar *pkt;
wdenk6e592382004-04-18 17:39:38 +0000250 ARP_t *arp;
wdenk73a8b272003-06-05 19:27:42 +0000251
Robin Getz0ebf04c2009-07-23 03:01:03 -0400252 debug("ARP broadcast %d\n", NetArpWaitTry);
253
wdenk73a8b272003-06-05 19:27:42 +0000254 pkt = NetTxPacket;
255
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenk73a8b272003-06-05 19:27:42 +0000257
wdenk6e592382004-04-18 17:39:38 +0000258 arp = (ARP_t *) pkt;
wdenk73a8b272003-06-05 19:27:42 +0000259
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000262 arp->ar_hln = 6;
263 arp->ar_pln = 4;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000264 arp->ar_op = htons(ARPOP_REQUEST);
wdenk73a8b272003-06-05 19:27:42 +0000265
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000266 /* source ET addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000267 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000268 /* source IP addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
wdenk6e592382004-04-18 17:39:38 +0000270 for (i = 10; i < 16; ++i) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000271 /* dest ET addr = 0 */
272 arp->ar_data[i] = 0;
wdenk73a8b272003-06-05 19:27:42 +0000273 }
274
wdenk6e592382004-04-18 17:39:38 +0000275 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
276 (NetOurIP & NetOurSubnetMask)) {
277 if (NetOurGatewayIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000278 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denkd509b812006-03-12 01:13:30 +0100279 NetArpWaitReplyIP = NetArpWaitPacketIP;
280 } else {
281 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk6e592382004-04-18 17:39:38 +0000282 }
wdenk6e592382004-04-18 17:39:38 +0000283 } else {
284 NetArpWaitReplyIP = NetArpWaitPacketIP;
285 }
wdenk73a8b272003-06-05 19:27:42 +0000286
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000287 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
288 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenk73a8b272003-06-05 19:27:42 +0000289}
290
291void ArpTimeoutCheck(void)
292{
293 ulong t;
294
295 if (!NetArpWaitPacketIP)
296 return;
297
298 t = get_timer(0);
299
300 /* check for arp timeout */
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200301 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenk73a8b272003-06-05 19:27:42 +0000302 NetArpWaitTry++;
303
304 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000305 puts("\nARP Retry count exceeded; starting again\n");
wdenk73a8b272003-06-05 19:27:42 +0000306 NetArpWaitTry = 0;
307 NetStartAgain();
308 } else {
309 NetArpWaitTimerStart = t;
310 ArpRequest();
311 }
312 }
313}
314
Heiko Schocherda954272009-04-28 08:36:11 +0200315static void
Heiko Schocher2f70c492009-02-10 09:38:52 +0100316NetInitLoop(proto_t protocol)
317{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000318 static int env_changed_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100319 bd_t *bd = gd->bd;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000320 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100321
322 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300323 if (env_changed_id != env_id) {
Heiko Schocher2f70c492009-02-10 09:38:52 +0100324 NetCopyIP(&NetOurIP, &bd->bi_ip_addr);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000325 NetOurGatewayIP = getenv_IPaddr("gatewayip");
326 NetOurSubnetMask = getenv_IPaddr("netmask");
327 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100328 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300329 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400330#if defined(CONFIG_CMD_DNS)
331 NetOurDNSIP = getenv_IPaddr("dnsip");
332#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300333 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100334 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300335
Heiko Schocherda954272009-04-28 08:36:11 +0200336 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100337}
338
wdenk73a8b272003-06-05 19:27:42 +0000339/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000340/*
341 * Main network processing loop.
342 */
343
344int
345NetLoop(proto_t protocol)
346{
wdenk2d966952002-10-31 22:12:35 +0000347 bd_t *bd = gd->bd;
348
349#ifdef CONFIG_NET_MULTI
350 NetRestarted = 0;
351 NetDevExists = 0;
352#endif
353
wdenk73a8b272003-06-05 19:27:42 +0000354 /* XXX problem with bss workaround */
355 NetArpWaitPacketMAC = NULL;
356 NetArpWaitTxPacket = NULL;
357 NetArpWaitPacketIP = 0;
358 NetArpWaitReplyIP = 0;
359 NetArpWaitTxPacket = NULL;
360 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100361 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000362
wdenk2d966952002-10-31 22:12:35 +0000363 if (!NetTxPacket) {
364 int i;
wdenk2d966952002-10-31 22:12:35 +0000365 /*
366 * Setup packet buffers, aligned correctly.
367 */
368 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
369 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000370 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000371 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000372 }
373
374 if (!NetArpWaitTxPacket) {
375 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
376 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
377 NetArpWaitTxPacketSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000378 }
379
380 eth_halt();
wdenk6e592382004-04-18 17:39:38 +0000381#ifdef CONFIG_NET_MULTI
wdenka3d991b2004-04-15 21:48:45 +0000382 eth_set_current();
wdenk6e592382004-04-18 17:39:38 +0000383#endif
wdenkb1bf6f22005-04-03 14:52:59 +0000384 if (eth_init(bd) < 0) {
385 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000386 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000387 }
wdenk2d966952002-10-31 22:12:35 +0000388
389restart:
390#ifdef CONFIG_NET_MULTI
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000391 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000392#else
Mike Frysinger95823ca2009-02-11 18:23:48 -0500393 eth_getenv_enetaddr("ethaddr", NetOurEther);
wdenk2d966952002-10-31 22:12:35 +0000394#endif
395
396 NetState = NETLOOP_CONTINUE;
397
398 /*
399 * Start the ball rolling with the given start function. From
400 * here on, this code is a state machine driven by received
401 * packets and timer events.
402 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100403 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000404
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000405 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000406 case 1:
407 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000408 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000409 return -1;
wdenk2d966952002-10-31 22:12:35 +0000410
411#ifdef CONFIG_NET_MULTI
412 case 2:
413 /* network device not configured */
414 break;
415#endif /* CONFIG_NET_MULTI */
416
417 case 0:
418#ifdef CONFIG_NET_MULTI
419 NetDevExists = 1;
420#endif
421 switch (protocol) {
422 case TFTP:
423 /* always use ARP to get server ethernet address */
wdenk73a8b272003-06-05 19:27:42 +0000424 TftpStart();
wdenk2d966952002-10-31 22:12:35 +0000425 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000426#ifdef CONFIG_CMD_TFTPSRV
427 case TFTPSRV:
428 TftpStartServer();
429 break;
430#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500431#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000432 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000433 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300434 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000435 DhcpRequest(); /* Basically same as BOOTP */
436 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500437#endif
wdenk2d966952002-10-31 22:12:35 +0000438
439 case BOOTP:
440 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300441 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000442 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000443 break;
444
Peter Tyserbf6cb242010-09-30 11:25:48 -0500445#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000446 case RARP:
447 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300448 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000449 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000450 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500451#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500452#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000453 case PING:
454 PingStart();
455 break;
456#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500457#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000458 case NFS:
459 NfsStart();
460 break;
461#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500462#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000463 case CDP:
464 CDPStart();
465 break;
466#endif
wdenk68ceb292004-08-02 21:11:11 +0000467#ifdef CONFIG_NETCONSOLE
468 case NETCONS:
469 NcStart();
470 break;
471#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500472#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000473 case SNTP:
474 SntpStart();
475 break;
476#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400477#if defined(CONFIG_CMD_DNS)
478 case DNS:
479 DnsStart();
480 break;
481#endif
wdenk2d966952002-10-31 22:12:35 +0000482 default:
483 break;
484 }
485
486 NetBootFileXferSize = 0;
487 break;
488 }
489
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500490#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000491#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
492 defined(CONFIG_STATUS_LED) && \
493 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000494 /*
wdenk42d1f032003-10-15 23:53:47 +0000495 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000496 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000497 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000498 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000499 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000500 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200501#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000502#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000503
504 /*
505 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000506 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000507 */
508 for (;;) {
509 WATCHDOG_RESET();
510#ifdef CONFIG_SHOW_ACTIVITY
511 {
512 extern void show_activity(int arg);
513 show_activity(1);
514 }
515#endif
516 /*
517 * Check the ethernet for a new packet. The ethernet
518 * receive routine will process it.
519 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200520 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000521
522 /*
523 * Abort if ctrl-c was pressed.
524 */
525 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000526 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000527 puts("\nAbort\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +0000528 return -1;
wdenk2d966952002-10-31 22:12:35 +0000529 }
530
wdenk73a8b272003-06-05 19:27:42 +0000531 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000532
533 /*
534 * Check for a timeout, and run the timeout handler
535 * if we have one.
536 */
wdenke0ac62d2003-08-17 18:55:18 +0000537 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000538 thand_f *x;
539
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500540#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000541#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
542 defined(CONFIG_STATUS_LED) && \
543 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000544 /*
wdenk42d1f032003-10-15 23:53:47 +0000545 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000546 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000547 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000548 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000549 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000550 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000551 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000552 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000553#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000554#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000555 x = timeHandler;
556 timeHandler = (thand_f *)0;
557 (*x)();
558 }
559
560
561 switch (NetState) {
562
563 case NETLOOP_RESTART:
564#ifdef CONFIG_NET_MULTI
565 NetRestarted = 1;
566#endif
567 goto restart;
568
569 case NETLOOP_SUCCESS:
570 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200571 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000572 printf("Bytes transferred = %ld (%lx hex)\n",
573 NetBootFileXferSize,
574 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200575 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000576 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000577
578 sprintf(buf, "%lX", (unsigned long)load_addr);
579 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000580 }
581 eth_halt();
582 return NetBootFileXferSize;
583
584 case NETLOOP_FAIL:
Luca Ceresoli92895de2011-05-04 02:40:45 +0000585 return -1;
wdenk2d966952002-10-31 22:12:35 +0000586 }
587 }
588}
589
590/**********************************************************************/
591
592static void
593startAgainTimeout(void)
594{
595 NetState = NETLOOP_RESTART;
596}
597
598static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000599startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
600 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000601{
602 /* Totally ignore the packet */
603}
604
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000605void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000606{
wdenk6e592382004-04-18 17:39:38 +0000607 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100608 int retry_forever = 0;
609 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000610
Remy Bohmer67b96e82009-10-28 22:13:39 +0100611 nretry = getenv("netretry");
612 if (nretry) {
613 if (!strcmp(nretry, "yes"))
614 retry_forever = 1;
615 else if (!strcmp(nretry, "no"))
616 retrycnt = 0;
617 else if (!strcmp(nretry, "once"))
618 retrycnt = 1;
619 else
620 retrycnt = simple_strtoul(nretry, NULL, 0);
621 } else
622 retry_forever = 1;
623
624 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
625 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000626 NetState = NETLOOP_FAIL;
627 return;
628 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100629
630 NetTryCount++;
631
wdenk2d966952002-10-31 22:12:35 +0000632#ifndef CONFIG_NET_MULTI
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000633 NetSetTimeout(10000UL, startAgainTimeout);
634 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000635#else /* !CONFIG_NET_MULTI*/
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000636 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100637#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000638 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100639#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000640 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000641 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000642 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100643 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000644 NetSetTimeout(10000UL, startAgainTimeout);
645 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000646 } else {
wdenk2d966952002-10-31 22:12:35 +0000647 NetState = NETLOOP_FAIL;
648 }
wdenk6e592382004-04-18 17:39:38 +0000649 } else {
wdenk2d966952002-10-31 22:12:35 +0000650 NetState = NETLOOP_RESTART;
651 }
wdenk6e592382004-04-18 17:39:38 +0000652#endif /* CONFIG_NET_MULTI */
wdenk2d966952002-10-31 22:12:35 +0000653}
654
655/**********************************************************************/
656/*
657 * Miscelaneous bits.
658 */
659
660void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000661NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000662{
663 packetHandler = f;
664}
665
666
667void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000668NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000669{
670 if (iv == 0) {
671 timeHandler = (thand_f *)0;
672 } else {
673 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000674 timeStart = get_timer(0);
675 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000676 }
677}
678
679
680void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000681NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000682{
683 (void) eth_send(pkt, len);
684}
685
wdenk73a8b272003-06-05 19:27:42 +0000686int
687NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
688{
wdenka3d991b2004-04-15 21:48:45 +0000689 uchar *pkt;
690
wdenk73a8b272003-06-05 19:27:42 +0000691 /* convert to new style broadcast */
692 if (dest == 0)
693 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000694
wdenk73a8b272003-06-05 19:27:42 +0000695 /* if broadcast, make the ether address a broadcast and don't do ARP */
696 if (dest == 0xFFFFFFFF)
697 ether = NetBcastAddr;
698
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000699 /*
700 * if MAC address was not discovered yet, save the packet and do
701 * an ARP request
702 */
wdenk73a8b272003-06-05 19:27:42 +0000703 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
704
Robin Getz0ebf04c2009-07-23 03:01:03 -0400705 debug("sending ARP for %08lx\n", dest);
706
wdenk73a8b272003-06-05 19:27:42 +0000707 NetArpWaitPacketIP = dest;
708 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000709
710 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000711 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000712
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000713 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000714 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
715 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000716
717 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000718 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
719 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000720
721 /* and do the ARP request */
722 NetArpWaitTry = 1;
723 NetArpWaitTimerStart = get_timer(0);
724 ArpRequest();
725 return 1; /* waiting */
726 }
727
Robin Getz0ebf04c2009-07-23 03:01:03 -0400728 debug("sending UDP to %08lx/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000729
wdenka3d991b2004-04-15 21:48:45 +0000730 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000731 pkt += NetSetEther(pkt, ether, PROT_IP);
732 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000733 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000734
wdenk6e592382004-04-18 17:39:38 +0000735 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000736}
737
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500738#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000739static ushort PingSeqNo;
740
741int PingSend(void)
742{
743 static uchar mac[6];
744 volatile IP_t *ip;
745 volatile ushort *s;
wdenka3d991b2004-04-15 21:48:45 +0000746 uchar *pkt;
wdenk73a8b272003-06-05 19:27:42 +0000747
748 /* XXX always send arp request */
749
750 memcpy(mac, NetEtherNullAddr, 6);
751
Robin Getz0ebf04c2009-07-23 03:01:03 -0400752 debug("sending ARP for %08lx\n", NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000753
754 NetArpWaitPacketIP = NetPingIP;
755 NetArpWaitPacketMAC = mac;
756
wdenka3d991b2004-04-15 21:48:45 +0000757 pkt = NetArpWaitTxPacket;
758 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000759
wdenka3d991b2004-04-15 21:48:45 +0000760 ip = (volatile IP_t *)pkt;
wdenk73a8b272003-06-05 19:27:42 +0000761
762 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000763 * Construct an IP and ICMP header.
764 * (need to set no fragment bit - XXX)
wdenk73a8b272003-06-05 19:27:42 +0000765 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000766 /* IP_HDR_SIZE / 4 (not including UDP) */
767 ip->ip_hl_v = 0x45;
wdenk73a8b272003-06-05 19:27:42 +0000768 ip->ip_tos = 0;
769 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
770 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -0600771 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk73a8b272003-06-05 19:27:42 +0000772 ip->ip_ttl = 255;
773 ip->ip_p = 0x01; /* ICMP */
774 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000775 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000776 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000777 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000778 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000779 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
780
781 s = &ip->udp_src; /* XXX ICMP starts here */
782 s[0] = htons(0x0800); /* echo-request, code */
783 s[1] = 0; /* checksum */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200784 s[2] = 0; /* identifier */
wdenk73a8b272003-06-05 19:27:42 +0000785 s[3] = htons(PingSeqNo++); /* sequence number */
786 s[1] = ~NetCksum((uchar *)s, 8/2);
787
788 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000789 NetArpWaitTxPacketSize =
790 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenk73a8b272003-06-05 19:27:42 +0000791
792 /* and do the ARP request */
793 NetArpWaitTry = 1;
794 NetArpWaitTimerStart = get_timer(0);
795 ArpRequest();
796 return 1; /* waiting */
797}
798
799static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000800PingTimeout(void)
wdenk73a8b272003-06-05 19:27:42 +0000801{
802 eth_halt();
803 NetState = NETLOOP_FAIL; /* we did not get the reply */
804}
805
806static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000807PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
808 unsigned len)
wdenk73a8b272003-06-05 19:27:42 +0000809{
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000810 if (sip != NetPingIP)
wdenk73a8b272003-06-05 19:27:42 +0000811 return;
812
813 NetState = NETLOOP_SUCCESS;
814}
815
816static void PingStart(void)
817{
wdenka3d991b2004-04-15 21:48:45 +0000818#if defined(CONFIG_NET_MULTI)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000819 printf("Using %s device\n", eth_get_name());
wdenk6e592382004-04-18 17:39:38 +0000820#endif /* CONFIG_NET_MULTI */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000821 NetSetTimeout(10000UL, PingTimeout);
822 NetSetHandler(PingHandler);
wdenk73a8b272003-06-05 19:27:42 +0000823
824 PingSend();
825}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500826#endif
wdenk2d966952002-10-31 22:12:35 +0000827
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500828#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000829
830#define CDP_DEVICE_ID_TLV 0x0001
831#define CDP_ADDRESS_TLV 0x0002
832#define CDP_PORT_ID_TLV 0x0003
833#define CDP_CAPABILITIES_TLV 0x0004
834#define CDP_VERSION_TLV 0x0005
835#define CDP_PLATFORM_TLV 0x0006
836#define CDP_NATIVE_VLAN_TLV 0x000a
837#define CDP_APPLIANCE_VLAN_TLV 0x000e
838#define CDP_TRIGGER_TLV 0x000f
839#define CDP_POWER_CONSUMPTION_TLV 0x0010
840#define CDP_SYSNAME_TLV 0x0014
841#define CDP_SYSOBJECT_TLV 0x0015
842#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
843
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200844#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenka3d991b2004-04-15 21:48:45 +0000845
846static int CDPSeq;
847static int CDPOK;
848
849ushort CDPNativeVLAN;
850ushort CDPApplianceVLAN;
851
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000852static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
853 0x00 };
wdenka3d991b2004-04-15 21:48:45 +0000854
855static ushort CDP_compute_csum(const uchar *buff, ushort len)
856{
857 ushort csum;
858 int odd;
859 ulong result = 0;
860 ushort leftover;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200861 ushort *p;
wdenka3d991b2004-04-15 21:48:45 +0000862
863 if (len > 0) {
864 odd = 1 & (ulong)buff;
865 if (odd) {
866 result = *buff << 8;
867 len--;
868 buff++;
869 }
870 while (len > 1) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200871 p = (ushort *)buff;
872 result += *p++;
873 buff = (uchar *)p;
wdenka3d991b2004-04-15 21:48:45 +0000874 if (result & 0x80000000)
875 result = (result & 0xFFFF) + (result >> 16);
876 len -= 2;
877 }
878 if (len) {
879 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denk3ada8342005-11-10 20:59:46 +0100880 /* CISCO SUCKS big time! (and blows too):
881 * CDP uses the IP checksum algorithm with a twist;
882 * for the last byte it *sign* extends and sums.
883 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000884 result = (result & 0xffff0000) |
885 ((result + leftover) & 0x0000ffff);
wdenka3d991b2004-04-15 21:48:45 +0000886 }
887 while (result >> 16)
888 result = (result & 0xFFFF) + (result >> 16);
889
890 if (odd)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000891 result = ((result >> 8) & 0xff) |
892 ((result & 0xff) << 8);
wdenka3d991b2004-04-15 21:48:45 +0000893 }
894
895 /* add up 16-bit and 17-bit words for 17+c bits */
896 result = (result & 0xffff) + (result >> 16);
897 /* add up 16-bit and 2-bit for 16+c bit */
898 result = (result & 0xffff) + (result >> 16);
899 /* add up carry.. */
900 result = (result & 0xffff) + (result >> 16);
901
902 /* negate */
903 csum = ~(ushort)result;
904
905 /* run time endian detection */
906 if (csum != htons(csum)) /* little endian */
907 csum = htons(csum);
908
909 return csum;
910}
911
912int CDPSendTrigger(void)
913{
914 volatile uchar *pkt;
915 volatile ushort *s;
916 volatile ushort *cp;
917 Ethernet_t *et;
wdenka3d991b2004-04-15 21:48:45 +0000918 int len;
919 ushort chksum;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000920#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
921 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk6e592382004-04-18 17:39:38 +0000922 char buf[32];
923#endif
wdenka3d991b2004-04-15 21:48:45 +0000924
925 pkt = NetTxPacket;
926 et = (Ethernet_t *)pkt;
927
928 /* NOTE: trigger sent not on any VLAN */
929
930 /* form ethernet header */
931 memcpy(et->et_dest, NetCDPAddr, 6);
932 memcpy(et->et_src, NetOurEther, 6);
933
934 pkt += ETHER_HDR_SIZE;
935
936 /* SNAP header */
937 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
938 pkt += sizeof(CDP_SNAP_hdr);
939
940 /* CDP header */
941 *pkt++ = 0x02; /* CDP version 2 */
942 *pkt++ = 180; /* TTL */
943 s = (volatile ushort *)pkt;
944 cp = s;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000945 /* checksum (0 for later calculation) */
946 *s++ = htons(0);
wdenka3d991b2004-04-15 21:48:45 +0000947
948 /* CDP fields */
949#ifdef CONFIG_CDP_DEVICE_ID
950 *s++ = htons(CDP_DEVICE_ID_TLV);
951 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger95823ca2009-02-11 18:23:48 -0500952 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenka3d991b2004-04-15 21:48:45 +0000953 memcpy((uchar *)s, buf, 16);
954 s += 16 / 2;
955#endif
956
957#ifdef CONFIG_CDP_PORT_ID
958 *s++ = htons(CDP_PORT_ID_TLV);
959 memset(buf, 0, sizeof(buf));
960 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
961 len = strlen(buf);
962 if (len & 1) /* make it even */
963 len++;
964 *s++ = htons(len + 4);
965 memcpy((uchar *)s, buf, len);
966 s += len / 2;
967#endif
968
969#ifdef CONFIG_CDP_CAPABILITIES
970 *s++ = htons(CDP_CAPABILITIES_TLV);
971 *s++ = htons(8);
972 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
973 s += 2;
974#endif
975
976#ifdef CONFIG_CDP_VERSION
977 *s++ = htons(CDP_VERSION_TLV);
978 memset(buf, 0, sizeof(buf));
979 strcpy(buf, CONFIG_CDP_VERSION);
980 len = strlen(buf);
981 if (len & 1) /* make it even */
982 len++;
983 *s++ = htons(len + 4);
984 memcpy((uchar *)s, buf, len);
985 s += len / 2;
986#endif
987
988#ifdef CONFIG_CDP_PLATFORM
989 *s++ = htons(CDP_PLATFORM_TLV);
990 memset(buf, 0, sizeof(buf));
991 strcpy(buf, CONFIG_CDP_PLATFORM);
992 len = strlen(buf);
993 if (len & 1) /* make it even */
994 len++;
995 *s++ = htons(len + 4);
996 memcpy((uchar *)s, buf, len);
997 s += len / 2;
998#endif
999
1000#ifdef CONFIG_CDP_TRIGGER
1001 *s++ = htons(CDP_TRIGGER_TLV);
1002 *s++ = htons(8);
1003 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1004 s += 2;
1005#endif
1006
1007#ifdef CONFIG_CDP_POWER_CONSUMPTION
1008 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1009 *s++ = htons(6);
1010 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1011#endif
1012
1013 /* length of ethernet packet */
1014 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1015 et->et_protlen = htons(len);
1016
1017 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001018 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1019 (uchar *)s - (NetTxPacket + len));
wdenka3d991b2004-04-15 21:48:45 +00001020 if (chksum == 0)
1021 chksum = 0xFFFF;
1022 *cp = htons(chksum);
1023
1024 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1025 return 0;
1026}
1027
1028static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001029CDPTimeout(void)
wdenka3d991b2004-04-15 21:48:45 +00001030{
1031 CDPSeq++;
1032
1033 if (CDPSeq < 3) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001034 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenka3d991b2004-04-15 21:48:45 +00001035 CDPSendTrigger();
1036 return;
1037 }
1038
1039 /* if not OK try again */
1040 if (!CDPOK)
1041 NetStartAgain();
1042 else
1043 NetState = NETLOOP_SUCCESS;
1044}
1045
1046static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001047CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1048 unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001049{
1050 /* nothing */
1051}
1052
1053static void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001054CDPHandler(const uchar *pkt, unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001055{
1056 const uchar *t;
1057 const ushort *ss;
1058 ushort type, tlen;
1059 uchar applid;
1060 ushort vlan, nvlan;
1061
1062 /* minimum size? */
1063 if (len < sizeof(CDP_SNAP_hdr) + 4)
1064 goto pkt_short;
1065
1066 /* check for valid CDP SNAP header */
1067 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1068 return;
1069
1070 pkt += sizeof(CDP_SNAP_hdr);
1071 len -= sizeof(CDP_SNAP_hdr);
1072
1073 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1074 if (pkt[0] < 0x02 || pkt[1] == 0)
1075 return;
1076
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001077 /*
1078 * if version is greater than 0x02 maybe we'll have a problem;
1079 * output a warning
1080 */
wdenka3d991b2004-04-15 21:48:45 +00001081 if (pkt[0] != 0x02)
1082 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1083 pkt[0] & 0xff);
1084
1085 if (CDP_compute_csum(pkt, len) != 0)
1086 return;
1087
1088 pkt += 4;
1089 len -= 4;
1090
1091 vlan = htons(-1);
1092 nvlan = htons(-1);
1093 while (len > 0) {
1094 if (len < 4)
1095 goto pkt_short;
1096
1097 ss = (const ushort *)pkt;
1098 type = ntohs(ss[0]);
1099 tlen = ntohs(ss[1]);
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001100 if (tlen > len)
wdenka3d991b2004-04-15 21:48:45 +00001101 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001102
1103 pkt += tlen;
1104 len -= tlen;
1105
1106 ss += 2; /* point ss to the data of the TLV */
1107 tlen -= 4;
1108
1109 switch (type) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001110 case CDP_DEVICE_ID_TLV:
1111 break;
1112 case CDP_ADDRESS_TLV:
1113 break;
1114 case CDP_PORT_ID_TLV:
1115 break;
1116 case CDP_CAPABILITIES_TLV:
1117 break;
1118 case CDP_VERSION_TLV:
1119 break;
1120 case CDP_PLATFORM_TLV:
1121 break;
1122 case CDP_NATIVE_VLAN_TLV:
1123 nvlan = *ss;
1124 break;
1125 case CDP_APPLIANCE_VLAN_TLV:
1126 t = (const uchar *)ss;
1127 while (tlen > 0) {
1128 if (tlen < 3)
1129 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001130
Luca Ceresolic819abe2011-05-04 02:40:46 +00001131 applid = t[0];
1132 ss = (const ushort *)(t + 1);
wdenka3d991b2004-04-15 21:48:45 +00001133
1134#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Luca Ceresolic819abe2011-05-04 02:40:46 +00001135 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1136 vlan = *ss;
wdenka3d991b2004-04-15 21:48:45 +00001137#else
Luca Ceresolic819abe2011-05-04 02:40:46 +00001138 /* XXX will this work; dunno */
1139 vlan = ntohs(*ss);
wdenka3d991b2004-04-15 21:48:45 +00001140#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001141 t += 3; tlen -= 3;
1142 }
1143 break;
1144 case CDP_TRIGGER_TLV:
1145 break;
1146 case CDP_POWER_CONSUMPTION_TLV:
1147 break;
1148 case CDP_SYSNAME_TLV:
1149 break;
1150 case CDP_SYSOBJECT_TLV:
1151 break;
1152 case CDP_MANAGEMENT_ADDRESS_TLV:
1153 break;
wdenka3d991b2004-04-15 21:48:45 +00001154 }
1155 }
1156
1157 CDPApplianceVLAN = vlan;
1158 CDPNativeVLAN = nvlan;
1159
1160 CDPOK = 1;
1161 return;
1162
1163 pkt_short:
1164 printf("** CDP packet is too short\n");
1165 return;
1166}
1167
1168static void CDPStart(void)
1169{
1170#if defined(CONFIG_NET_MULTI)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001171 printf("Using %s device\n", eth_get_name());
wdenka3d991b2004-04-15 21:48:45 +00001172#endif
1173 CDPSeq = 0;
1174 CDPOK = 0;
1175
1176 CDPNativeVLAN = htons(-1);
1177 CDPApplianceVLAN = htons(-1);
1178
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001179 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1180 NetSetHandler(CDPDummyHandler);
wdenka3d991b2004-04-15 21:48:45 +00001181
1182 CDPSendTrigger();
1183}
Jon Loeliger610f2e92007-07-10 11:05:02 -05001184#endif
wdenka3d991b2004-04-15 21:48:45 +00001185
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001186#ifdef CONFIG_IP_DEFRAG
1187/*
1188 * This function collects fragments in a single packet, according
1189 * to the algorithm in RFC815. It returns NULL or the pointer to
1190 * a complete packet, in static storage
1191 */
1192#ifndef CONFIG_NET_MAXDEFRAG
1193#define CONFIG_NET_MAXDEFRAG 16384
1194#endif
1195/*
1196 * MAXDEFRAG, above, is chosen in the config file and is real data
1197 * so we need to add the NFS overhead, which is more than TFTP.
1198 * To use sizeof in the internal unnamed structures, we need a real
1199 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1200 * The compiler doesn't complain nor allocates the actual structure
1201 */
1202static struct rpc_t rpc_specimen;
1203#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1204
1205#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1206
1207/*
1208 * this is the packet being assembled, either data or frag control.
1209 * Fragments go by 8 bytes, so this union must be 8 bytes long
1210 */
1211struct hole {
1212 /* first_byte is address of this structure */
1213 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1214 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1215 u16 prev_hole; /* index of prev, 0 == none */
1216 u16 unused;
1217};
1218
1219static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1220{
1221 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1222 static u16 first_hole, total_len;
1223 struct hole *payload, *thisfrag, *h, *newh;
1224 IP_t *localip = (IP_t *)pkt_buff;
1225 uchar *indata = (uchar *)ip;
1226 int offset8, start, len, done = 0;
1227 u16 ip_off = ntohs(ip->ip_off);
1228
1229 /* payload starts after IP header, this fragment is in there */
1230 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1231 offset8 = (ip_off & IP_OFFS);
1232 thisfrag = payload + offset8;
1233 start = offset8 * 8;
1234 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1235
1236 if (start + len > IP_MAXUDP) /* fragment extends too far */
1237 return NULL;
1238
1239 if (!total_len || localip->ip_id != ip->ip_id) {
1240 /* new (or different) packet, reset structs */
1241 total_len = 0xffff;
1242 payload[0].last_byte = ~0;
1243 payload[0].next_hole = 0;
1244 payload[0].prev_hole = 0;
1245 first_hole = 0;
1246 /* any IP header will work, copy the first we received */
1247 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1248 }
1249
1250 /*
1251 * What follows is the reassembly algorithm. We use the payload
1252 * array as a linked list of hole descriptors, as each hole starts
1253 * at a multiple of 8 bytes. However, last byte can be whatever value,
1254 * so it is represented as byte count, not as 8-byte blocks.
1255 */
1256
1257 h = payload + first_hole;
1258 while (h->last_byte < start) {
1259 if (!h->next_hole) {
1260 /* no hole that far away */
1261 return NULL;
1262 }
1263 h = payload + h->next_hole;
1264 }
1265
Fillod Stephanee397e592010-06-11 19:26:43 +02001266 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1267 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001268 /* no overlap with holes (dup fragment?) */
1269 return NULL;
1270 }
1271
1272 if (!(ip_off & IP_FLAGS_MFRAG)) {
1273 /* no more fragmentss: truncate this (last) hole */
1274 total_len = start + len;
1275 h->last_byte = start + len;
1276 }
1277
1278 /*
1279 * There is some overlap: fix the hole list. This code doesn't
1280 * deal with a fragment that overlaps with two different holes
1281 * (thus being a superset of a previously-received fragment).
1282 */
1283
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001284 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001285 /* complete overlap with hole: remove hole */
1286 if (!h->prev_hole && !h->next_hole) {
1287 /* last remaining hole */
1288 done = 1;
1289 } else if (!h->prev_hole) {
1290 /* first hole */
1291 first_hole = h->next_hole;
1292 payload[h->next_hole].prev_hole = 0;
1293 } else if (!h->next_hole) {
1294 /* last hole */
1295 payload[h->prev_hole].next_hole = 0;
1296 } else {
1297 /* in the middle of the list */
1298 payload[h->next_hole].prev_hole = h->prev_hole;
1299 payload[h->prev_hole].next_hole = h->next_hole;
1300 }
1301
1302 } else if (h->last_byte <= start + len) {
1303 /* overlaps with final part of the hole: shorten this hole */
1304 h->last_byte = start;
1305
1306 } else if (h >= thisfrag) {
1307 /* overlaps with initial part of the hole: move this hole */
1308 newh = thisfrag + (len / 8);
1309 *newh = *h;
1310 h = newh;
1311 if (h->next_hole)
1312 payload[h->next_hole].prev_hole = (h - payload);
1313 if (h->prev_hole)
1314 payload[h->prev_hole].next_hole = (h - payload);
1315 else
1316 first_hole = (h - payload);
1317
1318 } else {
1319 /* fragment sits in the middle: split the hole */
1320 newh = thisfrag + (len / 8);
1321 *newh = *h;
1322 h->last_byte = start;
1323 h->next_hole = (newh - payload);
1324 newh->prev_hole = (h - payload);
1325 if (newh->next_hole)
1326 payload[newh->next_hole].prev_hole = (newh - payload);
1327 }
1328
1329 /* finally copy this fragment and possibly return whole packet */
1330 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1331 if (!done)
1332 return NULL;
1333
1334 localip->ip_len = htons(total_len);
1335 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1336 return localip;
1337}
1338
1339static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1340{
1341 u16 ip_off = ntohs(ip->ip_off);
1342 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1343 return ip; /* not a fragment */
1344 return __NetDefragment(ip, lenp);
1345}
1346
1347#else /* !CONFIG_IP_DEFRAG */
1348
1349static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1350{
1351 u16 ip_off = ntohs(ip->ip_off);
1352 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1353 return ip; /* not a fragment */
1354 return NULL;
1355}
1356#endif
wdenka3d991b2004-04-15 21:48:45 +00001357
wdenk2d966952002-10-31 22:12:35 +00001358void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001359NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001360{
1361 Ethernet_t *et;
1362 IP_t *ip;
1363 ARP_t *arp;
1364 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001365 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001366 int x;
wdenka3d991b2004-04-15 21:48:45 +00001367 uchar *pkt;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001368#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001369 int iscdp;
1370#endif
1371 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001372
Robin Getz0ebf04c2009-07-23 03:01:03 -04001373 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001374
Mike Frysingerd9bec9f2009-07-18 21:04:08 -04001375 NetRxPacket = inpkt;
1376 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +00001377 et = (Ethernet_t *)inpkt;
1378
1379 /* too small packet? */
1380 if (len < ETHER_HDR_SIZE)
1381 return;
1382
Rafal Jaworowskif85b6072007-12-27 18:19:02 +01001383#ifdef CONFIG_API
1384 if (push_packet) {
1385 (*push_packet)(inpkt, len);
1386 return;
1387 }
1388#endif
1389
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001390#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001391 /* keep track if packet is CDP */
1392 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1393#endif
1394
1395 myvlanid = ntohs(NetOurVLAN);
1396 if (myvlanid == (ushort)-1)
1397 myvlanid = VLAN_NONE;
1398 mynvlanid = ntohs(NetOurNativeVLAN);
1399 if (mynvlanid == (ushort)-1)
1400 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001401
1402 x = ntohs(et->et_protlen);
1403
Robin Getz0ebf04c2009-07-23 03:01:03 -04001404 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001405
wdenk2d966952002-10-31 22:12:35 +00001406 if (x < 1514) {
1407 /*
1408 * Got a 802 packet. Check the other protocol field.
1409 */
1410 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +00001411
1412 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001413 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001414
1415 } else if (x != PROT_VLAN) { /* normal packet */
1416 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001417 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001418
1419 } else { /* VLAN packet */
1420 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1421
Robin Getz0ebf04c2009-07-23 03:01:03 -04001422 debug("VLAN packet received\n");
1423
wdenka3d991b2004-04-15 21:48:45 +00001424 /* too small packet? */
1425 if (len < VLAN_ETHER_HDR_SIZE)
1426 return;
1427
1428 /* if no VLAN active */
1429 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001430#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001431 && iscdp == 0
1432#endif
1433 )
1434 return;
1435
1436 cti = ntohs(vet->vet_tag);
1437 vlanid = cti & VLAN_IDMASK;
1438 x = ntohs(vet->vet_type);
1439
1440 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1441 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001442 }
1443
Robin Getz0ebf04c2009-07-23 03:01:03 -04001444 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001445
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001446#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001447 if (iscdp) {
1448 CDPHandler((uchar *)ip, len);
1449 return;
1450 }
1451#endif
1452
1453 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1454 if (vlanid == VLAN_NONE)
1455 vlanid = (mynvlanid & VLAN_IDMASK);
1456 /* not matched? */
1457 if (vlanid != (myvlanid & VLAN_IDMASK))
1458 return;
1459 }
1460
wdenk2d966952002-10-31 22:12:35 +00001461 switch (x) {
1462
1463 case PROT_ARP:
1464 /*
1465 * We have to deal with two types of ARP packets:
wdenk8bde7f72003-06-27 21:31:46 +00001466 * - REQUEST packets will be answered by sending our
1467 * IP address - if we know it.
1468 * - REPLY packates are expected only after we asked
1469 * for the TFTP server's or the gateway's ethernet
1470 * address; so if we receive such a packet, we set
1471 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001472 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001473 debug("Got ARP\n");
1474
wdenk2d966952002-10-31 22:12:35 +00001475 arp = (ARP_t *)ip;
1476 if (len < ARP_HDR_SIZE) {
1477 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1478 return;
1479 }
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001480 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001481 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001482 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001483 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001484 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001485 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001486 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001487 return;
wdenk2d966952002-10-31 22:12:35 +00001488
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001489 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001490 return;
wdenk2d966952002-10-31 22:12:35 +00001491
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001492 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001493 return;
wdenk2d966952002-10-31 22:12:35 +00001494
1495 switch (ntohs(arp->ar_op)) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001496 case ARPOP_REQUEST:
1497 /* reply with our IP address */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001498 debug("Got ARP REQUEST, return our IP\n");
wdenka3d991b2004-04-15 21:48:45 +00001499 pkt = (uchar *)et;
1500 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001501 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001502 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001503 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001504 memcpy(&arp->ar_data[0], NetOurEther, 6);
1505 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001506 (void) eth_send((uchar *)et,
1507 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001508 return;
wdenk73a8b272003-06-05 19:27:42 +00001509
1510 case ARPOP_REPLY: /* arp reply */
1511 /* are we waiting for a reply */
1512 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1513 break;
Robin Getz97cfe862009-07-21 12:15:28 -04001514
1515#ifdef CONFIG_KEEP_SERVERADDR
1516 if (NetServerIP == NetArpWaitPacketIP) {
1517 char buf[20];
1518 sprintf(buf, "%pM", arp->ar_data);
1519 setenv("serveraddr", buf);
1520 }
1521#endif
1522
Robin Getz0ebf04c2009-07-23 03:01:03 -04001523 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger95823ca2009-02-11 18:23:48 -05001524 arp->ar_data);
wdenk73a8b272003-06-05 19:27:42 +00001525
1526 tmp = NetReadIP(&arp->ar_data[6]);
1527
1528 /* matched waiting packet's address */
1529 if (tmp == NetArpWaitReplyIP) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001530 debug("Got it\n");
wdenk73a8b272003-06-05 19:27:42 +00001531 /* save address for later use */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001532 memcpy(NetArpWaitPacketMAC,
1533 &arp->ar_data[0], 6);
wdenk73a8b272003-06-05 19:27:42 +00001534
wdenk68ceb292004-08-02 21:11:11 +00001535#ifdef CONFIG_NETCONSOLE
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001536 (*packetHandler)(0, 0, 0, 0, 0);
wdenk68ceb292004-08-02 21:11:11 +00001537#endif
wdenk73a8b272003-06-05 19:27:42 +00001538 /* modify header, and transmit it */
1539 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001540 (void) eth_send(NetArpWaitTxPacket,
1541 NetArpWaitTxPacketSize);
wdenk73a8b272003-06-05 19:27:42 +00001542
1543 /* no arp request pending now */
1544 NetArpWaitPacketIP = 0;
1545 NetArpWaitTxPacketSize = 0;
1546 NetArpWaitPacketMAC = NULL;
1547
1548 }
wdenk2d966952002-10-31 22:12:35 +00001549 return;
1550 default:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001551 debug("Unexpected ARP opcode 0x%x\n",
1552 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001553 return;
1554 }
wdenk289f9322005-01-12 00:15:14 +00001555 break;
wdenk2d966952002-10-31 22:12:35 +00001556
Peter Tyserbf6cb242010-09-30 11:25:48 -05001557#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001558 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001559 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001560 arp = (ARP_t *)ip;
1561 if (len < ARP_HDR_SIZE) {
1562 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1563 return;
1564 }
1565
1566 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1567 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1568 (ntohs(arp->ar_pro) != PROT_IP) ||
1569 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1570
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001571 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001572 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001573 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +00001574 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001575 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1576 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001577
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001578 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001579 }
1580 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001581#endif
wdenk2d966952002-10-31 22:12:35 +00001582 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001583 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001584 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001585 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001586 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001587 return;
1588 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001589 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001590 if (len < ntohs(ip->ip_len)) {
1591 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1592 return;
1593 }
1594 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001595 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1596
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001597 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001598 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001599 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001600 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001601 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001602 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001603 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001604 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001605 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001606 return;
1607 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001608 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001609 tmp = NetReadIP(&ip->ip_dst);
1610 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001611#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001612 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001613#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001614 return;
wdenk2d966952002-10-31 22:12:35 +00001615 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001616 /* Read source IP address for later use */
1617 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001618 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001619 * The function returns the unchanged packet if it's not
1620 * a fragment, and either the complete packet or NULL if
1621 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1622 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001623 ip = NetDefragment(ip, &len);
1624 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001625 return;
1626 /*
wdenk2d966952002-10-31 22:12:35 +00001627 * watch for ICMP host redirects
1628 *
wdenk8bde7f72003-06-27 21:31:46 +00001629 * There is no real handler code (yet). We just watch
1630 * for ICMP host redirect messages. In case anybody
1631 * sees these messages: please contact me
1632 * (wd@denx.de), or - even better - send me the
1633 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001634 *
wdenk8bde7f72003-06-27 21:31:46 +00001635 * Note: in all cases where I have seen this so far
1636 * it was a problem with the router configuration,
1637 * for instance when a router was configured in the
1638 * BOOTP reply, but the TFTP server was on the same
1639 * subnet. So this is probably a warning that your
1640 * configuration might be wrong. But I'm not really
1641 * sure if there aren't any other situations.
wdenk2d966952002-10-31 22:12:35 +00001642 */
1643 if (ip->ip_p == IPPROTO_ICMP) {
1644 ICMP_t *icmph = (ICMP_t *)&(ip->udp_src);
1645
wdenk73a8b272003-06-05 19:27:42 +00001646 switch (icmph->type) {
1647 case ICMP_REDIRECT:
wdenk90dc6702005-05-03 14:12:25 +00001648 if (icmph->code != ICMP_REDIR_HOST)
1649 return;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001650 printf(" ICMP Host Redirect to %pI4 ",
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001651 &icmph->un.gateway);
Stefan Roese8534bf92005-08-12 20:06:52 +02001652 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001653#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001654 case ICMP_ECHO_REPLY:
1655 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001656 * IP header OK. Pass the packet to the
1657 * current handler.
wdenk73a8b272003-06-05 19:27:42 +00001658 */
1659 /* XXX point to ip packet */
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001660 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
Stefan Roese8534bf92005-08-12 20:06:52 +02001661 return;
Ed Swarthout83853172007-03-07 12:14:50 -06001662 case ICMP_ECHO_REQUEST:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001663 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001664 ETHER_HDR_SIZE + len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001665
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001666 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1667 memcpy(&et->et_src[0], NetOurEther, 6);
Ed Swarthout83853172007-03-07 12:14:50 -06001668
1669 ip->ip_sum = 0;
1670 ip->ip_off = 0;
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001671 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1672 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001673 ip->ip_sum = ~NetCksum((uchar *)ip,
1674 IP_HDR_SIZE_NO_UDP >> 1);
Ed Swarthout83853172007-03-07 12:14:50 -06001675
1676 icmph->type = ICMP_ECHO_REPLY;
1677 icmph->checksum = 0;
1678 icmph->checksum = ~NetCksum((uchar *)icmph,
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001679 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1680 (void) eth_send((uchar *)et,
1681 ETHER_HDR_SIZE + len);
Ed Swarthout83853172007-03-07 12:14:50 -06001682 return;
wdenk73a8b272003-06-05 19:27:42 +00001683#endif
1684 default:
1685 return;
1686 }
wdenk2d966952002-10-31 22:12:35 +00001687 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1688 return;
1689 }
1690
Stefan Roese8534bf92005-08-12 20:06:52 +02001691#ifdef CONFIG_UDP_CHECKSUM
1692 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001693 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001694 ushort *sumptr;
1695 ushort sumlen;
1696
1697 xsum = ip->ip_p;
1698 xsum += (ntohs(ip->udp_len));
1699 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1700 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1701 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1702 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1703
1704 sumlen = ntohs(ip->udp_len);
1705 sumptr = (ushort *) &(ip->udp_src);
1706
1707 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001708 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001709
1710 sumdata = *sumptr++;
1711 xsum += ntohs(sumdata);
1712 sumlen -= 2;
1713 }
1714 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001715 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001716
1717 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001718 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001719 xsum += sumdata;
1720 }
1721 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001722 xsum = (xsum & 0x0000ffff) +
1723 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001724 }
1725 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001726 printf(" UDP wrong checksum %08lx %08x\n",
1727 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001728 return;
1729 }
1730 }
1731#endif
1732
David Updegraff53a5c422007-06-11 10:41:07 -05001733
wdenk68ceb292004-08-02 21:11:11 +00001734#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001735 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001736 ntohs(ip->udp_dst),
1737 ntohs(ip->udp_src),
1738 ntohs(ip->udp_len) - 8);
1739#endif
wdenk2d966952002-10-31 22:12:35 +00001740 /*
1741 * IP header OK. Pass the packet to the current handler.
1742 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001743 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001744 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001745 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001746 ntohs(ip->udp_src),
1747 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001748 break;
1749 }
1750}
1751
1752
1753/**********************************************************************/
1754
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001755static int net_check_prereq(proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001756{
1757 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001758 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001759#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001760 case PING:
wdenk6e592382004-04-18 17:39:38 +00001761 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001762 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001763 return 1;
wdenk6e592382004-04-18 17:39:38 +00001764 }
1765 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001766#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001767#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001768 case SNTP:
1769 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001770 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001771 return 1;
wdenkea287de2005-04-01 00:25:43 +00001772 }
1773 goto common;
1774#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001775#if defined(CONFIG_CMD_DNS)
1776 case DNS:
1777 if (NetOurDNSIP == 0) {
1778 puts("*** ERROR: DNS server address not given\n");
1779 return 1;
1780 }
1781 goto common;
1782#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001783#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001784 case NFS:
1785#endif
wdenk2d966952002-10-31 22:12:35 +00001786 case TFTP:
wdenk6e592382004-04-18 17:39:38 +00001787 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001788 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001789 return 1;
wdenk6e592382004-04-18 17:39:38 +00001790 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001791#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1792 defined(CONFIG_CMD_DNS)
1793common:
wdenk73a8b272003-06-05 19:27:42 +00001794#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001795 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001796
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001797 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001798 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001799 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001800 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001801 return 1;
wdenk6e592382004-04-18 17:39:38 +00001802 }
1803 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001804
Peter Tyserbf6cb242010-09-30 11:25:48 -05001805#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001806 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001807#endif
wdenk2d966952002-10-31 22:12:35 +00001808 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001809 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001810 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001811 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
wdenk2d966952002-10-31 22:12:35 +00001812#ifdef CONFIG_NET_MULTI
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001813 extern int eth_get_dev_index(void);
1814 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001815
wdenk6e592382004-04-18 17:39:38 +00001816 switch (num) {
1817 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001818 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001819 return 1;
wdenk6e592382004-04-18 17:39:38 +00001820 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001821 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001822 break;
wdenk6e592382004-04-18 17:39:38 +00001823 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001824 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001825 num);
1826 break;
wdenk2d966952002-10-31 22:12:35 +00001827 }
wdenk6e592382004-04-18 17:39:38 +00001828
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001829 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001830 return 2;
wdenk6e592382004-04-18 17:39:38 +00001831#else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001832 puts("*** ERROR: `ethaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001833 return 1;
wdenk6e592382004-04-18 17:39:38 +00001834#endif
1835 }
1836 /* Fall through */
1837 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001838 return 0;
wdenk2d966952002-10-31 22:12:35 +00001839 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001840 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001841}
1842/**********************************************************************/
1843
1844int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001845NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001846{
1847 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1848}
1849
1850
1851unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001852NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001853{
1854 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001855 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001856
1857 xsum = 0;
1858 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001859 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001860 xsum = (xsum & 0xffff) + (xsum >> 16);
1861 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001862 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001863}
1864
wdenka3d991b2004-04-15 21:48:45 +00001865int
1866NetEthHdrSize(void)
1867{
1868 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001869
wdenka3d991b2004-04-15 21:48:45 +00001870 myvlanid = ntohs(NetOurVLAN);
1871 if (myvlanid == (ushort)-1)
1872 myvlanid = VLAN_NONE;
1873
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001874 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1875 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001876}
1877
1878int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001879NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001880{
1881 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001882 ushort myvlanid;
1883
1884 myvlanid = ntohs(NetOurVLAN);
1885 if (myvlanid == (ushort)-1)
1886 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001887
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001888 memcpy(et->et_dest, addr, 6);
1889 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001890 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001891 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001892 return ETHER_HDR_SIZE;
1893 } else {
1894 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001895
wdenka3d991b2004-04-15 21:48:45 +00001896 vet->vet_vlan_type = htons(PROT_VLAN);
1897 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1898 vet->vet_type = htons(prot);
1899 return VLAN_ETHER_HDR_SIZE;
1900 }
1901}
wdenk2d966952002-10-31 22:12:35 +00001902
1903void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001904NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001905{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001906 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001907
1908 /*
1909 * If the data is an odd number of bytes, zero the
1910 * byte after the last byte so that the checksum
1911 * will work.
1912 */
1913 if (len & 1)
1914 xip[IP_HDR_SIZE + len] = 0;
1915
1916 /*
1917 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001918 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001919 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001920 /* IP_HDR_SIZE / 4 (not including UDP) */
1921 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001922 ip->ip_tos = 0;
1923 ip->ip_len = htons(IP_HDR_SIZE + len);
1924 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001925 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001926 ip->ip_ttl = 255;
1927 ip->ip_p = 17; /* UDP */
1928 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001929 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001930 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001931 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001932 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001933 ip->udp_src = htons(sport);
1934 ip->udp_dst = htons(dport);
1935 ip->udp_len = htons(8 + len);
1936 ip->udp_xsum = 0;
1937 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1938}
1939
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001940void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001941{
1942 if (*src && (*src == '"')) {
1943 ++src;
1944 --size;
1945 }
1946
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001947 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001948 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001949 *dst = '\0';
1950}
1951
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001952#if defined(CONFIG_CMD_NFS) || \
1953 defined(CONFIG_CMD_SNTP) || \
1954 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001955/*
Robin Getz97399462010-03-08 14:07:00 -05001956 * make port a little random (1024-17407)
1957 * This keeps the math somewhat trivial to compute, and seems to work with
1958 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001959 */
1960unsigned int random_port(void)
1961{
Robin Getz97399462010-03-08 14:07:00 -05001962 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001963}
1964#endif
1965
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001966void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001967{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001968 x = ntohl(x);
1969 sprintf(s, "%d.%d.%d.%d",
1970 (int) ((x >> 24) & 0xff),
1971 (int) ((x >> 16) & 0xff),
1972 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001973 );
wdenk2d966952002-10-31 22:12:35 +00001974}
1975
wdenka3d991b2004-04-15 21:48:45 +00001976void VLAN_to_string(ushort x, char *s)
1977{
1978 x = ntohs(x);
1979
1980 if (x == (ushort)-1)
1981 x = VLAN_NONE;
1982
1983 if (x == VLAN_NONE)
1984 strcpy(s, "none");
1985 else
1986 sprintf(s, "%d", x & VLAN_IDMASK);
1987}
1988
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001989ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001990{
1991 ushort id;
1992
1993 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001994 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001995
1996 if (*s < '0' || *s > '9')
1997 id = VLAN_NONE;
1998 else
1999 id = (ushort)simple_strtoul(s, NULL, 10);
2000
wdenkb9711de2004-04-25 13:18:40 +00002001 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00002002}
2003
wdenka3d991b2004-04-15 21:48:45 +00002004ushort getenv_VLAN(char *var)
2005{
Luca Ceresoli92895de2011-05-04 02:40:45 +00002006 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00002007}