blob: 7a6058339cccaf8a21879a685c837a0a10fc5695 [file] [log] [blame]
wdenk2d966952002-10-31 22:12:35 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020043 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000047 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
wdenkcbd8a352004-02-24 02:00:03 +000058 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
wdenkea287de2005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkea287de2005-04-01 00:25:43 +000071 * - own IP address
72 * We want: - network time
73 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000074 */
75
76
77#include <common.h>
78#include <watchdog.h>
79#include <command.h>
80#include <net.h>
81#include "bootp.h"
82#include "tftp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050083#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000084#include "rarp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050085#endif
wdenkcbd8a352004-02-24 02:00:03 +000086#include "nfs.h"
wdenkfc3e2162003-10-08 22:33:00 +000087#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -050091#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +000092#include "sntp.h"
93#endif
Peter Tyser561858e2008-11-03 09:30:59 -060094#if defined(CONFIG_CDP_VERSION)
95#include <timestamp.h>
96#endif
Robin Getz1a32bf42009-07-20 14:53:54 -040097#if defined(CONFIG_CMD_DNS)
98#include "dns.h"
99#endif
wdenk2d966952002-10-31 22:12:35 +0000100
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200101DECLARE_GLOBAL_DATA_PTR;
102
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200103#ifndef CONFIG_ARP_TIMEOUT
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000104/* Milliseconds before trying ARP again */
105# define ARP_TIMEOUT 5000UL
wdenk73a8b272003-06-05 19:27:42 +0000106#else
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200107# define ARP_TIMEOUT CONFIG_ARP_TIMEOUT
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200108#endif
109
110
111#ifndef CONFIG_NET_RETRY_COUNT
112# define ARP_TIMEOUT_COUNT 5 /* # of timeouts before giving up */
113#else
114# define ARP_TIMEOUT_COUNT CONFIG_NET_RETRY_COUNT
wdenk73a8b272003-06-05 19:27:42 +0000115#endif
116
wdenk2d966952002-10-31 22:12:35 +0000117/** BOOTP EXTENTIONS **/
118
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000119/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000120IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000121/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000122IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000123/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000124IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500125#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000126/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000127IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000128#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000129/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000130char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000131/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000132char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000133/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000134char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000135/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000136ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000137
David Updegraff53a5c422007-06-11 10:41:07 -0500138#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
139IPaddr_t Mcast_addr;
140#endif
141
wdenk2d966952002-10-31 22:12:35 +0000142/** END OF BOOTP EXTENTIONS **/
143
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000144/* The actual transferred size of the bootfile (in bytes) */
145ulong NetBootFileXferSize;
146/* Our ethernet address */
147uchar NetOurEther[6];
148/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000149uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000150/* Our IP addr (0 = unknown) */
151IPaddr_t NetOurIP;
152/* Server IP addr (0 = unknown) */
153IPaddr_t NetServerIP;
154/* Current receive packet */
155volatile uchar *NetRxPacket;
156/* Current rx packet length */
157int NetRxPacketLen;
158/* IP packet ID */
159unsigned NetIPID;
160/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000161uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
162uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100163#ifdef CONFIG_API
164void (*push_packet)(volatile void *, int len) = 0;
165#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500166#if defined(CONFIG_CMD_CDP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000167/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000168uchar NetCDPAddr[6] = { 0x01, 0x00, 0x0c, 0xcc, 0xcc, 0xcc };
wdenka3d991b2004-04-15 21:48:45 +0000169#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000170/* Network loop state */
171int NetState;
wdenk2d966952002-10-31 22:12:35 +0000172#ifdef CONFIG_NET_MULTI
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000173/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000174int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000175/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000176static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000177/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000178static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000179#endif
180
wdenk6e592382004-04-18 17:39:38 +0000181/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000182/* default is without VLAN */
183ushort NetOurVLAN = 0xFFFF;
184/* ditto */
185ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000186
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000187/* Boot File name */
188char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000189
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500190#if defined(CONFIG_CMD_PING)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000191/* the ip address to ping */
192IPaddr_t NetPingIP;
wdenk73a8b272003-06-05 19:27:42 +0000193
194static void PingStart(void);
195#endif
196
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500197#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000198static void CDPStart(void);
199#endif
200
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500201#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000202/* NTP server IP address */
203IPaddr_t NetNtpServerIP;
204/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000205int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000206#endif
207
wdenk68ceb292004-08-02 21:11:11 +0000208#ifdef CONFIG_NETCONSOLE
209void NcStart(void);
210int nc_input_packet(uchar *pkt, unsigned dest, unsigned src, unsigned len);
211#endif
212
wdenk2d966952002-10-31 22:12:35 +0000213volatile uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
214
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000215/* Receive packet */
216volatile uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000217
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000218/* Current RX packet handler */
219static rxhand_f *packetHandler;
220/* Current timeout handler */
221static thand_f *timeHandler;
222/* Time base value */
223static ulong timeStart;
224/* Current timeout value */
225static ulong timeDelta;
226/* THE transmit packet */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000227volatile uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000228
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000229static int net_check_prereq(proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000230
Remy Bohmer67b96e82009-10-28 22:13:39 +0100231static int NetTryCount;
232
wdenk2d966952002-10-31 22:12:35 +0000233/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000234
235IPaddr_t NetArpWaitPacketIP;
236IPaddr_t NetArpWaitReplyIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000237/* MAC address of waiting packet's destination */
238uchar *NetArpWaitPacketMAC;
239/* THE transmit packet */
240uchar *NetArpWaitTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000241int NetArpWaitTxPacketSize;
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200242uchar NetArpWaitPacketBuf[PKTSIZE_ALIGN + PKTALIGN];
wdenk73a8b272003-06-05 19:27:42 +0000243ulong NetArpWaitTimerStart;
244int NetArpWaitTry;
245
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000246void ArpRequest(void)
wdenk73a8b272003-06-05 19:27:42 +0000247{
248 int i;
249 volatile uchar *pkt;
wdenk6e592382004-04-18 17:39:38 +0000250 ARP_t *arp;
wdenk73a8b272003-06-05 19:27:42 +0000251
Robin Getz0ebf04c2009-07-23 03:01:03 -0400252 debug("ARP broadcast %d\n", NetArpWaitTry);
253
wdenk73a8b272003-06-05 19:27:42 +0000254 pkt = NetTxPacket;
255
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000256 pkt += NetSetEther(pkt, NetBcastAddr, PROT_ARP);
wdenk73a8b272003-06-05 19:27:42 +0000257
wdenk6e592382004-04-18 17:39:38 +0000258 arp = (ARP_t *) pkt;
wdenk73a8b272003-06-05 19:27:42 +0000259
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000260 arp->ar_hrd = htons(ARP_ETHER);
261 arp->ar_pro = htons(PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000262 arp->ar_hln = 6;
263 arp->ar_pln = 4;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000264 arp->ar_op = htons(ARPOP_REQUEST);
wdenk73a8b272003-06-05 19:27:42 +0000265
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000266 /* source ET addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000267 memcpy(&arp->ar_data[0], NetOurEther, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000268 /* source IP addr */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000269 NetWriteIP((uchar *) &arp->ar_data[6], NetOurIP);
wdenk6e592382004-04-18 17:39:38 +0000270 for (i = 10; i < 16; ++i) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000271 /* dest ET addr = 0 */
272 arp->ar_data[i] = 0;
wdenk73a8b272003-06-05 19:27:42 +0000273 }
274
wdenk6e592382004-04-18 17:39:38 +0000275 if ((NetArpWaitPacketIP & NetOurSubnetMask) !=
276 (NetOurIP & NetOurSubnetMask)) {
277 if (NetOurGatewayIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000278 puts("## Warning: gatewayip needed but not set\n");
Wolfgang Denkd509b812006-03-12 01:13:30 +0100279 NetArpWaitReplyIP = NetArpWaitPacketIP;
280 } else {
281 NetArpWaitReplyIP = NetOurGatewayIP;
wdenk6e592382004-04-18 17:39:38 +0000282 }
wdenk6e592382004-04-18 17:39:38 +0000283 } else {
284 NetArpWaitReplyIP = NetArpWaitPacketIP;
285 }
wdenk73a8b272003-06-05 19:27:42 +0000286
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000287 NetWriteIP((uchar *) &arp->ar_data[16], NetArpWaitReplyIP);
288 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + ARP_HDR_SIZE);
wdenk73a8b272003-06-05 19:27:42 +0000289}
290
291void ArpTimeoutCheck(void)
292{
293 ulong t;
294
295 if (!NetArpWaitPacketIP)
296 return;
297
298 t = get_timer(0);
299
300 /* check for arp timeout */
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200301 if ((t - NetArpWaitTimerStart) > ARP_TIMEOUT) {
wdenk73a8b272003-06-05 19:27:42 +0000302 NetArpWaitTry++;
303
304 if (NetArpWaitTry >= ARP_TIMEOUT_COUNT) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000305 puts("\nARP Retry count exceeded; starting again\n");
wdenk73a8b272003-06-05 19:27:42 +0000306 NetArpWaitTry = 0;
307 NetStartAgain();
308 } else {
309 NetArpWaitTimerStart = t;
310 ArpRequest();
311 }
312 }
313}
314
Heiko Schocherda954272009-04-28 08:36:11 +0200315static void
Heiko Schocher2f70c492009-02-10 09:38:52 +0100316NetInitLoop(proto_t protocol)
317{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000318 static int env_changed_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100319 bd_t *bd = gd->bd;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000320 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100321
322 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300323 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000324 NetOurIP = getenv_IPaddr("ipaddr");
325 NetCopyIP(&bd->bi_ip_addr, &NetOurIP);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000326 NetOurGatewayIP = getenv_IPaddr("gatewayip");
327 NetOurSubnetMask = getenv_IPaddr("netmask");
328 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100329 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300330 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400331#if defined(CONFIG_CMD_DNS)
332 NetOurDNSIP = getenv_IPaddr("dnsip");
333#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300334 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100335 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300336
Heiko Schocherda954272009-04-28 08:36:11 +0200337 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100338}
339
wdenk73a8b272003-06-05 19:27:42 +0000340/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000341/*
342 * Main network processing loop.
343 */
344
345int
346NetLoop(proto_t protocol)
347{
wdenk2d966952002-10-31 22:12:35 +0000348 bd_t *bd = gd->bd;
349
350#ifdef CONFIG_NET_MULTI
351 NetRestarted = 0;
352 NetDevExists = 0;
353#endif
354
wdenk73a8b272003-06-05 19:27:42 +0000355 /* XXX problem with bss workaround */
356 NetArpWaitPacketMAC = NULL;
357 NetArpWaitTxPacket = NULL;
358 NetArpWaitPacketIP = 0;
359 NetArpWaitReplyIP = 0;
360 NetArpWaitTxPacket = NULL;
361 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100362 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000363
wdenk2d966952002-10-31 22:12:35 +0000364 if (!NetTxPacket) {
365 int i;
wdenk2d966952002-10-31 22:12:35 +0000366 /*
367 * Setup packet buffers, aligned correctly.
368 */
369 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
370 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000371 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000372 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000373 }
374
375 if (!NetArpWaitTxPacket) {
376 NetArpWaitTxPacket = &NetArpWaitPacketBuf[0] + (PKTALIGN - 1);
377 NetArpWaitTxPacket -= (ulong)NetArpWaitTxPacket % PKTALIGN;
378 NetArpWaitTxPacketSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000379 }
380
381 eth_halt();
wdenk6e592382004-04-18 17:39:38 +0000382#ifdef CONFIG_NET_MULTI
wdenka3d991b2004-04-15 21:48:45 +0000383 eth_set_current();
wdenk6e592382004-04-18 17:39:38 +0000384#endif
wdenkb1bf6f22005-04-03 14:52:59 +0000385 if (eth_init(bd) < 0) {
386 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000387 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000388 }
wdenk2d966952002-10-31 22:12:35 +0000389
390restart:
391#ifdef CONFIG_NET_MULTI
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000392 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000393#else
Mike Frysinger95823ca2009-02-11 18:23:48 -0500394 eth_getenv_enetaddr("ethaddr", NetOurEther);
wdenk2d966952002-10-31 22:12:35 +0000395#endif
396
397 NetState = NETLOOP_CONTINUE;
398
399 /*
400 * Start the ball rolling with the given start function. From
401 * here on, this code is a state machine driven by received
402 * packets and timer events.
403 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100404 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000405
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000406 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000407 case 1:
408 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000409 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000410 return -1;
wdenk2d966952002-10-31 22:12:35 +0000411
412#ifdef CONFIG_NET_MULTI
413 case 2:
414 /* network device not configured */
415 break;
416#endif /* CONFIG_NET_MULTI */
417
418 case 0:
419#ifdef CONFIG_NET_MULTI
420 NetDevExists = 1;
421#endif
422 switch (protocol) {
423 case TFTP:
424 /* always use ARP to get server ethernet address */
wdenk73a8b272003-06-05 19:27:42 +0000425 TftpStart();
wdenk2d966952002-10-31 22:12:35 +0000426 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000427#ifdef CONFIG_CMD_TFTPSRV
428 case TFTPSRV:
429 TftpStartServer();
430 break;
431#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500432#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000433 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000434 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300435 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000436 DhcpRequest(); /* Basically same as BOOTP */
437 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500438#endif
wdenk2d966952002-10-31 22:12:35 +0000439
440 case BOOTP:
441 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300442 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000443 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000444 break;
445
Peter Tyserbf6cb242010-09-30 11:25:48 -0500446#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000447 case RARP:
448 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300449 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000450 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000451 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500452#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500453#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000454 case PING:
455 PingStart();
456 break;
457#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500458#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000459 case NFS:
460 NfsStart();
461 break;
462#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500463#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000464 case CDP:
465 CDPStart();
466 break;
467#endif
wdenk68ceb292004-08-02 21:11:11 +0000468#ifdef CONFIG_NETCONSOLE
469 case NETCONS:
470 NcStart();
471 break;
472#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500473#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000474 case SNTP:
475 SntpStart();
476 break;
477#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400478#if defined(CONFIG_CMD_DNS)
479 case DNS:
480 DnsStart();
481 break;
482#endif
wdenk2d966952002-10-31 22:12:35 +0000483 default:
484 break;
485 }
486
487 NetBootFileXferSize = 0;
488 break;
489 }
490
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500491#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000492#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
493 defined(CONFIG_STATUS_LED) && \
494 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000495 /*
wdenk42d1f032003-10-15 23:53:47 +0000496 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000497 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000498 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000499 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000500 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000501 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200502#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000503#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000504
505 /*
506 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000507 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000508 */
509 for (;;) {
510 WATCHDOG_RESET();
511#ifdef CONFIG_SHOW_ACTIVITY
512 {
513 extern void show_activity(int arg);
514 show_activity(1);
515 }
516#endif
517 /*
518 * Check the ethernet for a new packet. The ethernet
519 * receive routine will process it.
520 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200521 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000522
523 /*
524 * Abort if ctrl-c was pressed.
525 */
526 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000527 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000528 puts("\nAbort\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +0000529 return -1;
wdenk2d966952002-10-31 22:12:35 +0000530 }
531
wdenk73a8b272003-06-05 19:27:42 +0000532 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000533
534 /*
535 * Check for a timeout, and run the timeout handler
536 * if we have one.
537 */
wdenke0ac62d2003-08-17 18:55:18 +0000538 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000539 thand_f *x;
540
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500541#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000542#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
543 defined(CONFIG_STATUS_LED) && \
544 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000545 /*
wdenk42d1f032003-10-15 23:53:47 +0000546 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000547 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000548 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000549 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000550 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000551 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000552 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000553 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000554#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000555#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000556 x = timeHandler;
557 timeHandler = (thand_f *)0;
558 (*x)();
559 }
560
561
562 switch (NetState) {
563
564 case NETLOOP_RESTART:
565#ifdef CONFIG_NET_MULTI
566 NetRestarted = 1;
567#endif
568 goto restart;
569
570 case NETLOOP_SUCCESS:
571 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200572 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000573 printf("Bytes transferred = %ld (%lx hex)\n",
574 NetBootFileXferSize,
575 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200576 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000577 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000578
579 sprintf(buf, "%lX", (unsigned long)load_addr);
580 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000581 }
582 eth_halt();
583 return NetBootFileXferSize;
584
585 case NETLOOP_FAIL:
Luca Ceresoli92895de2011-05-04 02:40:45 +0000586 return -1;
wdenk2d966952002-10-31 22:12:35 +0000587 }
588 }
589}
590
591/**********************************************************************/
592
593static void
594startAgainTimeout(void)
595{
596 NetState = NETLOOP_RESTART;
597}
598
599static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000600startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
601 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000602{
603 /* Totally ignore the packet */
604}
605
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000606void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000607{
wdenk6e592382004-04-18 17:39:38 +0000608 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100609 int retry_forever = 0;
610 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000611
Remy Bohmer67b96e82009-10-28 22:13:39 +0100612 nretry = getenv("netretry");
613 if (nretry) {
614 if (!strcmp(nretry, "yes"))
615 retry_forever = 1;
616 else if (!strcmp(nretry, "no"))
617 retrycnt = 0;
618 else if (!strcmp(nretry, "once"))
619 retrycnt = 1;
620 else
621 retrycnt = simple_strtoul(nretry, NULL, 0);
622 } else
623 retry_forever = 1;
624
625 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
626 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000627 NetState = NETLOOP_FAIL;
628 return;
629 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100630
631 NetTryCount++;
632
wdenk2d966952002-10-31 22:12:35 +0000633#ifndef CONFIG_NET_MULTI
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000634 NetSetTimeout(10000UL, startAgainTimeout);
635 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000636#else /* !CONFIG_NET_MULTI*/
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000637 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100638#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000639 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100640#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000641 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000642 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000643 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100644 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000645 NetSetTimeout(10000UL, startAgainTimeout);
646 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000647 } else {
wdenk2d966952002-10-31 22:12:35 +0000648 NetState = NETLOOP_FAIL;
649 }
wdenk6e592382004-04-18 17:39:38 +0000650 } else {
wdenk2d966952002-10-31 22:12:35 +0000651 NetState = NETLOOP_RESTART;
652 }
wdenk6e592382004-04-18 17:39:38 +0000653#endif /* CONFIG_NET_MULTI */
wdenk2d966952002-10-31 22:12:35 +0000654}
655
656/**********************************************************************/
657/*
658 * Miscelaneous bits.
659 */
660
661void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000662NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000663{
664 packetHandler = f;
665}
666
667
668void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000669NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000670{
671 if (iv == 0) {
672 timeHandler = (thand_f *)0;
673 } else {
674 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000675 timeStart = get_timer(0);
676 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000677 }
678}
679
680
681void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000682NetSendPacket(volatile uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000683{
684 (void) eth_send(pkt, len);
685}
686
wdenk73a8b272003-06-05 19:27:42 +0000687int
688NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
689{
wdenka3d991b2004-04-15 21:48:45 +0000690 uchar *pkt;
691
wdenk73a8b272003-06-05 19:27:42 +0000692 /* convert to new style broadcast */
693 if (dest == 0)
694 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000695
wdenk73a8b272003-06-05 19:27:42 +0000696 /* if broadcast, make the ether address a broadcast and don't do ARP */
697 if (dest == 0xFFFFFFFF)
698 ether = NetBcastAddr;
699
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000700 /*
701 * if MAC address was not discovered yet, save the packet and do
702 * an ARP request
703 */
wdenk73a8b272003-06-05 19:27:42 +0000704 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
705
Robin Getz0ebf04c2009-07-23 03:01:03 -0400706 debug("sending ARP for %08lx\n", dest);
707
wdenk73a8b272003-06-05 19:27:42 +0000708 NetArpWaitPacketIP = dest;
709 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000710
711 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000712 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000713
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000714 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000715 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
716 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000717
718 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000719 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
720 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000721
722 /* and do the ARP request */
723 NetArpWaitTry = 1;
724 NetArpWaitTimerStart = get_timer(0);
725 ArpRequest();
726 return 1; /* waiting */
727 }
728
Robin Getz0ebf04c2009-07-23 03:01:03 -0400729 debug("sending UDP to %08lx/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000730
wdenka3d991b2004-04-15 21:48:45 +0000731 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000732 pkt += NetSetEther(pkt, ether, PROT_IP);
733 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000734 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000735
wdenk6e592382004-04-18 17:39:38 +0000736 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000737}
738
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500739#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000740static ushort PingSeqNo;
741
742int PingSend(void)
743{
744 static uchar mac[6];
745 volatile IP_t *ip;
746 volatile ushort *s;
wdenka3d991b2004-04-15 21:48:45 +0000747 uchar *pkt;
wdenk73a8b272003-06-05 19:27:42 +0000748
749 /* XXX always send arp request */
750
751 memcpy(mac, NetEtherNullAddr, 6);
752
Robin Getz0ebf04c2009-07-23 03:01:03 -0400753 debug("sending ARP for %08lx\n", NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000754
755 NetArpWaitPacketIP = NetPingIP;
756 NetArpWaitPacketMAC = mac;
757
wdenka3d991b2004-04-15 21:48:45 +0000758 pkt = NetArpWaitTxPacket;
759 pkt += NetSetEther(pkt, mac, PROT_IP);
wdenk73a8b272003-06-05 19:27:42 +0000760
wdenka3d991b2004-04-15 21:48:45 +0000761 ip = (volatile IP_t *)pkt;
wdenk73a8b272003-06-05 19:27:42 +0000762
763 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000764 * Construct an IP and ICMP header.
765 * (need to set no fragment bit - XXX)
wdenk73a8b272003-06-05 19:27:42 +0000766 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000767 /* IP_HDR_SIZE / 4 (not including UDP) */
768 ip->ip_hl_v = 0x45;
wdenk73a8b272003-06-05 19:27:42 +0000769 ip->ip_tos = 0;
770 ip->ip_len = htons(IP_HDR_SIZE_NO_UDP + 8);
771 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -0600772 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk73a8b272003-06-05 19:27:42 +0000773 ip->ip_ttl = 255;
774 ip->ip_p = 0x01; /* ICMP */
775 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000776 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000777 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000778 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000779 NetCopyIP((void *)&ip->ip_dst, &NetPingIP);
wdenk73a8b272003-06-05 19:27:42 +0000780 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
781
782 s = &ip->udp_src; /* XXX ICMP starts here */
783 s[0] = htons(0x0800); /* echo-request, code */
784 s[1] = 0; /* checksum */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200785 s[2] = 0; /* identifier */
wdenk73a8b272003-06-05 19:27:42 +0000786 s[3] = htons(PingSeqNo++); /* sequence number */
787 s[1] = ~NetCksum((uchar *)s, 8/2);
788
789 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000790 NetArpWaitTxPacketSize =
791 (pkt - NetArpWaitTxPacket) + IP_HDR_SIZE_NO_UDP + 8;
wdenk73a8b272003-06-05 19:27:42 +0000792
793 /* and do the ARP request */
794 NetArpWaitTry = 1;
795 NetArpWaitTimerStart = get_timer(0);
796 ArpRequest();
797 return 1; /* waiting */
798}
799
800static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000801PingTimeout(void)
wdenk73a8b272003-06-05 19:27:42 +0000802{
803 eth_halt();
804 NetState = NETLOOP_FAIL; /* we did not get the reply */
805}
806
807static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000808PingHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
809 unsigned len)
wdenk73a8b272003-06-05 19:27:42 +0000810{
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000811 if (sip != NetPingIP)
wdenk73a8b272003-06-05 19:27:42 +0000812 return;
813
814 NetState = NETLOOP_SUCCESS;
815}
816
817static void PingStart(void)
818{
wdenka3d991b2004-04-15 21:48:45 +0000819#if defined(CONFIG_NET_MULTI)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000820 printf("Using %s device\n", eth_get_name());
wdenk6e592382004-04-18 17:39:38 +0000821#endif /* CONFIG_NET_MULTI */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000822 NetSetTimeout(10000UL, PingTimeout);
823 NetSetHandler(PingHandler);
wdenk73a8b272003-06-05 19:27:42 +0000824
825 PingSend();
826}
Jon Loeliger610f2e92007-07-10 11:05:02 -0500827#endif
wdenk2d966952002-10-31 22:12:35 +0000828
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500829#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000830
831#define CDP_DEVICE_ID_TLV 0x0001
832#define CDP_ADDRESS_TLV 0x0002
833#define CDP_PORT_ID_TLV 0x0003
834#define CDP_CAPABILITIES_TLV 0x0004
835#define CDP_VERSION_TLV 0x0005
836#define CDP_PLATFORM_TLV 0x0006
837#define CDP_NATIVE_VLAN_TLV 0x000a
838#define CDP_APPLIANCE_VLAN_TLV 0x000e
839#define CDP_TRIGGER_TLV 0x000f
840#define CDP_POWER_CONSUMPTION_TLV 0x0010
841#define CDP_SYSNAME_TLV 0x0014
842#define CDP_SYSOBJECT_TLV 0x0015
843#define CDP_MANAGEMENT_ADDRESS_TLV 0x0016
844
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +0200845#define CDP_TIMEOUT 250UL /* one packet every 250ms */
wdenka3d991b2004-04-15 21:48:45 +0000846
847static int CDPSeq;
848static int CDPOK;
849
850ushort CDPNativeVLAN;
851ushort CDPApplianceVLAN;
852
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000853static const uchar CDP_SNAP_hdr[8] = { 0xAA, 0xAA, 0x03, 0x00, 0x00, 0x0C, 0x20,
854 0x00 };
wdenka3d991b2004-04-15 21:48:45 +0000855
856static ushort CDP_compute_csum(const uchar *buff, ushort len)
857{
858 ushort csum;
859 int odd;
860 ulong result = 0;
861 ushort leftover;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200862 ushort *p;
wdenka3d991b2004-04-15 21:48:45 +0000863
864 if (len > 0) {
865 odd = 1 & (ulong)buff;
866 if (odd) {
867 result = *buff << 8;
868 len--;
869 buff++;
870 }
871 while (len > 1) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200872 p = (ushort *)buff;
873 result += *p++;
874 buff = (uchar *)p;
wdenka3d991b2004-04-15 21:48:45 +0000875 if (result & 0x80000000)
876 result = (result & 0xFFFF) + (result >> 16);
877 len -= 2;
878 }
879 if (len) {
880 leftover = (signed short)(*(const signed char *)buff);
Wolfgang Denk3ada8342005-11-10 20:59:46 +0100881 /* CISCO SUCKS big time! (and blows too):
882 * CDP uses the IP checksum algorithm with a twist;
883 * for the last byte it *sign* extends and sums.
884 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000885 result = (result & 0xffff0000) |
886 ((result + leftover) & 0x0000ffff);
wdenka3d991b2004-04-15 21:48:45 +0000887 }
888 while (result >> 16)
889 result = (result & 0xFFFF) + (result >> 16);
890
891 if (odd)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000892 result = ((result >> 8) & 0xff) |
893 ((result & 0xff) << 8);
wdenka3d991b2004-04-15 21:48:45 +0000894 }
895
896 /* add up 16-bit and 17-bit words for 17+c bits */
897 result = (result & 0xffff) + (result >> 16);
898 /* add up 16-bit and 2-bit for 16+c bit */
899 result = (result & 0xffff) + (result >> 16);
900 /* add up carry.. */
901 result = (result & 0xffff) + (result >> 16);
902
903 /* negate */
904 csum = ~(ushort)result;
905
906 /* run time endian detection */
907 if (csum != htons(csum)) /* little endian */
908 csum = htons(csum);
909
910 return csum;
911}
912
913int CDPSendTrigger(void)
914{
915 volatile uchar *pkt;
916 volatile ushort *s;
917 volatile ushort *cp;
918 Ethernet_t *et;
wdenka3d991b2004-04-15 21:48:45 +0000919 int len;
920 ushort chksum;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000921#if defined(CONFIG_CDP_DEVICE_ID) || defined(CONFIG_CDP_PORT_ID) || \
922 defined(CONFIG_CDP_VERSION) || defined(CONFIG_CDP_PLATFORM)
wdenk6e592382004-04-18 17:39:38 +0000923 char buf[32];
924#endif
wdenka3d991b2004-04-15 21:48:45 +0000925
926 pkt = NetTxPacket;
927 et = (Ethernet_t *)pkt;
928
929 /* NOTE: trigger sent not on any VLAN */
930
931 /* form ethernet header */
932 memcpy(et->et_dest, NetCDPAddr, 6);
933 memcpy(et->et_src, NetOurEther, 6);
934
935 pkt += ETHER_HDR_SIZE;
936
937 /* SNAP header */
938 memcpy((uchar *)pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr));
939 pkt += sizeof(CDP_SNAP_hdr);
940
941 /* CDP header */
942 *pkt++ = 0x02; /* CDP version 2 */
943 *pkt++ = 180; /* TTL */
944 s = (volatile ushort *)pkt;
945 cp = s;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000946 /* checksum (0 for later calculation) */
947 *s++ = htons(0);
wdenka3d991b2004-04-15 21:48:45 +0000948
949 /* CDP fields */
950#ifdef CONFIG_CDP_DEVICE_ID
951 *s++ = htons(CDP_DEVICE_ID_TLV);
952 *s++ = htons(CONFIG_CDP_DEVICE_ID);
Mike Frysinger95823ca2009-02-11 18:23:48 -0500953 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", NetOurEther);
wdenka3d991b2004-04-15 21:48:45 +0000954 memcpy((uchar *)s, buf, 16);
955 s += 16 / 2;
956#endif
957
958#ifdef CONFIG_CDP_PORT_ID
959 *s++ = htons(CDP_PORT_ID_TLV);
960 memset(buf, 0, sizeof(buf));
961 sprintf(buf, CONFIG_CDP_PORT_ID, eth_get_dev_index());
962 len = strlen(buf);
963 if (len & 1) /* make it even */
964 len++;
965 *s++ = htons(len + 4);
966 memcpy((uchar *)s, buf, len);
967 s += len / 2;
968#endif
969
970#ifdef CONFIG_CDP_CAPABILITIES
971 *s++ = htons(CDP_CAPABILITIES_TLV);
972 *s++ = htons(8);
973 *(ulong *)s = htonl(CONFIG_CDP_CAPABILITIES);
974 s += 2;
975#endif
976
977#ifdef CONFIG_CDP_VERSION
978 *s++ = htons(CDP_VERSION_TLV);
979 memset(buf, 0, sizeof(buf));
980 strcpy(buf, CONFIG_CDP_VERSION);
981 len = strlen(buf);
982 if (len & 1) /* make it even */
983 len++;
984 *s++ = htons(len + 4);
985 memcpy((uchar *)s, buf, len);
986 s += len / 2;
987#endif
988
989#ifdef CONFIG_CDP_PLATFORM
990 *s++ = htons(CDP_PLATFORM_TLV);
991 memset(buf, 0, sizeof(buf));
992 strcpy(buf, CONFIG_CDP_PLATFORM);
993 len = strlen(buf);
994 if (len & 1) /* make it even */
995 len++;
996 *s++ = htons(len + 4);
997 memcpy((uchar *)s, buf, len);
998 s += len / 2;
999#endif
1000
1001#ifdef CONFIG_CDP_TRIGGER
1002 *s++ = htons(CDP_TRIGGER_TLV);
1003 *s++ = htons(8);
1004 *(ulong *)s = htonl(CONFIG_CDP_TRIGGER);
1005 s += 2;
1006#endif
1007
1008#ifdef CONFIG_CDP_POWER_CONSUMPTION
1009 *s++ = htons(CDP_POWER_CONSUMPTION_TLV);
1010 *s++ = htons(6);
1011 *s++ = htons(CONFIG_CDP_POWER_CONSUMPTION);
1012#endif
1013
1014 /* length of ethernet packet */
1015 len = (uchar *)s - ((uchar *)NetTxPacket + ETHER_HDR_SIZE);
1016 et->et_protlen = htons(len);
1017
1018 len = ETHER_HDR_SIZE + sizeof(CDP_SNAP_hdr);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001019 chksum = CDP_compute_csum((uchar *)NetTxPacket + len,
1020 (uchar *)s - (NetTxPacket + len));
wdenka3d991b2004-04-15 21:48:45 +00001021 if (chksum == 0)
1022 chksum = 0xFFFF;
1023 *cp = htons(chksum);
1024
1025 (void) eth_send(NetTxPacket, (uchar *)s - NetTxPacket);
1026 return 0;
1027}
1028
1029static void
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001030CDPTimeout(void)
wdenka3d991b2004-04-15 21:48:45 +00001031{
1032 CDPSeq++;
1033
1034 if (CDPSeq < 3) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001035 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
wdenka3d991b2004-04-15 21:48:45 +00001036 CDPSendTrigger();
1037 return;
1038 }
1039
1040 /* if not OK try again */
1041 if (!CDPOK)
1042 NetStartAgain();
1043 else
1044 NetState = NETLOOP_SUCCESS;
1045}
1046
1047static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001048CDPDummyHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,
1049 unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001050{
1051 /* nothing */
1052}
1053
1054static void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001055CDPHandler(const uchar *pkt, unsigned len)
wdenka3d991b2004-04-15 21:48:45 +00001056{
1057 const uchar *t;
1058 const ushort *ss;
1059 ushort type, tlen;
1060 uchar applid;
1061 ushort vlan, nvlan;
1062
1063 /* minimum size? */
1064 if (len < sizeof(CDP_SNAP_hdr) + 4)
1065 goto pkt_short;
1066
1067 /* check for valid CDP SNAP header */
1068 if (memcmp(pkt, CDP_SNAP_hdr, sizeof(CDP_SNAP_hdr)) != 0)
1069 return;
1070
1071 pkt += sizeof(CDP_SNAP_hdr);
1072 len -= sizeof(CDP_SNAP_hdr);
1073
1074 /* Version of CDP protocol must be >= 2 and TTL != 0 */
1075 if (pkt[0] < 0x02 || pkt[1] == 0)
1076 return;
1077
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001078 /*
1079 * if version is greater than 0x02 maybe we'll have a problem;
1080 * output a warning
1081 */
wdenka3d991b2004-04-15 21:48:45 +00001082 if (pkt[0] != 0x02)
1083 printf("** WARNING: CDP packet received with a protocol version %d > 2\n",
1084 pkt[0] & 0xff);
1085
1086 if (CDP_compute_csum(pkt, len) != 0)
1087 return;
1088
1089 pkt += 4;
1090 len -= 4;
1091
1092 vlan = htons(-1);
1093 nvlan = htons(-1);
1094 while (len > 0) {
1095 if (len < 4)
1096 goto pkt_short;
1097
1098 ss = (const ushort *)pkt;
1099 type = ntohs(ss[0]);
1100 tlen = ntohs(ss[1]);
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001101 if (tlen > len)
wdenka3d991b2004-04-15 21:48:45 +00001102 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001103
1104 pkt += tlen;
1105 len -= tlen;
1106
1107 ss += 2; /* point ss to the data of the TLV */
1108 tlen -= 4;
1109
1110 switch (type) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001111 case CDP_DEVICE_ID_TLV:
1112 break;
1113 case CDP_ADDRESS_TLV:
1114 break;
1115 case CDP_PORT_ID_TLV:
1116 break;
1117 case CDP_CAPABILITIES_TLV:
1118 break;
1119 case CDP_VERSION_TLV:
1120 break;
1121 case CDP_PLATFORM_TLV:
1122 break;
1123 case CDP_NATIVE_VLAN_TLV:
1124 nvlan = *ss;
1125 break;
1126 case CDP_APPLIANCE_VLAN_TLV:
1127 t = (const uchar *)ss;
1128 while (tlen > 0) {
1129 if (tlen < 3)
1130 goto pkt_short;
wdenka3d991b2004-04-15 21:48:45 +00001131
Luca Ceresolic819abe2011-05-04 02:40:46 +00001132 applid = t[0];
1133 ss = (const ushort *)(t + 1);
wdenka3d991b2004-04-15 21:48:45 +00001134
1135#ifdef CONFIG_CDP_APPLIANCE_VLAN_TYPE
Luca Ceresolic819abe2011-05-04 02:40:46 +00001136 if (applid == CONFIG_CDP_APPLIANCE_VLAN_TYPE)
1137 vlan = *ss;
wdenka3d991b2004-04-15 21:48:45 +00001138#else
Luca Ceresolic819abe2011-05-04 02:40:46 +00001139 /* XXX will this work; dunno */
1140 vlan = ntohs(*ss);
wdenka3d991b2004-04-15 21:48:45 +00001141#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001142 t += 3; tlen -= 3;
1143 }
1144 break;
1145 case CDP_TRIGGER_TLV:
1146 break;
1147 case CDP_POWER_CONSUMPTION_TLV:
1148 break;
1149 case CDP_SYSNAME_TLV:
1150 break;
1151 case CDP_SYSOBJECT_TLV:
1152 break;
1153 case CDP_MANAGEMENT_ADDRESS_TLV:
1154 break;
wdenka3d991b2004-04-15 21:48:45 +00001155 }
1156 }
1157
1158 CDPApplianceVLAN = vlan;
1159 CDPNativeVLAN = nvlan;
1160
1161 CDPOK = 1;
1162 return;
1163
1164 pkt_short:
1165 printf("** CDP packet is too short\n");
1166 return;
1167}
1168
1169static void CDPStart(void)
1170{
1171#if defined(CONFIG_NET_MULTI)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001172 printf("Using %s device\n", eth_get_name());
wdenka3d991b2004-04-15 21:48:45 +00001173#endif
1174 CDPSeq = 0;
1175 CDPOK = 0;
1176
1177 CDPNativeVLAN = htons(-1);
1178 CDPApplianceVLAN = htons(-1);
1179
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001180 NetSetTimeout(CDP_TIMEOUT, CDPTimeout);
1181 NetSetHandler(CDPDummyHandler);
wdenka3d991b2004-04-15 21:48:45 +00001182
1183 CDPSendTrigger();
1184}
Jon Loeliger610f2e92007-07-10 11:05:02 -05001185#endif
wdenka3d991b2004-04-15 21:48:45 +00001186
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001187#ifdef CONFIG_IP_DEFRAG
1188/*
1189 * This function collects fragments in a single packet, according
1190 * to the algorithm in RFC815. It returns NULL or the pointer to
1191 * a complete packet, in static storage
1192 */
1193#ifndef CONFIG_NET_MAXDEFRAG
1194#define CONFIG_NET_MAXDEFRAG 16384
1195#endif
1196/*
1197 * MAXDEFRAG, above, is chosen in the config file and is real data
1198 * so we need to add the NFS overhead, which is more than TFTP.
1199 * To use sizeof in the internal unnamed structures, we need a real
1200 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
1201 * The compiler doesn't complain nor allocates the actual structure
1202 */
1203static struct rpc_t rpc_specimen;
1204#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
1205
1206#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
1207
1208/*
1209 * this is the packet being assembled, either data or frag control.
1210 * Fragments go by 8 bytes, so this union must be 8 bytes long
1211 */
1212struct hole {
1213 /* first_byte is address of this structure */
1214 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
1215 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
1216 u16 prev_hole; /* index of prev, 0 == none */
1217 u16 unused;
1218};
1219
1220static IP_t *__NetDefragment(IP_t *ip, int *lenp)
1221{
1222 static uchar pkt_buff[IP_PKTSIZE] __attribute__((aligned(PKTALIGN)));
1223 static u16 first_hole, total_len;
1224 struct hole *payload, *thisfrag, *h, *newh;
1225 IP_t *localip = (IP_t *)pkt_buff;
1226 uchar *indata = (uchar *)ip;
1227 int offset8, start, len, done = 0;
1228 u16 ip_off = ntohs(ip->ip_off);
1229
1230 /* payload starts after IP header, this fragment is in there */
1231 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
1232 offset8 = (ip_off & IP_OFFS);
1233 thisfrag = payload + offset8;
1234 start = offset8 * 8;
1235 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
1236
1237 if (start + len > IP_MAXUDP) /* fragment extends too far */
1238 return NULL;
1239
1240 if (!total_len || localip->ip_id != ip->ip_id) {
1241 /* new (or different) packet, reset structs */
1242 total_len = 0xffff;
1243 payload[0].last_byte = ~0;
1244 payload[0].next_hole = 0;
1245 payload[0].prev_hole = 0;
1246 first_hole = 0;
1247 /* any IP header will work, copy the first we received */
1248 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
1249 }
1250
1251 /*
1252 * What follows is the reassembly algorithm. We use the payload
1253 * array as a linked list of hole descriptors, as each hole starts
1254 * at a multiple of 8 bytes. However, last byte can be whatever value,
1255 * so it is represented as byte count, not as 8-byte blocks.
1256 */
1257
1258 h = payload + first_hole;
1259 while (h->last_byte < start) {
1260 if (!h->next_hole) {
1261 /* no hole that far away */
1262 return NULL;
1263 }
1264 h = payload + h->next_hole;
1265 }
1266
Fillod Stephanee397e592010-06-11 19:26:43 +02001267 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
1268 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001269 /* no overlap with holes (dup fragment?) */
1270 return NULL;
1271 }
1272
1273 if (!(ip_off & IP_FLAGS_MFRAG)) {
1274 /* no more fragmentss: truncate this (last) hole */
1275 total_len = start + len;
1276 h->last_byte = start + len;
1277 }
1278
1279 /*
1280 * There is some overlap: fix the hole list. This code doesn't
1281 * deal with a fragment that overlaps with two different holes
1282 * (thus being a superset of a previously-received fragment).
1283 */
1284
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001285 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001286 /* complete overlap with hole: remove hole */
1287 if (!h->prev_hole && !h->next_hole) {
1288 /* last remaining hole */
1289 done = 1;
1290 } else if (!h->prev_hole) {
1291 /* first hole */
1292 first_hole = h->next_hole;
1293 payload[h->next_hole].prev_hole = 0;
1294 } else if (!h->next_hole) {
1295 /* last hole */
1296 payload[h->prev_hole].next_hole = 0;
1297 } else {
1298 /* in the middle of the list */
1299 payload[h->next_hole].prev_hole = h->prev_hole;
1300 payload[h->prev_hole].next_hole = h->next_hole;
1301 }
1302
1303 } else if (h->last_byte <= start + len) {
1304 /* overlaps with final part of the hole: shorten this hole */
1305 h->last_byte = start;
1306
1307 } else if (h >= thisfrag) {
1308 /* overlaps with initial part of the hole: move this hole */
1309 newh = thisfrag + (len / 8);
1310 *newh = *h;
1311 h = newh;
1312 if (h->next_hole)
1313 payload[h->next_hole].prev_hole = (h - payload);
1314 if (h->prev_hole)
1315 payload[h->prev_hole].next_hole = (h - payload);
1316 else
1317 first_hole = (h - payload);
1318
1319 } else {
1320 /* fragment sits in the middle: split the hole */
1321 newh = thisfrag + (len / 8);
1322 *newh = *h;
1323 h->last_byte = start;
1324 h->next_hole = (newh - payload);
1325 newh->prev_hole = (h - payload);
1326 if (newh->next_hole)
1327 payload[newh->next_hole].prev_hole = (newh - payload);
1328 }
1329
1330 /* finally copy this fragment and possibly return whole packet */
1331 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
1332 if (!done)
1333 return NULL;
1334
1335 localip->ip_len = htons(total_len);
1336 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
1337 return localip;
1338}
1339
1340static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1341{
1342 u16 ip_off = ntohs(ip->ip_off);
1343 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1344 return ip; /* not a fragment */
1345 return __NetDefragment(ip, lenp);
1346}
1347
1348#else /* !CONFIG_IP_DEFRAG */
1349
1350static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
1351{
1352 u16 ip_off = ntohs(ip->ip_off);
1353 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
1354 return ip; /* not a fragment */
1355 return NULL;
1356}
1357#endif
wdenka3d991b2004-04-15 21:48:45 +00001358
wdenk2d966952002-10-31 22:12:35 +00001359void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001360NetReceive(volatile uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +00001361{
1362 Ethernet_t *et;
1363 IP_t *ip;
1364 ARP_t *arp;
1365 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001366 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +00001367 int x;
wdenka3d991b2004-04-15 21:48:45 +00001368 uchar *pkt;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001369#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001370 int iscdp;
1371#endif
1372 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +00001373
Robin Getz0ebf04c2009-07-23 03:01:03 -04001374 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001375
Mike Frysingerd9bec9f2009-07-18 21:04:08 -04001376 NetRxPacket = inpkt;
1377 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +00001378 et = (Ethernet_t *)inpkt;
1379
1380 /* too small packet? */
1381 if (len < ETHER_HDR_SIZE)
1382 return;
1383
Rafal Jaworowskif85b6072007-12-27 18:19:02 +01001384#ifdef CONFIG_API
1385 if (push_packet) {
1386 (*push_packet)(inpkt, len);
1387 return;
1388 }
1389#endif
1390
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001391#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001392 /* keep track if packet is CDP */
1393 iscdp = memcmp(et->et_dest, NetCDPAddr, 6) == 0;
1394#endif
1395
1396 myvlanid = ntohs(NetOurVLAN);
1397 if (myvlanid == (ushort)-1)
1398 myvlanid = VLAN_NONE;
1399 mynvlanid = ntohs(NetOurNativeVLAN);
1400 if (mynvlanid == (ushort)-1)
1401 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001402
1403 x = ntohs(et->et_protlen);
1404
Robin Getz0ebf04c2009-07-23 03:01:03 -04001405 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +00001406
wdenk2d966952002-10-31 22:12:35 +00001407 if (x < 1514) {
1408 /*
1409 * Got a 802 packet. Check the other protocol field.
1410 */
1411 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +00001412
1413 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001414 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001415
1416 } else if (x != PROT_VLAN) { /* normal packet */
1417 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001418 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001419
1420 } else { /* VLAN packet */
1421 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
1422
Robin Getz0ebf04c2009-07-23 03:01:03 -04001423 debug("VLAN packet received\n");
1424
wdenka3d991b2004-04-15 21:48:45 +00001425 /* too small packet? */
1426 if (len < VLAN_ETHER_HDR_SIZE)
1427 return;
1428
1429 /* if no VLAN active */
1430 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001431#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001432 && iscdp == 0
1433#endif
1434 )
1435 return;
1436
1437 cti = ntohs(vet->vet_tag);
1438 vlanid = cti & VLAN_IDMASK;
1439 x = ntohs(vet->vet_type);
1440
1441 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
1442 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001443 }
1444
Robin Getz0ebf04c2009-07-23 03:01:03 -04001445 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +00001446
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001447#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001448 if (iscdp) {
1449 CDPHandler((uchar *)ip, len);
1450 return;
1451 }
1452#endif
1453
1454 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1455 if (vlanid == VLAN_NONE)
1456 vlanid = (mynvlanid & VLAN_IDMASK);
1457 /* not matched? */
1458 if (vlanid != (myvlanid & VLAN_IDMASK))
1459 return;
1460 }
1461
wdenk2d966952002-10-31 22:12:35 +00001462 switch (x) {
1463
1464 case PROT_ARP:
1465 /*
1466 * We have to deal with two types of ARP packets:
wdenk8bde7f72003-06-27 21:31:46 +00001467 * - REQUEST packets will be answered by sending our
1468 * IP address - if we know it.
1469 * - REPLY packates are expected only after we asked
1470 * for the TFTP server's or the gateway's ethernet
1471 * address; so if we receive such a packet, we set
1472 * the server ethernet address
wdenk2d966952002-10-31 22:12:35 +00001473 */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001474 debug("Got ARP\n");
1475
wdenk2d966952002-10-31 22:12:35 +00001476 arp = (ARP_t *)ip;
1477 if (len < ARP_HDR_SIZE) {
1478 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1479 return;
1480 }
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001481 if (ntohs(arp->ar_hrd) != ARP_ETHER)
wdenk2d966952002-10-31 22:12:35 +00001482 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001483 if (ntohs(arp->ar_pro) != PROT_IP)
wdenk2d966952002-10-31 22:12:35 +00001484 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001485 if (arp->ar_hln != 6)
wdenk2d966952002-10-31 22:12:35 +00001486 return;
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001487 if (arp->ar_pln != 4)
wdenk2d966952002-10-31 22:12:35 +00001488 return;
wdenk2d966952002-10-31 22:12:35 +00001489
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001490 if (NetOurIP == 0)
wdenk2d966952002-10-31 22:12:35 +00001491 return;
wdenk2d966952002-10-31 22:12:35 +00001492
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001493 if (NetReadIP(&arp->ar_data[16]) != NetOurIP)
wdenk2d966952002-10-31 22:12:35 +00001494 return;
wdenk2d966952002-10-31 22:12:35 +00001495
1496 switch (ntohs(arp->ar_op)) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001497 case ARPOP_REQUEST:
1498 /* reply with our IP address */
Robin Getz0ebf04c2009-07-23 03:01:03 -04001499 debug("Got ARP REQUEST, return our IP\n");
wdenka3d991b2004-04-15 21:48:45 +00001500 pkt = (uchar *)et;
1501 pkt += NetSetEther(pkt, et->et_src, PROT_ARP);
wdenk2d966952002-10-31 22:12:35 +00001502 arp->ar_op = htons(ARPOP_REPLY);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001503 memcpy(&arp->ar_data[10], &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001504 NetCopyIP(&arp->ar_data[16], &arp->ar_data[6]);
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001505 memcpy(&arp->ar_data[0], NetOurEther, 6);
1506 NetCopyIP(&arp->ar_data[6], &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001507 (void) eth_send((uchar *)et,
1508 (pkt - (uchar *)et) + ARP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001509 return;
wdenk73a8b272003-06-05 19:27:42 +00001510
1511 case ARPOP_REPLY: /* arp reply */
1512 /* are we waiting for a reply */
1513 if (!NetArpWaitPacketIP || !NetArpWaitPacketMAC)
1514 break;
Robin Getz97cfe862009-07-21 12:15:28 -04001515
1516#ifdef CONFIG_KEEP_SERVERADDR
1517 if (NetServerIP == NetArpWaitPacketIP) {
1518 char buf[20];
1519 sprintf(buf, "%pM", arp->ar_data);
1520 setenv("serveraddr", buf);
1521 }
1522#endif
1523
Robin Getz0ebf04c2009-07-23 03:01:03 -04001524 debug("Got ARP REPLY, set server/gtwy eth addr (%pM)\n",
Mike Frysinger95823ca2009-02-11 18:23:48 -05001525 arp->ar_data);
wdenk73a8b272003-06-05 19:27:42 +00001526
1527 tmp = NetReadIP(&arp->ar_data[6]);
1528
1529 /* matched waiting packet's address */
1530 if (tmp == NetArpWaitReplyIP) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001531 debug("Got it\n");
wdenk73a8b272003-06-05 19:27:42 +00001532 /* save address for later use */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001533 memcpy(NetArpWaitPacketMAC,
1534 &arp->ar_data[0], 6);
wdenk73a8b272003-06-05 19:27:42 +00001535
wdenk68ceb292004-08-02 21:11:11 +00001536#ifdef CONFIG_NETCONSOLE
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001537 (*packetHandler)(0, 0, 0, 0, 0);
wdenk68ceb292004-08-02 21:11:11 +00001538#endif
wdenk73a8b272003-06-05 19:27:42 +00001539 /* modify header, and transmit it */
1540 memcpy(((Ethernet_t *)NetArpWaitTxPacket)->et_dest, NetArpWaitPacketMAC, 6);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001541 (void) eth_send(NetArpWaitTxPacket,
1542 NetArpWaitTxPacketSize);
wdenk73a8b272003-06-05 19:27:42 +00001543
1544 /* no arp request pending now */
1545 NetArpWaitPacketIP = 0;
1546 NetArpWaitTxPacketSize = 0;
1547 NetArpWaitPacketMAC = NULL;
1548
1549 }
wdenk2d966952002-10-31 22:12:35 +00001550 return;
1551 default:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001552 debug("Unexpected ARP opcode 0x%x\n",
1553 ntohs(arp->ar_op));
wdenk2d966952002-10-31 22:12:35 +00001554 return;
1555 }
wdenk289f9322005-01-12 00:15:14 +00001556 break;
wdenk2d966952002-10-31 22:12:35 +00001557
Peter Tyserbf6cb242010-09-30 11:25:48 -05001558#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001559 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001560 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +00001561 arp = (ARP_t *)ip;
1562 if (len < ARP_HDR_SIZE) {
1563 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
1564 return;
1565 }
1566
1567 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
1568 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
1569 (ntohs(arp->ar_pro) != PROT_IP) ||
1570 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
1571
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001572 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +00001573 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001574 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +00001575 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001576 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
1577 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +00001578
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001579 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +00001580 }
1581 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001582#endif
wdenk2d966952002-10-31 22:12:35 +00001583 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001584 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001585 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +00001586 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -04001587 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001588 return;
1589 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001590 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001591 if (len < ntohs(ip->ip_len)) {
1592 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1593 return;
1594 }
1595 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001596 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1597
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001598 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001599 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001600 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001601 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001602 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001603 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001604 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001605 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001606 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001607 return;
1608 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001609 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001610 tmp = NetReadIP(&ip->ip_dst);
1611 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001612#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001613 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001614#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001615 return;
wdenk2d966952002-10-31 22:12:35 +00001616 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001617 /* Read source IP address for later use */
1618 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001619 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001620 * The function returns the unchanged packet if it's not
1621 * a fragment, and either the complete packet or NULL if
1622 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1623 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001624 ip = NetDefragment(ip, &len);
1625 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001626 return;
1627 /*
wdenk2d966952002-10-31 22:12:35 +00001628 * watch for ICMP host redirects
1629 *
wdenk8bde7f72003-06-27 21:31:46 +00001630 * There is no real handler code (yet). We just watch
1631 * for ICMP host redirect messages. In case anybody
1632 * sees these messages: please contact me
1633 * (wd@denx.de), or - even better - send me the
1634 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001635 *
wdenk8bde7f72003-06-27 21:31:46 +00001636 * Note: in all cases where I have seen this so far
1637 * it was a problem with the router configuration,
1638 * for instance when a router was configured in the
1639 * BOOTP reply, but the TFTP server was on the same
1640 * subnet. So this is probably a warning that your
1641 * configuration might be wrong. But I'm not really
1642 * sure if there aren't any other situations.
wdenk2d966952002-10-31 22:12:35 +00001643 */
1644 if (ip->ip_p == IPPROTO_ICMP) {
1645 ICMP_t *icmph = (ICMP_t *)&(ip->udp_src);
1646
wdenk73a8b272003-06-05 19:27:42 +00001647 switch (icmph->type) {
1648 case ICMP_REDIRECT:
wdenk90dc6702005-05-03 14:12:25 +00001649 if (icmph->code != ICMP_REDIR_HOST)
1650 return;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001651 printf(" ICMP Host Redirect to %pI4 ",
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001652 &icmph->un.gateway);
Stefan Roese8534bf92005-08-12 20:06:52 +02001653 return;
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001654#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001655 case ICMP_ECHO_REPLY:
1656 /*
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001657 * IP header OK. Pass the packet to the
1658 * current handler.
wdenk73a8b272003-06-05 19:27:42 +00001659 */
1660 /* XXX point to ip packet */
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001661 (*packetHandler)((uchar *)ip, 0, src_ip, 0, 0);
Stefan Roese8534bf92005-08-12 20:06:52 +02001662 return;
Ed Swarthout83853172007-03-07 12:14:50 -06001663 case ICMP_ECHO_REQUEST:
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001664 debug("Got ICMP ECHO REQUEST, return %d bytes\n",
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001665 ETHER_HDR_SIZE + len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001666
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001667 memcpy(&et->et_dest[0], &et->et_src[0], 6);
1668 memcpy(&et->et_src[0], NetOurEther, 6);
Ed Swarthout83853172007-03-07 12:14:50 -06001669
1670 ip->ip_sum = 0;
1671 ip->ip_off = 0;
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001672 NetCopyIP((void *)&ip->ip_dst, &ip->ip_src);
1673 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001674 ip->ip_sum = ~NetCksum((uchar *)ip,
1675 IP_HDR_SIZE_NO_UDP >> 1);
Ed Swarthout83853172007-03-07 12:14:50 -06001676
1677 icmph->type = ICMP_ECHO_REPLY;
1678 icmph->checksum = 0;
1679 icmph->checksum = ~NetCksum((uchar *)icmph,
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001680 (len - IP_HDR_SIZE_NO_UDP) >> 1);
1681 (void) eth_send((uchar *)et,
1682 ETHER_HDR_SIZE + len);
Ed Swarthout83853172007-03-07 12:14:50 -06001683 return;
wdenk73a8b272003-06-05 19:27:42 +00001684#endif
1685 default:
1686 return;
1687 }
wdenk2d966952002-10-31 22:12:35 +00001688 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1689 return;
1690 }
1691
Stefan Roese8534bf92005-08-12 20:06:52 +02001692#ifdef CONFIG_UDP_CHECKSUM
1693 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001694 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001695 ushort *sumptr;
1696 ushort sumlen;
1697
1698 xsum = ip->ip_p;
1699 xsum += (ntohs(ip->udp_len));
1700 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1701 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1702 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1703 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1704
1705 sumlen = ntohs(ip->udp_len);
1706 sumptr = (ushort *) &(ip->udp_src);
1707
1708 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001709 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001710
1711 sumdata = *sumptr++;
1712 xsum += ntohs(sumdata);
1713 sumlen -= 2;
1714 }
1715 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001716 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001717
1718 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001719 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001720 xsum += sumdata;
1721 }
1722 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001723 xsum = (xsum & 0x0000ffff) +
1724 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001725 }
1726 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001727 printf(" UDP wrong checksum %08lx %08x\n",
1728 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001729 return;
1730 }
1731 }
1732#endif
1733
David Updegraff53a5c422007-06-11 10:41:07 -05001734
wdenk68ceb292004-08-02 21:11:11 +00001735#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001736 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001737 ntohs(ip->udp_dst),
1738 ntohs(ip->udp_src),
1739 ntohs(ip->udp_len) - 8);
1740#endif
wdenk2d966952002-10-31 22:12:35 +00001741 /*
1742 * IP header OK. Pass the packet to the current handler.
1743 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001744 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001745 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001746 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001747 ntohs(ip->udp_src),
1748 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001749 break;
1750 }
1751}
1752
1753
1754/**********************************************************************/
1755
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001756static int net_check_prereq(proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001757{
1758 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001759 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001760#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001761 case PING:
wdenk6e592382004-04-18 17:39:38 +00001762 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001763 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001764 return 1;
wdenk6e592382004-04-18 17:39:38 +00001765 }
1766 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001767#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001768#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001769 case SNTP:
1770 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001771 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001772 return 1;
wdenkea287de2005-04-01 00:25:43 +00001773 }
1774 goto common;
1775#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001776#if defined(CONFIG_CMD_DNS)
1777 case DNS:
1778 if (NetOurDNSIP == 0) {
1779 puts("*** ERROR: DNS server address not given\n");
1780 return 1;
1781 }
1782 goto common;
1783#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001784#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001785 case NFS:
1786#endif
wdenk2d966952002-10-31 22:12:35 +00001787 case TFTP:
wdenk6e592382004-04-18 17:39:38 +00001788 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001789 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001790 return 1;
wdenk6e592382004-04-18 17:39:38 +00001791 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001792#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1793 defined(CONFIG_CMD_DNS)
1794common:
wdenk73a8b272003-06-05 19:27:42 +00001795#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001796 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001797
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001798 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001799 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001800 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001801 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001802 return 1;
wdenk6e592382004-04-18 17:39:38 +00001803 }
1804 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001805
Peter Tyserbf6cb242010-09-30 11:25:48 -05001806#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001807 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001808#endif
wdenk2d966952002-10-31 22:12:35 +00001809 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001810 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001811 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001812 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
wdenk2d966952002-10-31 22:12:35 +00001813#ifdef CONFIG_NET_MULTI
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001814 extern int eth_get_dev_index(void);
1815 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001816
wdenk6e592382004-04-18 17:39:38 +00001817 switch (num) {
1818 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001819 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001820 return 1;
wdenk6e592382004-04-18 17:39:38 +00001821 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001822 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001823 break;
wdenk6e592382004-04-18 17:39:38 +00001824 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001825 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001826 num);
1827 break;
wdenk2d966952002-10-31 22:12:35 +00001828 }
wdenk6e592382004-04-18 17:39:38 +00001829
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001830 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001831 return 2;
wdenk6e592382004-04-18 17:39:38 +00001832#else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001833 puts("*** ERROR: `ethaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001834 return 1;
wdenk6e592382004-04-18 17:39:38 +00001835#endif
1836 }
1837 /* Fall through */
1838 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001839 return 0;
wdenk2d966952002-10-31 22:12:35 +00001840 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001841 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001842}
1843/**********************************************************************/
1844
1845int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001846NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001847{
1848 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1849}
1850
1851
1852unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001853NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001854{
1855 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001856 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001857
1858 xsum = 0;
1859 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001860 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001861 xsum = (xsum & 0xffff) + (xsum >> 16);
1862 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001863 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001864}
1865
wdenka3d991b2004-04-15 21:48:45 +00001866int
1867NetEthHdrSize(void)
1868{
1869 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001870
wdenka3d991b2004-04-15 21:48:45 +00001871 myvlanid = ntohs(NetOurVLAN);
1872 if (myvlanid == (ushort)-1)
1873 myvlanid = VLAN_NONE;
1874
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001875 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1876 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001877}
1878
1879int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001880NetSetEther(volatile uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001881{
1882 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001883 ushort myvlanid;
1884
1885 myvlanid = ntohs(NetOurVLAN);
1886 if (myvlanid == (ushort)-1)
1887 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001888
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001889 memcpy(et->et_dest, addr, 6);
1890 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001891 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001892 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001893 return ETHER_HDR_SIZE;
1894 } else {
1895 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001896
wdenka3d991b2004-04-15 21:48:45 +00001897 vet->vet_vlan_type = htons(PROT_VLAN);
1898 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1899 vet->vet_type = htons(prot);
1900 return VLAN_ETHER_HDR_SIZE;
1901 }
1902}
wdenk2d966952002-10-31 22:12:35 +00001903
1904void
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001905NetSetIP(volatile uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001906{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001907 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001908
1909 /*
1910 * If the data is an odd number of bytes, zero the
1911 * byte after the last byte so that the checksum
1912 * will work.
1913 */
1914 if (len & 1)
1915 xip[IP_HDR_SIZE + len] = 0;
1916
1917 /*
1918 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001919 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001920 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001921 /* IP_HDR_SIZE / 4 (not including UDP) */
1922 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001923 ip->ip_tos = 0;
1924 ip->ip_len = htons(IP_HDR_SIZE + len);
1925 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001926 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001927 ip->ip_ttl = 255;
1928 ip->ip_p = 17; /* UDP */
1929 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001930 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001931 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001932 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001933 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001934 ip->udp_src = htons(sport);
1935 ip->udp_dst = htons(dport);
1936 ip->udp_len = htons(8 + len);
1937 ip->udp_xsum = 0;
1938 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1939}
1940
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001941void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001942{
1943 if (*src && (*src == '"')) {
1944 ++src;
1945 --size;
1946 }
1947
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001948 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001949 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001950 *dst = '\0';
1951}
1952
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001953#if defined(CONFIG_CMD_NFS) || \
1954 defined(CONFIG_CMD_SNTP) || \
1955 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001956/*
Robin Getz97399462010-03-08 14:07:00 -05001957 * make port a little random (1024-17407)
1958 * This keeps the math somewhat trivial to compute, and seems to work with
1959 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001960 */
1961unsigned int random_port(void)
1962{
Robin Getz97399462010-03-08 14:07:00 -05001963 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001964}
1965#endif
1966
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001967void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001968{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001969 x = ntohl(x);
1970 sprintf(s, "%d.%d.%d.%d",
1971 (int) ((x >> 24) & 0xff),
1972 (int) ((x >> 16) & 0xff),
1973 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001974 );
wdenk2d966952002-10-31 22:12:35 +00001975}
1976
wdenka3d991b2004-04-15 21:48:45 +00001977void VLAN_to_string(ushort x, char *s)
1978{
1979 x = ntohs(x);
1980
1981 if (x == (ushort)-1)
1982 x = VLAN_NONE;
1983
1984 if (x == VLAN_NONE)
1985 strcpy(s, "none");
1986 else
1987 sprintf(s, "%d", x & VLAN_IDMASK);
1988}
1989
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001990ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001991{
1992 ushort id;
1993
1994 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001995 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001996
1997 if (*s < '0' || *s > '9')
1998 id = VLAN_NONE;
1999 else
2000 id = (ushort)simple_strtoul(s, NULL, 10);
2001
wdenkb9711de2004-04-25 13:18:40 +00002002 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00002003}
2004
wdenka3d991b2004-04-15 21:48:45 +00002005ushort getenv_VLAN(char *var)
2006{
Luca Ceresoli92895de2011-05-04 02:40:45 +00002007 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00002008}