blob: cd34bf96fd3dbcf384e05c8fbae75a385279102d [file] [log] [blame]
wdenk2d966952002-10-31 22:12:35 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020043 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000047 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
wdenkbe9c1cb2004-02-24 02:00:03 +000058 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
wdenkb4ad9622005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denk30b87322005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkb4ad9622005-04-01 00:25:43 +000071 * - own IP address
72 * We want: - network time
73 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000074 */
75
76
77#include <common.h>
78#include <watchdog.h>
79#include <command.h>
80#include <net.h>
81#include "bootp.h"
82#include "tftp.h"
Peter Tyserf7a48ca2010-09-30 11:25:48 -050083#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000084#include "rarp.h"
Peter Tyserf7a48ca2010-09-30 11:25:48 -050085#endif
wdenkbe9c1cb2004-02-24 02:00:03 +000086#include "nfs.h"
wdenk49c3f672003-10-08 22:33:00 +000087#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -050091#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +000092#include "sntp.h"
93#endif
Peter Tyser62948502008-11-03 09:30:59 -060094#if defined(CONFIG_CDP_VERSION)
95#include <timestamp.h>
96#endif
Robin Getz82f0d232009-07-20 14:53:54 -040097#if defined(CONFIG_CMD_DNS)
98#include "dns.h"
99#endif
wdenk2d966952002-10-31 22:12:35 +0000100
Wolfgang Denk6405a152006-03-31 18:32:53 +0200101DECLARE_GLOBAL_DATA_PTR;
102
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200103#ifndef CONFIG_ARP_TIMEOUT
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000104/* Milliseconds before trying ARP again */
105# define ARP_TIMEOUT 5000UL
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200106#else
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200107# define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200108#endif
109
110
wdenke6466f62003-06-05 19:27:42 +0000111#ifndef CONFIG_NET_RETRY_COUNT
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200112# define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
wdenke6466f62003-06-05 19:27:42 +0000113#else
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200114# define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
wdenke6466f62003-06-05 19:27:42 +0000115#endif
116
wdenk2d966952002-10-31 22:12:35 +0000117/** BOOTP EXTENTIONS **/
118
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000119/* Our subnet mask (0=unknown) */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000120IPaddr_t NetOurSubnetMask;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000121/* Our gateways IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000122IPaddr_t NetOurGatewayIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000123/* Our DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000124IPaddr_t NetOurDNSIP;
Jon Loeliger5336a762007-07-09 22:08:34 -0500125#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000126/* Our 2nd DNS IP address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000127IPaddr_t NetOurDNS2IP;
stroesee0aadfb2003-08-28 14:17:32 +0000128#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000129/* Our NIS domain */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000130char NetOurNISDomain[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000131/* Our hostname */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000132char NetOurHostName[32] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000133/* Our bootpath */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000134char NetOurRootPath[64] = {0,};
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000135/* Our bootfile size in blocks */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000136ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000137
David Updegraff7280da72007-06-11 10:41:07 -0500138#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
139IPaddr_t Mcast_addr;
140#endif
141
wdenk2d966952002-10-31 22:12:35 +0000142/** END OF BOOTP EXTENTIONS **/
143
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000144/* The actual transferred size of the bootfile (in bytes) */
145ulong NetBootFileXferSize;
146/* Our ethernet address */
147uchar NetOurEther[6];
148/* Boot server enet address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000149uchar NetServerEther[6];
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000150/* Our IP addr (0 = unknown) */
151IPaddr_t NetOurIP;
152/* Server IP addr (0 = unknown) */
153IPaddr_t NetServerIP;
154/* Current receive packet */
155volatile uchar *NetRxPacket;
156/* Current rx packet length */
157int NetRxPacketLen;
158/* IP packet ID */
159unsigned NetIPID;
160/* Ethernet bcast address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000161uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162uchar NetEtherNullAddr[6];
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +0100163#ifdef CONFIG_API
164void (*push_packet)(volatile void *, int len) = 0;
165#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -0500166#if defined(CONFIG_CMD_CDP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000167/* Ethernet bcast address */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000168uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
wdenk145d2c12004-04-15 21:48:45 +0000169#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000170/* Network loop state */
171int NetState;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000172/* Tried all network devices */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000173int NetRestartWrap;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000174/* Network loop restarted */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000175static int NetRestarted;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000176/* At least one device configured */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000177static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000178
wdenk05939202004-04-18 17:39:38 +0000179/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000180/* default is without VLAN */
181ushort NetOurVLAN = 0xFFFF;
182/* ditto */
183ushort NetOurNativeVLAN = 0xFFFF;
wdenk145d2c12004-04-15 21:48:45 +0000184
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000185/* Boot File name */
186char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000187
Jon Loeliger54f35c22007-07-09 17:45:14 -0500188#if defined(CONFIG_CMD_PING)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000189/* the ip address to ping */
190IPaddr_t NetPingIP;
wdenke6466f62003-06-05 19:27:42 +0000191
192static void PingStart(void);
193#endif
194
Jon Loeliger54f35c22007-07-09 17:45:14 -0500195#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000196static void CDPStart(void);
197#endif
198
Jon Loeliger54f35c22007-07-09 17:45:14 -0500199#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000200/* NTP server IP address */
201IPaddr_t NetNtpServerIP;
202/* offset time from UTC */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000203int NetTimeOffset;
wdenkb4ad9622005-04-01 00:25:43 +0000204#endif
205
wdenkb8fb6192004-08-02 21:11:11 +0000206#ifdef CONFIG_NETCONSOLE
207void NcStart(void);
208int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
209#endif
210
wdenk2d966952002-10-31 22:12:35 +0000211volatile uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
212
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000213/* Receive packet */
214volatile uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000215
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000216/* Current RX packet handler */
217static rxhand_f *packetHandler;
Simon Glass2928cd82011-10-26 14:18:38 +0000218#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000219static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Simon Glass2928cd82011-10-26 14:18:38 +0000220#endif
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000221/* Current timeout handler */
222static thand_f *timeHandler;
223/* Time base value */
224static ulong timeStart;
225/* Current timeout value */
226static ulong timeDelta;
227/* THE transmit packet */
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000228volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000229
Simon Glassd6c5f552011-10-24 18:00:02 +0000230static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000231
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100232static int NetTryCount;
233
wdenk2d966952002-10-31 22:12:35 +0000234/**********************************************************************/
wdenke6466f62003-06-05 19:27:42 +0000235
236IPaddr_t NetArpWaitPacketIP;
237IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000238/* MAC address of waiting packet's destination */
239uchar *NetArpWaitPacketMAC;
240/* THE transmit packet */
241uchar *NetArpWaitTxPacket;
wdenke6466f62003-06-05 19:27:42 +0000242int NetArpWaitTxPacketSize;
Wolfgang Denka1be4762008-05-20 16:00:29 +0200243uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenke6466f62003-06-05 19:27:42 +0000244ulong NetArpWaitTimerStart;
245int NetArpWaitTry;
246
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000247void ArpRequest(void)
wdenke6466f62003-06-05 19:27:42 +0000248{
wdenke6466f62003-06-05 19:27:42 +0000249 volatile uchar *pkt;
wdenk05939202004-04-18 17:39:38 +0000250 ARP_t *arp;
wdenke6466f62003-06-05 19:27:42 +0000251
Robin Getz9e0a4d62009-07-23 03:01:03 -0400252 debug("ARP broadcast %d\n", NetArpWaitTry);
253
wdenke6466f62003-06-05 19:27:42 +0000254 pkt = NetTxPacket;
255
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenke6466f62003-06-05 19:27:42 +0000257
wdenk05939202004-04-18 17:39:38 +0000258 arp = (ARP_t *) pkt;
wdenke6466f62003-06-05 19:27:42 +0000259
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
wdenke6466f62003-06-05 19:27:42 +0000262 arp->ar_hln = 6;
263 arp->ar_pln = 4;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000264 arp->ar_op = htons(ARPOP_REQUEST);
wdenke6466f62003-06-05 19:27:42 +0000265
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000266 /* source ET addr */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000267 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000268 /* source IP addr */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
Simon Glasse4655c52011-10-26 14:18:39 +0000270 /* dest ET addr = 0 */
271 memset(&arp->ar_data[10], '\0', 6);
wdenk05939202004-04-18 17:39:38 +0000272 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
273 (NetOurIP & NetOurSubnetMask)) {
274 if (NetOurGatewayIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000275 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denk98ceffb2006-03-12 01:13:30 +0100276 NetArpWaitReplyIP = NetArpWaitPacketIP;
277 } else {
278 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk05939202004-04-18 17:39:38 +0000279 }
wdenk05939202004-04-18 17:39:38 +0000280 } else {
281 NetArpWaitReplyIP = NetArpWaitPacketIP;
282 }
wdenke6466f62003-06-05 19:27:42 +0000283
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000284 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
285 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenke6466f62003-06-05 19:27:42 +0000286}
287
288void ArpTimeoutCheck(void)
289{
290 ulong t;
291
292 if (!NetArpWaitPacketIP)
293 return;
294
295 t = get_timer(0);
296
297 /* check for arp timeout */
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200298 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenke6466f62003-06-05 19:27:42 +0000299 NetArpWaitTry++;
300
301 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000302 puts("\nARP Retry count exceeded; starting again\n");
wdenke6466f62003-06-05 19:27:42 +0000303 NetArpWaitTry = 0;
304 NetStartAgain();
305 } else {
306 NetArpWaitTimerStart = t;
307 ArpRequest();
308 }
309 }
310}
311
Simon Glassd6c5f552011-10-24 18:00:02 +0000312static void NetInitLoop(enum proto_t protocol)
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100313{
Luca Ceresolid01bc1c2011-05-11 03:59:55 +0000314 static int env_changed_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100315 bd_t *bd = gd->bd;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000316 int env_id = get_env_id();
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100317
318 /* update only when the environment has changed */
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300319 if (env_changed_id != env_id) {
Enric Balletbo i Serra7019d252011-05-31 21:01:47 +0000320 NetOurIP = getenv_IPaddr("ipaddr");
321 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000322 NetOurGatewayIP = getenv_IPaddr("gatewayip");
323 NetOurSubnetMask = getenv_IPaddr("netmask");
324 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100325 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300326 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz82f0d232009-07-20 14:53:54 -0400327#if defined(CONFIG_CMD_DNS)
328 NetOurDNSIP = getenv_IPaddr("dnsip");
329#endif
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300330 env_changed_id = env_id;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100331 }
Michael Zaidmanb97bfe42009-04-04 01:43:00 +0300332
Heiko Schocher3b195ff2009-04-28 08:36:11 +0200333 return;
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100334}
335
wdenke6466f62003-06-05 19:27:42 +0000336/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000337/*
338 * Main network processing loop.
339 */
340
Simon Glassd6c5f552011-10-24 18:00:02 +0000341int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000342{
wdenk2d966952002-10-31 22:12:35 +0000343 bd_t *bd = gd->bd;
Simon Glass230467c2011-10-24 18:00:01 +0000344 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000345
wdenk2d966952002-10-31 22:12:35 +0000346 NetRestarted = 0;
347 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000348
wdenke6466f62003-06-05 19:27:42 +0000349 /* XXX problem with bss workaround */
350 NetArpWaitPacketMAC = NULL;
351 NetArpWaitTxPacket = NULL;
352 NetArpWaitPacketIP = 0;
353 NetArpWaitReplyIP = 0;
354 NetArpWaitTxPacket = NULL;
355 NetTxPacket = NULL;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100356 NetTryCount = 1;
wdenke6466f62003-06-05 19:27:42 +0000357
wdenk2d966952002-10-31 22:12:35 +0000358 if (!NetTxPacket) {
359 int i;
wdenk2d966952002-10-31 22:12:35 +0000360 /*
361 * Setup packet buffers, aligned correctly.
362 */
363 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
364 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000365 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000366 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenke6466f62003-06-05 19:27:42 +0000367 }
368
369 if (!NetArpWaitTxPacket) {
370 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
371 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
372 NetArpWaitTxPacketSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000373 }
374
375 eth_halt();
wdenk145d2c12004-04-15 21:48:45 +0000376 eth_set_current();
wdenkfa66e932005-04-03 14:52:59 +0000377 if (eth_init(bd) < 0) {
378 eth_halt();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +0000379 return -1;
wdenkfa66e932005-04-03 14:52:59 +0000380 }
wdenk2d966952002-10-31 22:12:35 +0000381
382restart:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000383 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000384
385 NetState = NETLOOP_CONTINUE;
386
387 /*
388 * Start the ball rolling with the given start function. From
389 * here on, this code is a state machine driven by received
390 * packets and timer events.
391 */
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100392 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000393
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000394 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000395 case 1:
396 /* network not configured */
wdenkfa66e932005-04-03 14:52:59 +0000397 eth_halt();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +0000398 return -1;
wdenk2d966952002-10-31 22:12:35 +0000399
wdenk2d966952002-10-31 22:12:35 +0000400 case 2:
401 /* network device not configured */
402 break;
wdenk2d966952002-10-31 22:12:35 +0000403
404 case 0:
wdenk2d966952002-10-31 22:12:35 +0000405 NetDevExists = 1;
Simon Glassd6c5f552011-10-24 18:00:02 +0000406 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000407 switch (protocol) {
Simon Glassd6c5f552011-10-24 18:00:02 +0000408 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +0000409#ifdef CONFIG_CMD_TFTPPUT
410 case TFTPPUT:
411#endif
wdenk2d966952002-10-31 22:12:35 +0000412 /* always use ARP to get server ethernet address */
Simon Glassd6c5f552011-10-24 18:00:02 +0000413 TftpStart(protocol);
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
wdenk2d966952002-10-31 22:12:35 +0000475 break;
476 }
477
Jon Loeliger54f35c22007-07-09 17:45:14 -0500478#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000479#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
480 defined(CONFIG_STATUS_LED) && \
481 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000482 /*
wdenk9c53f402003-10-15 23:53:47 +0000483 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000484 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000485 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000486 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +0000487 else
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000488 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200489#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000490#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000491
492 /*
493 * Main packet reception loop. Loop receiving packets until
wdenk27fa5852005-04-03 14:18:51 +0000494 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000495 */
496 for (;;) {
497 WATCHDOG_RESET();
498#ifdef CONFIG_SHOW_ACTIVITY
499 {
500 extern void show_activity(int arg);
501 show_activity(1);
502 }
503#endif
504 /*
505 * Check the ethernet for a new packet. The ethernet
506 * receive routine will process it.
507 */
Guennadi Liakhovetskib38c2b32008-04-03 17:04:19 +0200508 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000509
510 /*
511 * Abort if ctrl-c was pressed.
512 */
513 if (ctrlc()) {
wdenk57b2d802003-06-27 21:31:46 +0000514 eth_halt();
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000515 puts("\nAbort\n");
Simon Glass230467c2011-10-24 18:00:01 +0000516 goto done;
wdenk2d966952002-10-31 22:12:35 +0000517 }
518
wdenke6466f62003-06-05 19:27:42 +0000519 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000520
521 /*
522 * Check for a timeout, and run the timeout handler
523 * if we have one.
524 */
wdenk5d841732003-08-17 18:55:18 +0000525 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000526 thand_f *x;
527
Jon Loeliger54f35c22007-07-09 17:45:14 -0500528#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000529#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
530 defined(CONFIG_STATUS_LED) && \
531 defined(STATUS_LED_RED)
wdenk49c3f672003-10-08 22:33:00 +0000532 /*
wdenk9c53f402003-10-15 23:53:47 +0000533 * Echo the inverted link state to the fault LED.
wdenk49c3f672003-10-08 22:33:00 +0000534 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000535 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000536 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000537 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenk49c3f672003-10-08 22:33:00 +0000538 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000539 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenk49c3f672003-10-08 22:33:00 +0000540 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000541#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenk49c3f672003-10-08 22:33:00 +0000542#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000543 x = timeHandler;
544 timeHandler = (thand_f *)0;
545 (*x)();
546 }
547
548
549 switch (NetState) {
550
551 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000552 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000553 goto restart;
554
555 case NETLOOP_SUCCESS:
556 if (NetBootFileXferSize > 0) {
Wolfgang Denk084d0ce2007-09-12 00:48:57 +0200557 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000558 printf("Bytes transferred = %ld (%lx hex)\n",
559 NetBootFileXferSize,
560 NetBootFileXferSize);
Wolfgang Denk084d0ce2007-09-12 00:48:57 +0200561 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000562 setenv("filesize", buf);
wdenk145d2c12004-04-15 21:48:45 +0000563
564 sprintf(buf, "%lX", (unsigned long)load_addr);
565 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000566 }
567 eth_halt();
Simon Glass230467c2011-10-24 18:00:01 +0000568 ret = NetBootFileXferSize;
569 goto done;
wdenk2d966952002-10-31 22:12:35 +0000570
571 case NETLOOP_FAIL:
Simon Glass230467c2011-10-24 18:00:01 +0000572 goto done;
wdenk2d966952002-10-31 22:12:35 +0000573 }
574 }
Simon Glass230467c2011-10-24 18:00:01 +0000575
576done:
Simon Glass2928cd82011-10-26 14:18:38 +0000577#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000578 /* Clear out the handlers */
579 NetSetHandler(NULL);
580 net_set_icmp_handler(NULL);
Simon Glass2928cd82011-10-26 14:18:38 +0000581#endif
Simon Glass230467c2011-10-24 18:00:01 +0000582 return ret;
wdenk2d966952002-10-31 22:12:35 +0000583}
584
585/**********************************************************************/
586
587static void
588startAgainTimeout(void)
589{
590 NetState = NETLOOP_RESTART;
591}
592
593static void
Luca Ceresoli428ab362011-04-18 06:19:50 +0000594startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
595 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000596{
597 /* Totally ignore the packet */
598}
599
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000600void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000601{
wdenk05939202004-04-18 17:39:38 +0000602 char *nretry;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100603 int retry_forever = 0;
604 unsigned long retrycnt = 0;
wdenk145d2c12004-04-15 21:48:45 +0000605
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100606 nretry = getenv("netretry");
607 if (nretry) {
608 if (!strcmp(nretry, "yes"))
609 retry_forever = 1;
610 else if (!strcmp(nretry, "no"))
611 retrycnt = 0;
612 else if (!strcmp(nretry, "once"))
613 retrycnt = 1;
614 else
615 retrycnt = simple_strtoul(nretry, NULL, 0);
616 } else
617 retry_forever = 1;
618
619 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
620 eth_halt();
wdenk145d2c12004-04-15 21:48:45 +0000621 NetState = NETLOOP_FAIL;
622 return;
623 }
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100624
625 NetTryCount++;
626
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000627 eth_halt();
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100628#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000629 eth_try_another(!NetRestarted);
Matthias Fuchsa02d62b2007-12-27 16:58:41 +0100630#endif
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000631 eth_init(gd->bd);
wdenk05939202004-04-18 17:39:38 +0000632 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000633 NetRestartWrap = 0;
Remy Bohmer0ddb8e82009-10-28 22:13:39 +0100634 if (NetDevExists) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000635 NetSetTimeout(10000UL, startAgainTimeout);
636 NetSetHandler(startAgainHandler);
wdenk05939202004-04-18 17:39:38 +0000637 } else {
wdenk2d966952002-10-31 22:12:35 +0000638 NetState = NETLOOP_FAIL;
639 }
wdenk05939202004-04-18 17:39:38 +0000640 } else {
wdenk2d966952002-10-31 22:12:35 +0000641 NetState = NETLOOP_RESTART;
642 }
wdenk2d966952002-10-31 22:12:35 +0000643}
644
645/**********************************************************************/
646/*
647 * Miscelaneous bits.
648 */
649
650void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000651NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000652{
653 packetHandler = f;
654}
655
Simon Glass2928cd82011-10-26 14:18:38 +0000656#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +0000657void net_set_icmp_handler(rxhand_icmp_f *f)
658{
659 packet_icmp_handler = f;
660}
Simon Glass2928cd82011-10-26 14:18:38 +0000661#endif
wdenk2d966952002-10-31 22:12:35 +0000662
663void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000664NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000665{
666 if (iv == 0) {
667 timeHandler = (thand_f *)0;
668 } else {
669 timeHandler = f;
wdenk5d841732003-08-17 18:55:18 +0000670 timeStart = get_timer(0);
671 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000672 }
673}
674
675
676void
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000677NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000678{
679 (void) eth_send(pkt, len);
680}
681
wdenke6466f62003-06-05 19:27:42 +0000682int
683NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
684{
wdenk145d2c12004-04-15 21:48:45 +0000685 uchar *pkt;
686
wdenke6466f62003-06-05 19:27:42 +0000687 /* convert to new style broadcast */
688 if (dest == 0)
689 dest = 0xFFFFFFFF;
690
691 /* if broadcast, make the ether address a broadcast and don't do ARP */
692 if (dest == 0xFFFFFFFF)
693 ether = NetBcastAddr;
694
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000695 /*
696 * if MAC address was not discovered yet, save the packet and do
697 * an ARP request
698 */
wdenke6466f62003-06-05 19:27:42 +0000699 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
700
Robin Getz9e0a4d62009-07-23 03:01:03 -0400701 debug("sending ARP for %08lx\n", dest);
702
wdenke6466f62003-06-05 19:27:42 +0000703 NetArpWaitPacketIP = dest;
704 NetArpWaitPacketMAC = ether;
wdenk145d2c12004-04-15 21:48:45 +0000705
706 pkt = NetArpWaitTxPacket;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000707 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenk145d2c12004-04-15 21:48:45 +0000708
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000709 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000710 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
711 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenke6466f62003-06-05 19:27:42 +0000712
713 /* size of the waiting packet */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000714 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
715 IP_HDR_SIZE + len;
wdenke6466f62003-06-05 19:27:42 +0000716
717 /* and do the ARP request */
718 NetArpWaitTry = 1;
719 NetArpWaitTimerStart = get_timer(0);
720 ArpRequest();
721 return 1; /* waiting */
722 }
723
Robin Getz9e0a4d62009-07-23 03:01:03 -0400724 debug("sending UDP to %08lx/%pM\n", dest, ether);
wdenke6466f62003-06-05 19:27:42 +0000725
wdenk145d2c12004-04-15 21:48:45 +0000726 pkt = (uchar *)NetTxPacket;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000727 pkt += NetSetEther(pkt, ether, PROT_IP);
728 NetSetIP(pkt, dest, dport, sport, len);
wdenk145d2c12004-04-15 21:48:45 +0000729 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenke6466f62003-06-05 19:27:42 +0000730
wdenk05939202004-04-18 17:39:38 +0000731 return 0; /* transmitted */
wdenke6466f62003-06-05 19:27:42 +0000732}
733
Jon Loeliger54f35c22007-07-09 17:45:14 -0500734#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +0000735static ushort PingSeqNo;
736
737int PingSend(void)
738{
739 static uchar mac[6];
740 volatile IP_t *ip;
741 volatile ushort *s;
wdenk145d2c12004-04-15 21:48:45 +0000742 uchar *pkt;
wdenke6466f62003-06-05 19:27:42 +0000743
744 /* XXX always send arp request */
745
746 memcpy(mac, NetEtherNullAddr, 6);
747
Robin Getz9e0a4d62009-07-23 03:01:03 -0400748 debug("sending ARP for %08lx\n", NetPingIP);
wdenke6466f62003-06-05 19:27:42 +0000749
750 NetArpWaitPacketIP = NetPingIP;
751 NetArpWaitPacketMAC = mac;
752
wdenk145d2c12004-04-15 21:48:45 +0000753 pkt = NetArpWaitTxPacket;
754 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenke6466f62003-06-05 19:27:42 +0000755
wdenk145d2c12004-04-15 21:48:45 +0000756 ip = (volatile IP_t *)pkt;
wdenke6466f62003-06-05 19:27:42 +0000757
758 /*
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000759 * Construct an IP and ICMP header.
760 * (need to set no fragment bit - XXX)
wdenke6466f62003-06-05 19:27:42 +0000761 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000762 /* IP_HDR_SIZE / 4 (not including UDP) */
763 ip->ip_hl_v = 0x45;
wdenke6466f62003-06-05 19:27:42 +0000764 ip->ip_tos = 0;
765 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
766 ip->ip_id = htons(NetIPID++);
Peter Tyser0885bf02008-12-01 16:26:20 -0600767 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenke6466f62003-06-05 19:27:42 +0000768 ip->ip_ttl = 255;
769 ip->ip_p = 0x01; /* ICMP */
770 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000771 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000772 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000773 /* - "" - */
Luca Ceresolif27d91f2011-05-04 02:40:44 +0000774 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenke6466f62003-06-05 19:27:42 +0000775 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
776
777 s = &ip->udp_src; /* XXX ICMP starts here */
778 s[0] = htons(0x0800); /* echo-request, code */
779 s[1] = 0; /* checksum */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200780 s[2] = 0; /* identifier */
wdenke6466f62003-06-05 19:27:42 +0000781 s[3] = htons(PingSeqNo++); /* sequence number */
782 s[1] = ~NetCksum((uchar *)s, 8/2);
783
784 /* size of the waiting packet */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000785 NetArpWaitTxPacketSize =
786 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenke6466f62003-06-05 19:27:42 +0000787
788 /* and do the ARP request */
789 NetArpWaitTry = 1;
790 NetArpWaitTimerStart = get_timer(0);
791 ArpRequest();
792 return 1; /* waiting */
793}
794
795static void
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000796PingTimeout(void)
wdenke6466f62003-06-05 19:27:42 +0000797{
798 eth_halt();
799 NetState = NETLOOP_FAIL; /* we did not get the reply */
800}
801
802static void
Luca Ceresoli428ab362011-04-18 06:19:50 +0000803PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
804 unsigned len)
wdenke6466f62003-06-05 19:27:42 +0000805{
Luca Ceresoli428ab362011-04-18 06:19:50 +0000806 if (sip != NetPingIP)
wdenke6466f62003-06-05 19:27:42 +0000807 return;
808
809 NetState = NETLOOP_SUCCESS;
810}
811
812static void PingStart(void)
813{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000814 printf("Using %s device\n", eth_get_name());
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000815 NetSetTimeout(10000UL, PingTimeout);
816 NetSetHandler(PingHandler);
wdenke6466f62003-06-05 19:27:42 +0000817
818 PingSend();
819}
Jon Loeligera9807e52007-07-10 11:05:02 -0500820#endif
wdenk145d2c12004-04-15 21:48:45 +0000821
Jon Loeliger54f35c22007-07-09 17:45:14 -0500822#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +0000823
824#define CDP_DEVICE_ID_TLV 0x0001
825#define CDP_ADDRESS_TLV 0x0002
826#define CDP_PORT_ID_TLV 0x0003
827#define CDP_CAPABILITIES_TLV 0x0004
828#define CDP_VERSION_TLV 0x0005
829#define CDP_PLATFORM_TLV 0x0006
830#define CDP_NATIVE_VLAN_TLV 0x000a
831#define CDP_APPLIANCE_VLAN_TLV 0x000e
832#define CDP_TRIGGER_TLV 0x000f
833#define CDP_POWER_CONSUMPTION_TLV 0x0010
834#define CDP_SYSNAME_TLV 0x0014
835#define CDP_SYSOBJECT_TLV 0x0015
836#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
837
Bartlomiej Sieka56668462008-10-01 15:26:28 +0200838#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenk145d2c12004-04-15 21:48:45 +0000839
840static int CDPSeq;
841static int CDPOK;
842
843ushort CDPNativeVLAN;
844ushort CDPApplianceVLAN;
845
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000846static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
847 0x00 };
wdenk145d2c12004-04-15 21:48:45 +0000848
849static ushort CDP_compute_csum(const uchar *buff, ushort len)
850{
851 ushort csum;
852 int odd;
853 ulong result = 0;
854 ushort leftover;
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200855 ushort *p;
wdenk145d2c12004-04-15 21:48:45 +0000856
857 if (len > 0) {
858 odd = 1 & (ulong)buff;
859 if (odd) {
860 result = *buff << 8;
861 len--;
862 buff++;
863 }
864 while (len > 1) {
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200865 p = (ushort *)buff;
866 result += *p++;
867 buff = (uchar *)p;
wdenk145d2c12004-04-15 21:48:45 +0000868 if (result & 0x80000000)
869 result = (result & 0xFFFF) + (result >> 16);
870 len -= 2;
871 }
872 if (len) {
873 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denkf0711132005-11-10 20:59:46 +0100874 /* CISCO SUCKS big time! (and blows too):
875 * CDP uses the IP checksum algorithm with a twist;
876 * for the last byte it *sign* extends and sums.
877 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000878 result = (result & 0xffff0000) |
879 ((result + leftover) & 0x0000ffff);
wdenk145d2c12004-04-15 21:48:45 +0000880 }
881 while (result >> 16)
882 result = (result & 0xFFFF) + (result >> 16);
883
884 if (odd)
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000885 result = ((result >> 8) & 0xff) |
886 ((result & 0xff) << 8);
wdenk145d2c12004-04-15 21:48:45 +0000887 }
888
889 /* add up 16-bit and 17-bit words for 17+c bits */
890 result = (result & 0xffff) + (result >> 16);
891 /* add up 16-bit and 2-bit for 16+c bit */
892 result = (result & 0xffff) + (result >> 16);
893 /* add up carry.. */
894 result = (result & 0xffff) + (result >> 16);
895
896 /* negate */
897 csum = ~(ushort)result;
898
899 /* run time endian detection */
900 if (csum != htons(csum)) /* little endian */
901 csum = htons(csum);
902
903 return csum;
904}
905
906int CDPSendTrigger(void)
907{
908 volatile uchar *pkt;
909 volatile ushort *s;
910 volatile ushort *cp;
911 Ethernet_t *et;
wdenk145d2c12004-04-15 21:48:45 +0000912 int len;
913 ushort chksum;
Luca Ceresoli7cbd7482011-05-11 03:59:56 +0000914#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
915 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk05939202004-04-18 17:39:38 +0000916 char buf[32];
917#endif
wdenk145d2c12004-04-15 21:48:45 +0000918
919 pkt = NetTxPacket;
920 et = (Ethernet_t *)pkt;
921
922 /* NOTE: trigger sent not on any VLAN */
923
924 /* form ethernet header */
925 memcpy(et->et_dest, NetCDPAddr, 6);
926 memcpy(et->et_src, NetOurEther, 6);
927
928 pkt += ETHER_HDR_SIZE;
929
930 /* SNAP header */
931 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
932 pkt += sizeof(CDP_SNAP_hdr);
933
934 /* CDP header */
935 *pkt++ = 0x02; /* CDP version 2 */
936 *pkt++ = 180; /* TTL */
937 s = (volatile ushort *)pkt;
938 cp = s;
Luca Ceresoli5c83a962011-05-11 03:59:54 +0000939 /* checksum (0 for later calculation) */
940 *s++ = htons(0);
wdenk145d2c12004-04-15 21:48:45 +0000941
942 /* CDP fields */
943#ifdef CONFIG_CDP_DEVICE_ID
944 *s++ = htons(CDP_DEVICE_ID_TLV);
945 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger79ca1b92009-02-11 18:23:48 -0500946 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenk145d2c12004-04-15 21:48:45 +0000947 memcpy((uchar *)s, buf, 16);
948 s += 16 / 2;
949#endif
950
951#ifdef CONFIG_CDP_PORT_ID
952 *s++ = htons(CDP_PORT_ID_TLV);
953 memset(buf, 0, sizeof(buf));
954 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
955 len = strlen(buf);
956 if (len & 1) /* make it even */
957 len++;
958 *s++ = htons(len + 4);
959 memcpy((uchar *)s, buf, len);
960 s += len / 2;
961#endif
962
963#ifdef CONFIG_CDP_CAPABILITIES
964 *s++ = htons(CDP_CAPABILITIES_TLV);
965 *s++ = htons(8);
966 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
967 s += 2;
968#endif
969
970#ifdef CONFIG_CDP_VERSION
971 *s++ = htons(CDP_VERSION_TLV);
972 memset(buf, 0, sizeof(buf));
973 strcpy(buf, CONFIG_CDP_VERSION);
974 len = strlen(buf);
975 if (len & 1) /* make it even */
976 len++;
977 *s++ = htons(len + 4);
978 memcpy((uchar *)s, buf, len);
979 s += len / 2;
980#endif
981
982#ifdef CONFIG_CDP_PLATFORM
983 *s++ = htons(CDP_PLATFORM_TLV);
984 memset(buf, 0, sizeof(buf));
985 strcpy(buf, CONFIG_CDP_PLATFORM);
986 len = strlen(buf);
987 if (len & 1) /* make it even */
988 len++;
989 *s++ = htons(len + 4);
990 memcpy((uchar *)s, buf, len);
991 s += len / 2;
992#endif
993
994#ifdef CONFIG_CDP_TRIGGER
995 *s++ = htons(CDP_TRIGGER_TLV);
996 *s++ = htons(8);
997 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
998 s += 2;
999#endif
1000
1001#ifdef CONFIG_CDP_POWER_CONSUMPTION
1002 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1003 *s++ = htons(6);
1004 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1005#endif
1006
1007 /* length of ethernet packet */
1008 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1009 et->et_protlen = htons(len);
1010
1011 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001012 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1013 (uchar *)s - (NetTxPacket + len));
wdenk145d2c12004-04-15 21:48:45 +00001014 if (chksum == 0)
1015 chksum = 0xFFFF;
1016 *cp = htons(chksum);
1017
1018 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1019 return 0;
1020}
1021
1022static void
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001023CDPTimeout(void)
wdenk145d2c12004-04-15 21:48:45 +00001024{
1025 CDPSeq++;
1026
1027 if (CDPSeq < 3) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001028 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenk145d2c12004-04-15 21:48:45 +00001029 CDPSendTrigger();
1030 return;
1031 }
1032
1033 /* if not OK try again */
1034 if (!CDPOK)
1035 NetStartAgain();
1036 else
1037 NetState = NETLOOP_SUCCESS;
1038}
1039
1040static void
Luca Ceresoli428ab362011-04-18 06:19:50 +00001041CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1042 unsigned len)
wdenk145d2c12004-04-15 21:48:45 +00001043{
1044 /* nothing */
1045}
1046
1047static void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001048CDPHandler(const uchar *pkt, unsigned len)
wdenk145d2c12004-04-15 21:48:45 +00001049{
1050 const uchar *t;
1051 const ushort *ss;
1052 ushort type, tlen;
1053 uchar applid;
1054 ushort vlan, nvlan;
1055
1056 /* minimum size? */
1057 if (len < sizeof(CDP_SNAP_hdr) + 4)
1058 goto pkt_short;
1059
1060 /* check for valid CDP SNAP header */
1061 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1062 return;
1063
1064 pkt += sizeof(CDP_SNAP_hdr);
1065 len -= sizeof(CDP_SNAP_hdr);
1066
1067 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1068 if (pkt[0] < 0x02 || pkt[1] == 0)
1069 return;
1070
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001071 /*
1072 * if version is greater than 0x02 maybe we'll have a problem;
1073 * output a warning
1074 */
wdenk145d2c12004-04-15 21:48:45 +00001075 if (pkt[0] != 0x02)
1076 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1077 pkt[0] & 0xff);
1078
1079 if (CDP_compute_csum(pkt, len) != 0)
1080 return;
1081
1082 pkt += 4;
1083 len -= 4;
1084
1085 vlan = htons(-1);
1086 nvlan = htons(-1);
1087 while (len > 0) {
1088 if (len < 4)
1089 goto pkt_short;
1090
1091 ss = (const ushort *)pkt;
1092 type = ntohs(ss[0]);
1093 tlen = ntohs(ss[1]);
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001094 if (tlen > len)
wdenk145d2c12004-04-15 21:48:45 +00001095 goto pkt_short;
wdenk145d2c12004-04-15 21:48:45 +00001096
1097 pkt += tlen;
1098 len -= tlen;
1099
1100 ss += 2; /* point ss to the data of the TLV */
1101 tlen -= 4;
1102
1103 switch (type) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001104 case CDP_DEVICE_ID_TLV:
1105 break;
1106 case CDP_ADDRESS_TLV:
1107 break;
1108 case CDP_PORT_ID_TLV:
1109 break;
1110 case CDP_CAPABILITIES_TLV:
1111 break;
1112 case CDP_VERSION_TLV:
1113 break;
1114 case CDP_PLATFORM_TLV:
1115 break;
1116 case CDP_NATIVE_VLAN_TLV:
1117 nvlan = *ss;
1118 break;
1119 case CDP_APPLIANCE_VLAN_TLV:
1120 t = (const uchar *)ss;
1121 while (tlen > 0) {
1122 if (tlen < 3)
1123 goto pkt_short;
wdenk145d2c12004-04-15 21:48:45 +00001124
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001125 applid = t[0];
1126 ss = (const ushort *)(t + 1);
wdenk145d2c12004-04-15 21:48:45 +00001127
1128#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001129 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1130 vlan = *ss;
wdenk145d2c12004-04-15 21:48:45 +00001131#else
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001132 /* XXX will this work; dunno */
1133 vlan = ntohs(*ss);
wdenk145d2c12004-04-15 21:48:45 +00001134#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001135 t += 3; tlen -= 3;
1136 }
1137 break;
1138 case CDP_TRIGGER_TLV:
1139 break;
1140 case CDP_POWER_CONSUMPTION_TLV:
1141 break;
1142 case CDP_SYSNAME_TLV:
1143 break;
1144 case CDP_SYSOBJECT_TLV:
1145 break;
1146 case CDP_MANAGEMENT_ADDRESS_TLV:
1147 break;
wdenk145d2c12004-04-15 21:48:45 +00001148 }
1149 }
1150
1151 CDPApplianceVLAN = vlan;
1152 CDPNativeVLAN = nvlan;
1153
1154 CDPOK = 1;
1155 return;
1156
1157 pkt_short:
1158 printf("** CDP packet is too short\n");
1159 return;
1160}
1161
1162static void CDPStart(void)
1163{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001164 printf("Using %s device\n", eth_get_name());
wdenk145d2c12004-04-15 21:48:45 +00001165 CDPSeq = 0;
1166 CDPOK = 0;
1167
1168 CDPNativeVLAN = htons(-1);
1169 CDPApplianceVLAN = htons(-1);
1170
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001171 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1172 NetSetHandler(CDPDummyHandler);
wdenk145d2c12004-04-15 21:48:45 +00001173
1174 CDPSendTrigger();
1175}
Jon Loeligera9807e52007-07-10 11:05:02 -05001176#endif
wdenk145d2c12004-04-15 21:48:45 +00001177
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001178#ifdef CONFIG_IP_DEFRAG
1179/*
1180 * This function collects fragments in a single packet, according
1181 * to the algorithm in RFC815. It returns NULL or the pointer to
1182 * a complete packet, in static storage
1183 */
1184#ifndef CONFIG_NET_MAXDEFRAG
1185#define CONFIG_NET_MAXDEFRAG 16384
1186#endif
1187/*
1188 * MAXDEFRAG, above, is chosen in the config file and is real data
1189 * so we need to add the NFS overhead, which is more than TFTP.
1190 * To use sizeof in the internal unnamed structures, we need a real
1191 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1192 * The compiler doesn't complain nor allocates the actual structure
1193 */
1194static struct rpc_t rpc_specimen;
1195#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1196
1197#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1198
1199/*
1200 * this is the packet being assembled, either data or frag control.
1201 * Fragments go by 8 bytes, so this union must be 8 bytes long
1202 */
1203struct hole {
1204 /* first_byte is address of this structure */
1205 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1206 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1207 u16 prev_hole; /* index of prev, 0 == none */
1208 u16 unused;
1209};
1210
1211static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1212{
1213 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1214 static u16 first_hole, total_len;
1215 struct hole *payload, *thisfrag, *h, *newh;
1216 IP_t *localip = (IP_t *)pkt_buff;
1217 uchar *indata = (uchar *)ip;
1218 int offset8, start, len, done = 0;
1219 u16 ip_off = ntohs(ip->ip_off);
1220
1221 /* payload starts after IP header, this fragment is in there */
1222 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1223 offset8 = (ip_off & IP_OFFS);
1224 thisfrag = payload + offset8;
1225 start = offset8 * 8;
1226 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1227
1228 if (start + len > IP_MAXUDP) /* fragment extends too far */
1229 return NULL;
1230
1231 if (!total_len || localip->ip_id != ip->ip_id) {
1232 /* new (or different) packet, reset structs */
1233 total_len = 0xffff;
1234 payload[0].last_byte = ~0;
1235 payload[0].next_hole = 0;
1236 payload[0].prev_hole = 0;
1237 first_hole = 0;
1238 /* any IP header will work, copy the first we received */
1239 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1240 }
1241
1242 /*
1243 * What follows is the reassembly algorithm. We use the payload
1244 * array as a linked list of hole descriptors, as each hole starts
1245 * at a multiple of 8 bytes. However, last byte can be whatever value,
1246 * so it is represented as byte count, not as 8-byte blocks.
1247 */
1248
1249 h = payload + first_hole;
1250 while (h->last_byte < start) {
1251 if (!h->next_hole) {
1252 /* no hole that far away */
1253 return NULL;
1254 }
1255 h = payload + h->next_hole;
1256 }
1257
Fillod Stephanee7ade8b2010-06-11 19:26:43 +02001258 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1259 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001260 /* no overlap with holes (dup fragment?) */
1261 return NULL;
1262 }
1263
1264 if (!(ip_off & IP_FLAGS_MFRAG)) {
1265 /* no more fragmentss: truncate this (last) hole */
1266 total_len = start + len;
1267 h->last_byte = start + len;
1268 }
1269
1270 /*
1271 * There is some overlap: fix the hole list. This code doesn't
1272 * deal with a fragment that overlaps with two different holes
1273 * (thus being a superset of a previously-received fragment).
1274 */
1275
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001276 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001277 /* complete overlap with hole: remove hole */
1278 if (!h->prev_hole && !h->next_hole) {
1279 /* last remaining hole */
1280 done = 1;
1281 } else if (!h->prev_hole) {
1282 /* first hole */
1283 first_hole = h->next_hole;
1284 payload[h->next_hole].prev_hole = 0;
1285 } else if (!h->next_hole) {
1286 /* last hole */
1287 payload[h->prev_hole].next_hole = 0;
1288 } else {
1289 /* in the middle of the list */
1290 payload[h->next_hole].prev_hole = h->prev_hole;
1291 payload[h->prev_hole].next_hole = h->next_hole;
1292 }
1293
1294 } else if (h->last_byte <= start + len) {
1295 /* overlaps with final part of the hole: shorten this hole */
1296 h->last_byte = start;
1297
1298 } else if (h >= thisfrag) {
1299 /* overlaps with initial part of the hole: move this hole */
1300 newh = thisfrag + (len / 8);
1301 *newh = *h;
1302 h = newh;
1303 if (h->next_hole)
1304 payload[h->next_hole].prev_hole = (h - payload);
1305 if (h->prev_hole)
1306 payload[h->prev_hole].next_hole = (h - payload);
1307 else
1308 first_hole = (h - payload);
1309
1310 } else {
1311 /* fragment sits in the middle: split the hole */
1312 newh = thisfrag + (len / 8);
1313 *newh = *h;
1314 h->last_byte = start;
1315 h->next_hole = (newh - payload);
1316 newh->prev_hole = (h - payload);
1317 if (newh->next_hole)
1318 payload[newh->next_hole].prev_hole = (newh - payload);
1319 }
1320
1321 /* finally copy this fragment and possibly return whole packet */
1322 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1323 if (!done)
1324 return NULL;
1325
1326 localip->ip_len = htons(total_len);
1327 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1328 return localip;
1329}
1330
1331static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1332{
1333 u16 ip_off = ntohs(ip->ip_off);
1334 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1335 return ip; /* not a fragment */
1336 return __NetDefragment(ip, lenp);
1337}
1338
1339#else /* !CONFIG_IP_DEFRAG */
1340
1341static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1342{
1343 u16 ip_off = ntohs(ip->ip_off);
1344 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1345 return ip; /* not a fragment */
1346 return NULL;
1347}
1348#endif
wdenk2d966952002-10-31 22:12:35 +00001349
Simon Glass43c72962011-10-24 18:00:00 +00001350/**
1351 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
1352 * drop others.
1353 *
1354 * @parma ip IP packet containing the ICMP
1355 */
1356static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
1357{
1358 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
1359
1360 switch (icmph->type) {
1361 case ICMP_REDIRECT:
1362 if (icmph->code != ICMP_REDIR_HOST)
1363 return;
1364 printf(" ICMP Host Redirect to %pI4 ",
1365 &icmph->un.gateway);
1366 break;
1367#if defined(CONFIG_CMD_PING)
1368 case ICMP_ECHO_REPLY:
1369 /*
1370 * IP header OK. Pass the packet to the
1371 * current handler.
1372 */
1373 /*
1374 * XXX point to ip packet - should this use
1375 * packet_icmp_handler?
1376 */
1377 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
1378 break;
1379 case ICMP_ECHO_REQUEST:
1380 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
1381 ETHER_HDR_SIZE + len);
1382
1383 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1384 memcpy(&et->et_src[0], NetOurEther, 6);
1385
1386 ip->ip_sum = 0;
1387 ip->ip_off = 0;
1388 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1389 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
1390 ip->ip_sum = ~NetCksum((uchar *)ip,
1391 IP_HDR_SIZE_NO_UDP >> 1);
1392
1393 icmph->type = ICMP_ECHO_REPLY;
1394 icmph->checksum = 0;
1395 icmph->checksum = ~NetCksum((uchar *)icmph,
1396 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1397 (void) eth_send((uchar *)et,
1398 ETHER_HDR_SIZE + len);
1399 break;
1400#endif
1401 default:
Simon Glass2928cd82011-10-26 14:18:38 +00001402#ifdef CONFIG_CMD_TFTPPUT
Simon Glass230467c2011-10-24 18:00:01 +00001403 if (packet_icmp_handler)
1404 packet_icmp_handler(icmph->type, icmph->code,
1405 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
1406 icmph->un.data, ntohs(ip->udp_len));
Simon Glass2928cd82011-10-26 14:18:38 +00001407#endif
Simon Glass43c72962011-10-24 18:00:00 +00001408 break;
1409 }
1410}
1411
wdenk2d966952002-10-31 22:12:35 +00001412void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001413NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001414{
1415 Ethernet_t *et;
1416 IP_t *ip;
1417 ARP_t *arp;
1418 IPaddr_t tmp;
Luca Ceresoli428ab362011-04-18 06:19:50 +00001419 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001420 int x;
wdenk145d2c12004-04-15 21:48:45 +00001421 uchar *pkt;
Jon Loeliger54f35c22007-07-09 17:45:14 -05001422#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001423 int iscdp;
1424#endif
1425 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001426
Robin Getz9e0a4d62009-07-23 03:01:03 -04001427 debug("packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001428
Mike Frysingerdc166032009-07-18 21:04:08 -04001429 NetRxPacket = inpkt;
1430 NetRxPacketLen = len;
wdenk145d2c12004-04-15 21:48:45 +00001431 et = (Ethernet_t *)inpkt;
1432
1433 /* too small packet? */
1434 if (len < ETHER_HDR_SIZE)
1435 return;
Rafal Jaworowski1f2c9a42007-12-27 18:19:02 +01001436
1437#ifdef CONFIG_API
1438 if (push_packet) {
1439 (*push_packet)(inpkt, len);
1440 return;
1441 }
1442#endif
wdenk145d2c12004-04-15 21:48:45 +00001443
Jon Loeliger54f35c22007-07-09 17:45:14 -05001444#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001445 /* keep track if packet is CDP */
1446 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1447#endif
1448
1449 myvlanid = ntohs(NetOurVLAN);
1450 if (myvlanid == (ushort)-1)
1451 myvlanid = VLAN_NONE;
1452 mynvlanid = ntohs(NetOurNativeVLAN);
1453 if (mynvlanid == (ushort)-1)
1454 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001455
1456 x = ntohs(et->et_protlen);
1457
Robin Getz9e0a4d62009-07-23 03:01:03 -04001458 debug("packet received\n");
wdenk145d2c12004-04-15 21:48:45 +00001459
wdenk2d966952002-10-31 22:12:35 +00001460 if (x < 1514) {
1461 /*
1462 * Got a 802 packet. Check the other protocol field.
1463 */
1464 x = ntohs(et->et_prot);
wdenk145d2c12004-04-15 21:48:45 +00001465
1466 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001467 len -= E802_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001468
1469 } else if (x != PROT_VLAN) { /* normal packet */
1470 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001471 len -= ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001472
1473 } else { /* VLAN packet */
1474 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1475
Robin Getz9e0a4d62009-07-23 03:01:03 -04001476 debug("VLAN packet received\n");
1477
wdenk145d2c12004-04-15 21:48:45 +00001478 /* too small packet? */
1479 if (len < VLAN_ETHER_HDR_SIZE)
1480 return;
1481
1482 /* if no VLAN active */
1483 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger54f35c22007-07-09 17:45:14 -05001484#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001485 && iscdp == 0
1486#endif
1487 )
1488 return;
1489
1490 cti = ntohs(vet->vet_tag);
1491 vlanid = cti & VLAN_IDMASK;
1492 x = ntohs(vet->vet_type);
1493
1494 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1495 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001496 }
1497
Robin Getz9e0a4d62009-07-23 03:01:03 -04001498 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001499
Jon Loeliger54f35c22007-07-09 17:45:14 -05001500#if defined(CONFIG_CMD_CDP)
wdenk145d2c12004-04-15 21:48:45 +00001501 if (iscdp) {
1502 CDPHandler((uchar *)ip, len);
1503 return;
1504 }
1505#endif
1506
1507 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1508 if (vlanid == VLAN_NONE)
1509 vlanid = (mynvlanid & VLAN_IDMASK);
1510 /* not matched? */
1511 if (vlanid != (myvlanid & VLAN_IDMASK))
1512 return;
1513 }
1514
wdenk2d966952002-10-31 22:12:35 +00001515 switch (x) {
1516
1517 case PROT_ARP:
1518 /*
1519 * We have to deal with two types of ARP packets:
wdenk57b2d802003-06-27 21:31:46 +00001520 * - REQUEST packets will be answered by sending our
1521 * IP address - if we know it.
1522 * - REPLY packates are expected only after we asked
1523 * for the TFTP server's or the gateway's ethernet
1524 * address; so if we receive such a packet, we set
1525 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001526 */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001527 debug("Got ARP\n");
1528
wdenk2d966952002-10-31 22:12:35 +00001529 arp = (ARP_t *)ip;
1530 if (len < ARP_HDR_SIZE) {
1531 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1532 return;
1533 }
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001534 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001535 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001536 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001537 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001538 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001539 return;
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001540 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001541 return;
wdenk2d966952002-10-31 22:12:35 +00001542
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001543 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001544 return;
wdenk2d966952002-10-31 22:12:35 +00001545
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001546 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001547 return;
wdenk2d966952002-10-31 22:12:35 +00001548
1549 switch (ntohs(arp->ar_op)) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001550 case ARPOP_REQUEST:
1551 /* reply with our IP address */
Robin Getz9e0a4d62009-07-23 03:01:03 -04001552 debug("Got ARP REQUEST, return our IP\n");
wdenk145d2c12004-04-15 21:48:45 +00001553 pkt = (uchar *)et;
1554 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001555 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001556 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001557 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001558 memcpy(&arp->ar_data[0], NetOurEther, 6);
1559 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001560 (void) eth_send((uchar *)et,
1561 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001562 return;
wdenke6466f62003-06-05 19:27:42 +00001563
1564 case ARPOP_REPLY: /* arp reply */
1565 /* are we waiting for a reply */
1566 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1567 break;
Robin Getz470a6d42009-07-21 12:15:28 -04001568
1569#ifdef CONFIG_KEEP_SERVERADDR
1570 if (NetServerIP == NetArpWaitPacketIP) {
1571 char buf[20];
1572 sprintf(buf, "%pM", arp->ar_data);
1573 setenv("serveraddr", buf);
1574 }
1575#endif
1576
Robin Getz9e0a4d62009-07-23 03:01:03 -04001577 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger79ca1b92009-02-11 18:23:48 -05001578 arp->ar_data);
wdenke6466f62003-06-05 19:27:42 +00001579
1580 tmp = NetReadIP(&arp->ar_data[6]);
1581
1582 /* matched waiting packet's address */
1583 if (tmp == NetArpWaitReplyIP) {
Robin Getz9e0a4d62009-07-23 03:01:03 -04001584 debug("Got it\n");
wdenke6466f62003-06-05 19:27:42 +00001585 /* save address for later use */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001586 memcpy(NetArpWaitPacketMAC,
1587 &arp->ar_data[0], 6);
wdenke6466f62003-06-05 19:27:42 +00001588
wdenkb8fb6192004-08-02 21:11:11 +00001589#ifdef CONFIG_NETCONSOLE
Luca Ceresoli428ab362011-04-18 06:19:50 +00001590 (*packetHandler)(0, 0, 0, 0, 0);
wdenkb8fb6192004-08-02 21:11:11 +00001591#endif
wdenke6466f62003-06-05 19:27:42 +00001592 /* modify header, and transmit it */
1593 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001594 (void) eth_send(NetArpWaitTxPacket,
1595 NetArpWaitTxPacketSize);
wdenke6466f62003-06-05 19:27:42 +00001596
1597 /* no arp request pending now */
1598 NetArpWaitPacketIP = 0;
1599 NetArpWaitTxPacketSize = 0;
1600 NetArpWaitPacketMAC = NULL;
1601
1602 }
wdenk2d966952002-10-31 22:12:35 +00001603 return;
1604 default:
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001605 debug("Unexpected ARP opcode 0x%x\n",
1606 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001607 return;
1608 }
wdenkcb99da52005-01-12 00:15:14 +00001609 break;
wdenk2d966952002-10-31 22:12:35 +00001610
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001611#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001612 case PROT_RARP:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001613 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001614 arp = (ARP_t *)ip;
1615 if (len < ARP_HDR_SIZE) {
1616 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1617 return;
1618 }
1619
1620 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1621 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1622 (ntohs(arp->ar_pro) != PROT_IP) ||
1623 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1624
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001625 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001626 } else {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001627 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk4989f872004-03-14 15:06:13 +00001628 if (NetServerIP == 0)
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001629 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1630 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001631
Luca Ceresoli428ab362011-04-18 06:19:50 +00001632 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001633 }
1634 break;
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001635#endif
wdenk2d966952002-10-31 22:12:35 +00001636 case PROT_IP:
Robin Getz9e0a4d62009-07-23 03:01:03 -04001637 debug("Got IP\n");
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001638 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001639 if (len < IP_HDR_SIZE) {
Robin Getz9e0a4d62009-07-23 03:01:03 -04001640 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001641 return;
1642 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001643 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001644 if (len < ntohs(ip->ip_len)) {
1645 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1646 return;
1647 }
1648 len = ntohs(ip->ip_len);
Robin Getz9e0a4d62009-07-23 03:01:03 -04001649 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1650
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001651 /* Can't deal with anything except IPv4 */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001652 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001653 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001654 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001655 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmerb9535782008-06-03 15:48:17 +02001656 return;
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001657 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001658 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001659 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001660 return;
1661 }
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001662 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001663 tmp = NetReadIP(&ip->ip_dst);
1664 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff7280da72007-06-11 10:41:07 -05001665#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk627f5c32007-08-14 09:47:27 +02001666 if (Mcast_addr != tmp)
David Updegraff7280da72007-06-11 10:41:07 -05001667#endif
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001668 return;
wdenk2d966952002-10-31 22:12:35 +00001669 }
Luca Ceresoli428ab362011-04-18 06:19:50 +00001670 /* Read source IP address for later use */
1671 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001672 /*
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001673 * The function returns the unchanged packet if it's not
1674 * a fragment, and either the complete packet or NULL if
1675 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1676 */
Luca Ceresolidb210822011-05-04 02:40:47 +00001677 ip = NetDefragment(ip, &len);
1678 if (!ip)
Alessandro Rubinif119e3d2009-08-07 13:58:56 +02001679 return;
1680 /*
wdenk2d966952002-10-31 22:12:35 +00001681 * watch for ICMP host redirects
1682 *
wdenk57b2d802003-06-27 21:31:46 +00001683 * There is no real handler code (yet). We just watch
1684 * for ICMP host redirect messages. In case anybody
1685 * sees these messages: please contact me
1686 * (wd@denx.de), or - even better - send me the
1687 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001688 *
wdenk57b2d802003-06-27 21:31:46 +00001689 * Note: in all cases where I have seen this so far
1690 * it was a problem with the router configuration,
1691 * for instance when a router was configured in the
1692 * BOOTP reply, but the TFTP server was on the same
1693 * subnet. So this is probably a warning that your
1694 * configuration might be wrong. But I'm not really
1695 * sure if there aren't any other situations.
Simon Glass230467c2011-10-24 18:00:01 +00001696 *
1697 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1698 * we send a tftp packet to a dead connection, or when
1699 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001700 */
1701 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass43c72962011-10-24 18:00:00 +00001702 receive_icmp(ip, len, src_ip, et);
1703 return;
wdenk2d966952002-10-31 22:12:35 +00001704 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1705 return;
1706 }
1707
Stefan Roesedfced812005-08-12 20:06:52 +02001708#ifdef CONFIG_UDP_CHECKSUM
1709 if (ip->udp_xsum != 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001710 ulong xsum;
Stefan Roesedfced812005-08-12 20:06:52 +02001711 ushort *sumptr;
1712 ushort sumlen;
1713
1714 xsum = ip->ip_p;
1715 xsum += (ntohs(ip->udp_len));
1716 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1717 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1718 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1719 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1720
1721 sumlen = ntohs(ip->udp_len);
1722 sumptr = (ushort *) &(ip->udp_src);
1723
1724 while (sumlen > 1) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001725 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001726
1727 sumdata = *sumptr++;
1728 xsum += ntohs(sumdata);
1729 sumlen -= 2;
1730 }
1731 if (sumlen > 0) {
Wolfgang Denk30b87322005-08-12 23:43:12 +02001732 ushort sumdata;
Stefan Roesedfced812005-08-12 20:06:52 +02001733
1734 sumdata = *(unsigned char *) sumptr;
Wolfgang Denk30b87322005-08-12 23:43:12 +02001735 sumdata = (sumdata << 8) & 0xff00;
Stefan Roesedfced812005-08-12 20:06:52 +02001736 xsum += sumdata;
1737 }
1738 while ((xsum >> 16) != 0) {
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001739 xsum = (xsum & 0x0000ffff) +
1740 ((xsum >> 16) & 0x0000ffff);
Stefan Roesedfced812005-08-12 20:06:52 +02001741 }
1742 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk12cec0a2008-07-11 01:16:00 +02001743 printf(" UDP wrong checksum %08lx %08x\n",
1744 xsum, ntohs(ip->udp_xsum));
Stefan Roesedfced812005-08-12 20:06:52 +02001745 return;
1746 }
1747 }
1748#endif
1749
David Updegraff7280da72007-06-11 10:41:07 -05001750
wdenkb8fb6192004-08-02 21:11:11 +00001751#ifdef CONFIG_NETCONSOLE
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001752 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenkb8fb6192004-08-02 21:11:11 +00001753 ntohs(ip->udp_dst),
1754 ntohs(ip->udp_src),
1755 ntohs(ip->udp_len) - 8);
1756#endif
wdenk2d966952002-10-31 22:12:35 +00001757 /*
1758 * IP header OK. Pass the packet to the current handler.
1759 */
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001760 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001761 ntohs(ip->udp_dst),
Luca Ceresoli428ab362011-04-18 06:19:50 +00001762 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001763 ntohs(ip->udp_src),
1764 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001765 break;
1766 }
1767}
1768
1769
1770/**********************************************************************/
1771
Simon Glassd6c5f552011-10-24 18:00:02 +00001772static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001773{
1774 switch (protocol) {
wdenk05939202004-04-18 17:39:38 +00001775 /* Fall through */
Jon Loeliger54f35c22007-07-09 17:45:14 -05001776#if defined(CONFIG_CMD_PING)
wdenke6466f62003-06-05 19:27:42 +00001777 case PING:
wdenk05939202004-04-18 17:39:38 +00001778 if (NetPingIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001779 puts("*** ERROR: ping address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001780 return 1;
wdenk05939202004-04-18 17:39:38 +00001781 }
1782 goto common;
wdenke6466f62003-06-05 19:27:42 +00001783#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001784#if defined(CONFIG_CMD_SNTP)
wdenkb4ad9622005-04-01 00:25:43 +00001785 case SNTP:
1786 if (NetNtpServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001787 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001788 return 1;
wdenkb4ad9622005-04-01 00:25:43 +00001789 }
1790 goto common;
1791#endif
Robin Getz82f0d232009-07-20 14:53:54 -04001792#if defined(CONFIG_CMD_DNS)
1793 case DNS:
1794 if (NetOurDNSIP == 0) {
1795 puts("*** ERROR: DNS server address not given\n");
1796 return 1;
1797 }
1798 goto common;
1799#endif
Jon Loeliger54f35c22007-07-09 17:45:14 -05001800#if defined(CONFIG_CMD_NFS)
wdenkbe9c1cb2004-02-24 02:00:03 +00001801 case NFS:
1802#endif
Simon Glassd6c5f552011-10-24 18:00:02 +00001803 case TFTPGET:
Simon Glass6a398d22011-10-24 18:00:07 +00001804 case TFTPPUT:
wdenk05939202004-04-18 17:39:38 +00001805 if (NetServerIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001806 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001807 return 1;
wdenk05939202004-04-18 17:39:38 +00001808 }
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001809#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1810 defined(CONFIG_CMD_DNS)
1811common:
wdenke6466f62003-06-05 19:27:42 +00001812#endif
Simon Guinot00dceba2011-05-01 23:38:40 +00001813 /* Fall through */
wdenke6466f62003-06-05 19:27:42 +00001814
Simon Guinot00dceba2011-05-01 23:38:40 +00001815 case NETCONS:
Luca Ceresoli7aa81a42011-05-17 00:03:40 +00001816 case TFTPSRV:
wdenk05939202004-04-18 17:39:38 +00001817 if (NetOurIP == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001818 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001819 return 1;
wdenk05939202004-04-18 17:39:38 +00001820 }
1821 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001822
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001823#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001824 case RARP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001825#endif
wdenk2d966952002-10-31 22:12:35 +00001826 case BOOTP:
wdenk145d2c12004-04-15 21:48:45 +00001827 case CDP:
Peter Tyserf7a48ca2010-09-30 11:25:48 -05001828 case DHCP:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001829 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001830 extern int eth_get_dev_index(void);
1831 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001832
wdenk05939202004-04-18 17:39:38 +00001833 switch (num) {
1834 case -1:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001835 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001836 return 1;
wdenk05939202004-04-18 17:39:38 +00001837 case 0:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001838 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001839 break;
wdenk05939202004-04-18 17:39:38 +00001840 default:
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001841 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001842 num);
1843 break;
wdenk05939202004-04-18 17:39:38 +00001844 }
wdenk2d966952002-10-31 22:12:35 +00001845
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001846 NetStartAgain();
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001847 return 2;
wdenk05939202004-04-18 17:39:38 +00001848 }
1849 /* Fall through */
1850 default:
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001851 return 0;
wdenk2d966952002-10-31 22:12:35 +00001852 }
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001853 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001854}
1855/**********************************************************************/
1856
1857int
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001858NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001859{
1860 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1861}
1862
1863
1864unsigned
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001865NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001866{
1867 ulong xsum;
Stefan Roeseac553282005-08-31 12:55:50 +02001868 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001869
1870 xsum = 0;
1871 while (len-- > 0)
Wolfgang Denk3135c542005-08-26 01:36:03 +02001872 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001873 xsum = (xsum & 0xffff) + (xsum >> 16);
1874 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00001875 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001876}
1877
wdenk145d2c12004-04-15 21:48:45 +00001878int
1879NetEthHdrSize(void)
1880{
1881 ushort myvlanid;
1882
1883 myvlanid = ntohs(NetOurVLAN);
1884 if (myvlanid == (ushort)-1)
1885 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001886
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001887 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1888 VLAN_ETHER_HDR_SIZE;
wdenk145d2c12004-04-15 21:48:45 +00001889}
1890
1891int
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001892NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001893{
1894 Ethernet_t *et = (Ethernet_t *)xet;
wdenk145d2c12004-04-15 21:48:45 +00001895 ushort myvlanid;
1896
1897 myvlanid = ntohs(NetOurVLAN);
1898 if (myvlanid == (ushort)-1)
1899 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001900
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001901 memcpy(et->et_dest, addr, 6);
1902 memcpy(et->et_src, NetOurEther, 6);
wdenk145d2c12004-04-15 21:48:45 +00001903 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolib19d0b72011-05-04 02:40:46 +00001904 et->et_protlen = htons(prot);
wdenk145d2c12004-04-15 21:48:45 +00001905 return ETHER_HDR_SIZE;
1906 } else {
1907 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001908
wdenk145d2c12004-04-15 21:48:45 +00001909 vet->vet_vlan_type = htons(PROT_VLAN);
1910 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1911 vet->vet_type = htons(prot);
1912 return VLAN_ETHER_HDR_SIZE;
1913 }
1914}
wdenk2d966952002-10-31 22:12:35 +00001915
1916void
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001917NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001918{
Olav Morkene8a02772009-01-23 12:56:26 +01001919 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001920
1921 /*
1922 * If the data is an odd number of bytes, zero the
1923 * byte after the last byte so that the checksum
1924 * will work.
1925 */
1926 if (len & 1)
1927 xip[IP_HDR_SIZE + len] = 0;
1928
1929 /*
1930 * Construct an IP and UDP header.
wdenk05939202004-04-18 17:39:38 +00001931 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001932 */
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001933 /* IP_HDR_SIZE / 4 (not including UDP) */
1934 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001935 ip->ip_tos = 0;
1936 ip->ip_len = htons(IP_HDR_SIZE + len);
1937 ip->ip_id = htons(NetIPID++);
Peter Tyser0885bf02008-12-01 16:26:20 -06001938 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001939 ip->ip_ttl = 255;
1940 ip->ip_p = 17; /* UDP */
1941 ip->ip_sum = 0;
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001942 /* already in network byte order */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001943 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001944 /* - "" - */
Luca Ceresolif27d91f2011-05-04 02:40:44 +00001945 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001946 ip->udp_src = htons(sport);
1947 ip->udp_dst = htons(dport);
1948 ip->udp_len = htons(8 + len);
1949 ip->udp_xsum = 0;
1950 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1951}
1952
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001953void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001954{
1955 if (*src && (*src == '"')) {
1956 ++src;
1957 --size;
1958 }
1959
Luca Ceresolie8ccbb02011-05-04 02:40:43 +00001960 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001961 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001962 *dst = '\0';
1963}
1964
Luca Ceresoli5c83a962011-05-11 03:59:54 +00001965#if defined(CONFIG_CMD_NFS) || \
1966 defined(CONFIG_CMD_SNTP) || \
1967 defined(CONFIG_CMD_DNS)
Robin Getz82f0d232009-07-20 14:53:54 -04001968/*
Robin Getz55b50e92010-03-08 14:07:00 -05001969 * make port a little random (1024-17407)
1970 * This keeps the math somewhat trivial to compute, and seems to work with
1971 * all supported protocols/clients/servers
Robin Getz82f0d232009-07-20 14:53:54 -04001972 */
1973unsigned int random_port(void)
1974{
Robin Getz55b50e92010-03-08 14:07:00 -05001975 return 1024 + (get_timer(0) % 0x4000);
Robin Getz82f0d232009-07-20 14:53:54 -04001976}
1977#endif
1978
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001979void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001980{
Luca Ceresoli7cbd7482011-05-11 03:59:56 +00001981 x = ntohl(x);
1982 sprintf(s, "%d.%d.%d.%d",
1983 (int) ((x >> 24) & 0xff),
1984 (int) ((x >> 16) & 0xff),
1985 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk05939202004-04-18 17:39:38 +00001986 );
wdenk2d966952002-10-31 22:12:35 +00001987}
1988
wdenk145d2c12004-04-15 21:48:45 +00001989void VLAN_to_string(ushort x, char *s)
1990{
1991 x = ntohs(x);
1992
1993 if (x == (ushort)-1)
1994 x = VLAN_NONE;
1995
1996 if (x == VLAN_NONE)
1997 strcpy(s, "none");
1998 else
1999 sprintf(s, "%d", x & VLAN_IDMASK);
2000}
2001
Mike Frysinger89c73922010-10-20 07:16:48 -04002002ushort string_to_VLAN(const char *s)
wdenk145d2c12004-04-15 21:48:45 +00002003{
2004 ushort id;
2005
2006 if (s == NULL)
wdenk656140b2004-04-25 13:18:40 +00002007 return htons(VLAN_NONE);
wdenk145d2c12004-04-15 21:48:45 +00002008
2009 if (*s < '0' || *s > '9')
2010 id = VLAN_NONE;
2011 else
2012 id = (ushort)simple_strtoul(s, NULL, 10);
2013
wdenk656140b2004-04-25 13:18:40 +00002014 return htons(id);
wdenk145d2c12004-04-15 21:48:45 +00002015}
2016
wdenk145d2c12004-04-15 21:48:45 +00002017ushort getenv_VLAN(char *var)
2018{
Luca Ceresoli5fe6de22011-05-04 02:40:45 +00002019 return string_to_VLAN(getenv(var));
wdenk145d2c12004-04-15 21:48:45 +00002020}