blob: f6afb6439624133e8a1d5125849d22ce0c0a5e16 [file] [log] [blame]
wdenk2d966952002-10-31 22:12:35 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020043 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000047 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
wdenkbe9c1cb2004-02-24 02:00:03 +000058 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
wdenkb4ad9622005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkb4ad9622005-04-01 00:25:43 +000071 * - own IP address
72 * We want: - network time
73 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000074 */
75
76
77#include <common.h>
78#include <watchdog.h>
79#include <command.h>
80#include <net.h>
81#include "bootp.h"
82#include "tftp.h"
Peter Tyserf7a48ca2010-09-30 11:25:48 -050083#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000084#include "rarp.h"
Peter Tyserf7a48ca2010-09-30 11:25:48 -050085#endif
wdenkbe9c1cb2004-02-24 02:00:03 +000086#include "nfs.h"
wdenk49c3f672003-10-08 22:33:00 +000087#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -050091#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +000092#include "sntp.h"
93#endif
Peter Tyser62948502008-11-03 09:30:59 -060094#if defined(CONFIG_CDP_VERSION)
95#include <timestamp.h>
96#endif
Robin Getz82f0d232009-07-20 14:53:54 -040097#if defined(CONFIG_CMD_DNS)
98#include "dns.h"
99#endif
wdenk2d966952002-10-31 22:12:35 +0000100
Wolfgang Denk6405a152006-03-31 18:32:53 +0200101DECLARE_GLOBAL_DATA_PTR;
102
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200103#ifndef CONFIG_ARP_TIMEOUT
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000104/* Milliseconds before trying ARP again */
105# define ARP_TIMEOUT 5000UL
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200106#else
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200107# define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200108#endif
109
110
wdenke6466f62003-06-05 19:27:42 +0000111#ifndef CONFIG_NET_RETRY_COUNT
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200112# define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
wdenke6466f62003-06-05 19:27:42 +0000113#else
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200114# define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
wdenke6466f62003-06-05 19:27:42 +0000115#endif
116
wdenk2d966952002-10-31 22:12:35 +0000117/** BOOTP EXTENTIONS **/
118
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000119/* Our subnet mask (0=unknown) */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000120IPaddr_t NetOurSubnetMask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000121/* Our gateways IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000122IPaddr_t NetOurGatewayIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000123/* Our DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000124IPaddr_t NetOurDNSIP;
Jon Loeliger5336a762007-07-09 22:08:34 -0500125#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000126/* Our 2nd DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000127IPaddr_t NetOurDNS2IP;
stroesee0aadfb2003-08-28 14:17:32 +0000128#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000129/* Our NIS domain */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000130char NetOurNISDomain[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000131/* Our hostname */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000132char NetOurHostName[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000133/* Our bootpath */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000134char NetOurRootPath[64] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000135/* Our bootfile size in blocks */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000136ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000137
David Updegraff7280da72007-06-11 10:41:07 -0500138#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
139IPaddr_t Mcast_addr;
140#endif
141
wdenk2d966952002-10-31 22:12:35 +0000142/** END OF BOOTP EXTENTIONS **/
143
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000144/* The actual transferred size of the bootfile (in bytes) */
145ulong NetBootFileXferSize;
146/* Our ethernet address */
147uchar NetOurEther[6];
148/* Boot server enet address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000149uchar NetServerEther[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000150/* Our IP addr (0 = unknown) */
151IPaddr_t NetOurIP;
152/* Server IP addr (0 = unknown) */
153IPaddr_t NetServerIP;
154/* Current receive packet */
155volatile uchar *NetRxPacket;
156/* Current rx packet length */
157int NetRxPacketLen;
158/* IP packet ID */
159unsigned NetIPID;
160/* Ethernet bcast address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000161uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162uchar NetEtherNullAddr[6];
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100163#ifdef CONFIG_API
164void (*push_packet)(volatile void *, int len) = 0;
165#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500166#if defined(CONFIG_CMD_CDP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000167/* Ethernet bcast address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000168uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
wdenk145d2c12004-04-15 21:48:45 +0000169#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000170/* Network loop state */
171int NetState;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000172/* Tried all network devices */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000173int NetRestartWrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000174/* Network loop restarted */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000175static int NetRestarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000176/* At least one device configured */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000177static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000178
wdenk05939202004-04-18 17:39:38 +0000179/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000180/* default is without VLAN */
181ushort NetOurVLAN = 0xFFFF;
182/* ditto */
183ushort NetOurNativeVLAN = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000184
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000185/* Boot File name */
186char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000187
Jon Loeliger54f35c22007-07-09 17:45:14 -0500188#if defined(CONFIG_CMD_PING)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000189/* the ip address to ping */
190IPaddr_t NetPingIP;
wdenke6466f62003-06-05 19:27:42 +0000191
192static void PingStart(void);
193#endif
194
Jon Loeliger54f35c22007-07-09 17:45:14 -0500195#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000196static void CDPStart(void);
197#endif
198
Jon Loeliger54f35c22007-07-09 17:45:14 -0500199#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000200/* NTP server IP address */
201IPaddr_t NetNtpServerIP;
202/* offset time from UTC */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000203int NetTimeOffset;
wdenkb4ad9622005-04-01 00:25:43 +0000204#endif
205
wdenkb8fb6192004-08-02 21:11:11 +0000206#ifdef CONFIG_NETCONSOLE
207void NcStart(void);
208int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
209#endif
210
wdenk2d966952002-10-31 22:12:35 +0000211volatile uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
212
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000213/* Receive packet */
214volatile uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000215
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000216/* Current RX packet handler */
217static rxhand_f *packetHandler;
Simon Glass230467c2011-10-24 18:00:01 +0000218static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000219/* Current timeout handler */
220static thand_f *timeHandler;
221/* Time base value */
222static ulong timeStart;
223/* Current timeout value */
224static ulong timeDelta;
225/* THE transmit packet */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000226volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000227
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000228static int net_check_prereq(proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000229
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100230static int NetTryCount;
231
wdenk2d966952002-10-31 22:12:35 +0000232/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000233
234IPaddr_t NetArpWaitPacketIP;
235IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000236/* MAC address of waiting packet's destination */
237uchar *NetArpWaitPacketMAC;
238/* THE transmit packet */
239uchar *NetArpWaitTxPacket;
wdenke6466f62003-06-05 19:27:42 +0000240int NetArpWaitTxPacketSize;
Wolfgang Denka1be4762008-05-20 16:00:29 +0200241uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenke6466f62003-06-05 19:27:42 +0000242ulong NetArpWaitTimerStart;
243int NetArpWaitTry;
244
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000245void ArpRequest(void)
wdenke6466f62003-06-05 19:27:42 +0000246{
247 int i;
248 volatile uchar *pkt;
wdenk05939202004-04-18 17:39:38 +0000249 ARP_t *arp;
wdenke6466f62003-06-05 19:27:42 +0000250
Robin Getz9e0a4d62009-07-23 03:01:03 -0400251 debug("ARP broadcast %d\n", NetArpWaitTry);
252
wdenke6466f62003-06-05 19:27:42 +0000253 pkt = NetTxPacket;
254
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000255 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenke6466f62003-06-05 19:27:42 +0000256
wdenk05939202004-04-18 17:39:38 +0000257 arp = (ARP_t *) pkt;
wdenke6466f62003-06-05 19:27:42 +0000258
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000259 arp->ar_hrd = htons(ARP_ETHER);
260 arp->ar_pro = htons(PROT_IP);
wdenke6466f62003-06-05 19:27:42 +0000261 arp->ar_hln = 6;
262 arp->ar_pln = 4;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000263 arp->ar_op = htons(ARPOP_REQUEST);
wdenke6466f62003-06-05 19:27:42 +0000264
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000265 /* source ET addr */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000266 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000267 /* source IP addr */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000268 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
wdenk05939202004-04-18 17:39:38 +0000269 for (i = 10; i < 16; ++i) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000270 /* dest ET addr = 0 */
271 arp->ar_data[i] = 0;
wdenke6466f62003-06-05 19:27:42 +0000272 }
273
wdenk05939202004-04-18 17:39:38 +0000274 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
275 (NetOurIP & NetOurSubnetMask)) {
276 if (NetOurGatewayIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000277 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denk98ceffb2006-03-12 01:13:30 +0100278 NetArpWaitReplyIP = NetArpWaitPacketIP;
279 } else {
280 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk05939202004-04-18 17:39:38 +0000281 }
wdenk05939202004-04-18 17:39:38 +0000282 } else {
283 NetArpWaitReplyIP = NetArpWaitPacketIP;
284 }
wdenke6466f62003-06-05 19:27:42 +0000285
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000286 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
287 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenke6466f62003-06-05 19:27:42 +0000288}
289
290void ArpTimeoutCheck(void)
291{
292 ulong t;
293
294 if (!NetArpWaitPacketIP)
295 return;
296
297 t = get_timer(0);
298
299 /* check for arp timeout */
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200300 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenke6466f62003-06-05 19:27:42 +0000301 NetArpWaitTry++;
302
303 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000304 puts("\nARP Retry count exceeded; starting again\n");
wdenke6466f62003-06-05 19:27:42 +0000305 NetArpWaitTry = 0;
306 NetStartAgain();
307 } else {
308 NetArpWaitTimerStart = t;
309 ArpRequest();
310 }
311 }
312}
313
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200314static void
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100315NetInitLoop(proto_t protocol)
316{
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000317 static int env_changed_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100318 bd_t *bd = gd->bd;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000319 int env_id = get_env_id();
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100320
321 /* update only when the environment has changed */
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300322 if (env_changed_id != env_id) {
Enric Balletbo i Serra7019d252011-05-31 21:01:47 +0000323 NetOurIP = getenv_IPaddr("ipaddr");
324 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000325 NetOurGatewayIP = getenv_IPaddr("gatewayip");
326 NetOurSubnetMask = getenv_IPaddr("netmask");
327 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100328 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300329 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz82f0d232009-07-20 14:53:54 -0400330#if defined(CONFIG_CMD_DNS)
331 NetOurDNSIP = getenv_IPaddr("dnsip");
332#endif
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300333 env_changed_id = env_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100334 }
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300335
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200336 return;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100337}
338
wdenke6466f62003-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;
Simon Glass230467c2011-10-24 18:00:01 +0000348 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000349
wdenk2d966952002-10-31 22:12:35 +0000350 NetRestarted = 0;
351 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000352
wdenke6466f62003-06-05 19:27:42 +0000353 /* XXX problem with bss workaround */
354 NetArpWaitPacketMAC = NULL;
355 NetArpWaitTxPacket = NULL;
356 NetArpWaitPacketIP = 0;
357 NetArpWaitReplyIP = 0;
358 NetArpWaitTxPacket = NULL;
359 NetTxPacket = NULL;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100360 NetTryCount = 1;
wdenke6466f62003-06-05 19:27:42 +0000361
wdenk2d966952002-10-31 22:12:35 +0000362 if (!NetTxPacket) {
363 int i;
wdenk2d966952002-10-31 22:12:35 +0000364 /*
365 * Setup packet buffers, aligned correctly.
366 */
367 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
368 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000369 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000370 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenke6466f62003-06-05 19:27:42 +0000371 }
372
373 if (!NetArpWaitTxPacket) {
374 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
375 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
376 NetArpWaitTxPacketSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000377 }
378
379 eth_halt();
wdenk145d2c12004-04-15 21:48:45 +0000380 eth_set_current();
wdenkfa66e932005-04-03 14:52:59 +0000381 if (eth_init(bd) < 0) {
382 eth_halt();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +0000383 return -1;
wdenkfa66e932005-04-03 14:52:59 +0000384 }
wdenk2d966952002-10-31 22:12:35 +0000385
386restart:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000387 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000388
389 NetState = NETLOOP_CONTINUE;
390
391 /*
392 * Start the ball rolling with the given start function. From
393 * here on, this code is a state machine driven by received
394 * packets and timer events.
395 */
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100396 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000397
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000398 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000399 case 1:
400 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000401 eth_halt();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +0000402 return -1;
wdenk2d966952002-10-31 22:12:35 +0000403
wdenk2d966952002-10-31 22:12:35 +0000404 case 2:
405 /* network device not configured */
406 break;
wdenk2d966952002-10-31 22:12:35 +0000407
408 case 0:
wdenk2d966952002-10-31 22:12:35 +0000409 NetDevExists = 1;
wdenk2d966952002-10-31 22:12:35 +0000410 switch (protocol) {
411 case TFTP:
412 /* always use ARP to get server ethernet address */
wdenke6466f62003-06-05 19:27:42 +0000413 TftpStart();
wdenk2d966952002-10-31 22:12:35 +0000414 break;
Luca Ceresoli7aa81a42011-05-17 00:03:40 +0000415#ifdef CONFIG_CMD_TFTPSRV
416 case TFTPSRV:
417 TftpStartServer();
418 break;
419#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500420#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000421 case DHCP:
wdenkc3919532004-10-11 22:51:13 +0000422 BootpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300423 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000424 DhcpRequest(); /* Basically same as BOOTP */
425 break;
Jon Loeligera9807e52007-07-10 11:05:02 -0500426#endif
wdenk2d966952002-10-31 22:12:35 +0000427
428 case BOOTP:
429 BootpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300430 NetOurIP = 0;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000431 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000432 break;
433
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500434#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000435 case RARP:
436 RarpTry = 0;
Michael Zaidman16bb21d2009-07-14 23:37:12 +0300437 NetOurIP = 0;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000438 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000439 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -0500440#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500441#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000442 case PING:
443 PingStart();
444 break;
445#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500446#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +0000447 case NFS:
448 NfsStart();
449 break;
450#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500451#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000452 case CDP:
453 CDPStart();
454 break;
455#endif
wdenkb8fb6192004-08-02 21:11:11 +0000456#ifdef CONFIG_NETCONSOLE
457 case NETCONS:
458 NcStart();
459 break;
460#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500461#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +0000462 case SNTP:
463 SntpStart();
464 break;
465#endif
Robin Getz82f0d232009-07-20 14:53:54 -0400466#if defined(CONFIG_CMD_DNS)
467 case DNS:
468 DnsStart();
469 break;
470#endif
wdenk2d966952002-10-31 22:12:35 +0000471 default:
472 break;
473 }
474
475 NetBootFileXferSize = 0;
476 break;
477 }
478
Jon Loeliger54f35c22007-07-09 17:45:14 -0500479#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000480#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
481 defined(CONFIG_STATUS_LED) && \
482 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000483 /*
wdenk9c53f402003-10-15 23:53:47 +0000484 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000485 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000486 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000487 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000488 else
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000489 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200490#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000491#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000492
493 /*
494 * Main packet reception loop. Loop receiving packets until
wdenk27fa5852005-04-03 14:18:51 +0000495 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000496 */
497 for (;;) {
498 WATCHDOG_RESET();
499#ifdef CONFIG_SHOW_ACTIVITY
500 {
501 extern void show_activity(int arg);
502 show_activity(1);
503 }
504#endif
505 /*
506 * Check the ethernet for a new packet. The ethernet
507 * receive routine will process it.
508 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200509 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000510
511 /*
512 * Abort if ctrl-c was pressed.
513 */
514 if (ctrlc()) {
wdenk57b2d802003-06-27 21:31:46 +0000515 eth_halt();
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000516 puts("\nAbort\n");
Simon Glass230467c2011-10-24 18:00:01 +0000517 goto done;
wdenk2d966952002-10-31 22:12:35 +0000518 }
519
wdenke6466f62003-06-05 19:27:42 +0000520 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000521
522 /*
523 * Check for a timeout, and run the timeout handler
524 * if we have one.
525 */
wdenk5d841732003-08-17 18:55:18 +0000526 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000527 thand_f *x;
528
Jon Loeliger54f35c22007-07-09 17:45:14 -0500529#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000530#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
531 defined(CONFIG_STATUS_LED) && \
532 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000533 /*
wdenk9c53f402003-10-15 23:53:47 +0000534 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000535 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000536 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000537 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000538 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenk49c3f672003-10-08 22:33:00 +0000539 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000540 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenk49c3f672003-10-08 22:33:00 +0000541 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000542#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000543#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000544 x = timeHandler;
545 timeHandler = (thand_f *)0;
546 (*x)();
547 }
548
549
550 switch (NetState) {
551
552 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000553 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000554 goto restart;
555
556 case NETLOOP_SUCCESS:
557 if (NetBootFileXferSize > 0) {
Wolfgang Denk084d0ce2007-09-12 00:48:57 +0200558 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000559 printf("Bytes transferred = %ld (%lx hex)\n",
560 NetBootFileXferSize,
561 NetBootFileXferSize);
Wolfgang Denk084d0ce2007-09-12 00:48:57 +0200562 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000563 setenv("filesize", buf);
wdenk145d2c12004-04-15 21:48:45 +0000564
565 sprintf(buf, "%lX", (unsigned long)load_addr);
566 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000567 }
568 eth_halt();
Simon Glass230467c2011-10-24 18:00:01 +0000569 ret = NetBootFileXferSize;
570 goto done;
wdenk2d966952002-10-31 22:12:35 +0000571
572 case NETLOOP_FAIL:
Simon Glass230467c2011-10-24 18:00:01 +0000573 goto done;
wdenk2d966952002-10-31 22:12:35 +0000574 }
575 }
Simon Glass230467c2011-10-24 18:00:01 +0000576
577done:
578 /* Clear out the handlers */
579 NetSetHandler(NULL);
580 net_set_icmp_handler(NULL);
581 return ret;
wdenk2d966952002-10-31 22:12:35 +0000582}
583
584/**********************************************************************/
585
586static void
587startAgainTimeout(void)
588{
589 NetState = NETLOOP_RESTART;
590}
591
592static void
Luca Ceresoli428ab362011-04-18 06:19:50 +0000593startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
594 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000595{
596 /* Totally ignore the packet */
597}
598
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000599void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000600{
wdenk05939202004-04-18 17:39:38 +0000601 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100602 int retry_forever = 0;
603 unsigned long retrycnt = 0;
wdenk145d2c12004-04-15 21:48:45 +0000604
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100605 nretry = getenv("netretry");
606 if (nretry) {
607 if (!strcmp(nretry, "yes"))
608 retry_forever = 1;
609 else if (!strcmp(nretry, "no"))
610 retrycnt = 0;
611 else if (!strcmp(nretry, "once"))
612 retrycnt = 1;
613 else
614 retrycnt = simple_strtoul(nretry, NULL, 0);
615 } else
616 retry_forever = 1;
617
618 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
619 eth_halt();
wdenk145d2c12004-04-15 21:48:45 +0000620 NetState = NETLOOP_FAIL;
621 return;
622 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100623
624 NetTryCount++;
625
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000626 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100627#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000628 eth_try_another(!NetRestarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100629#endif
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000630 eth_init(gd->bd);
wdenk05939202004-04-18 17:39:38 +0000631 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000632 NetRestartWrap = 0;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100633 if (NetDevExists) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000634 NetSetTimeout(10000UL, startAgainTimeout);
635 NetSetHandler(startAgainHandler);
wdenk05939202004-04-18 17:39:38 +0000636 } else {
wdenk2d966952002-10-31 22:12:35 +0000637 NetState = NETLOOP_FAIL;
638 }
wdenk05939202004-04-18 17:39:38 +0000639 } else {
wdenk2d966952002-10-31 22:12:35 +0000640 NetState = NETLOOP_RESTART;
641 }
wdenk2d966952002-10-31 22:12:35 +0000642}
643
644/**********************************************************************/
645/*
646 * Miscelaneous bits.
647 */
648
649void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000650NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000651{
652 packetHandler = f;
653}
654
Simon Glass230467c2011-10-24 18:00:01 +0000655void net_set_icmp_handler(rxhand_icmp_f *f)
656{
657 packet_icmp_handler = f;
658}
wdenk2d966952002-10-31 22:12:35 +0000659
660void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000661NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000662{
663 if (iv == 0) {
664 timeHandler = (thand_f *)0;
665 } else {
666 timeHandler = f;
wdenk5d841732003-08-17 18:55:18 +0000667 timeStart = get_timer(0);
668 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000669 }
670}
671
672
673void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000674NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000675{
676 (void) eth_send(pkt, len);
677}
678
wdenke6466f62003-06-05 19:27:42 +0000679int
680NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
681{
wdenk145d2c12004-04-15 21:48:45 +0000682 uchar *pkt;
683
wdenke6466f62003-06-05 19:27:42 +0000684 /* convert to new style broadcast */
685 if (dest == 0)
686 dest = 0xFFFFFFFF;
687
688 /* if broadcast, make the ether address a broadcast and don't do ARP */
689 if (dest == 0xFFFFFFFF)
690 ether = NetBcastAddr;
691
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000692 /*
693 * if MAC address was not discovered yet, save the packet and do
694 * an ARP request
695 */
wdenke6466f62003-06-05 19:27:42 +0000696 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
697
Robin Getz9e0a4d62009-07-23 03:01:03 -0400698 debug("sending ARP for %08lx\n", dest);
699
wdenke6466f62003-06-05 19:27:42 +0000700 NetArpWaitPacketIP = dest;
701 NetArpWaitPacketMAC = ether;
wdenk145d2c12004-04-15 21:48:45 +0000702
703 pkt = NetArpWaitTxPacket;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000704 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenk145d2c12004-04-15 21:48:45 +0000705
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000706 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000707 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
708 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenke6466f62003-06-05 19:27:42 +0000709
710 /* size of the waiting packet */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000711 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
712 IP_HDR_SIZE + len;
wdenke6466f62003-06-05 19:27:42 +0000713
714 /* and do the ARP request */
715 NetArpWaitTry = 1;
716 NetArpWaitTimerStart = get_timer(0);
717 ArpRequest();
718 return 1; /* waiting */
719 }
720
Robin Getz9e0a4d62009-07-23 03:01:03 -0400721 debug("sending UDP to %08lx/%pM\n", dest, ether);
wdenke6466f62003-06-05 19:27:42 +0000722
wdenk145d2c12004-04-15 21:48:45 +0000723 pkt = (uchar *)NetTxPacket;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000724 pkt += NetSetEther(pkt, ether, PROT_IP);
725 NetSetIP(pkt, dest, dport, sport, len);
wdenk145d2c12004-04-15 21:48:45 +0000726 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenke6466f62003-06-05 19:27:42 +0000727
wdenk05939202004-04-18 17:39:38 +0000728 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000729}
730
Jon Loeliger54f35c22007-07-09 17:45:14 -0500731#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000732static ushort PingSeqNo;
733
734int PingSend(void)
735{
736 static uchar mac[6];
737 volatile IP_t *ip;
738 volatile ushort *s;
wdenk145d2c12004-04-15 21:48:45 +0000739 uchar *pkt;
wdenke6466f62003-06-05 19:27:42 +0000740
741 /* XXX always send arp request */
742
743 memcpy(mac, NetEtherNullAddr, 6);
744
Robin Getz9e0a4d62009-07-23 03:01:03 -0400745 debug("sending ARP for %08lx\n", NetPingIP);
wdenke6466f62003-06-05 19:27:42 +0000746
747 NetArpWaitPacketIP = NetPingIP;
748 NetArpWaitPacketMAC = mac;
749
wdenk145d2c12004-04-15 21:48:45 +0000750 pkt = NetArpWaitTxPacket;
751 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenke6466f62003-06-05 19:27:42 +0000752
wdenk145d2c12004-04-15 21:48:45 +0000753 ip = (volatile IP_t *)pkt;
wdenke6466f62003-06-05 19:27:42 +0000754
755 /*
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000756 * Construct an IP and ICMP header.
757 * (need to set no fragment bit - XXX)
wdenke6466f62003-06-05 19:27:42 +0000758 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000759 /* IP_HDR_SIZE / 4 (not including UDP) */
760 ip->ip_hl_v = 0x45;
wdenke6466f62003-06-05 19:27:42 +0000761 ip->ip_tos = 0;
762 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
763 ip->ip_id = htons(NetIPID++);
Peter Tyser0885bf02008-12-01 16:26:20 -0600764 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenke6466f62003-06-05 19:27:42 +0000765 ip->ip_ttl = 255;
766 ip->ip_p = 0x01; /* ICMP */
767 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000768 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000769 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000770 /* - "" - */
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000771 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenke6466f62003-06-05 19:27:42 +0000772 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
773
774 s = &ip->udp_src; /* XXX ICMP starts here */
775 s[0] = htons(0x0800); /* echo-request, code */
776 s[1] = 0; /* checksum */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200777 s[2] = 0; /* identifier */
wdenke6466f62003-06-05 19:27:42 +0000778 s[3] = htons(PingSeqNo++); /* sequence number */
779 s[1] = ~NetCksum((uchar *)s, 8/2);
780
781 /* size of the waiting packet */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000782 NetArpWaitTxPacketSize =
783 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenke6466f62003-06-05 19:27:42 +0000784
785 /* and do the ARP request */
786 NetArpWaitTry = 1;
787 NetArpWaitTimerStart = get_timer(0);
788 ArpRequest();
789 return 1; /* waiting */
790}
791
792static void
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000793PingTimeout(void)
wdenke6466f62003-06-05 19:27:42 +0000794{
795 eth_halt();
796 NetState = NETLOOP_FAIL; /* we did not get the reply */
797}
798
799static void
Luca Ceresoli428ab362011-04-18 06:19:50 +0000800PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
801 unsigned len)
wdenke6466f62003-06-05 19:27:42 +0000802{
Luca Ceresoli428ab362011-04-18 06:19:50 +0000803 if (sip != NetPingIP)
wdenke6466f62003-06-05 19:27:42 +0000804 return;
805
806 NetState = NETLOOP_SUCCESS;
807}
808
809static void PingStart(void)
810{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000811 printf("Using %s device\n", eth_get_name());
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000812 NetSetTimeout(10000UL, PingTimeout);
813 NetSetHandler(PingHandler);
wdenke6466f62003-06-05 19:27:42 +0000814
815 PingSend();
816}
Jon Loeligera9807e52007-07-10 11:05:02 -0500817#endif
wdenk145d2c12004-04-15 21:48:45 +0000818
Jon Loeliger54f35c22007-07-09 17:45:14 -0500819#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000820
821#define CDP_DEVICE_ID_TLV 0x0001
822#define CDP_ADDRESS_TLV 0x0002
823#define CDP_PORT_ID_TLV 0x0003
824#define CDP_CAPABILITIES_TLV 0x0004
825#define CDP_VERSION_TLV 0x0005
826#define CDP_PLATFORM_TLV 0x0006
827#define CDP_NATIVE_VLAN_TLV 0x000a
828#define CDP_APPLIANCE_VLAN_TLV 0x000e
829#define CDP_TRIGGER_TLV 0x000f
830#define CDP_POWER_CONSUMPTION_TLV 0x0010
831#define CDP_SYSNAME_TLV 0x0014
832#define CDP_SYSOBJECT_TLV 0x0015
833#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
834
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200835#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenk145d2c12004-04-15 21:48:45 +0000836
837static int CDPSeq;
838static int CDPOK;
839
840ushort CDPNativeVLAN;
841ushort CDPApplianceVLAN;
842
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000843static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
844 0x00 };
wdenk145d2c12004-04-15 21:48:45 +0000845
846static ushort CDP_compute_csum(const uchar *buff, ushort len)
847{
848 ushort csum;
849 int odd;
850 ulong result = 0;
851 ushort leftover;
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200852 ushort *p;
wdenk145d2c12004-04-15 21:48:45 +0000853
854 if (len > 0) {
855 odd = 1 & (ulong)buff;
856 if (odd) {
857 result = *buff << 8;
858 len--;
859 buff++;
860 }
861 while (len > 1) {
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200862 p = (ushort *)buff;
863 result += *p++;
864 buff = (uchar *)p;
wdenk145d2c12004-04-15 21:48:45 +0000865 if (result & 0x80000000)
866 result = (result & 0xFFFF) + (result >> 16);
867 len -= 2;
868 }
869 if (len) {
870 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denkf0711132005-11-10 20:59:46 +0100871 /* CISCO SUCKS big time! (and blows too):
872 * CDP uses the IP checksum algorithm with a twist;
873 * for the last byte it *sign* extends and sums.
874 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000875 result = (result & 0xffff0000) |
876 ((result + leftover) & 0x0000ffff);
wdenk145d2c12004-04-15 21:48:45 +0000877 }
878 while (result >> 16)
879 result = (result & 0xFFFF) + (result >> 16);
880
881 if (odd)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000882 result = ((result >> 8) & 0xff) |
883 ((result & 0xff) << 8);
wdenk145d2c12004-04-15 21:48:45 +0000884 }
885
886 /* add up 16-bit and 17-bit words for 17+c bits */
887 result = (result & 0xffff) + (result >> 16);
888 /* add up 16-bit and 2-bit for 16+c bit */
889 result = (result & 0xffff) + (result >> 16);
890 /* add up carry.. */
891 result = (result & 0xffff) + (result >> 16);
892
893 /* negate */
894 csum = ~(ushort)result;
895
896 /* run time endian detection */
897 if (csum != htons(csum)) /* little endian */
898 csum = htons(csum);
899
900 return csum;
901}
902
903int CDPSendTrigger(void)
904{
905 volatile uchar *pkt;
906 volatile ushort *s;
907 volatile ushort *cp;
908 Ethernet_t *et;
wdenk145d2c12004-04-15 21:48:45 +0000909 int len;
910 ushort chksum;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000911#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
912 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk05939202004-04-18 17:39:38 +0000913 char buf[32];
914#endif
wdenk145d2c12004-04-15 21:48:45 +0000915
916 pkt = NetTxPacket;
917 et = (Ethernet_t *)pkt;
918
919 /* NOTE: trigger sent not on any VLAN */
920
921 /* form ethernet header */
922 memcpy(et->et_dest, NetCDPAddr, 6);
923 memcpy(et->et_src, NetOurEther, 6);
924
925 pkt += ETHER_HDR_SIZE;
926
927 /* SNAP header */
928 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
929 pkt += sizeof(CDP_SNAP_hdr);
930
931 /* CDP header */
932 *pkt++ = 0x02; /* CDP version 2 */
933 *pkt++ = 180; /* TTL */
934 s = (volatile ushort *)pkt;
935 cp = s;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000936 /* checksum (0 for later calculation) */
937 *s++ = htons(0);
wdenk145d2c12004-04-15 21:48:45 +0000938
939 /* CDP fields */
940#ifdef CONFIG_CDP_DEVICE_ID
941 *s++ = htons(CDP_DEVICE_ID_TLV);
942 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger79ca1b92009-02-11 18:23:48 -0500943 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenk145d2c12004-04-15 21:48:45 +0000944 memcpy((uchar *)s, buf, 16);
945 s += 16 / 2;
946#endif
947
948#ifdef CONFIG_CDP_PORT_ID
949 *s++ = htons(CDP_PORT_ID_TLV);
950 memset(buf, 0, sizeof(buf));
951 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
952 len = strlen(buf);
953 if (len & 1) /* make it even */
954 len++;
955 *s++ = htons(len + 4);
956 memcpy((uchar *)s, buf, len);
957 s += len / 2;
958#endif
959
960#ifdef CONFIG_CDP_CAPABILITIES
961 *s++ = htons(CDP_CAPABILITIES_TLV);
962 *s++ = htons(8);
963 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
964 s += 2;
965#endif
966
967#ifdef CONFIG_CDP_VERSION
968 *s++ = htons(CDP_VERSION_TLV);
969 memset(buf, 0, sizeof(buf));
970 strcpy(buf, CONFIG_CDP_VERSION);
971 len = strlen(buf);
972 if (len & 1) /* make it even */
973 len++;
974 *s++ = htons(len + 4);
975 memcpy((uchar *)s, buf, len);
976 s += len / 2;
977#endif
978
979#ifdef CONFIG_CDP_PLATFORM
980 *s++ = htons(CDP_PLATFORM_TLV);
981 memset(buf, 0, sizeof(buf));
982 strcpy(buf, CONFIG_CDP_PLATFORM);
983 len = strlen(buf);
984 if (len & 1) /* make it even */
985 len++;
986 *s++ = htons(len + 4);
987 memcpy((uchar *)s, buf, len);
988 s += len / 2;
989#endif
990
991#ifdef CONFIG_CDP_TRIGGER
992 *s++ = htons(CDP_TRIGGER_TLV);
993 *s++ = htons(8);
994 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
995 s += 2;
996#endif
997
998#ifdef CONFIG_CDP_POWER_CONSUMPTION
999 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1000 *s++ = htons(6);
1001 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1002#endif
1003
1004 /* length of ethernet packet */
1005 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1006 et->et_protlen = htons(len);
1007
1008 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001009 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1010 (uchar *)s - (NetTxPacket + len));
wdenk145d2c12004-04-15 21:48:45 +00001011 if (chksum == 0)
1012 chksum = 0xFFFF;
1013 *cp = htons(chksum);
1014
1015 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1016 return 0;
1017}
1018
1019static void
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001020CDPTimeout(void)
wdenk145d2c12004-04-15 21:48:45 +00001021{
1022 CDPSeq++;
1023
1024 if (CDPSeq < 3) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001025 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenk145d2c12004-04-15 21:48:45 +00001026 CDPSendTrigger();
1027 return;
1028 }
1029
1030 /* if not OK try again */
1031 if (!CDPOK)
1032 NetStartAgain();
1033 else
1034 NetState = NETLOOP_SUCCESS;
1035}
1036
1037static void
Luca Ceresoli428ab362011-04-18 06:19:50 +00001038CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1039 unsigned len)
wdenk145d2c12004-04-15 21:48:45 +00001040{
1041 /* nothing */
1042}
1043
1044static void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001045CDPHandler(const uchar *pkt, unsigned len)
wdenk145d2c12004-04-15 21:48:45 +00001046{
1047 const uchar *t;
1048 const ushort *ss;
1049 ushort type, tlen;
1050 uchar applid;
1051 ushort vlan, nvlan;
1052
1053 /* minimum size? */
1054 if (len < sizeof(CDP_SNAP_hdr) + 4)
1055 goto pkt_short;
1056
1057 /* check for valid CDP SNAP header */
1058 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1059 return;
1060
1061 pkt += sizeof(CDP_SNAP_hdr);
1062 len -= sizeof(CDP_SNAP_hdr);
1063
1064 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1065 if (pkt[0] < 0x02 || pkt[1] == 0)
1066 return;
1067
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001068 /*
1069 * if version is greater than 0x02 maybe we'll have a problem;
1070 * output a warning
1071 */
wdenk145d2c12004-04-15 21:48:45 +00001072 if (pkt[0] != 0x02)
1073 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1074 pkt[0] & 0xff);
1075
1076 if (CDP_compute_csum(pkt, len) != 0)
1077 return;
1078
1079 pkt += 4;
1080 len -= 4;
1081
1082 vlan = htons(-1);
1083 nvlan = htons(-1);
1084 while (len > 0) {
1085 if (len < 4)
1086 goto pkt_short;
1087
1088 ss = (const ushort *)pkt;
1089 type = ntohs(ss[0]);
1090 tlen = ntohs(ss[1]);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001091 if (tlen > len)
wdenk145d2c12004-04-15 21:48:45 +00001092 goto pkt_short;
wdenk145d2c12004-04-15 21:48:45 +00001093
1094 pkt += tlen;
1095 len -= tlen;
1096
1097 ss += 2; /* point ss to the data of the TLV */
1098 tlen -= 4;
1099
1100 switch (type) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001101 case CDP_DEVICE_ID_TLV:
1102 break;
1103 case CDP_ADDRESS_TLV:
1104 break;
1105 case CDP_PORT_ID_TLV:
1106 break;
1107 case CDP_CAPABILITIES_TLV:
1108 break;
1109 case CDP_VERSION_TLV:
1110 break;
1111 case CDP_PLATFORM_TLV:
1112 break;
1113 case CDP_NATIVE_VLAN_TLV:
1114 nvlan = *ss;
1115 break;
1116 case CDP_APPLIANCE_VLAN_TLV:
1117 t = (const uchar *)ss;
1118 while (tlen > 0) {
1119 if (tlen < 3)
1120 goto pkt_short;
wdenk145d2c12004-04-15 21:48:45 +00001121
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001122 applid = t[0];
1123 ss = (const ushort *)(t + 1);
wdenk145d2c12004-04-15 21:48:45 +00001124
1125#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001126 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1127 vlan = *ss;
wdenk145d2c12004-04-15 21:48:45 +00001128#else
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001129 /* XXX will this work; dunno */
1130 vlan = ntohs(*ss);
wdenk145d2c12004-04-15 21:48:45 +00001131#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001132 t += 3; tlen -= 3;
1133 }
1134 break;
1135 case CDP_TRIGGER_TLV:
1136 break;
1137 case CDP_POWER_CONSUMPTION_TLV:
1138 break;
1139 case CDP_SYSNAME_TLV:
1140 break;
1141 case CDP_SYSOBJECT_TLV:
1142 break;
1143 case CDP_MANAGEMENT_ADDRESS_TLV:
1144 break;
wdenk145d2c12004-04-15 21:48:45 +00001145 }
1146 }
1147
1148 CDPApplianceVLAN = vlan;
1149 CDPNativeVLAN = nvlan;
1150
1151 CDPOK = 1;
1152 return;
1153
1154 pkt_short:
1155 printf("** CDP packet is too short\n");
1156 return;
1157}
1158
1159static void CDPStart(void)
1160{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001161 printf("Using %s device\n", eth_get_name());
wdenk145d2c12004-04-15 21:48:45 +00001162 CDPSeq = 0;
1163 CDPOK = 0;
1164
1165 CDPNativeVLAN = htons(-1);
1166 CDPApplianceVLAN = htons(-1);
1167
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001168 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1169 NetSetHandler(CDPDummyHandler);
wdenk145d2c12004-04-15 21:48:45 +00001170
1171 CDPSendTrigger();
1172}
Jon Loeligera9807e52007-07-10 11:05:02 -05001173#endif
wdenk145d2c12004-04-15 21:48:45 +00001174
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001175#ifdef CONFIG_IP_DEFRAG
1176/*
1177 * This function collects fragments in a single packet, according
1178 * to the algorithm in RFC815. It returns NULL or the pointer to
1179 * a complete packet, in static storage
1180 */
1181#ifndef CONFIG_NET_MAXDEFRAG
1182#define CONFIG_NET_MAXDEFRAG 16384
1183#endif
1184/*
1185 * MAXDEFRAG, above, is chosen in the config file and is real data
1186 * so we need to add the NFS overhead, which is more than TFTP.
1187 * To use sizeof in the internal unnamed structures, we need a real
1188 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1189 * The compiler doesn't complain nor allocates the actual structure
1190 */
1191static struct rpc_t rpc_specimen;
1192#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1193
1194#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1195
1196/*
1197 * this is the packet being assembled, either data or frag control.
1198 * Fragments go by 8 bytes, so this union must be 8 bytes long
1199 */
1200struct hole {
1201 /* first_byte is address of this structure */
1202 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1203 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1204 u16 prev_hole; /* index of prev, 0 == none */
1205 u16 unused;
1206};
1207
1208static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1209{
1210 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1211 static u16 first_hole, total_len;
1212 struct hole *payload, *thisfrag, *h, *newh;
1213 IP_t *localip = (IP_t *)pkt_buff;
1214 uchar *indata = (uchar *)ip;
1215 int offset8, start, len, done = 0;
1216 u16 ip_off = ntohs(ip->ip_off);
1217
1218 /* payload starts after IP header, this fragment is in there */
1219 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1220 offset8 = (ip_off & IP_OFFS);
1221 thisfrag = payload + offset8;
1222 start = offset8 * 8;
1223 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1224
1225 if (start + len > IP_MAXUDP) /* fragment extends too far */
1226 return NULL;
1227
1228 if (!total_len || localip->ip_id != ip->ip_id) {
1229 /* new (or different) packet, reset structs */
1230 total_len = 0xffff;
1231 payload[0].last_byte = ~0;
1232 payload[0].next_hole = 0;
1233 payload[0].prev_hole = 0;
1234 first_hole = 0;
1235 /* any IP header will work, copy the first we received */
1236 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1237 }
1238
1239 /*
1240 * What follows is the reassembly algorithm. We use the payload
1241 * array as a linked list of hole descriptors, as each hole starts
1242 * at a multiple of 8 bytes. However, last byte can be whatever value,
1243 * so it is represented as byte count, not as 8-byte blocks.
1244 */
1245
1246 h = payload + first_hole;
1247 while (h->last_byte < start) {
1248 if (!h->next_hole) {
1249 /* no hole that far away */
1250 return NULL;
1251 }
1252 h = payload + h->next_hole;
1253 }
1254
Fillod Stephanee7ade8b2010-06-11 19:26:43 +02001255 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1256 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001257 /* no overlap with holes (dup fragment?) */
1258 return NULL;
1259 }
1260
1261 if (!(ip_off & IP_FLAGS_MFRAG)) {
1262 /* no more fragmentss: truncate this (last) hole */
1263 total_len = start + len;
1264 h->last_byte = start + len;
1265 }
1266
1267 /*
1268 * There is some overlap: fix the hole list. This code doesn't
1269 * deal with a fragment that overlaps with two different holes
1270 * (thus being a superset of a previously-received fragment).
1271 */
1272
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001273 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001274 /* complete overlap with hole: remove hole */
1275 if (!h->prev_hole && !h->next_hole) {
1276 /* last remaining hole */
1277 done = 1;
1278 } else if (!h->prev_hole) {
1279 /* first hole */
1280 first_hole = h->next_hole;
1281 payload[h->next_hole].prev_hole = 0;
1282 } else if (!h->next_hole) {
1283 /* last hole */
1284 payload[h->prev_hole].next_hole = 0;
1285 } else {
1286 /* in the middle of the list */
1287 payload[h->next_hole].prev_hole = h->prev_hole;
1288 payload[h->prev_hole].next_hole = h->next_hole;
1289 }
1290
1291 } else if (h->last_byte <= start + len) {
1292 /* overlaps with final part of the hole: shorten this hole */
1293 h->last_byte = start;
1294
1295 } else if (h >= thisfrag) {
1296 /* overlaps with initial part of the hole: move this hole */
1297 newh = thisfrag + (len / 8);
1298 *newh = *h;
1299 h = newh;
1300 if (h->next_hole)
1301 payload[h->next_hole].prev_hole = (h - payload);
1302 if (h->prev_hole)
1303 payload[h->prev_hole].next_hole = (h - payload);
1304 else
1305 first_hole = (h - payload);
1306
1307 } else {
1308 /* fragment sits in the middle: split the hole */
1309 newh = thisfrag + (len / 8);
1310 *newh = *h;
1311 h->last_byte = start;
1312 h->next_hole = (newh - payload);
1313 newh->prev_hole = (h - payload);
1314 if (newh->next_hole)
1315 payload[newh->next_hole].prev_hole = (newh - payload);
1316 }
1317
1318 /* finally copy this fragment and possibly return whole packet */
1319 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1320 if (!done)
1321 return NULL;
1322
1323 localip->ip_len = htons(total_len);
1324 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1325 return localip;
1326}
1327
1328static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1329{
1330 u16 ip_off = ntohs(ip->ip_off);
1331 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1332 return ip; /* not a fragment */
1333 return __NetDefragment(ip, lenp);
1334}
1335
1336#else /* !CONFIG_IP_DEFRAG */
1337
1338static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1339{
1340 u16 ip_off = ntohs(ip->ip_off);
1341 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1342 return ip; /* not a fragment */
1343 return NULL;
1344}
1345#endif
wdenk2d966952002-10-31 22:12:35 +00001346
Simon Glass43c72962011-10-24 18:00:00 +00001347/**
1348 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1349 * drop others.
1350 *
1351 * @parma ip IP packet containing the ICMP
1352 */
1353static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
1354{
1355 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
1356
1357 switch (icmph->type) {
1358 case ICMP_REDIRECT:
1359 if (icmph->code != ICMP_REDIR_HOST)
1360 return;
1361 printf(" ICMP Host Redirect to %pI4 ",
1362 &icmph->un.gateway);
1363 break;
1364#if defined(CONFIG_CMD_PING)
1365 case ICMP_ECHO_REPLY:
1366 /*
1367 * IP header OK. Pass the packet to the
1368 * current handler.
1369 */
1370 /*
1371 * XXX point to ip packet - should this use
1372 * packet_icmp_handler?
1373 */
1374 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1375 break;
1376 case ICMP_ECHO_REQUEST:
1377 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1378 ETHER_HDR_SIZE + len);
1379
1380 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1381 memcpy(&et->et_src[0], NetOurEther, 6);
1382
1383 ip->ip_sum = 0;
1384 ip->ip_off = 0;
1385 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1386 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1387 ip->ip_sum = ~NetCksum((uchar *)ip,
1388 IP_HDR_SIZE_NO_UDP >> 1);
1389
1390 icmph->type = ICMP_ECHO_REPLY;
1391 icmph->checksum = 0;
1392 icmph->checksum = ~NetCksum((uchar *)icmph,
1393 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1394 (void) eth_send((uchar *)et,
1395 ETHER_HDR_SIZE + len);
1396 break;
1397#endif
1398 default:
Simon Glass230467c2011-10-24 18:00:01 +00001399 if (packet_icmp_handler)
1400 packet_icmp_handler(icmph->type, icmph->code,
1401 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
1402 icmph->un.data, ntohs(ip->udp_len));
Simon Glass43c72962011-10-24 18:00:00 +00001403 break;
1404 }
1405}
1406
wdenk2d966952002-10-31 22:12:35 +00001407void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001408NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001409{
1410 Ethernet_t *et;
1411 IP_t *ip;
1412 ARP_t *arp;
1413 IPaddr_t tmp;
Luca Ceresoli428ab362011-04-18 06:19:50 +00001414 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001415 int x;
wdenk145d2c12004-04-15 21:48:45 +00001416 uchar *pkt;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001417#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001418 int iscdp;
1419#endif
1420 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001421
Robin Getz9e0a4d62009-07-23 03:01:03 -04001422 debug("packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001423
Mike Frysingerdc166032009-07-18 21:04:08 -04001424 NetRxPacket = inpkt;
1425 NetRxPacketLen = len;
wdenk145d2c12004-04-15 21:48:45 +00001426 et = (Ethernet_t *)inpkt;
1427
1428 /* too small packet? */
1429 if (len < ETHER_HDR_SIZE)
1430 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001431
1432#ifdef CONFIG_API
1433 if (push_packet) {
1434 (*push_packet)(inpkt, len);
1435 return;
1436 }
1437#endif
wdenk145d2c12004-04-15 21:48:45 +00001438
Jon Loeliger54f35c22007-07-09 17:45:14 -05001439#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001440 /* keep track if packet is CDP */
1441 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1442#endif
1443
1444 myvlanid = ntohs(NetOurVLAN);
1445 if (myvlanid == (ushort)-1)
1446 myvlanid = VLAN_NONE;
1447 mynvlanid = ntohs(NetOurNativeVLAN);
1448 if (mynvlanid == (ushort)-1)
1449 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001450
1451 x = ntohs(et->et_protlen);
1452
Robin Getz9e0a4d62009-07-23 03:01:03 -04001453 debug("packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001454
wdenk2d966952002-10-31 22:12:35 +00001455 if (x < 1514) {
1456 /*
1457 * Got a 802 packet. Check the other protocol field.
1458 */
1459 x = ntohs(et->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001460
1461 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001462 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001463
1464 } else if (x != PROT_VLAN) { /* normal packet */
1465 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001466 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001467
1468 } else { /* VLAN packet */
1469 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1470
Robin Getz9e0a4d62009-07-23 03:01:03 -04001471 debug("VLAN packet received\n");
1472
wdenk145d2c12004-04-15 21:48:45 +00001473 /* too small packet? */
1474 if (len < VLAN_ETHER_HDR_SIZE)
1475 return;
1476
1477 /* if no VLAN active */
1478 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001479#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001480 && iscdp == 0
1481#endif
1482 )
1483 return;
1484
1485 cti = ntohs(vet->vet_tag);
1486 vlanid = cti & VLAN_IDMASK;
1487 x = ntohs(vet->vet_type);
1488
1489 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1490 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001491 }
1492
Robin Getz9e0a4d62009-07-23 03:01:03 -04001493 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001494
Jon Loeliger54f35c22007-07-09 17:45:14 -05001495#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001496 if (iscdp) {
1497 CDPHandler((uchar *)ip, len);
1498 return;
1499 }
1500#endif
1501
1502 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1503 if (vlanid == VLAN_NONE)
1504 vlanid = (mynvlanid & VLAN_IDMASK);
1505 /* not matched? */
1506 if (vlanid != (myvlanid & VLAN_IDMASK))
1507 return;
1508 }
1509
wdenk2d966952002-10-31 22:12:35 +00001510 switch (x) {
1511
1512 case PROT_ARP:
1513 /*
1514 * We have to deal with two types of ARP packets:
wdenk57b2d802003-06-27 21:31:46 +00001515 * - REQUEST packets will be answered by sending our
1516 * IP address - if we know it.
1517 * - REPLY packates are expected only after we asked
1518 * for the TFTP server's or the gateway's ethernet
1519 * address; so if we receive such a packet, we set
1520 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001521 */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001522 debug("Got ARP\n");
1523
wdenk2d966952002-10-31 22:12:35 +00001524 arp = (ARP_t *)ip;
1525 if (len < ARP_HDR_SIZE) {
1526 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1527 return;
1528 }
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001529 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001530 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001531 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001532 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001533 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001534 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001535 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001536 return;
wdenk2d966952002-10-31 22:12:35 +00001537
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001538 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001539 return;
wdenk2d966952002-10-31 22:12:35 +00001540
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001541 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001542 return;
wdenk2d966952002-10-31 22:12:35 +00001543
1544 switch (ntohs(arp->ar_op)) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001545 case ARPOP_REQUEST:
1546 /* reply with our IP address */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001547 debug("Got ARP REQUEST, return our IP\n");
wdenk145d2c12004-04-15 21:48:45 +00001548 pkt = (uchar *)et;
1549 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001550 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001551 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001552 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001553 memcpy(&arp->ar_data[0], NetOurEther, 6);
1554 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001555 (void) eth_send((uchar *)et,
1556 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001557 return;
wdenke6466f62003-06-05 19:27:42 +00001558
1559 case ARPOP_REPLY: /* arp reply */
1560 /* are we waiting for a reply */
1561 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1562 break;
Robin Getz470a6d42009-07-21 12:15:28 -04001563
1564#ifdef CONFIG_KEEP_SERVERADDR
1565 if (NetServerIP == NetArpWaitPacketIP) {
1566 char buf[20];
1567 sprintf(buf, "%pM", arp->ar_data);
1568 setenv("serveraddr", buf);
1569 }
1570#endif
1571
Robin Getz9e0a4d62009-07-23 03:01:03 -04001572 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger79ca1b92009-02-11 18:23:48 -05001573 arp->ar_data);
wdenke6466f62003-06-05 19:27:42 +00001574
1575 tmp = NetReadIP(&arp->ar_data[6]);
1576
1577 /* matched waiting packet's address */
1578 if (tmp == NetArpWaitReplyIP) {
Robin Getz9e0a4d62009-07-23 03:01:03 -04001579 debug("Got it\n");
wdenke6466f62003-06-05 19:27:42 +00001580 /* save address for later use */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001581 memcpy(NetArpWaitPacketMAC,
1582 &arp->ar_data[0], 6);
wdenke6466f62003-06-05 19:27:42 +00001583
wdenkb8fb6192004-08-02 21:11:11 +00001584#ifdef CONFIG_NETCONSOLE
Luca Ceresoli428ab362011-04-18 06:19:50 +00001585 (*packetHandler)(0, 0, 0, 0, 0);
wdenkb8fb6192004-08-02 21:11:11 +00001586#endif
wdenke6466f62003-06-05 19:27:42 +00001587 /* modify header, and transmit it */
1588 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001589 (void) eth_send(NetArpWaitTxPacket,
1590 NetArpWaitTxPacketSize);
wdenke6466f62003-06-05 19:27:42 +00001591
1592 /* no arp request pending now */
1593 NetArpWaitPacketIP = 0;
1594 NetArpWaitTxPacketSize = 0;
1595 NetArpWaitPacketMAC = NULL;
1596
1597 }
wdenk2d966952002-10-31 22:12:35 +00001598 return;
1599 default:
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001600 debug("Unexpected ARP opcode 0x%x\n",
1601 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001602 return;
1603 }
wdenkcb99da52005-01-12 00:15:14 +00001604 break;
wdenk2d966952002-10-31 22:12:35 +00001605
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001606#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001607 case PROT_RARP:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001608 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001609 arp = (ARP_t *)ip;
1610 if (len < ARP_HDR_SIZE) {
1611 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1612 return;
1613 }
1614
1615 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1616 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1617 (ntohs(arp->ar_pro) != PROT_IP) ||
1618 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1619
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001620 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001621 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001622 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk4989f872004-03-14 15:06:13 +00001623 if (NetServerIP == 0)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001624 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1625 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001626
Luca Ceresoli428ab362011-04-18 06:19:50 +00001627 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001628 }
1629 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001630#endif
wdenk2d966952002-10-31 22:12:35 +00001631 case PROT_IP:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001632 debug("Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001633 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001634 if (len < IP_HDR_SIZE) {
Robin Getz9e0a4d62009-07-23 03:01:03 -04001635 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001636 return;
1637 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001638 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001639 if (len < ntohs(ip->ip_len)) {
1640 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1641 return;
1642 }
1643 len = ntohs(ip->ip_len);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001644 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1645
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001646 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001647 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001648 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001649 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001650 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001651 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001652 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001653 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001654 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001655 return;
1656 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001657 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001658 tmp = NetReadIP(&ip->ip_dst);
1659 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff7280da72007-06-11 10:41:07 -05001660#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk627f5c32007-08-14 09:47:27 +02001661 if (Mcast_addr != tmp)
David Updegraff7280da72007-06-11 10:41:07 -05001662#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001663 return;
wdenk2d966952002-10-31 22:12:35 +00001664 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001665 /* Read source IP address for later use */
1666 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001667 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001668 * The function returns the unchanged packet if it's not
1669 * a fragment, and either the complete packet or NULL if
1670 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1671 */
Luca Ceresolidb210822011-05-04 02:40:47 +00001672 ip = NetDefragment(ip, &len);
1673 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001674 return;
1675 /*
wdenk2d966952002-10-31 22:12:35 +00001676 * watch for ICMP host redirects
1677 *
wdenk57b2d802003-06-27 21:31:46 +00001678 * There is no real handler code (yet). We just watch
1679 * for ICMP host redirect messages. In case anybody
1680 * sees these messages: please contact me
1681 * (wd@denx.de), or - even better - send me the
1682 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001683 *
wdenk57b2d802003-06-27 21:31:46 +00001684 * Note: in all cases where I have seen this so far
1685 * it was a problem with the router configuration,
1686 * for instance when a router was configured in the
1687 * BOOTP reply, but the TFTP server was on the same
1688 * subnet. So this is probably a warning that your
1689 * configuration might be wrong. But I'm not really
1690 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001691 *
1692 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1693 * we send a tftp packet to a dead connection, or when
1694 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001695 */
1696 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001697 receive_icmp(ip, len, src_ip, et);
1698 return;
wdenk2d966952002-10-31 22:12:35 +00001699 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1700 return;
1701 }
1702
Stefan Roesedfced812005-08-12 20:06:52 +02001703#ifdef CONFIG_UDP_CHECKSUM
1704 if (ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001705 ulong xsum;
Stefan Roesedfced812005-08-12 20:06:52 +02001706 ushort *sumptr;
1707 ushort sumlen;
1708
1709 xsum = ip->ip_p;
1710 xsum += (ntohs(ip->udp_len));
1711 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1712 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1713 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1714 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1715
1716 sumlen = ntohs(ip->udp_len);
1717 sumptr = (ushort *) &(ip->udp_src);
1718
1719 while (sumlen > 1) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001720 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001721
1722 sumdata = *sumptr++;
1723 xsum += ntohs(sumdata);
1724 sumlen -= 2;
1725 }
1726 if (sumlen > 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001727 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001728
1729 sumdata = *(unsigned char *) sumptr;
Wolfgang Denk30b87322005-08-12 23:43:12 +02001730 sumdata = (sumdata << 8) & 0xff00;
Stefan Roesedfced812005-08-12 20:06:52 +02001731 xsum += sumdata;
1732 }
1733 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001734 xsum = (xsum & 0x0000ffff) +
1735 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001736 }
1737 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001738 printf(" UDP wrong checksum %08lx %08x\n",
1739 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001740 return;
1741 }
1742 }
1743#endif
1744
David Updegraff7280da72007-06-11 10:41:07 -05001745
wdenkb8fb6192004-08-02 21:11:11 +00001746#ifdef CONFIG_NETCONSOLE
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001747 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenkb8fb6192004-08-02 21:11:11 +00001748 ntohs(ip->udp_dst),
1749 ntohs(ip->udp_src),
1750 ntohs(ip->udp_len) - 8);
1751#endif
wdenk2d966952002-10-31 22:12:35 +00001752 /*
1753 * IP header OK. Pass the packet to the current handler.
1754 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001755 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001756 ntohs(ip->udp_dst),
Luca Ceresoli428ab362011-04-18 06:19:50 +00001757 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001758 ntohs(ip->udp_src),
1759 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001760 break;
1761 }
1762}
1763
1764
1765/**********************************************************************/
1766
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001767static int net_check_prereq(proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001768{
1769 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001770 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001771#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001772 case PING:
wdenk05939202004-04-18 17:39:38 +00001773 if (NetPingIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001774 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001775 return 1;
wdenk05939202004-04-18 17:39:38 +00001776 }
1777 goto common;
wdenke6466f62003-06-05 19:27:42 +00001778#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001779#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +00001780 case SNTP:
1781 if (NetNtpServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001782 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001783 return 1;
wdenkb4ad9622005-04-01 00:25:43 +00001784 }
1785 goto common;
1786#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001787#if defined(CONFIG_CMD_DNS)
1788 case DNS:
1789 if (NetOurDNSIP == 0) {
1790 puts("*** ERROR: DNS server address not given\n");
1791 return 1;
1792 }
1793 goto common;
1794#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001795#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001796 case NFS:
1797#endif
wdenk2d966952002-10-31 22:12:35 +00001798 case TFTP:
wdenk05939202004-04-18 17:39:38 +00001799 if (NetServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001800 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001801 return 1;
wdenk05939202004-04-18 17:39:38 +00001802 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001803#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1804 defined(CONFIG_CMD_DNS)
1805common:
wdenke6466f62003-06-05 19:27:42 +00001806#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001807 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001808
Simon Guinot00dceba2011-05-01 23:38:40 +00001809 case NETCONS:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001810 case TFTPSRV:
wdenk05939202004-04-18 17:39:38 +00001811 if (NetOurIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001812 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001813 return 1;
wdenk05939202004-04-18 17:39:38 +00001814 }
1815 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001816
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001817#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001818 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001819#endif
wdenk2d966952002-10-31 22:12:35 +00001820 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001821 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001822 case DHCP:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001823 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001824 extern int eth_get_dev_index(void);
1825 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001826
wdenk05939202004-04-18 17:39:38 +00001827 switch (num) {
1828 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001829 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001830 return 1;
wdenk05939202004-04-18 17:39:38 +00001831 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001832 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001833 break;
wdenk05939202004-04-18 17:39:38 +00001834 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001835 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001836 num);
1837 break;
wdenk05939202004-04-18 17:39:38 +00001838 }
wdenk2d966952002-10-31 22:12:35 +00001839
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001840 NetStartAgain();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001841 return 2;
wdenk05939202004-04-18 17:39:38 +00001842 }
1843 /* Fall through */
1844 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001845 return 0;
wdenk2d966952002-10-31 22:12:35 +00001846 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001847 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001848}
1849/**********************************************************************/
1850
1851int
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001852NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001853{
1854 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1855}
1856
1857
1858unsigned
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001859NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001860{
1861 ulong xsum;
Stefan Roeseac553282005-08-31 12:55:50 +02001862 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001863
1864 xsum = 0;
1865 while (len-- > 0)
Wolfgang Denk3135c542005-08-26 01:36:03 +02001866 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001867 xsum = (xsum & 0xffff) + (xsum >> 16);
1868 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001869 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001870}
1871
wdenk145d2c12004-04-15 21:48:45 +00001872int
1873NetEthHdrSize(void)
1874{
1875 ushort myvlanid;
1876
1877 myvlanid = ntohs(NetOurVLAN);
1878 if (myvlanid == (ushort)-1)
1879 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001880
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001881 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1882 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001883}
1884
1885int
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001886NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001887{
1888 Ethernet_t *et = (Ethernet_t *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001889 ushort myvlanid;
1890
1891 myvlanid = ntohs(NetOurVLAN);
1892 if (myvlanid == (ushort)-1)
1893 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001894
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001895 memcpy(et->et_dest, addr, 6);
1896 memcpy(et->et_src, NetOurEther, 6);
wdenk145d2c12004-04-15 21:48:45 +00001897 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001898 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001899 return ETHER_HDR_SIZE;
1900 } else {
1901 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001902
wdenk145d2c12004-04-15 21:48:45 +00001903 vet->vet_vlan_type = htons(PROT_VLAN);
1904 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1905 vet->vet_type = htons(prot);
1906 return VLAN_ETHER_HDR_SIZE;
1907 }
1908}
wdenk2d966952002-10-31 22:12:35 +00001909
1910void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001911NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001912{
Olav Morkene8a02772009-01-23 12:56:26 +01001913 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001914
1915 /*
1916 * If the data is an odd number of bytes, zero the
1917 * byte after the last byte so that the checksum
1918 * will work.
1919 */
1920 if (len & 1)
1921 xip[IP_HDR_SIZE + len] = 0;
1922
1923 /*
1924 * Construct an IP and UDP header.
wdenk05939202004-04-18 17:39:38 +00001925 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001926 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001927 /* IP_HDR_SIZE / 4 (not including UDP) */
1928 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001929 ip->ip_tos = 0;
1930 ip->ip_len = htons(IP_HDR_SIZE + len);
1931 ip->ip_id = htons(NetIPID++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001932 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001933 ip->ip_ttl = 255;
1934 ip->ip_p = 17; /* UDP */
1935 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001936 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001937 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001938 /* - "" - */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001939 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001940 ip->udp_src = htons(sport);
1941 ip->udp_dst = htons(dport);
1942 ip->udp_len = htons(8 + len);
1943 ip->udp_xsum = 0;
1944 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1945}
1946
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001947void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001948{
1949 if (*src && (*src == '"')) {
1950 ++src;
1951 --size;
1952 }
1953
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001954 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001955 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001956 *dst = '\0';
1957}
1958
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001959#if defined(CONFIG_CMD_NFS) || \
1960 defined(CONFIG_CMD_SNTP) || \
1961 defined(CONFIG_CMD_DNS)
Robin Getz82f0d232009-07-20 14:53:54 -04001962/*
Robin Getz55b50e92010-03-08 14:07:00 -05001963 * make port a little random (1024-17407)
1964 * This keeps the math somewhat trivial to compute, and seems to work with
1965 * all supported protocols/clients/servers
Robin Getz82f0d232009-07-20 14:53:54 -04001966 */
1967unsigned int random_port(void)
1968{
Robin Getz55b50e92010-03-08 14:07:00 -05001969 return 1024 + (get_timer(0) % 0x4000);
Robin Getz82f0d232009-07-20 14:53:54 -04001970}
1971#endif
1972
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001973void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001974{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001975 x = ntohl(x);
1976 sprintf(s, "%d.%d.%d.%d",
1977 (int) ((x >> 24) & 0xff),
1978 (int) ((x >> 16) & 0xff),
1979 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001980 );
wdenk2d966952002-10-31 22:12:35 +00001981}
1982
wdenk145d2c12004-04-15 21:48:45 +00001983void VLAN_to_string(ushort x, char *s)
1984{
1985 x = ntohs(x);
1986
1987 if (x == (ushort)-1)
1988 x = VLAN_NONE;
1989
1990 if (x == VLAN_NONE)
1991 strcpy(s, "none");
1992 else
1993 sprintf(s, "%d", x & VLAN_IDMASK);
1994}
1995
Mike Frysinger89c73922010-10-20 07:16:48 -04001996ushort string_to_VLAN(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00001997{
1998 ushort id;
1999
2000 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00002001 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00002002
2003 if (*s < '0' || *s > '9')
2004 id = VLAN_NONE;
2005 else
2006 id = (ushort)simple_strtoul(s, NULL, 10);
2007
wdenk656140b2004-04-25 13:18:40 +00002008 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00002009}
2010
wdenk145d2c12004-04-15 21:48:45 +00002011ushort getenv_VLAN(char *var)
2012{
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00002013 return string_to_VLAN(getenv(var));
wdenk145d2c12004-04-15 21:48:45 +00002014}