blob: e8ff0662b8858f313f769e26c134c1e93d5bd10e [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 *
Joe Hershbergerd22c3382012-05-23 08:00:12 +000026 * LINK_LOCAL:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * Next step: ARP
31 *
wdenk2d966952002-10-31 22:12:35 +000032 * RARP:
33 *
34 * Prerequisites: - own ethernet address
35 * We want: - own IP address
36 * - TFTP server IP address
37 * Next step: ARP
38 *
39 * ARP:
40 *
41 * Prerequisites: - own ethernet address
42 * - own IP address
43 * - TFTP server IP address
44 * We want: - TFTP server ethernet address
45 * Next step: TFTP
46 *
47 * DHCP:
48 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020049 * Prerequisites: - own ethernet address
50 * We want: - IP, Netmask, ServerIP, Gateway IP
51 * - bootfilename, lease time
52 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000053 *
54 * TFTP:
55 *
56 * Prerequisites: - own ethernet address
57 * - own IP address
58 * - TFTP server IP address
59 * - TFTP server ethernet address
60 * - name of bootfile (if unknown, we use a default name
61 * derived from our own IP address)
62 * We want: - load the boot file
63 * Next step: none
wdenkcbd8a352004-02-24 02:00:03 +000064 *
65 * NFS:
66 *
67 * Prerequisites: - own ethernet address
68 * - own IP address
69 * - name of bootfile (if unknown, we use a default name
70 * derived from our own IP address)
71 * We want: - load the boot file
72 * Next step: none
wdenkea287de2005-04-01 00:25:43 +000073 *
74 * SNTP:
75 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020076 * Prerequisites: - own ethernet address
wdenkea287de2005-04-01 00:25:43 +000077 * - own IP address
78 * We want: - network time
79 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000080 */
81
82
83#include <common.h>
wdenk2d966952002-10-31 22:12:35 +000084#include <command.h>
85#include <net.h>
Joe Hershberger4545f4e2012-05-23 07:58:15 +000086#if defined(CONFIG_STATUS_LED)
87#include <miiphy.h>
88#include <status_led.h>
89#endif
90#include <watchdog.h>
91#include <linux/compiler.h>
Joe Hershbergerd280d3f2012-05-23 07:58:01 +000092#include "arp.h"
wdenk2d966952002-10-31 22:12:35 +000093#include "bootp.h"
Joe Hershbergerf575ae12012-05-23 07:57:59 +000094#include "cdp.h"
Robin Getz1a32bf42009-07-20 14:53:54 -040095#if defined(CONFIG_CMD_DNS)
96#include "dns.h"
97#endif
Joe Hershbergerd22c3382012-05-23 08:00:12 +000098#include "link_local.h"
Joe Hershberger4545f4e2012-05-23 07:58:15 +000099#include "nfs.h"
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000100#include "ping.h"
Joe Hershberger4545f4e2012-05-23 07:58:15 +0000101#include "rarp.h"
102#if defined(CONFIG_CMD_SNTP)
103#include "sntp.h"
104#endif
105#include "tftp.h"
wdenk2d966952002-10-31 22:12:35 +0000106
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200107DECLARE_GLOBAL_DATA_PTR;
108
wdenk2d966952002-10-31 22:12:35 +0000109/** BOOTP EXTENTIONS **/
110
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000111/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000112IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000113/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000114IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000115/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000116IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500117#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000118/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000119IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000120#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000121/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000122char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000123/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000124char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000125/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000126char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000127/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000128ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000129
David Updegraff53a5c422007-06-11 10:41:07 -0500130#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
131IPaddr_t Mcast_addr;
132#endif
133
wdenk2d966952002-10-31 22:12:35 +0000134/** END OF BOOTP EXTENTIONS **/
135
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000136/* The actual transferred size of the bootfile (in bytes) */
137ulong NetBootFileXferSize;
138/* Our ethernet address */
139uchar NetOurEther[6];
140/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000141uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000142/* Our IP addr (0 = unknown) */
143IPaddr_t NetOurIP;
144/* Server IP addr (0 = unknown) */
145IPaddr_t NetServerIP;
146/* Current receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000147uchar *NetRxPacket;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000148/* Current rx packet length */
149int NetRxPacketLen;
150/* IP packet ID */
151unsigned NetIPID;
152/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000153uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
154uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100155#ifdef CONFIG_API
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000156void (*push_packet)(void *, int len) = 0;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100157#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000158/* Network loop state */
Joe Hershberger22f6e992012-05-23 07:59:14 +0000159enum net_loop_state net_state;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000160/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000161int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000162/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000163static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000164/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000165static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000166
wdenk6e592382004-04-18 17:39:38 +0000167/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000168/* default is without VLAN */
169ushort NetOurVLAN = 0xFFFF;
170/* ditto */
171ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000172
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000173/* Boot File name */
174char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000175
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500176#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000177/* NTP server IP address */
178IPaddr_t NetNtpServerIP;
179/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000180int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000181#endif
182
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000183uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
wdenk2d966952002-10-31 22:12:35 +0000184
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000185/* Receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000186uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000187
Joe Hershbergerece223b2012-05-23 07:59:15 +0000188/* Current UDP RX packet handler */
189static rxhand_f *udp_packet_handler;
190/* Current ARP RX packet handler */
191static rxhand_f *arp_packet_handler;
Simon Glass39bccd22011-10-26 14:18:38 +0000192#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerece223b2012-05-23 07:59:15 +0000193/* Current ICMP rx handler */
194static rxhand_icmp_f *packet_icmp_handler;
Simon Glass39bccd22011-10-26 14:18:38 +0000195#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000196/* Current timeout handler */
197static thand_f *timeHandler;
198/* Time base value */
199static ulong timeStart;
200/* Current timeout value */
201static ulong timeDelta;
202/* THE transmit packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000203uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000204
Simon Glasse4bf0c52011-10-24 18:00:02 +0000205static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000206
Remy Bohmer67b96e82009-10-28 22:13:39 +0100207static int NetTryCount;
208
wdenk2d966952002-10-31 22:12:35 +0000209/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000210
Simon Glasse4a3d572011-10-27 06:24:32 +0000211/*
212 * Check if autoload is enabled. If so, use either NFS or TFTP to download
213 * the boot file.
214 */
215void net_auto_load(void)
216{
217 const char *s = getenv("autoload");
218
219 if (s != NULL) {
220 if (*s == 'n') {
221 /*
222 * Just use BOOTP/RARP to configure system;
223 * Do not use TFTP to load the bootfile.
224 */
Joe Hershberger22f6e992012-05-23 07:59:14 +0000225 net_set_state(NETLOOP_SUCCESS);
Simon Glasse4a3d572011-10-27 06:24:32 +0000226 return;
227 }
228#if defined(CONFIG_CMD_NFS)
229 if (strcmp(s, "NFS") == 0) {
230 /*
231 * Use NFS to load the bootfile.
232 */
233 NfsStart();
234 return;
235 }
236#endif
237 }
238 TftpStart(TFTPGET);
239}
240
Joe Hershbergercb1c9912012-05-23 07:59:21 +0000241static void NetInitLoop(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100242{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000243 static int env_changed_id;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000244 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100245
246 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300247 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000248 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000249 NetOurGatewayIP = getenv_IPaddr("gatewayip");
250 NetOurSubnetMask = getenv_IPaddr("netmask");
251 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100252 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300253 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400254#if defined(CONFIG_CMD_DNS)
255 NetOurDNSIP = getenv_IPaddr("dnsip");
256#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300257 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100258 }
Joe Hershbergera03d6382012-07-23 13:11:16 +0000259 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
Michael Zaidman3c172c42009-04-04 01:43:00 +0300260
Heiko Schocherda954272009-04-28 08:36:11 +0200261 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100262}
263
Joe Hershbergerece223b2012-05-23 07:59:15 +0000264static void net_clear_handlers(void)
265{
266 net_set_udp_handler(NULL);
267 net_set_arp_handler(NULL);
268 NetSetTimeout(0, NULL);
269}
270
271static void net_cleanup_loop(void)
272{
273 net_clear_handlers();
274}
275
Joe Hershberger46c495d2012-05-23 07:59:22 +0000276void net_init(void)
277{
278 static int first_call = 1;
279
280 if (first_call) {
281 /*
282 * Setup packet buffers, aligned correctly.
283 */
284 int i;
285
286 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
287 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
288 for (i = 0; i < PKTBUFSRX; i++)
289 NetRxPackets[i] = NetTxPacket + (i + 1) * PKTSIZE_ALIGN;
290
291 ArpInit();
292 net_clear_handlers();
293
294 /* Only need to setup buffer pointers once. */
295 first_call = 0;
296 }
297
298 NetInitLoop();
299}
300
wdenk73a8b272003-06-05 19:27:42 +0000301/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000302/*
303 * Main network processing loop.
304 */
305
Simon Glasse4bf0c52011-10-24 18:00:02 +0000306int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000307{
wdenk2d966952002-10-31 22:12:35 +0000308 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000309 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000310
wdenk2d966952002-10-31 22:12:35 +0000311 NetRestarted = 0;
312 NetDevExists = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100313 NetTryCount = 1;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000314 debug_cond(DEBUG_INT_STATE, "--- NetLoop Entry\n");
wdenk73a8b272003-06-05 19:27:42 +0000315
Simon Glass573f14f2011-12-10 11:08:06 +0000316 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger46c495d2012-05-23 07:59:22 +0000317 net_init();
wdenk2d966952002-10-31 22:12:35 +0000318 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000319 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000320 if (eth_init(bd) < 0) {
321 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000322 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000323 }
wdenk2d966952002-10-31 22:12:35 +0000324
325restart:
Joe Hershberger22f6e992012-05-23 07:59:14 +0000326 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000327
328 /*
329 * Start the ball rolling with the given start function. From
330 * here on, this code is a state machine driven by received
331 * packets and timer events.
332 */
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000333 debug_cond(DEBUG_INT_STATE, "--- NetLoop Init\n");
Joe Hershbergercb1c9912012-05-23 07:59:21 +0000334 NetInitLoop();
wdenk2d966952002-10-31 22:12:35 +0000335
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000336 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000337 case 1:
338 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000339 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000340 return -1;
wdenk2d966952002-10-31 22:12:35 +0000341
wdenk2d966952002-10-31 22:12:35 +0000342 case 2:
343 /* network device not configured */
344 break;
wdenk2d966952002-10-31 22:12:35 +0000345
346 case 0:
wdenk2d966952002-10-31 22:12:35 +0000347 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000348 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000349 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000350 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000351#ifdef CONFIG_CMD_TFTPPUT
352 case TFTPPUT:
353#endif
wdenk2d966952002-10-31 22:12:35 +0000354 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000355 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000356 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000357#ifdef CONFIG_CMD_TFTPSRV
358 case TFTPSRV:
359 TftpStartServer();
360 break;
361#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500362#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000363 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000364 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300365 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000366 DhcpRequest(); /* Basically same as BOOTP */
367 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500368#endif
wdenk2d966952002-10-31 22:12:35 +0000369
370 case BOOTP:
371 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300372 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000373 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000374 break;
375
Peter Tyserbf6cb242010-09-30 11:25:48 -0500376#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000377 case RARP:
378 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300379 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000380 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000381 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500382#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500383#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000384 case PING:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000385 ping_start();
wdenk73a8b272003-06-05 19:27:42 +0000386 break;
387#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500388#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000389 case NFS:
390 NfsStart();
391 break;
392#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500393#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000394 case CDP:
395 CDPStart();
396 break;
397#endif
wdenk68ceb292004-08-02 21:11:11 +0000398#ifdef CONFIG_NETCONSOLE
399 case NETCONS:
400 NcStart();
401 break;
402#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500403#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000404 case SNTP:
405 SntpStart();
406 break;
407#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400408#if defined(CONFIG_CMD_DNS)
409 case DNS:
410 DnsStart();
411 break;
412#endif
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000413#if defined(CONFIG_CMD_LINK_LOCAL)
414 case LINKLOCAL:
415 link_local_start();
416 break;
417#endif
wdenk2d966952002-10-31 22:12:35 +0000418 default:
419 break;
420 }
421
wdenk2d966952002-10-31 22:12:35 +0000422 break;
423 }
424
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500425#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000426#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
427 defined(CONFIG_STATUS_LED) && \
428 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000429 /*
wdenk42d1f032003-10-15 23:53:47 +0000430 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000431 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000432 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000433 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000434 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000435 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200436#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000437#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000438
439 /*
440 * Main packet reception loop. Loop receiving packets until
Joe Hershberger22f6e992012-05-23 07:59:14 +0000441 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000442 */
443 for (;;) {
444 WATCHDOG_RESET();
445#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000446 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000447#endif
448 /*
449 * Check the ethernet for a new packet. The ethernet
450 * receive routine will process it.
451 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200452 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000453
454 /*
455 * Abort if ctrl-c was pressed.
456 */
457 if (ctrlc()) {
Joe Hershbergere94070c2012-05-23 07:59:24 +0000458 /* cancel any ARP that may not have completed */
459 NetArpWaitPacketIP = 0;
460
Joe Hershbergerece223b2012-05-23 07:59:15 +0000461 net_cleanup_loop();
wdenk8bde7f72003-06-27 21:31:46 +0000462 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000463 puts("\nAbort\n");
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000464 /* include a debug print as well incase the debug
465 messages are directed to stderr */
466 debug_cond(DEBUG_INT_STATE, "--- NetLoop Abort!\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000467 goto done;
wdenk2d966952002-10-31 22:12:35 +0000468 }
469
wdenk73a8b272003-06-05 19:27:42 +0000470 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000471
472 /*
473 * Check for a timeout, and run the timeout handler
474 * if we have one.
475 */
wdenke0ac62d2003-08-17 18:55:18 +0000476 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000477 thand_f *x;
478
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500479#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000480#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
481 defined(CONFIG_STATUS_LED) && \
482 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000483 /*
wdenk42d1f032003-10-15 23:53:47 +0000484 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000485 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000486 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000487 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000488 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000489 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000490 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000491 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000492#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000493#endif /* CONFIG_MII, ... */
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000494 debug_cond(DEBUG_INT_STATE, "--- NetLoop timeout\n");
wdenk2d966952002-10-31 22:12:35 +0000495 x = timeHandler;
496 timeHandler = (thand_f *)0;
497 (*x)();
498 }
499
500
Joe Hershberger22f6e992012-05-23 07:59:14 +0000501 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000502
503 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000504 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000505 goto restart;
506
507 case NETLOOP_SUCCESS:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000508 net_cleanup_loop();
wdenk2d966952002-10-31 22:12:35 +0000509 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200510 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000511 printf("Bytes transferred = %ld (%lx hex)\n",
512 NetBootFileXferSize,
513 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200514 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000515 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000516
517 sprintf(buf, "%lX", (unsigned long)load_addr);
518 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000519 }
520 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000521 ret = NetBootFileXferSize;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000522 debug_cond(DEBUG_INT_STATE, "--- NetLoop Success!\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000523 goto done;
wdenk2d966952002-10-31 22:12:35 +0000524
525 case NETLOOP_FAIL:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000526 net_cleanup_loop();
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000527 debug_cond(DEBUG_INT_STATE, "--- NetLoop Fail!\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000528 goto done;
Joe Hershberger22f6e992012-05-23 07:59:14 +0000529
530 case NETLOOP_CONTINUE:
531 continue;
wdenk2d966952002-10-31 22:12:35 +0000532 }
533 }
Simon Glass4793ee62011-10-24 18:00:01 +0000534
535done:
Simon Glass39bccd22011-10-26 14:18:38 +0000536#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000537 /* Clear out the handlers */
Joe Hershbergerece223b2012-05-23 07:59:15 +0000538 net_set_udp_handler(NULL);
Simon Glass4793ee62011-10-24 18:00:01 +0000539 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000540#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000541 return ret;
wdenk2d966952002-10-31 22:12:35 +0000542}
543
544/**********************************************************************/
545
546static void
547startAgainTimeout(void)
548{
Joe Hershberger22f6e992012-05-23 07:59:14 +0000549 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000550}
551
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000552void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000553{
wdenk6e592382004-04-18 17:39:38 +0000554 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100555 int retry_forever = 0;
556 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000557
Remy Bohmer67b96e82009-10-28 22:13:39 +0100558 nretry = getenv("netretry");
559 if (nretry) {
560 if (!strcmp(nretry, "yes"))
561 retry_forever = 1;
562 else if (!strcmp(nretry, "no"))
563 retrycnt = 0;
564 else if (!strcmp(nretry, "once"))
565 retrycnt = 1;
566 else
567 retrycnt = simple_strtoul(nretry, NULL, 0);
568 } else
569 retry_forever = 1;
570
571 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
572 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000573 net_set_state(NETLOOP_FAIL);
wdenka3d991b2004-04-15 21:48:45 +0000574 return;
575 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100576
577 NetTryCount++;
578
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000579 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100580#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000581 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100582#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000583 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000584 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000585 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100586 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000587 NetSetTimeout(10000UL, startAgainTimeout);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000588 net_set_udp_handler(NULL);
wdenk6e592382004-04-18 17:39:38 +0000589 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000590 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000591 }
wdenk6e592382004-04-18 17:39:38 +0000592 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000593 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000594 }
wdenk2d966952002-10-31 22:12:35 +0000595}
596
597/**********************************************************************/
598/*
599 * Miscelaneous bits.
600 */
601
Joe Hershbergerece223b2012-05-23 07:59:15 +0000602static void dummy_handler(uchar *pkt, unsigned dport,
603 IPaddr_t sip, unsigned sport,
604 unsigned len)
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000605{
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000606}
607
Joe Hershbergerece223b2012-05-23 07:59:15 +0000608rxhand_f *net_get_udp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000609{
Joe Hershbergerece223b2012-05-23 07:59:15 +0000610 return udp_packet_handler;
611}
612
613void net_set_udp_handler(rxhand_f *f)
614{
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000615 debug_cond(DEBUG_INT_STATE, "--- NetLoop UDP handler set (%p)\n", f);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000616 if (f == NULL)
617 udp_packet_handler = dummy_handler;
618 else
619 udp_packet_handler = f;
620}
621
622rxhand_f *net_get_arp_handler(void)
623{
624 return arp_packet_handler;
625}
626
627void net_set_arp_handler(rxhand_f *f)
628{
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000629 debug_cond(DEBUG_INT_STATE, "--- NetLoop ARP handler set (%p)\n", f);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000630 if (f == NULL)
631 arp_packet_handler = dummy_handler;
632 else
633 arp_packet_handler = f;
wdenk2d966952002-10-31 22:12:35 +0000634}
635
Simon Glass39bccd22011-10-26 14:18:38 +0000636#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000637void net_set_icmp_handler(rxhand_icmp_f *f)
638{
639 packet_icmp_handler = f;
640}
Simon Glass39bccd22011-10-26 14:18:38 +0000641#endif
wdenk2d966952002-10-31 22:12:35 +0000642
643void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000644NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000645{
646 if (iv == 0) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000647 debug_cond(DEBUG_INT_STATE,
648 "--- NetLoop timeout handler cancelled\n");
wdenk2d966952002-10-31 22:12:35 +0000649 timeHandler = (thand_f *)0;
650 } else {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000651 debug_cond(DEBUG_INT_STATE,
652 "--- NetLoop timeout handler set (%p)\n", f);
wdenk2d966952002-10-31 22:12:35 +0000653 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000654 timeStart = get_timer(0);
655 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000656 }
657}
658
Joe Hershberger206d07f2012-05-23 07:58:10 +0000659int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport,
660 int payload_len)
wdenk73a8b272003-06-05 19:27:42 +0000661{
wdenka3d991b2004-04-15 21:48:45 +0000662 uchar *pkt;
Joe Hershberger92146372012-05-23 07:59:08 +0000663 int eth_hdr_size;
664 int pkt_hdr_size;
wdenka3d991b2004-04-15 21:48:45 +0000665
Joe Hershberger46c495d2012-05-23 07:59:22 +0000666 /* make sure the NetTxPacket is initialized (NetInit() was called) */
667 assert(NetTxPacket != NULL);
668 if (NetTxPacket == NULL)
669 return -1;
670
wdenk73a8b272003-06-05 19:27:42 +0000671 /* convert to new style broadcast */
672 if (dest == 0)
673 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000674
wdenk73a8b272003-06-05 19:27:42 +0000675 /* if broadcast, make the ether address a broadcast and don't do ARP */
676 if (dest == 0xFFFFFFFF)
677 ether = NetBcastAddr;
678
Joe Hershbergere94070c2012-05-23 07:59:24 +0000679 pkt = (uchar *)NetTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000680
Joe Hershberger92146372012-05-23 07:59:08 +0000681 eth_hdr_size = NetSetEther(pkt, ether, PROT_IP);
682 pkt += eth_hdr_size;
683 net_set_udp_header(pkt, dest, dport, sport, payload_len);
684 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
Robin Getz0ebf04c2009-07-23 03:01:03 -0400685
Joe Hershbergere94070c2012-05-23 07:59:24 +0000686 /* if MAC address was not discovered yet, do an ARP request */
687 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000688 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Joe Hershberger92146372012-05-23 07:59:08 +0000689
690 /* save the ip and eth addr for the packet to send after arp */
wdenk73a8b272003-06-05 19:27:42 +0000691 NetArpWaitPacketIP = dest;
692 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000693
wdenk73a8b272003-06-05 19:27:42 +0000694 /* size of the waiting packet */
Joe Hershberger92146372012-05-23 07:59:08 +0000695 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
wdenk73a8b272003-06-05 19:27:42 +0000696
697 /* and do the ARP request */
698 NetArpWaitTry = 1;
699 NetArpWaitTimerStart = get_timer(0);
700 ArpRequest();
701 return 1; /* waiting */
Joe Hershberger92146372012-05-23 07:59:08 +0000702 } else {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000703 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
704 &dest, ether);
Joe Hershbergeradf5d932012-05-23 07:59:13 +0000705 NetSendPacket(NetTxPacket, pkt_hdr_size + payload_len);
Joe Hershberger92146372012-05-23 07:59:08 +0000706 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000707 }
wdenk73a8b272003-06-05 19:27:42 +0000708}
709
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200710#ifdef CONFIG_IP_DEFRAG
711/*
712 * This function collects fragments in a single packet, according
713 * to the algorithm in RFC815. It returns NULL or the pointer to
714 * a complete packet, in static storage
715 */
716#ifndef CONFIG_NET_MAXDEFRAG
717#define CONFIG_NET_MAXDEFRAG 16384
718#endif
719/*
720 * MAXDEFRAG, above, is chosen in the config file and is real data
721 * so we need to add the NFS overhead, which is more than TFTP.
722 * To use sizeof in the internal unnamed structures, we need a real
723 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
724 * The compiler doesn't complain nor allocates the actual structure
725 */
726static struct rpc_t rpc_specimen;
727#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
728
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000729#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200730
731/*
732 * this is the packet being assembled, either data or frag control.
733 * Fragments go by 8 bytes, so this union must be 8 bytes long
734 */
735struct hole {
736 /* first_byte is address of this structure */
737 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
738 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
739 u16 prev_hole; /* index of prev, 0 == none */
740 u16 unused;
741};
742
Joe Hershberger594c26f2012-05-23 07:58:04 +0000743static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200744{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000745 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200746 static u16 first_hole, total_len;
747 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000748 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200749 uchar *indata = (uchar *)ip;
750 int offset8, start, len, done = 0;
751 u16 ip_off = ntohs(ip->ip_off);
752
753 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000754 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200755 offset8 = (ip_off & IP_OFFS);
756 thisfrag = payload + offset8;
757 start = offset8 * 8;
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000758 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200759
760 if (start + len > IP_MAXUDP) /* fragment extends too far */
761 return NULL;
762
763 if (!total_len || localip->ip_id != ip->ip_id) {
764 /* new (or different) packet, reset structs */
765 total_len = 0xffff;
766 payload[0].last_byte = ~0;
767 payload[0].next_hole = 0;
768 payload[0].prev_hole = 0;
769 first_hole = 0;
770 /* any IP header will work, copy the first we received */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000771 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200772 }
773
774 /*
775 * What follows is the reassembly algorithm. We use the payload
776 * array as a linked list of hole descriptors, as each hole starts
777 * at a multiple of 8 bytes. However, last byte can be whatever value,
778 * so it is represented as byte count, not as 8-byte blocks.
779 */
780
781 h = payload + first_hole;
782 while (h->last_byte < start) {
783 if (!h->next_hole) {
784 /* no hole that far away */
785 return NULL;
786 }
787 h = payload + h->next_hole;
788 }
789
Fillod Stephanee397e592010-06-11 19:26:43 +0200790 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
791 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200792 /* no overlap with holes (dup fragment?) */
793 return NULL;
794 }
795
796 if (!(ip_off & IP_FLAGS_MFRAG)) {
797 /* no more fragmentss: truncate this (last) hole */
798 total_len = start + len;
799 h->last_byte = start + len;
800 }
801
802 /*
803 * There is some overlap: fix the hole list. This code doesn't
804 * deal with a fragment that overlaps with two different holes
805 * (thus being a superset of a previously-received fragment).
806 */
807
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000808 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200809 /* complete overlap with hole: remove hole */
810 if (!h->prev_hole && !h->next_hole) {
811 /* last remaining hole */
812 done = 1;
813 } else if (!h->prev_hole) {
814 /* first hole */
815 first_hole = h->next_hole;
816 payload[h->next_hole].prev_hole = 0;
817 } else if (!h->next_hole) {
818 /* last hole */
819 payload[h->prev_hole].next_hole = 0;
820 } else {
821 /* in the middle of the list */
822 payload[h->next_hole].prev_hole = h->prev_hole;
823 payload[h->prev_hole].next_hole = h->next_hole;
824 }
825
826 } else if (h->last_byte <= start + len) {
827 /* overlaps with final part of the hole: shorten this hole */
828 h->last_byte = start;
829
830 } else if (h >= thisfrag) {
831 /* overlaps with initial part of the hole: move this hole */
832 newh = thisfrag + (len / 8);
833 *newh = *h;
834 h = newh;
835 if (h->next_hole)
836 payload[h->next_hole].prev_hole = (h - payload);
837 if (h->prev_hole)
838 payload[h->prev_hole].next_hole = (h - payload);
839 else
840 first_hole = (h - payload);
841
842 } else {
843 /* fragment sits in the middle: split the hole */
844 newh = thisfrag + (len / 8);
845 *newh = *h;
846 h->last_byte = start;
847 h->next_hole = (newh - payload);
848 newh->prev_hole = (h - payload);
849 if (newh->next_hole)
850 payload[newh->next_hole].prev_hole = (newh - payload);
851 }
852
853 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000854 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200855 if (!done)
856 return NULL;
857
858 localip->ip_len = htons(total_len);
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000859 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200860 return localip;
861}
862
Joe Hershberger594c26f2012-05-23 07:58:04 +0000863static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200864{
865 u16 ip_off = ntohs(ip->ip_off);
866 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
867 return ip; /* not a fragment */
868 return __NetDefragment(ip, lenp);
869}
870
871#else /* !CONFIG_IP_DEFRAG */
872
Joe Hershberger594c26f2012-05-23 07:58:04 +0000873static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200874{
875 u16 ip_off = ntohs(ip->ip_off);
876 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
877 return ip; /* not a fragment */
878 return NULL;
879}
880#endif
wdenka3d991b2004-04-15 21:48:45 +0000881
Simon Glass8f79bb12011-10-24 18:00:00 +0000882/**
883 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
884 * drop others.
885 *
886 * @parma ip IP packet containing the ICMP
887 */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000888static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershbergercb487f52012-05-23 07:58:06 +0000889 IPaddr_t src_ip, struct ethernet_hdr *et)
Simon Glass8f79bb12011-10-24 18:00:00 +0000890{
Joe Hershbergere0a63072012-05-23 07:58:09 +0000891 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass8f79bb12011-10-24 18:00:00 +0000892
893 switch (icmph->type) {
894 case ICMP_REDIRECT:
895 if (icmph->code != ICMP_REDIR_HOST)
896 return;
897 printf(" ICMP Host Redirect to %pI4 ",
898 &icmph->un.gateway);
899 break;
Simon Glass8f79bb12011-10-24 18:00:00 +0000900 default:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000901#if defined(CONFIG_CMD_PING)
902 ping_receive(et, ip, len);
903#endif
Simon Glass39bccd22011-10-26 14:18:38 +0000904#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000905 if (packet_icmp_handler)
906 packet_icmp_handler(icmph->type, icmph->code,
907 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
908 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +0000909#endif
Simon Glass8f79bb12011-10-24 18:00:00 +0000910 break;
911 }
912}
913
wdenk2d966952002-10-31 22:12:35 +0000914void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000915NetReceive(uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000916{
Joe Hershbergercb487f52012-05-23 07:58:06 +0000917 struct ethernet_hdr *et;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000918 struct ip_udp_hdr *ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000919 IPaddr_t dst_ip;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000920 IPaddr_t src_ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000921 int eth_proto;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500922#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000923 int iscdp;
924#endif
925 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000926
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000927 debug_cond(DEBUG_NET_PKT, "packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000928
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400929 NetRxPacket = inpkt;
930 NetRxPacketLen = len;
Joe Hershbergercb487f52012-05-23 07:58:06 +0000931 et = (struct ethernet_hdr *)inpkt;
wdenka3d991b2004-04-15 21:48:45 +0000932
933 /* too small packet? */
934 if (len < ETHER_HDR_SIZE)
935 return;
936
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100937#ifdef CONFIG_API
938 if (push_packet) {
939 (*push_packet)(inpkt, len);
940 return;
941 }
942#endif
943
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500944#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000945 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +0000946 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +0000947#endif
948
949 myvlanid = ntohs(NetOurVLAN);
950 if (myvlanid == (ushort)-1)
951 myvlanid = VLAN_NONE;
952 mynvlanid = ntohs(NetOurNativeVLAN);
953 if (mynvlanid == (ushort)-1)
954 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +0000955
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000956 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +0000957
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000958 if (eth_proto < 1514) {
Joe Hershbergercb487f52012-05-23 07:58:06 +0000959 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +0000960 /*
Joe Hershbergerda5ebe22012-05-23 07:58:11 +0000961 * Got a 802.2 packet. Check the other protocol field.
962 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +0000963 */
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000964 eth_proto = ntohs(et802->et_prot);
wdenka3d991b2004-04-15 21:48:45 +0000965
Joe Hershberger594c26f2012-05-23 07:58:04 +0000966 ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000967 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000968
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000969 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000970 ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000971 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000972
973 } else { /* VLAN packet */
Joe Hershbergerc68cca32012-05-23 07:58:07 +0000974 struct vlan_ethernet_hdr *vet =
975 (struct vlan_ethernet_hdr *)et;
wdenka3d991b2004-04-15 21:48:45 +0000976
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000977 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz0ebf04c2009-07-23 03:01:03 -0400978
wdenka3d991b2004-04-15 21:48:45 +0000979 /* too small packet? */
980 if (len < VLAN_ETHER_HDR_SIZE)
981 return;
982
983 /* if no VLAN active */
984 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500985#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000986 && iscdp == 0
987#endif
988 )
989 return;
990
991 cti = ntohs(vet->vet_tag);
992 vlanid = cti & VLAN_IDMASK;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000993 eth_proto = ntohs(vet->vet_type);
wdenka3d991b2004-04-15 21:48:45 +0000994
Joe Hershberger594c26f2012-05-23 07:58:04 +0000995 ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE);
wdenka3d991b2004-04-15 21:48:45 +0000996 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +0000997 }
998
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000999 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001000
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001001#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001002 if (iscdp) {
Joe Hershberger0b4c5ff2012-05-23 07:58:13 +00001003 cdp_receive((uchar *)ip, len);
wdenka3d991b2004-04-15 21:48:45 +00001004 return;
1005 }
1006#endif
1007
1008 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1009 if (vlanid == VLAN_NONE)
1010 vlanid = (mynvlanid & VLAN_IDMASK);
1011 /* not matched? */
1012 if (vlanid != (myvlanid & VLAN_IDMASK))
1013 return;
1014 }
1015
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001016 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001017
1018 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +00001019 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +00001020 break;
wdenk2d966952002-10-31 22:12:35 +00001021
Peter Tyserbf6cb242010-09-30 11:25:48 -05001022#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001023 case PROT_RARP:
Joe Hershberger8b9c5322012-05-23 07:58:03 +00001024 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001025 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001026#endif
wdenk2d966952002-10-31 22:12:35 +00001027 case PROT_IP:
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001028 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001029 /* Before we start poking the header, make sure it is there */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001030 if (len < IP_UDP_HDR_SIZE) {
1031 debug("len bad %d < %lu\n", len,
1032 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001033 return;
1034 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001035 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001036 if (len < ntohs(ip->ip_len)) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001037 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001038 return;
1039 }
1040 len = ntohs(ip->ip_len);
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001041 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1042 len, ip->ip_hl_v & 0xff);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001043
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001044 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001045 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001046 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001047 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001048 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001049 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001050 /* Check the Checksum of the header */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +00001051 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001052 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001053 return;
1054 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001055 /* If it is not for us, ignore it */
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001056 dst_ip = NetReadIP(&ip->ip_dst);
1057 if (NetOurIP && dst_ip != NetOurIP && dst_ip != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001058#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001059 if (Mcast_addr != dst_ip)
David Updegraff53a5c422007-06-11 10:41:07 -05001060#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001061 return;
wdenk2d966952002-10-31 22:12:35 +00001062 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001063 /* Read source IP address for later use */
1064 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001065 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001066 * The function returns the unchanged packet if it's not
1067 * a fragment, and either the complete packet or NULL if
1068 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1069 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001070 ip = NetDefragment(ip, &len);
1071 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001072 return;
1073 /*
wdenk2d966952002-10-31 22:12:35 +00001074 * watch for ICMP host redirects
1075 *
wdenk8bde7f72003-06-27 21:31:46 +00001076 * There is no real handler code (yet). We just watch
1077 * for ICMP host redirect messages. In case anybody
1078 * sees these messages: please contact me
1079 * (wd@denx.de), or - even better - send me the
1080 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001081 *
wdenk8bde7f72003-06-27 21:31:46 +00001082 * Note: in all cases where I have seen this so far
1083 * it was a problem with the router configuration,
1084 * for instance when a router was configured in the
1085 * BOOTP reply, but the TFTP server was on the same
1086 * subnet. So this is probably a warning that your
1087 * configuration might be wrong. But I'm not really
1088 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001089 *
1090 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1091 * we send a tftp packet to a dead connection, or when
1092 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001093 */
1094 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001095 receive_icmp(ip, len, src_ip, et);
1096 return;
wdenk2d966952002-10-31 22:12:35 +00001097 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1098 return;
1099 }
1100
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001101 debug_cond(DEBUG_DEV_PKT,
1102 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1103 &dst_ip, &src_ip, len);
1104
Stefan Roese8534bf92005-08-12 20:06:52 +02001105#ifdef CONFIG_UDP_CHECKSUM
1106 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001107 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001108 ushort *sumptr;
1109 ushort sumlen;
1110
1111 xsum = ip->ip_p;
1112 xsum += (ntohs(ip->udp_len));
1113 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1114 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1115 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1116 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1117
1118 sumlen = ntohs(ip->udp_len);
1119 sumptr = (ushort *) &(ip->udp_src);
1120
1121 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001122 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001123
1124 sumdata = *sumptr++;
1125 xsum += ntohs(sumdata);
1126 sumlen -= 2;
1127 }
1128 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001129 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001130
1131 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001132 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001133 xsum += sumdata;
1134 }
1135 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001136 xsum = (xsum & 0x0000ffff) +
1137 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001138 }
1139 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001140 printf(" UDP wrong checksum %08lx %08x\n",
1141 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001142 return;
1143 }
1144 }
1145#endif
1146
David Updegraff53a5c422007-06-11 10:41:07 -05001147
wdenk68ceb292004-08-02 21:11:11 +00001148#ifdef CONFIG_NETCONSOLE
Joe Hershberger594c26f2012-05-23 07:58:04 +00001149 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1150 ntohs(ip->udp_dst),
1151 ntohs(ip->udp_src),
1152 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk68ceb292004-08-02 21:11:11 +00001153#endif
wdenk2d966952002-10-31 22:12:35 +00001154 /*
1155 * IP header OK. Pass the packet to the current handler.
1156 */
Joe Hershbergerece223b2012-05-23 07:59:15 +00001157 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1158 ntohs(ip->udp_dst),
1159 src_ip,
1160 ntohs(ip->udp_src),
1161 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001162 break;
1163 }
1164}
1165
1166
1167/**********************************************************************/
1168
Simon Glasse4bf0c52011-10-24 18:00:02 +00001169static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001170{
1171 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001172 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001173#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001174 case PING:
wdenk6e592382004-04-18 17:39:38 +00001175 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001176 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001177 return 1;
wdenk6e592382004-04-18 17:39:38 +00001178 }
1179 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001180#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001181#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001182 case SNTP:
1183 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001184 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001185 return 1;
wdenkea287de2005-04-01 00:25:43 +00001186 }
1187 goto common;
1188#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001189#if defined(CONFIG_CMD_DNS)
1190 case DNS:
1191 if (NetOurDNSIP == 0) {
1192 puts("*** ERROR: DNS server address not given\n");
1193 return 1;
1194 }
1195 goto common;
1196#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001197#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001198 case NFS:
1199#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001200 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001201 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001202 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001203 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001204 return 1;
wdenk6e592382004-04-18 17:39:38 +00001205 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001206#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1207 defined(CONFIG_CMD_DNS)
1208common:
wdenk73a8b272003-06-05 19:27:42 +00001209#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001210 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001211
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001212 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001213 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001214 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001215 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001216 return 1;
wdenk6e592382004-04-18 17:39:38 +00001217 }
1218 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001219
Peter Tyserbf6cb242010-09-30 11:25:48 -05001220#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001221 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001222#endif
wdenk2d966952002-10-31 22:12:35 +00001223 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001224 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001225 case DHCP:
Joe Hershbergerd22c3382012-05-23 08:00:12 +00001226 case LINKLOCAL:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001227 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001228 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001229
wdenk6e592382004-04-18 17:39:38 +00001230 switch (num) {
1231 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001232 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001233 return 1;
wdenk6e592382004-04-18 17:39:38 +00001234 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001235 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001236 break;
wdenk6e592382004-04-18 17:39:38 +00001237 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001238 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001239 num);
1240 break;
wdenk2d966952002-10-31 22:12:35 +00001241 }
wdenk6e592382004-04-18 17:39:38 +00001242
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001243 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001244 return 2;
wdenk6e592382004-04-18 17:39:38 +00001245 }
1246 /* Fall through */
1247 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001248 return 0;
wdenk2d966952002-10-31 22:12:35 +00001249 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001250 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001251}
1252/**********************************************************************/
1253
1254int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001255NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001256{
1257 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1258}
1259
1260
1261unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001262NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001263{
1264 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001265 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001266
1267 xsum = 0;
1268 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001269 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001270 xsum = (xsum & 0xffff) + (xsum >> 16);
1271 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001272 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001273}
1274
wdenka3d991b2004-04-15 21:48:45 +00001275int
1276NetEthHdrSize(void)
1277{
1278 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001279
wdenka3d991b2004-04-15 21:48:45 +00001280 myvlanid = ntohs(NetOurVLAN);
1281 if (myvlanid == (ushort)-1)
1282 myvlanid = VLAN_NONE;
1283
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001284 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1285 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001286}
1287
1288int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001289NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001290{
Joe Hershbergercb487f52012-05-23 07:58:06 +00001291 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001292 ushort myvlanid;
1293
1294 myvlanid = ntohs(NetOurVLAN);
1295 if (myvlanid == (ushort)-1)
1296 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001297
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001298 memcpy(et->et_dest, addr, 6);
1299 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001300 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001301 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001302 return ETHER_HDR_SIZE;
1303 } else {
Joe Hershbergerc68cca32012-05-23 07:58:07 +00001304 struct vlan_ethernet_hdr *vet =
1305 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001306
wdenka3d991b2004-04-15 21:48:45 +00001307 vet->vet_vlan_type = htons(PROT_VLAN);
1308 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1309 vet->vet_type = htons(prot);
1310 return VLAN_ETHER_HDR_SIZE;
1311 }
1312}
wdenk2d966952002-10-31 22:12:35 +00001313
Joe Hershbergere7111012012-05-23 07:59:16 +00001314int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1315{
1316 ushort protlen;
1317
1318 memcpy(et->et_dest, addr, 6);
1319 memcpy(et->et_src, NetOurEther, 6);
1320 protlen = ntohs(et->et_protlen);
1321 if (protlen == PROT_VLAN) {
1322 struct vlan_ethernet_hdr *vet =
1323 (struct vlan_ethernet_hdr *)et;
1324 vet->vet_type = htons(prot);
1325 return VLAN_ETHER_HDR_SIZE;
1326 } else if (protlen > 1514) {
1327 et->et_protlen = htons(prot);
1328 return ETHER_HDR_SIZE;
1329 } else {
1330 /* 802.2 + SNAP */
1331 struct e802_hdr *et802 = (struct e802_hdr *)et;
1332 et802->et_prot = htons(prot);
1333 return E802_HDR_SIZE;
1334 }
1335}
1336
Joe Hershberger4b11c912012-05-23 07:59:07 +00001337void net_set_ip_header(uchar *pkt, IPaddr_t dest, IPaddr_t source)
wdenk2d966952002-10-31 22:12:35 +00001338{
Joe Hershberger4b11c912012-05-23 07:59:07 +00001339 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1340
1341 /*
1342 * Construct an IP header.
1343 */
1344 /* IP_HDR_SIZE / 4 (not including UDP) */
1345 ip->ip_hl_v = 0x45;
1346 ip->ip_tos = 0;
1347 ip->ip_len = htons(IP_HDR_SIZE);
1348 ip->ip_id = htons(NetIPID++);
1349 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1350 ip->ip_ttl = 255;
1351 ip->ip_sum = 0;
1352 /* already in network byte order */
1353 NetCopyIP((void *)&ip->ip_src, &source);
1354 /* already in network byte order */
1355 NetCopyIP((void *)&ip->ip_dst, &dest);
1356}
1357
1358void net_set_udp_header(uchar *pkt, IPaddr_t dest, int dport, int sport,
1359 int len)
1360{
1361 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001362
1363 /*
1364 * If the data is an odd number of bytes, zero the
1365 * byte after the last byte so that the checksum
1366 * will work.
1367 */
1368 if (len & 1)
Joe Hershberger4b11c912012-05-23 07:59:07 +00001369 pkt[IP_UDP_HDR_SIZE + len] = 0;
wdenk2d966952002-10-31 22:12:35 +00001370
Joe Hershberger4b11c912012-05-23 07:59:07 +00001371 net_set_ip_header(pkt, dest, NetOurIP);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001372 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
Joe Hershberger4b11c912012-05-23 07:59:07 +00001373 ip->ip_p = IPPROTO_UDP;
1374 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE >> 1);
1375
wdenk2d966952002-10-31 22:12:35 +00001376 ip->udp_src = htons(sport);
1377 ip->udp_dst = htons(dport);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001378 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001379 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001380}
1381
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001382void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001383{
1384 if (*src && (*src == '"')) {
1385 ++src;
1386 --size;
1387 }
1388
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001389 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001390 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001391 *dst = '\0';
1392}
1393
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001394#if defined(CONFIG_CMD_NFS) || \
1395 defined(CONFIG_CMD_SNTP) || \
1396 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001397/*
Robin Getz97399462010-03-08 14:07:00 -05001398 * make port a little random (1024-17407)
1399 * This keeps the math somewhat trivial to compute, and seems to work with
1400 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001401 */
1402unsigned int random_port(void)
1403{
Robin Getz97399462010-03-08 14:07:00 -05001404 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001405}
1406#endif
1407
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001408void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001409{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001410 x = ntohl(x);
1411 sprintf(s, "%d.%d.%d.%d",
1412 (int) ((x >> 24) & 0xff),
1413 (int) ((x >> 16) & 0xff),
1414 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001415 );
wdenk2d966952002-10-31 22:12:35 +00001416}
1417
wdenka3d991b2004-04-15 21:48:45 +00001418void VLAN_to_string(ushort x, char *s)
1419{
1420 x = ntohs(x);
1421
1422 if (x == (ushort)-1)
1423 x = VLAN_NONE;
1424
1425 if (x == VLAN_NONE)
1426 strcpy(s, "none");
1427 else
1428 sprintf(s, "%d", x & VLAN_IDMASK);
1429}
1430
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001431ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001432{
1433 ushort id;
1434
1435 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001436 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001437
1438 if (*s < '0' || *s > '9')
1439 id = VLAN_NONE;
1440 else
1441 id = (ushort)simple_strtoul(s, NULL, 10);
1442
wdenkb9711de2004-04-25 13:18:40 +00001443 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001444}
1445
wdenka3d991b2004-04-15 21:48:45 +00001446ushort getenv_VLAN(char *var)
1447{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001448 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001449}