blob: a40cde1e94e46367d727e30d40187b2630f60f15 [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>
Joe Hershbergera9f51c92012-12-11 22:16:26 -060085#include <environment.h>
wdenk2d966952002-10-31 22:12:35 +000086#include <net.h>
Joe Hershberger4545f4e2012-05-23 07:58:15 +000087#if defined(CONFIG_STATUS_LED)
88#include <miiphy.h>
89#include <status_led.h>
90#endif
91#include <watchdog.h>
92#include <linux/compiler.h>
Joe Hershbergerd280d3f2012-05-23 07:58:01 +000093#include "arp.h"
wdenk2d966952002-10-31 22:12:35 +000094#include "bootp.h"
Joe Hershbergerf575ae12012-05-23 07:57:59 +000095#include "cdp.h"
Robin Getz1a32bf42009-07-20 14:53:54 -040096#if defined(CONFIG_CMD_DNS)
97#include "dns.h"
98#endif
Joe Hershbergerd22c3382012-05-23 08:00:12 +000099#include "link_local.h"
Joe Hershberger4545f4e2012-05-23 07:58:15 +0000100#include "nfs.h"
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000101#include "ping.h"
Joe Hershberger4545f4e2012-05-23 07:58:15 +0000102#include "rarp.h"
103#if defined(CONFIG_CMD_SNTP)
104#include "sntp.h"
105#endif
106#include "tftp.h"
wdenk2d966952002-10-31 22:12:35 +0000107
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200108DECLARE_GLOBAL_DATA_PTR;
109
wdenk2d966952002-10-31 22:12:35 +0000110/** BOOTP EXTENTIONS **/
111
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000112/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000113IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000114/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000115IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000116/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000117IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500118#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000119/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000120IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000121#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000122/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000123char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000124/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000125char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000126/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000127char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000128/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000129ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000130
David Updegraff53a5c422007-06-11 10:41:07 -0500131#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
132IPaddr_t Mcast_addr;
133#endif
134
wdenk2d966952002-10-31 22:12:35 +0000135/** END OF BOOTP EXTENTIONS **/
136
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000137/* The actual transferred size of the bootfile (in bytes) */
138ulong NetBootFileXferSize;
139/* Our ethernet address */
140uchar NetOurEther[6];
141/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000142uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000143/* Our IP addr (0 = unknown) */
144IPaddr_t NetOurIP;
145/* Server IP addr (0 = unknown) */
146IPaddr_t NetServerIP;
147/* Current receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000148uchar *NetRxPacket;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000149/* Current rx packet length */
150int NetRxPacketLen;
151/* IP packet ID */
152unsigned NetIPID;
153/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000154uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
155uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100156#ifdef CONFIG_API
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000157void (*push_packet)(void *, int len) = 0;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100158#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000159/* Network loop state */
Joe Hershberger22f6e992012-05-23 07:59:14 +0000160enum net_loop_state net_state;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000161/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000162int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000163/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000164static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000165/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000166static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000167
wdenk6e592382004-04-18 17:39:38 +0000168/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000169/* default is without VLAN */
170ushort NetOurVLAN = 0xFFFF;
171/* ditto */
172ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000173
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000174/* Boot File name */
175char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000176
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500177#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000178/* NTP server IP address */
179IPaddr_t NetNtpServerIP;
180/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000181int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000182#endif
183
Kim Phillips06370592012-10-29 13:34:33 +0000184static uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
wdenk2d966952002-10-31 22:12:35 +0000185
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000186/* Receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000187uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000188
Joe Hershbergerece223b2012-05-23 07:59:15 +0000189/* Current UDP RX packet handler */
190static rxhand_f *udp_packet_handler;
191/* Current ARP RX packet handler */
192static rxhand_f *arp_packet_handler;
Simon Glass39bccd22011-10-26 14:18:38 +0000193#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerece223b2012-05-23 07:59:15 +0000194/* Current ICMP rx handler */
195static rxhand_icmp_f *packet_icmp_handler;
Simon Glass39bccd22011-10-26 14:18:38 +0000196#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000197/* Current timeout handler */
198static thand_f *timeHandler;
199/* Time base value */
200static ulong timeStart;
201/* Current timeout value */
202static ulong timeDelta;
203/* THE transmit packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000204uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000205
Simon Glasse4bf0c52011-10-24 18:00:02 +0000206static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000207
Remy Bohmer67b96e82009-10-28 22:13:39 +0100208static int NetTryCount;
209
wdenk2d966952002-10-31 22:12:35 +0000210/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000211
Joe Hershbergera9f51c92012-12-11 22:16:26 -0600212static int on_bootfile(const char *name, const char *value, enum env_op op,
213 int flags)
214{
215 switch (op) {
216 case env_op_create:
217 case env_op_overwrite:
218 copy_filename(BootFile, value, sizeof(BootFile));
219 break;
220 default:
221 break;
222 }
223
224 return 0;
225}
226U_BOOT_ENV_CALLBACK(bootfile, on_bootfile);
227
Simon Glasse4a3d572011-10-27 06:24:32 +0000228/*
229 * Check if autoload is enabled. If so, use either NFS or TFTP to download
230 * the boot file.
231 */
232void net_auto_load(void)
233{
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600234#if defined(CONFIG_CMD_NFS)
Simon Glasse4a3d572011-10-27 06:24:32 +0000235 const char *s = getenv("autoload");
236
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600237 if (s != NULL && strcmp(s, "NFS") == 0) {
238 /*
239 * Use NFS to load the bootfile.
240 */
241 NfsStart();
242 return;
243 }
Simon Glasse4a3d572011-10-27 06:24:32 +0000244#endif
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600245 if (getenv_yesno("autoload") == 0) {
246 /*
247 * Just use BOOTP/RARP to configure system;
248 * Do not use TFTP to load the bootfile.
249 */
250 net_set_state(NETLOOP_SUCCESS);
251 return;
Simon Glasse4a3d572011-10-27 06:24:32 +0000252 }
253 TftpStart(TFTPGET);
254}
255
Joe Hershbergercb1c9912012-05-23 07:59:21 +0000256static void NetInitLoop(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100257{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000258 static int env_changed_id;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000259 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100260
261 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300262 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000263 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000264 NetOurGatewayIP = getenv_IPaddr("gatewayip");
265 NetOurSubnetMask = getenv_IPaddr("netmask");
266 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100267 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300268 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400269#if defined(CONFIG_CMD_DNS)
270 NetOurDNSIP = getenv_IPaddr("dnsip");
271#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300272 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100273 }
Joe Hershbergera03d6382012-07-23 13:11:16 +0000274 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
Michael Zaidman3c172c42009-04-04 01:43:00 +0300275
Heiko Schocherda954272009-04-28 08:36:11 +0200276 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100277}
278
Joe Hershbergerece223b2012-05-23 07:59:15 +0000279static void net_clear_handlers(void)
280{
281 net_set_udp_handler(NULL);
282 net_set_arp_handler(NULL);
283 NetSetTimeout(0, NULL);
284}
285
286static void net_cleanup_loop(void)
287{
288 net_clear_handlers();
289}
290
Joe Hershberger46c495d2012-05-23 07:59:22 +0000291void net_init(void)
292{
293 static int first_call = 1;
294
295 if (first_call) {
296 /*
297 * Setup packet buffers, aligned correctly.
298 */
299 int i;
300
301 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
302 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
303 for (i = 0; i < PKTBUFSRX; i++)
304 NetRxPackets[i] = NetTxPacket + (i + 1) * PKTSIZE_ALIGN;
305
306 ArpInit();
307 net_clear_handlers();
308
309 /* Only need to setup buffer pointers once. */
310 first_call = 0;
311 }
312
313 NetInitLoop();
314}
315
wdenk73a8b272003-06-05 19:27:42 +0000316/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000317/*
318 * Main network processing loop.
319 */
320
Simon Glasse4bf0c52011-10-24 18:00:02 +0000321int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000322{
wdenk2d966952002-10-31 22:12:35 +0000323 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000324 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000325
wdenk2d966952002-10-31 22:12:35 +0000326 NetRestarted = 0;
327 NetDevExists = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100328 NetTryCount = 1;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000329 debug_cond(DEBUG_INT_STATE, "--- NetLoop Entry\n");
wdenk73a8b272003-06-05 19:27:42 +0000330
Simon Glass573f14f2011-12-10 11:08:06 +0000331 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger46c495d2012-05-23 07:59:22 +0000332 net_init();
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000333 if (eth_is_on_demand_init() || protocol != NETCONS) {
wdenkb1bf6f22005-04-03 14:52:59 +0000334 eth_halt();
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000335 eth_set_current();
336 if (eth_init(bd) < 0) {
337 eth_halt();
338 return -1;
339 }
340 } else
341 eth_init_state_only(bd);
wdenk2d966952002-10-31 22:12:35 +0000342
343restart:
Joe Hershberger22f6e992012-05-23 07:59:14 +0000344 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000345
346 /*
347 * Start the ball rolling with the given start function. From
348 * here on, this code is a state machine driven by received
349 * packets and timer events.
350 */
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000351 debug_cond(DEBUG_INT_STATE, "--- NetLoop Init\n");
Joe Hershbergercb1c9912012-05-23 07:59:21 +0000352 NetInitLoop();
wdenk2d966952002-10-31 22:12:35 +0000353
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000354 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000355 case 1:
356 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000357 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000358 return -1;
wdenk2d966952002-10-31 22:12:35 +0000359
wdenk2d966952002-10-31 22:12:35 +0000360 case 2:
361 /* network device not configured */
362 break;
wdenk2d966952002-10-31 22:12:35 +0000363
364 case 0:
wdenk2d966952002-10-31 22:12:35 +0000365 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000366 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000367 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000368 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000369#ifdef CONFIG_CMD_TFTPPUT
370 case TFTPPUT:
371#endif
wdenk2d966952002-10-31 22:12:35 +0000372 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000373 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000374 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000375#ifdef CONFIG_CMD_TFTPSRV
376 case TFTPSRV:
377 TftpStartServer();
378 break;
379#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500380#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000381 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000382 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300383 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000384 DhcpRequest(); /* Basically same as BOOTP */
385 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500386#endif
wdenk2d966952002-10-31 22:12:35 +0000387
388 case BOOTP:
389 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300390 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000391 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000392 break;
393
Peter Tyserbf6cb242010-09-30 11:25:48 -0500394#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000395 case RARP:
396 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300397 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000398 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000399 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500400#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500401#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000402 case PING:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000403 ping_start();
wdenk73a8b272003-06-05 19:27:42 +0000404 break;
405#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500406#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000407 case NFS:
408 NfsStart();
409 break;
410#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500411#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000412 case CDP:
413 CDPStart();
414 break;
415#endif
wdenk68ceb292004-08-02 21:11:11 +0000416#ifdef CONFIG_NETCONSOLE
417 case NETCONS:
418 NcStart();
419 break;
420#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500421#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000422 case SNTP:
423 SntpStart();
424 break;
425#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400426#if defined(CONFIG_CMD_DNS)
427 case DNS:
428 DnsStart();
429 break;
430#endif
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000431#if defined(CONFIG_CMD_LINK_LOCAL)
432 case LINKLOCAL:
433 link_local_start();
434 break;
435#endif
wdenk2d966952002-10-31 22:12:35 +0000436 default:
437 break;
438 }
439
wdenk2d966952002-10-31 22:12:35 +0000440 break;
441 }
442
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500443#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000444#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
445 defined(CONFIG_STATUS_LED) && \
446 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000447 /*
wdenk42d1f032003-10-15 23:53:47 +0000448 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000449 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000450 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000451 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000452 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000453 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200454#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000455#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000456
457 /*
458 * Main packet reception loop. Loop receiving packets until
Joe Hershberger22f6e992012-05-23 07:59:14 +0000459 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000460 */
461 for (;;) {
462 WATCHDOG_RESET();
463#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000464 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000465#endif
466 /*
467 * Check the ethernet for a new packet. The ethernet
468 * receive routine will process it.
469 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200470 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000471
472 /*
473 * Abort if ctrl-c was pressed.
474 */
475 if (ctrlc()) {
Joe Hershbergere94070c2012-05-23 07:59:24 +0000476 /* cancel any ARP that may not have completed */
477 NetArpWaitPacketIP = 0;
478
Joe Hershbergerece223b2012-05-23 07:59:15 +0000479 net_cleanup_loop();
wdenk8bde7f72003-06-27 21:31:46 +0000480 eth_halt();
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000481 /* Invalidate the last protocol */
482 eth_set_last_protocol(BOOTP);
483
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000484 puts("\nAbort\n");
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000485 /* include a debug print as well incase the debug
486 messages are directed to stderr */
487 debug_cond(DEBUG_INT_STATE, "--- NetLoop Abort!\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000488 goto done;
wdenk2d966952002-10-31 22:12:35 +0000489 }
490
wdenk73a8b272003-06-05 19:27:42 +0000491 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000492
493 /*
494 * Check for a timeout, and run the timeout handler
495 * if we have one.
496 */
wdenke0ac62d2003-08-17 18:55:18 +0000497 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000498 thand_f *x;
499
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500500#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000501#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
502 defined(CONFIG_STATUS_LED) && \
503 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000504 /*
wdenk42d1f032003-10-15 23:53:47 +0000505 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000506 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000507 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000508 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000509 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000510 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000511 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000512 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000513#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000514#endif /* CONFIG_MII, ... */
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000515 debug_cond(DEBUG_INT_STATE, "--- NetLoop timeout\n");
wdenk2d966952002-10-31 22:12:35 +0000516 x = timeHandler;
517 timeHandler = (thand_f *)0;
518 (*x)();
519 }
520
521
Joe Hershberger22f6e992012-05-23 07:59:14 +0000522 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000523
524 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000525 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000526 goto restart;
527
528 case NETLOOP_SUCCESS:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000529 net_cleanup_loop();
wdenk2d966952002-10-31 22:12:35 +0000530 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200531 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000532 printf("Bytes transferred = %ld (%lx hex)\n",
533 NetBootFileXferSize,
534 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200535 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000536 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000537
538 sprintf(buf, "%lX", (unsigned long)load_addr);
539 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000540 }
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000541 if (protocol != NETCONS)
542 eth_halt();
543 else
544 eth_halt_state_only();
545
546 eth_set_last_protocol(protocol);
547
Simon Glass4793ee62011-10-24 18:00:01 +0000548 ret = NetBootFileXferSize;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000549 debug_cond(DEBUG_INT_STATE, "--- NetLoop Success!\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000550 goto done;
wdenk2d966952002-10-31 22:12:35 +0000551
552 case NETLOOP_FAIL:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000553 net_cleanup_loop();
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000554 /* Invalidate the last protocol */
555 eth_set_last_protocol(BOOTP);
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000556 debug_cond(DEBUG_INT_STATE, "--- NetLoop Fail!\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000557 goto done;
Joe Hershberger22f6e992012-05-23 07:59:14 +0000558
559 case NETLOOP_CONTINUE:
560 continue;
wdenk2d966952002-10-31 22:12:35 +0000561 }
562 }
Simon Glass4793ee62011-10-24 18:00:01 +0000563
564done:
Simon Glass39bccd22011-10-26 14:18:38 +0000565#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000566 /* Clear out the handlers */
Joe Hershbergerece223b2012-05-23 07:59:15 +0000567 net_set_udp_handler(NULL);
Simon Glass4793ee62011-10-24 18:00:01 +0000568 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000569#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000570 return ret;
wdenk2d966952002-10-31 22:12:35 +0000571}
572
573/**********************************************************************/
574
575static void
576startAgainTimeout(void)
577{
Joe Hershberger22f6e992012-05-23 07:59:14 +0000578 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000579}
580
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000581void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000582{
wdenk6e592382004-04-18 17:39:38 +0000583 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100584 int retry_forever = 0;
585 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000586
Remy Bohmer67b96e82009-10-28 22:13:39 +0100587 nretry = getenv("netretry");
588 if (nretry) {
589 if (!strcmp(nretry, "yes"))
590 retry_forever = 1;
591 else if (!strcmp(nretry, "no"))
592 retrycnt = 0;
593 else if (!strcmp(nretry, "once"))
594 retrycnt = 1;
595 else
596 retrycnt = simple_strtoul(nretry, NULL, 0);
597 } else
598 retry_forever = 1;
599
600 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
601 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000602 net_set_state(NETLOOP_FAIL);
wdenka3d991b2004-04-15 21:48:45 +0000603 return;
604 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100605
606 NetTryCount++;
607
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000608 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100609#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000610 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100611#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000612 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000613 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000614 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100615 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000616 NetSetTimeout(10000UL, startAgainTimeout);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000617 net_set_udp_handler(NULL);
wdenk6e592382004-04-18 17:39:38 +0000618 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000619 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000620 }
wdenk6e592382004-04-18 17:39:38 +0000621 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000622 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000623 }
wdenk2d966952002-10-31 22:12:35 +0000624}
625
626/**********************************************************************/
627/*
628 * Miscelaneous bits.
629 */
630
Joe Hershbergerece223b2012-05-23 07:59:15 +0000631static void dummy_handler(uchar *pkt, unsigned dport,
632 IPaddr_t sip, unsigned sport,
633 unsigned len)
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000634{
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000635}
636
Joe Hershbergerece223b2012-05-23 07:59:15 +0000637rxhand_f *net_get_udp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000638{
Joe Hershbergerece223b2012-05-23 07:59:15 +0000639 return udp_packet_handler;
640}
641
642void net_set_udp_handler(rxhand_f *f)
643{
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000644 debug_cond(DEBUG_INT_STATE, "--- NetLoop UDP handler set (%p)\n", f);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000645 if (f == NULL)
646 udp_packet_handler = dummy_handler;
647 else
648 udp_packet_handler = f;
649}
650
651rxhand_f *net_get_arp_handler(void)
652{
653 return arp_packet_handler;
654}
655
656void net_set_arp_handler(rxhand_f *f)
657{
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000658 debug_cond(DEBUG_INT_STATE, "--- NetLoop ARP handler set (%p)\n", f);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000659 if (f == NULL)
660 arp_packet_handler = dummy_handler;
661 else
662 arp_packet_handler = f;
wdenk2d966952002-10-31 22:12:35 +0000663}
664
Simon Glass39bccd22011-10-26 14:18:38 +0000665#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000666void net_set_icmp_handler(rxhand_icmp_f *f)
667{
668 packet_icmp_handler = f;
669}
Simon Glass39bccd22011-10-26 14:18:38 +0000670#endif
wdenk2d966952002-10-31 22:12:35 +0000671
672void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000673NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000674{
675 if (iv == 0) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000676 debug_cond(DEBUG_INT_STATE,
677 "--- NetLoop timeout handler cancelled\n");
wdenk2d966952002-10-31 22:12:35 +0000678 timeHandler = (thand_f *)0;
679 } else {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000680 debug_cond(DEBUG_INT_STATE,
681 "--- NetLoop timeout handler set (%p)\n", f);
wdenk2d966952002-10-31 22:12:35 +0000682 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000683 timeStart = get_timer(0);
Tetsuyuki Kobayashi1389f982012-06-25 02:37:27 +0000684 timeDelta = iv * CONFIG_SYS_HZ / 1000;
wdenk2d966952002-10-31 22:12:35 +0000685 }
686}
687
Joe Hershberger206d07f2012-05-23 07:58:10 +0000688int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport,
689 int payload_len)
wdenk73a8b272003-06-05 19:27:42 +0000690{
wdenka3d991b2004-04-15 21:48:45 +0000691 uchar *pkt;
Joe Hershberger92146372012-05-23 07:59:08 +0000692 int eth_hdr_size;
693 int pkt_hdr_size;
wdenka3d991b2004-04-15 21:48:45 +0000694
Joe Hershberger46c495d2012-05-23 07:59:22 +0000695 /* make sure the NetTxPacket is initialized (NetInit() was called) */
696 assert(NetTxPacket != NULL);
697 if (NetTxPacket == NULL)
698 return -1;
699
wdenk73a8b272003-06-05 19:27:42 +0000700 /* convert to new style broadcast */
701 if (dest == 0)
702 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000703
wdenk73a8b272003-06-05 19:27:42 +0000704 /* if broadcast, make the ether address a broadcast and don't do ARP */
705 if (dest == 0xFFFFFFFF)
706 ether = NetBcastAddr;
707
Joe Hershbergere94070c2012-05-23 07:59:24 +0000708 pkt = (uchar *)NetTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000709
Joe Hershberger92146372012-05-23 07:59:08 +0000710 eth_hdr_size = NetSetEther(pkt, ether, PROT_IP);
711 pkt += eth_hdr_size;
712 net_set_udp_header(pkt, dest, dport, sport, payload_len);
713 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
Robin Getz0ebf04c2009-07-23 03:01:03 -0400714
Joe Hershbergere94070c2012-05-23 07:59:24 +0000715 /* if MAC address was not discovered yet, do an ARP request */
716 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000717 debug_cond(DEBUG_DEV_PKT, "sending ARP for %pI4\n", &dest);
Joe Hershberger92146372012-05-23 07:59:08 +0000718
719 /* save the ip and eth addr for the packet to send after arp */
wdenk73a8b272003-06-05 19:27:42 +0000720 NetArpWaitPacketIP = dest;
721 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000722
wdenk73a8b272003-06-05 19:27:42 +0000723 /* size of the waiting packet */
Joe Hershberger92146372012-05-23 07:59:08 +0000724 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
wdenk73a8b272003-06-05 19:27:42 +0000725
726 /* and do the ARP request */
727 NetArpWaitTry = 1;
728 NetArpWaitTimerStart = get_timer(0);
729 ArpRequest();
730 return 1; /* waiting */
Joe Hershberger92146372012-05-23 07:59:08 +0000731 } else {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000732 debug_cond(DEBUG_DEV_PKT, "sending UDP to %pI4/%pM\n",
733 &dest, ether);
Joe Hershbergeradf5d932012-05-23 07:59:13 +0000734 NetSendPacket(NetTxPacket, pkt_hdr_size + payload_len);
Joe Hershberger92146372012-05-23 07:59:08 +0000735 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000736 }
wdenk73a8b272003-06-05 19:27:42 +0000737}
738
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200739#ifdef CONFIG_IP_DEFRAG
740/*
741 * This function collects fragments in a single packet, according
742 * to the algorithm in RFC815. It returns NULL or the pointer to
743 * a complete packet, in static storage
744 */
745#ifndef CONFIG_NET_MAXDEFRAG
746#define CONFIG_NET_MAXDEFRAG 16384
747#endif
748/*
749 * MAXDEFRAG, above, is chosen in the config file and is real data
750 * so we need to add the NFS overhead, which is more than TFTP.
751 * To use sizeof in the internal unnamed structures, we need a real
752 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
753 * The compiler doesn't complain nor allocates the actual structure
754 */
755static struct rpc_t rpc_specimen;
756#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
757
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000758#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200759
760/*
761 * this is the packet being assembled, either data or frag control.
762 * Fragments go by 8 bytes, so this union must be 8 bytes long
763 */
764struct hole {
765 /* first_byte is address of this structure */
766 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
767 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
768 u16 prev_hole; /* index of prev, 0 == none */
769 u16 unused;
770};
771
Joe Hershberger594c26f2012-05-23 07:58:04 +0000772static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200773{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000774 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200775 static u16 first_hole, total_len;
776 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000777 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200778 uchar *indata = (uchar *)ip;
779 int offset8, start, len, done = 0;
780 u16 ip_off = ntohs(ip->ip_off);
781
782 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000783 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200784 offset8 = (ip_off & IP_OFFS);
785 thisfrag = payload + offset8;
786 start = offset8 * 8;
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000787 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200788
789 if (start + len > IP_MAXUDP) /* fragment extends too far */
790 return NULL;
791
792 if (!total_len || localip->ip_id != ip->ip_id) {
793 /* new (or different) packet, reset structs */
794 total_len = 0xffff;
795 payload[0].last_byte = ~0;
796 payload[0].next_hole = 0;
797 payload[0].prev_hole = 0;
798 first_hole = 0;
799 /* any IP header will work, copy the first we received */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000800 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200801 }
802
803 /*
804 * What follows is the reassembly algorithm. We use the payload
805 * array as a linked list of hole descriptors, as each hole starts
806 * at a multiple of 8 bytes. However, last byte can be whatever value,
807 * so it is represented as byte count, not as 8-byte blocks.
808 */
809
810 h = payload + first_hole;
811 while (h->last_byte < start) {
812 if (!h->next_hole) {
813 /* no hole that far away */
814 return NULL;
815 }
816 h = payload + h->next_hole;
817 }
818
Fillod Stephanee397e592010-06-11 19:26:43 +0200819 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
820 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200821 /* no overlap with holes (dup fragment?) */
822 return NULL;
823 }
824
825 if (!(ip_off & IP_FLAGS_MFRAG)) {
826 /* no more fragmentss: truncate this (last) hole */
827 total_len = start + len;
828 h->last_byte = start + len;
829 }
830
831 /*
832 * There is some overlap: fix the hole list. This code doesn't
833 * deal with a fragment that overlaps with two different holes
834 * (thus being a superset of a previously-received fragment).
835 */
836
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000837 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200838 /* complete overlap with hole: remove hole */
839 if (!h->prev_hole && !h->next_hole) {
840 /* last remaining hole */
841 done = 1;
842 } else if (!h->prev_hole) {
843 /* first hole */
844 first_hole = h->next_hole;
845 payload[h->next_hole].prev_hole = 0;
846 } else if (!h->next_hole) {
847 /* last hole */
848 payload[h->prev_hole].next_hole = 0;
849 } else {
850 /* in the middle of the list */
851 payload[h->next_hole].prev_hole = h->prev_hole;
852 payload[h->prev_hole].next_hole = h->next_hole;
853 }
854
855 } else if (h->last_byte <= start + len) {
856 /* overlaps with final part of the hole: shorten this hole */
857 h->last_byte = start;
858
859 } else if (h >= thisfrag) {
860 /* overlaps with initial part of the hole: move this hole */
861 newh = thisfrag + (len / 8);
862 *newh = *h;
863 h = newh;
864 if (h->next_hole)
865 payload[h->next_hole].prev_hole = (h - payload);
866 if (h->prev_hole)
867 payload[h->prev_hole].next_hole = (h - payload);
868 else
869 first_hole = (h - payload);
870
871 } else {
872 /* fragment sits in the middle: split the hole */
873 newh = thisfrag + (len / 8);
874 *newh = *h;
875 h->last_byte = start;
876 h->next_hole = (newh - payload);
877 newh->prev_hole = (h - payload);
878 if (newh->next_hole)
879 payload[newh->next_hole].prev_hole = (newh - payload);
880 }
881
882 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000883 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200884 if (!done)
885 return NULL;
886
887 localip->ip_len = htons(total_len);
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000888 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200889 return localip;
890}
891
Joe Hershberger594c26f2012-05-23 07:58:04 +0000892static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200893{
894 u16 ip_off = ntohs(ip->ip_off);
895 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
896 return ip; /* not a fragment */
897 return __NetDefragment(ip, lenp);
898}
899
900#else /* !CONFIG_IP_DEFRAG */
901
Joe Hershberger594c26f2012-05-23 07:58:04 +0000902static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200903{
904 u16 ip_off = ntohs(ip->ip_off);
905 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
906 return ip; /* not a fragment */
907 return NULL;
908}
909#endif
wdenka3d991b2004-04-15 21:48:45 +0000910
Simon Glass8f79bb12011-10-24 18:00:00 +0000911/**
912 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
913 * drop others.
914 *
915 * @parma ip IP packet containing the ICMP
916 */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000917static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershbergercb487f52012-05-23 07:58:06 +0000918 IPaddr_t src_ip, struct ethernet_hdr *et)
Simon Glass8f79bb12011-10-24 18:00:00 +0000919{
Joe Hershbergere0a63072012-05-23 07:58:09 +0000920 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass8f79bb12011-10-24 18:00:00 +0000921
922 switch (icmph->type) {
923 case ICMP_REDIRECT:
924 if (icmph->code != ICMP_REDIR_HOST)
925 return;
926 printf(" ICMP Host Redirect to %pI4 ",
927 &icmph->un.gateway);
928 break;
Simon Glass8f79bb12011-10-24 18:00:00 +0000929 default:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000930#if defined(CONFIG_CMD_PING)
931 ping_receive(et, ip, len);
932#endif
Simon Glass39bccd22011-10-26 14:18:38 +0000933#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000934 if (packet_icmp_handler)
935 packet_icmp_handler(icmph->type, icmph->code,
936 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
937 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +0000938#endif
Simon Glass8f79bb12011-10-24 18:00:00 +0000939 break;
940 }
941}
942
wdenk2d966952002-10-31 22:12:35 +0000943void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000944NetReceive(uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000945{
Joe Hershbergercb487f52012-05-23 07:58:06 +0000946 struct ethernet_hdr *et;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000947 struct ip_udp_hdr *ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000948 IPaddr_t dst_ip;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000949 IPaddr_t src_ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000950 int eth_proto;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500951#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000952 int iscdp;
953#endif
954 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000955
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000956 debug_cond(DEBUG_NET_PKT, "packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000957
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400958 NetRxPacket = inpkt;
959 NetRxPacketLen = len;
Joe Hershbergercb487f52012-05-23 07:58:06 +0000960 et = (struct ethernet_hdr *)inpkt;
wdenka3d991b2004-04-15 21:48:45 +0000961
962 /* too small packet? */
963 if (len < ETHER_HDR_SIZE)
964 return;
965
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100966#ifdef CONFIG_API
967 if (push_packet) {
968 (*push_packet)(inpkt, len);
969 return;
970 }
971#endif
972
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500973#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000974 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +0000975 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +0000976#endif
977
978 myvlanid = ntohs(NetOurVLAN);
979 if (myvlanid == (ushort)-1)
980 myvlanid = VLAN_NONE;
981 mynvlanid = ntohs(NetOurNativeVLAN);
982 if (mynvlanid == (ushort)-1)
983 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +0000984
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000985 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +0000986
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000987 if (eth_proto < 1514) {
Joe Hershbergercb487f52012-05-23 07:58:06 +0000988 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +0000989 /*
Joe Hershbergerda5ebe22012-05-23 07:58:11 +0000990 * Got a 802.2 packet. Check the other protocol field.
991 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +0000992 */
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000993 eth_proto = ntohs(et802->et_prot);
wdenka3d991b2004-04-15 21:48:45 +0000994
Joe Hershberger594c26f2012-05-23 07:58:04 +0000995 ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000996 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000997
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000998 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000999 ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001000 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001001
1002 } else { /* VLAN packet */
Joe Hershbergerc68cca32012-05-23 07:58:07 +00001003 struct vlan_ethernet_hdr *vet =
1004 (struct vlan_ethernet_hdr *)et;
wdenka3d991b2004-04-15 21:48:45 +00001005
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001006 debug_cond(DEBUG_NET_PKT, "VLAN packet received\n");
Robin Getz0ebf04c2009-07-23 03:01:03 -04001007
wdenka3d991b2004-04-15 21:48:45 +00001008 /* too small packet? */
1009 if (len < VLAN_ETHER_HDR_SIZE)
1010 return;
1011
1012 /* if no VLAN active */
1013 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001014#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001015 && iscdp == 0
1016#endif
1017 )
1018 return;
1019
1020 cti = ntohs(vet->vet_tag);
1021 vlanid = cti & VLAN_IDMASK;
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001022 eth_proto = ntohs(vet->vet_type);
wdenka3d991b2004-04-15 21:48:45 +00001023
Joe Hershberger594c26f2012-05-23 07:58:04 +00001024 ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE);
wdenka3d991b2004-04-15 21:48:45 +00001025 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +00001026 }
1027
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001028 debug_cond(DEBUG_NET_PKT, "Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +00001029
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001030#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +00001031 if (iscdp) {
Joe Hershberger0b4c5ff2012-05-23 07:58:13 +00001032 cdp_receive((uchar *)ip, len);
wdenka3d991b2004-04-15 21:48:45 +00001033 return;
1034 }
1035#endif
1036
1037 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
1038 if (vlanid == VLAN_NONE)
1039 vlanid = (mynvlanid & VLAN_IDMASK);
1040 /* not matched? */
1041 if (vlanid != (myvlanid & VLAN_IDMASK))
1042 return;
1043 }
1044
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001045 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001046
1047 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +00001048 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +00001049 break;
wdenk2d966952002-10-31 22:12:35 +00001050
Peter Tyserbf6cb242010-09-30 11:25:48 -05001051#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001052 case PROT_RARP:
Joe Hershberger8b9c5322012-05-23 07:58:03 +00001053 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001054 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001055#endif
wdenk2d966952002-10-31 22:12:35 +00001056 case PROT_IP:
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001057 debug_cond(DEBUG_NET_PKT, "Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001058 /* Before we start poking the header, make sure it is there */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001059 if (len < IP_UDP_HDR_SIZE) {
1060 debug("len bad %d < %lu\n", len,
1061 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001062 return;
1063 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001064 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001065 if (len < ntohs(ip->ip_len)) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001066 debug("len bad %d < %d\n", len, ntohs(ip->ip_len));
wdenk2d966952002-10-31 22:12:35 +00001067 return;
1068 }
1069 len = ntohs(ip->ip_len);
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001070 debug_cond(DEBUG_NET_PKT, "len=%d, v=%02x\n",
1071 len, ip->ip_hl_v & 0xff);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001072
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001073 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001074 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001075 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001076 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001077 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001078 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001079 /* Check the Checksum of the header */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +00001080 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) {
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001081 debug("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001082 return;
1083 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001084 /* If it is not for us, ignore it */
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001085 dst_ip = NetReadIP(&ip->ip_dst);
1086 if (NetOurIP && dst_ip != NetOurIP && dst_ip != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001087#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001088 if (Mcast_addr != dst_ip)
David Updegraff53a5c422007-06-11 10:41:07 -05001089#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001090 return;
wdenk2d966952002-10-31 22:12:35 +00001091 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001092 /* Read source IP address for later use */
1093 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001094 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001095 * The function returns the unchanged packet if it's not
1096 * a fragment, and either the complete packet or NULL if
1097 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1098 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001099 ip = NetDefragment(ip, &len);
1100 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001101 return;
1102 /*
wdenk2d966952002-10-31 22:12:35 +00001103 * watch for ICMP host redirects
1104 *
wdenk8bde7f72003-06-27 21:31:46 +00001105 * There is no real handler code (yet). We just watch
1106 * for ICMP host redirect messages. In case anybody
1107 * sees these messages: please contact me
1108 * (wd@denx.de), or - even better - send me the
1109 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001110 *
wdenk8bde7f72003-06-27 21:31:46 +00001111 * Note: in all cases where I have seen this so far
1112 * it was a problem with the router configuration,
1113 * for instance when a router was configured in the
1114 * BOOTP reply, but the TFTP server was on the same
1115 * subnet. So this is probably a warning that your
1116 * configuration might be wrong. But I'm not really
1117 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001118 *
1119 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1120 * we send a tftp packet to a dead connection, or when
1121 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001122 */
1123 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001124 receive_icmp(ip, len, src_ip, et);
1125 return;
wdenk2d966952002-10-31 22:12:35 +00001126 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1127 return;
1128 }
1129
Joe Hershberger4ef8d532012-05-23 08:01:04 +00001130 debug_cond(DEBUG_DEV_PKT,
1131 "received UDP (to=%pI4, from=%pI4, len=%d)\n",
1132 &dst_ip, &src_ip, len);
1133
Stefan Roese8534bf92005-08-12 20:06:52 +02001134#ifdef CONFIG_UDP_CHECKSUM
1135 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001136 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001137 ushort *sumptr;
1138 ushort sumlen;
1139
1140 xsum = ip->ip_p;
1141 xsum += (ntohs(ip->udp_len));
1142 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1143 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1144 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1145 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1146
1147 sumlen = ntohs(ip->udp_len);
1148 sumptr = (ushort *) &(ip->udp_src);
1149
1150 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001151 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001152
1153 sumdata = *sumptr++;
1154 xsum += ntohs(sumdata);
1155 sumlen -= 2;
1156 }
1157 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001158 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001159
1160 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001161 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001162 xsum += sumdata;
1163 }
1164 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001165 xsum = (xsum & 0x0000ffff) +
1166 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001167 }
1168 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001169 printf(" UDP wrong checksum %08lx %08x\n",
1170 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001171 return;
1172 }
1173 }
1174#endif
1175
David Updegraff53a5c422007-06-11 10:41:07 -05001176
wdenk68ceb292004-08-02 21:11:11 +00001177#ifdef CONFIG_NETCONSOLE
Joe Hershberger594c26f2012-05-23 07:58:04 +00001178 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
Joe Hershberger8cab08e2012-10-03 09:14:03 +00001179 src_ip,
Joe Hershberger594c26f2012-05-23 07:58:04 +00001180 ntohs(ip->udp_dst),
1181 ntohs(ip->udp_src),
1182 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk68ceb292004-08-02 21:11:11 +00001183#endif
wdenk2d966952002-10-31 22:12:35 +00001184 /*
1185 * IP header OK. Pass the packet to the current handler.
1186 */
Joe Hershbergerece223b2012-05-23 07:59:15 +00001187 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1188 ntohs(ip->udp_dst),
1189 src_ip,
1190 ntohs(ip->udp_src),
1191 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001192 break;
1193 }
1194}
1195
1196
1197/**********************************************************************/
1198
Simon Glasse4bf0c52011-10-24 18:00:02 +00001199static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001200{
1201 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001202 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001203#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001204 case PING:
wdenk6e592382004-04-18 17:39:38 +00001205 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001206 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001207 return 1;
wdenk6e592382004-04-18 17:39:38 +00001208 }
1209 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001210#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001211#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001212 case SNTP:
1213 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001214 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001215 return 1;
wdenkea287de2005-04-01 00:25:43 +00001216 }
1217 goto common;
1218#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001219#if defined(CONFIG_CMD_DNS)
1220 case DNS:
1221 if (NetOurDNSIP == 0) {
1222 puts("*** ERROR: DNS server address not given\n");
1223 return 1;
1224 }
1225 goto common;
1226#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001227#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001228 case NFS:
1229#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001230 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001231 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001232 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001233 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001234 return 1;
wdenk6e592382004-04-18 17:39:38 +00001235 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001236#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1237 defined(CONFIG_CMD_DNS)
1238common:
wdenk73a8b272003-06-05 19:27:42 +00001239#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001240 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001241
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001242 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001243 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001244 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001245 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001246 return 1;
wdenk6e592382004-04-18 17:39:38 +00001247 }
1248 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001249
Peter Tyserbf6cb242010-09-30 11:25:48 -05001250#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001251 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001252#endif
wdenk2d966952002-10-31 22:12:35 +00001253 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001254 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001255 case DHCP:
Joe Hershbergerd22c3382012-05-23 08:00:12 +00001256 case LINKLOCAL:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001257 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001258 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001259
wdenk6e592382004-04-18 17:39:38 +00001260 switch (num) {
1261 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001262 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001263 return 1;
wdenk6e592382004-04-18 17:39:38 +00001264 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001265 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001266 break;
wdenk6e592382004-04-18 17:39:38 +00001267 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001268 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001269 num);
1270 break;
wdenk2d966952002-10-31 22:12:35 +00001271 }
wdenk6e592382004-04-18 17:39:38 +00001272
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001273 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001274 return 2;
wdenk6e592382004-04-18 17:39:38 +00001275 }
1276 /* Fall through */
1277 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001278 return 0;
wdenk2d966952002-10-31 22:12:35 +00001279 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001280 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001281}
1282/**********************************************************************/
1283
1284int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001285NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001286{
1287 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1288}
1289
1290
1291unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001292NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001293{
1294 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001295 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001296
1297 xsum = 0;
1298 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001299 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001300 xsum = (xsum & 0xffff) + (xsum >> 16);
1301 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001302 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001303}
1304
wdenka3d991b2004-04-15 21:48:45 +00001305int
1306NetEthHdrSize(void)
1307{
1308 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001309
wdenka3d991b2004-04-15 21:48:45 +00001310 myvlanid = ntohs(NetOurVLAN);
1311 if (myvlanid == (ushort)-1)
1312 myvlanid = VLAN_NONE;
1313
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001314 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1315 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001316}
1317
1318int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001319NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001320{
Joe Hershbergercb487f52012-05-23 07:58:06 +00001321 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001322 ushort myvlanid;
1323
1324 myvlanid = ntohs(NetOurVLAN);
1325 if (myvlanid == (ushort)-1)
1326 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001327
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001328 memcpy(et->et_dest, addr, 6);
1329 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001330 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001331 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001332 return ETHER_HDR_SIZE;
1333 } else {
Joe Hershbergerc68cca32012-05-23 07:58:07 +00001334 struct vlan_ethernet_hdr *vet =
1335 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001336
wdenka3d991b2004-04-15 21:48:45 +00001337 vet->vet_vlan_type = htons(PROT_VLAN);
1338 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1339 vet->vet_type = htons(prot);
1340 return VLAN_ETHER_HDR_SIZE;
1341 }
1342}
wdenk2d966952002-10-31 22:12:35 +00001343
Joe Hershbergere7111012012-05-23 07:59:16 +00001344int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1345{
1346 ushort protlen;
1347
1348 memcpy(et->et_dest, addr, 6);
1349 memcpy(et->et_src, NetOurEther, 6);
1350 protlen = ntohs(et->et_protlen);
1351 if (protlen == PROT_VLAN) {
1352 struct vlan_ethernet_hdr *vet =
1353 (struct vlan_ethernet_hdr *)et;
1354 vet->vet_type = htons(prot);
1355 return VLAN_ETHER_HDR_SIZE;
1356 } else if (protlen > 1514) {
1357 et->et_protlen = htons(prot);
1358 return ETHER_HDR_SIZE;
1359 } else {
1360 /* 802.2 + SNAP */
1361 struct e802_hdr *et802 = (struct e802_hdr *)et;
1362 et802->et_prot = htons(prot);
1363 return E802_HDR_SIZE;
1364 }
1365}
1366
Joe Hershberger4b11c912012-05-23 07:59:07 +00001367void net_set_ip_header(uchar *pkt, IPaddr_t dest, IPaddr_t source)
wdenk2d966952002-10-31 22:12:35 +00001368{
Joe Hershberger4b11c912012-05-23 07:59:07 +00001369 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1370
1371 /*
1372 * Construct an IP header.
1373 */
1374 /* IP_HDR_SIZE / 4 (not including UDP) */
1375 ip->ip_hl_v = 0x45;
1376 ip->ip_tos = 0;
1377 ip->ip_len = htons(IP_HDR_SIZE);
1378 ip->ip_id = htons(NetIPID++);
1379 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1380 ip->ip_ttl = 255;
1381 ip->ip_sum = 0;
1382 /* already in network byte order */
1383 NetCopyIP((void *)&ip->ip_src, &source);
1384 /* already in network byte order */
1385 NetCopyIP((void *)&ip->ip_dst, &dest);
1386}
1387
1388void net_set_udp_header(uchar *pkt, IPaddr_t dest, int dport, int sport,
1389 int len)
1390{
1391 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001392
1393 /*
1394 * If the data is an odd number of bytes, zero the
1395 * byte after the last byte so that the checksum
1396 * will work.
1397 */
1398 if (len & 1)
Joe Hershberger4b11c912012-05-23 07:59:07 +00001399 pkt[IP_UDP_HDR_SIZE + len] = 0;
wdenk2d966952002-10-31 22:12:35 +00001400
Joe Hershberger4b11c912012-05-23 07:59:07 +00001401 net_set_ip_header(pkt, dest, NetOurIP);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001402 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
Joe Hershberger4b11c912012-05-23 07:59:07 +00001403 ip->ip_p = IPPROTO_UDP;
1404 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE >> 1);
1405
wdenk2d966952002-10-31 22:12:35 +00001406 ip->udp_src = htons(sport);
1407 ip->udp_dst = htons(dport);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001408 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001409 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001410}
1411
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001412void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001413{
1414 if (*src && (*src == '"')) {
1415 ++src;
1416 --size;
1417 }
1418
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001419 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001420 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001421 *dst = '\0';
1422}
1423
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001424#if defined(CONFIG_CMD_NFS) || \
1425 defined(CONFIG_CMD_SNTP) || \
1426 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001427/*
Robin Getz97399462010-03-08 14:07:00 -05001428 * make port a little random (1024-17407)
1429 * This keeps the math somewhat trivial to compute, and seems to work with
1430 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001431 */
1432unsigned int random_port(void)
1433{
Robin Getz97399462010-03-08 14:07:00 -05001434 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001435}
1436#endif
1437
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001438void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001439{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001440 x = ntohl(x);
1441 sprintf(s, "%d.%d.%d.%d",
1442 (int) ((x >> 24) & 0xff),
1443 (int) ((x >> 16) & 0xff),
1444 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001445 );
wdenk2d966952002-10-31 22:12:35 +00001446}
1447
wdenka3d991b2004-04-15 21:48:45 +00001448void VLAN_to_string(ushort x, char *s)
1449{
1450 x = ntohs(x);
1451
1452 if (x == (ushort)-1)
1453 x = VLAN_NONE;
1454
1455 if (x == VLAN_NONE)
1456 strcpy(s, "none");
1457 else
1458 sprintf(s, "%d", x & VLAN_IDMASK);
1459}
1460
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001461ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001462{
1463 ushort id;
1464
1465 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001466 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001467
1468 if (*s < '0' || *s > '9')
1469 id = VLAN_NONE;
1470 else
1471 id = (ushort)simple_strtoul(s, NULL, 10);
1472
wdenkb9711de2004-04-25 13:18:40 +00001473 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001474}
1475
wdenka3d991b2004-04-15 21:48:45 +00001476ushort getenv_VLAN(char *var)
1477{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001478 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001479}