blob: 4f4b34b2ac2756a2ed31c59ff7181b089c7b4e0c [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 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300259
Heiko Schocherda954272009-04-28 08:36:11 +0200260 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100261}
262
Joe Hershbergerece223b2012-05-23 07:59:15 +0000263static void net_clear_handlers(void)
264{
265 net_set_udp_handler(NULL);
266 net_set_arp_handler(NULL);
267 NetSetTimeout(0, NULL);
268}
269
270static void net_cleanup_loop(void)
271{
272 net_clear_handlers();
273}
274
Joe Hershberger46c495d2012-05-23 07:59:22 +0000275void net_init(void)
276{
277 static int first_call = 1;
278
279 if (first_call) {
280 /*
281 * Setup packet buffers, aligned correctly.
282 */
283 int i;
284
285 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
286 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
287 for (i = 0; i < PKTBUFSRX; i++)
288 NetRxPackets[i] = NetTxPacket + (i + 1) * PKTSIZE_ALIGN;
289
290 ArpInit();
291 net_clear_handlers();
292
293 /* Only need to setup buffer pointers once. */
294 first_call = 0;
295 }
296
297 NetInitLoop();
298}
299
wdenk73a8b272003-06-05 19:27:42 +0000300/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000301/*
302 * Main network processing loop.
303 */
304
Simon Glasse4bf0c52011-10-24 18:00:02 +0000305int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000306{
wdenk2d966952002-10-31 22:12:35 +0000307 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000308 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000309
wdenk2d966952002-10-31 22:12:35 +0000310 NetRestarted = 0;
311 NetDevExists = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100312 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000313
Simon Glass573f14f2011-12-10 11:08:06 +0000314 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
Joe Hershberger46c495d2012-05-23 07:59:22 +0000315 net_init();
wdenk2d966952002-10-31 22:12:35 +0000316 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000317 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000318 if (eth_init(bd) < 0) {
319 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000320 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000321 }
wdenk2d966952002-10-31 22:12:35 +0000322
323restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000324 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000325
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 Hershbergercb1c9912012-05-23 07:59:21 +0000333 NetInitLoop();
wdenk2d966952002-10-31 22:12:35 +0000334
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000335 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000336 case 1:
337 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000338 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000339 return -1;
wdenk2d966952002-10-31 22:12:35 +0000340
wdenk2d966952002-10-31 22:12:35 +0000341 case 2:
342 /* network device not configured */
343 break;
wdenk2d966952002-10-31 22:12:35 +0000344
345 case 0:
wdenk2d966952002-10-31 22:12:35 +0000346 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000347 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000348 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000349 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000350#ifdef CONFIG_CMD_TFTPPUT
351 case TFTPPUT:
352#endif
wdenk2d966952002-10-31 22:12:35 +0000353 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000354 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000355 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000356#ifdef CONFIG_CMD_TFTPSRV
357 case TFTPSRV:
358 TftpStartServer();
359 break;
360#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500361#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000362 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000363 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300364 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000365 DhcpRequest(); /* Basically same as BOOTP */
366 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500367#endif
wdenk2d966952002-10-31 22:12:35 +0000368
369 case BOOTP:
370 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300371 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000372 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000373 break;
374
Peter Tyserbf6cb242010-09-30 11:25:48 -0500375#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000376 case RARP:
377 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300378 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000379 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000380 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500381#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500382#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000383 case PING:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000384 ping_start();
wdenk73a8b272003-06-05 19:27:42 +0000385 break;
386#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500387#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000388 case NFS:
389 NfsStart();
390 break;
391#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500392#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000393 case CDP:
394 CDPStart();
395 break;
396#endif
wdenk68ceb292004-08-02 21:11:11 +0000397#ifdef CONFIG_NETCONSOLE
398 case NETCONS:
399 NcStart();
400 break;
401#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500402#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000403 case SNTP:
404 SntpStart();
405 break;
406#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400407#if defined(CONFIG_CMD_DNS)
408 case DNS:
409 DnsStart();
410 break;
411#endif
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000412#if defined(CONFIG_CMD_LINK_LOCAL)
413 case LINKLOCAL:
414 link_local_start();
415 break;
416#endif
wdenk2d966952002-10-31 22:12:35 +0000417 default:
418 break;
419 }
420
wdenk2d966952002-10-31 22:12:35 +0000421 break;
422 }
423
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500424#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000425#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
426 defined(CONFIG_STATUS_LED) && \
427 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000428 /*
wdenk42d1f032003-10-15 23:53:47 +0000429 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000430 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000431 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000432 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000433 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000434 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200435#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000436#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000437
438 /*
439 * Main packet reception loop. Loop receiving packets until
Joe Hershberger22f6e992012-05-23 07:59:14 +0000440 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000441 */
442 for (;;) {
443 WATCHDOG_RESET();
444#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000445 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000446#endif
447 /*
448 * Check the ethernet for a new packet. The ethernet
449 * receive routine will process it.
450 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200451 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000452
453 /*
454 * Abort if ctrl-c was pressed.
455 */
456 if (ctrlc()) {
Joe Hershbergere94070c2012-05-23 07:59:24 +0000457 /* cancel any ARP that may not have completed */
458 NetArpWaitPacketIP = 0;
459
Joe Hershbergerece223b2012-05-23 07:59:15 +0000460 net_cleanup_loop();
wdenk8bde7f72003-06-27 21:31:46 +0000461 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000462 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000463 goto done;
wdenk2d966952002-10-31 22:12:35 +0000464 }
465
wdenk73a8b272003-06-05 19:27:42 +0000466 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000467
468 /*
469 * Check for a timeout, and run the timeout handler
470 * if we have one.
471 */
wdenke0ac62d2003-08-17 18:55:18 +0000472 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000473 thand_f *x;
474
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500475#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000476#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
477 defined(CONFIG_STATUS_LED) && \
478 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000479 /*
wdenk42d1f032003-10-15 23:53:47 +0000480 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000481 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000482 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000483 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000484 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000485 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000486 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000487 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000488#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000489#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000490 x = timeHandler;
491 timeHandler = (thand_f *)0;
492 (*x)();
493 }
494
495
Joe Hershberger22f6e992012-05-23 07:59:14 +0000496 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000497
498 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000499 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000500 goto restart;
501
502 case NETLOOP_SUCCESS:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000503 net_cleanup_loop();
wdenk2d966952002-10-31 22:12:35 +0000504 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200505 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000506 printf("Bytes transferred = %ld (%lx hex)\n",
507 NetBootFileXferSize,
508 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200509 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000510 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000511
512 sprintf(buf, "%lX", (unsigned long)load_addr);
513 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000514 }
515 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000516 ret = NetBootFileXferSize;
517 goto done;
wdenk2d966952002-10-31 22:12:35 +0000518
519 case NETLOOP_FAIL:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000520 net_cleanup_loop();
Simon Glass4793ee62011-10-24 18:00:01 +0000521 goto done;
Joe Hershberger22f6e992012-05-23 07:59:14 +0000522
523 case NETLOOP_CONTINUE:
524 continue;
wdenk2d966952002-10-31 22:12:35 +0000525 }
526 }
Simon Glass4793ee62011-10-24 18:00:01 +0000527
528done:
Simon Glass39bccd22011-10-26 14:18:38 +0000529#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000530 /* Clear out the handlers */
Joe Hershbergerece223b2012-05-23 07:59:15 +0000531 net_set_udp_handler(NULL);
Simon Glass4793ee62011-10-24 18:00:01 +0000532 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000533#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000534 return ret;
wdenk2d966952002-10-31 22:12:35 +0000535}
536
537/**********************************************************************/
538
539static void
540startAgainTimeout(void)
541{
Joe Hershberger22f6e992012-05-23 07:59:14 +0000542 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000543}
544
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000545void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000546{
wdenk6e592382004-04-18 17:39:38 +0000547 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100548 int retry_forever = 0;
549 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000550
Remy Bohmer67b96e82009-10-28 22:13:39 +0100551 nretry = getenv("netretry");
552 if (nretry) {
553 if (!strcmp(nretry, "yes"))
554 retry_forever = 1;
555 else if (!strcmp(nretry, "no"))
556 retrycnt = 0;
557 else if (!strcmp(nretry, "once"))
558 retrycnt = 1;
559 else
560 retrycnt = simple_strtoul(nretry, NULL, 0);
561 } else
562 retry_forever = 1;
563
564 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
565 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000566 net_set_state(NETLOOP_FAIL);
wdenka3d991b2004-04-15 21:48:45 +0000567 return;
568 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100569
570 NetTryCount++;
571
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000572 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100573#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000574 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100575#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000576 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000577 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000578 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100579 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000580 NetSetTimeout(10000UL, startAgainTimeout);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000581 net_set_udp_handler(NULL);
wdenk6e592382004-04-18 17:39:38 +0000582 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000583 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000584 }
wdenk6e592382004-04-18 17:39:38 +0000585 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000586 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000587 }
wdenk2d966952002-10-31 22:12:35 +0000588}
589
590/**********************************************************************/
591/*
592 * Miscelaneous bits.
593 */
594
Joe Hershbergerece223b2012-05-23 07:59:15 +0000595static void dummy_handler(uchar *pkt, unsigned dport,
596 IPaddr_t sip, unsigned sport,
597 unsigned len)
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000598{
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000599}
600
Joe Hershbergerece223b2012-05-23 07:59:15 +0000601rxhand_f *net_get_udp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000602{
Joe Hershbergerece223b2012-05-23 07:59:15 +0000603 return udp_packet_handler;
604}
605
606void net_set_udp_handler(rxhand_f *f)
607{
608 if (f == NULL)
609 udp_packet_handler = dummy_handler;
610 else
611 udp_packet_handler = f;
612}
613
614rxhand_f *net_get_arp_handler(void)
615{
616 return arp_packet_handler;
617}
618
619void net_set_arp_handler(rxhand_f *f)
620{
621 if (f == NULL)
622 arp_packet_handler = dummy_handler;
623 else
624 arp_packet_handler = f;
wdenk2d966952002-10-31 22:12:35 +0000625}
626
Simon Glass39bccd22011-10-26 14:18:38 +0000627#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000628void net_set_icmp_handler(rxhand_icmp_f *f)
629{
630 packet_icmp_handler = f;
631}
Simon Glass39bccd22011-10-26 14:18:38 +0000632#endif
wdenk2d966952002-10-31 22:12:35 +0000633
634void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000635NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000636{
637 if (iv == 0) {
638 timeHandler = (thand_f *)0;
639 } else {
640 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000641 timeStart = get_timer(0);
642 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000643 }
644}
645
Joe Hershberger206d07f2012-05-23 07:58:10 +0000646int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport,
647 int payload_len)
wdenk73a8b272003-06-05 19:27:42 +0000648{
wdenka3d991b2004-04-15 21:48:45 +0000649 uchar *pkt;
Joe Hershberger92146372012-05-23 07:59:08 +0000650 int eth_hdr_size;
651 int pkt_hdr_size;
wdenka3d991b2004-04-15 21:48:45 +0000652
Joe Hershberger46c495d2012-05-23 07:59:22 +0000653 /* make sure the NetTxPacket is initialized (NetInit() was called) */
654 assert(NetTxPacket != NULL);
655 if (NetTxPacket == NULL)
656 return -1;
657
wdenk73a8b272003-06-05 19:27:42 +0000658 /* convert to new style broadcast */
659 if (dest == 0)
660 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000661
wdenk73a8b272003-06-05 19:27:42 +0000662 /* if broadcast, make the ether address a broadcast and don't do ARP */
663 if (dest == 0xFFFFFFFF)
664 ether = NetBcastAddr;
665
Joe Hershbergere94070c2012-05-23 07:59:24 +0000666 pkt = (uchar *)NetTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000667
Joe Hershberger92146372012-05-23 07:59:08 +0000668 eth_hdr_size = NetSetEther(pkt, ether, PROT_IP);
669 pkt += eth_hdr_size;
670 net_set_udp_header(pkt, dest, dport, sport, payload_len);
671 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
Robin Getz0ebf04c2009-07-23 03:01:03 -0400672
Joe Hershbergere94070c2012-05-23 07:59:24 +0000673 /* if MAC address was not discovered yet, do an ARP request */
674 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
Joe Hershberger92146372012-05-23 07:59:08 +0000675 debug("sending ARP for %pI4\n", &dest);
676
677 /* save the ip and eth addr for the packet to send after arp */
wdenk73a8b272003-06-05 19:27:42 +0000678 NetArpWaitPacketIP = dest;
679 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000680
wdenk73a8b272003-06-05 19:27:42 +0000681 /* size of the waiting packet */
Joe Hershberger92146372012-05-23 07:59:08 +0000682 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
wdenk73a8b272003-06-05 19:27:42 +0000683
684 /* and do the ARP request */
685 NetArpWaitTry = 1;
686 NetArpWaitTimerStart = get_timer(0);
687 ArpRequest();
688 return 1; /* waiting */
Joe Hershberger92146372012-05-23 07:59:08 +0000689 } else {
690 debug("sending UDP to %pI4/%pM\n", &dest, ether);
Joe Hershbergeradf5d932012-05-23 07:59:13 +0000691 NetSendPacket(NetTxPacket, pkt_hdr_size + payload_len);
Joe Hershberger92146372012-05-23 07:59:08 +0000692 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000693 }
wdenk73a8b272003-06-05 19:27:42 +0000694}
695
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200696#ifdef CONFIG_IP_DEFRAG
697/*
698 * This function collects fragments in a single packet, according
699 * to the algorithm in RFC815. It returns NULL or the pointer to
700 * a complete packet, in static storage
701 */
702#ifndef CONFIG_NET_MAXDEFRAG
703#define CONFIG_NET_MAXDEFRAG 16384
704#endif
705/*
706 * MAXDEFRAG, above, is chosen in the config file and is real data
707 * so we need to add the NFS overhead, which is more than TFTP.
708 * To use sizeof in the internal unnamed structures, we need a real
709 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
710 * The compiler doesn't complain nor allocates the actual structure
711 */
712static struct rpc_t rpc_specimen;
713#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
714
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000715#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200716
717/*
718 * this is the packet being assembled, either data or frag control.
719 * Fragments go by 8 bytes, so this union must be 8 bytes long
720 */
721struct hole {
722 /* first_byte is address of this structure */
723 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
724 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
725 u16 prev_hole; /* index of prev, 0 == none */
726 u16 unused;
727};
728
Joe Hershberger594c26f2012-05-23 07:58:04 +0000729static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200730{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000731 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200732 static u16 first_hole, total_len;
733 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000734 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200735 uchar *indata = (uchar *)ip;
736 int offset8, start, len, done = 0;
737 u16 ip_off = ntohs(ip->ip_off);
738
739 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000740 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200741 offset8 = (ip_off & IP_OFFS);
742 thisfrag = payload + offset8;
743 start = offset8 * 8;
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000744 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200745
746 if (start + len > IP_MAXUDP) /* fragment extends too far */
747 return NULL;
748
749 if (!total_len || localip->ip_id != ip->ip_id) {
750 /* new (or different) packet, reset structs */
751 total_len = 0xffff;
752 payload[0].last_byte = ~0;
753 payload[0].next_hole = 0;
754 payload[0].prev_hole = 0;
755 first_hole = 0;
756 /* any IP header will work, copy the first we received */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000757 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200758 }
759
760 /*
761 * What follows is the reassembly algorithm. We use the payload
762 * array as a linked list of hole descriptors, as each hole starts
763 * at a multiple of 8 bytes. However, last byte can be whatever value,
764 * so it is represented as byte count, not as 8-byte blocks.
765 */
766
767 h = payload + first_hole;
768 while (h->last_byte < start) {
769 if (!h->next_hole) {
770 /* no hole that far away */
771 return NULL;
772 }
773 h = payload + h->next_hole;
774 }
775
Fillod Stephanee397e592010-06-11 19:26:43 +0200776 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
777 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200778 /* no overlap with holes (dup fragment?) */
779 return NULL;
780 }
781
782 if (!(ip_off & IP_FLAGS_MFRAG)) {
783 /* no more fragmentss: truncate this (last) hole */
784 total_len = start + len;
785 h->last_byte = start + len;
786 }
787
788 /*
789 * There is some overlap: fix the hole list. This code doesn't
790 * deal with a fragment that overlaps with two different holes
791 * (thus being a superset of a previously-received fragment).
792 */
793
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000794 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200795 /* complete overlap with hole: remove hole */
796 if (!h->prev_hole && !h->next_hole) {
797 /* last remaining hole */
798 done = 1;
799 } else if (!h->prev_hole) {
800 /* first hole */
801 first_hole = h->next_hole;
802 payload[h->next_hole].prev_hole = 0;
803 } else if (!h->next_hole) {
804 /* last hole */
805 payload[h->prev_hole].next_hole = 0;
806 } else {
807 /* in the middle of the list */
808 payload[h->next_hole].prev_hole = h->prev_hole;
809 payload[h->prev_hole].next_hole = h->next_hole;
810 }
811
812 } else if (h->last_byte <= start + len) {
813 /* overlaps with final part of the hole: shorten this hole */
814 h->last_byte = start;
815
816 } else if (h >= thisfrag) {
817 /* overlaps with initial part of the hole: move this hole */
818 newh = thisfrag + (len / 8);
819 *newh = *h;
820 h = newh;
821 if (h->next_hole)
822 payload[h->next_hole].prev_hole = (h - payload);
823 if (h->prev_hole)
824 payload[h->prev_hole].next_hole = (h - payload);
825 else
826 first_hole = (h - payload);
827
828 } else {
829 /* fragment sits in the middle: split the hole */
830 newh = thisfrag + (len / 8);
831 *newh = *h;
832 h->last_byte = start;
833 h->next_hole = (newh - payload);
834 newh->prev_hole = (h - payload);
835 if (newh->next_hole)
836 payload[newh->next_hole].prev_hole = (newh - payload);
837 }
838
839 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000840 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200841 if (!done)
842 return NULL;
843
844 localip->ip_len = htons(total_len);
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000845 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200846 return localip;
847}
848
Joe Hershberger594c26f2012-05-23 07:58:04 +0000849static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200850{
851 u16 ip_off = ntohs(ip->ip_off);
852 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
853 return ip; /* not a fragment */
854 return __NetDefragment(ip, lenp);
855}
856
857#else /* !CONFIG_IP_DEFRAG */
858
Joe Hershberger594c26f2012-05-23 07:58:04 +0000859static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200860{
861 u16 ip_off = ntohs(ip->ip_off);
862 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
863 return ip; /* not a fragment */
864 return NULL;
865}
866#endif
wdenka3d991b2004-04-15 21:48:45 +0000867
Simon Glass8f79bb12011-10-24 18:00:00 +0000868/**
869 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
870 * drop others.
871 *
872 * @parma ip IP packet containing the ICMP
873 */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000874static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershbergercb487f52012-05-23 07:58:06 +0000875 IPaddr_t src_ip, struct ethernet_hdr *et)
Simon Glass8f79bb12011-10-24 18:00:00 +0000876{
Joe Hershbergere0a63072012-05-23 07:58:09 +0000877 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass8f79bb12011-10-24 18:00:00 +0000878
879 switch (icmph->type) {
880 case ICMP_REDIRECT:
881 if (icmph->code != ICMP_REDIR_HOST)
882 return;
883 printf(" ICMP Host Redirect to %pI4 ",
884 &icmph->un.gateway);
885 break;
Simon Glass8f79bb12011-10-24 18:00:00 +0000886 default:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000887#if defined(CONFIG_CMD_PING)
888 ping_receive(et, ip, len);
889#endif
Simon Glass39bccd22011-10-26 14:18:38 +0000890#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000891 if (packet_icmp_handler)
892 packet_icmp_handler(icmph->type, icmph->code,
893 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
894 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +0000895#endif
Simon Glass8f79bb12011-10-24 18:00:00 +0000896 break;
897 }
898}
899
wdenk2d966952002-10-31 22:12:35 +0000900void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000901NetReceive(uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000902{
Joe Hershbergercb487f52012-05-23 07:58:06 +0000903 struct ethernet_hdr *et;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000904 struct ip_udp_hdr *ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000905 IPaddr_t dst_ip;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000906 IPaddr_t src_ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000907 int eth_proto;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500908#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000909 int iscdp;
910#endif
911 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000912
Robin Getz0ebf04c2009-07-23 03:01:03 -0400913 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000914
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400915 NetRxPacket = inpkt;
916 NetRxPacketLen = len;
Joe Hershbergercb487f52012-05-23 07:58:06 +0000917 et = (struct ethernet_hdr *)inpkt;
wdenka3d991b2004-04-15 21:48:45 +0000918
919 /* too small packet? */
920 if (len < ETHER_HDR_SIZE)
921 return;
922
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100923#ifdef CONFIG_API
924 if (push_packet) {
925 (*push_packet)(inpkt, len);
926 return;
927 }
928#endif
929
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500930#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000931 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +0000932 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +0000933#endif
934
935 myvlanid = ntohs(NetOurVLAN);
936 if (myvlanid == (ushort)-1)
937 myvlanid = VLAN_NONE;
938 mynvlanid = ntohs(NetOurNativeVLAN);
939 if (mynvlanid == (ushort)-1)
940 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +0000941
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000942 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +0000943
Robin Getz0ebf04c2009-07-23 03:01:03 -0400944 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000945
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000946 if (eth_proto < 1514) {
Joe Hershbergercb487f52012-05-23 07:58:06 +0000947 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +0000948 /*
Joe Hershbergerda5ebe22012-05-23 07:58:11 +0000949 * Got a 802.2 packet. Check the other protocol field.
950 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +0000951 */
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000952 eth_proto = ntohs(et802->et_prot);
wdenka3d991b2004-04-15 21:48:45 +0000953
Joe Hershberger594c26f2012-05-23 07:58:04 +0000954 ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000955 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000956
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000957 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000958 ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000959 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000960
961 } else { /* VLAN packet */
Joe Hershbergerc68cca32012-05-23 07:58:07 +0000962 struct vlan_ethernet_hdr *vet =
963 (struct vlan_ethernet_hdr *)et;
wdenka3d991b2004-04-15 21:48:45 +0000964
Robin Getz0ebf04c2009-07-23 03:01:03 -0400965 debug("VLAN packet received\n");
966
wdenka3d991b2004-04-15 21:48:45 +0000967 /* too small packet? */
968 if (len < VLAN_ETHER_HDR_SIZE)
969 return;
970
971 /* if no VLAN active */
972 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500973#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000974 && iscdp == 0
975#endif
976 )
977 return;
978
979 cti = ntohs(vet->vet_tag);
980 vlanid = cti & VLAN_IDMASK;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000981 eth_proto = ntohs(vet->vet_type);
wdenka3d991b2004-04-15 21:48:45 +0000982
Joe Hershberger594c26f2012-05-23 07:58:04 +0000983 ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE);
wdenka3d991b2004-04-15 21:48:45 +0000984 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +0000985 }
986
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000987 debug("Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +0000988
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500989#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000990 if (iscdp) {
Joe Hershberger0b4c5ff2012-05-23 07:58:13 +0000991 cdp_receive((uchar *)ip, len);
wdenka3d991b2004-04-15 21:48:45 +0000992 return;
993 }
994#endif
995
996 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
997 if (vlanid == VLAN_NONE)
998 vlanid = (mynvlanid & VLAN_IDMASK);
999 /* not matched? */
1000 if (vlanid != (myvlanid & VLAN_IDMASK))
1001 return;
1002 }
1003
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001004 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +00001005
1006 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +00001007 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +00001008 break;
wdenk2d966952002-10-31 22:12:35 +00001009
Peter Tyserbf6cb242010-09-30 11:25:48 -05001010#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001011 case PROT_RARP:
Joe Hershberger8b9c5322012-05-23 07:58:03 +00001012 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +00001013 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -05001014#endif
wdenk2d966952002-10-31 22:12:35 +00001015 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -04001016 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001017 /* Before we start poking the header, make sure it is there */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001018 if (len < IP_UDP_HDR_SIZE) {
1019 debug("len bad %d < %lu\n", len,
1020 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001021 return;
1022 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001023 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001024 if (len < ntohs(ip->ip_len)) {
1025 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1026 return;
1027 }
1028 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001029 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1030
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001031 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001032 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001033 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001034 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001035 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001036 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001037 /* Check the Checksum of the header */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +00001038 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001039 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001040 return;
1041 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001042 /* If it is not for us, ignore it */
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001043 dst_ip = NetReadIP(&ip->ip_dst);
1044 if (NetOurIP && dst_ip != NetOurIP && dst_ip != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001045#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001046 if (Mcast_addr != dst_ip)
David Updegraff53a5c422007-06-11 10:41:07 -05001047#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001048 return;
wdenk2d966952002-10-31 22:12:35 +00001049 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001050 /* Read source IP address for later use */
1051 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001052 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001053 * The function returns the unchanged packet if it's not
1054 * a fragment, and either the complete packet or NULL if
1055 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1056 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001057 ip = NetDefragment(ip, &len);
1058 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001059 return;
1060 /*
wdenk2d966952002-10-31 22:12:35 +00001061 * watch for ICMP host redirects
1062 *
wdenk8bde7f72003-06-27 21:31:46 +00001063 * There is no real handler code (yet). We just watch
1064 * for ICMP host redirect messages. In case anybody
1065 * sees these messages: please contact me
1066 * (wd@denx.de), or - even better - send me the
1067 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001068 *
wdenk8bde7f72003-06-27 21:31:46 +00001069 * Note: in all cases where I have seen this so far
1070 * it was a problem with the router configuration,
1071 * for instance when a router was configured in the
1072 * BOOTP reply, but the TFTP server was on the same
1073 * subnet. So this is probably a warning that your
1074 * configuration might be wrong. But I'm not really
1075 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001076 *
1077 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1078 * we send a tftp packet to a dead connection, or when
1079 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001080 */
1081 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001082 receive_icmp(ip, len, src_ip, et);
1083 return;
wdenk2d966952002-10-31 22:12:35 +00001084 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1085 return;
1086 }
1087
Stefan Roese8534bf92005-08-12 20:06:52 +02001088#ifdef CONFIG_UDP_CHECKSUM
1089 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001090 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001091 ushort *sumptr;
1092 ushort sumlen;
1093
1094 xsum = ip->ip_p;
1095 xsum += (ntohs(ip->udp_len));
1096 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1097 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1098 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1099 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1100
1101 sumlen = ntohs(ip->udp_len);
1102 sumptr = (ushort *) &(ip->udp_src);
1103
1104 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001105 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001106
1107 sumdata = *sumptr++;
1108 xsum += ntohs(sumdata);
1109 sumlen -= 2;
1110 }
1111 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001112 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001113
1114 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001115 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001116 xsum += sumdata;
1117 }
1118 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001119 xsum = (xsum & 0x0000ffff) +
1120 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001121 }
1122 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001123 printf(" UDP wrong checksum %08lx %08x\n",
1124 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001125 return;
1126 }
1127 }
1128#endif
1129
David Updegraff53a5c422007-06-11 10:41:07 -05001130
wdenk68ceb292004-08-02 21:11:11 +00001131#ifdef CONFIG_NETCONSOLE
Joe Hershberger594c26f2012-05-23 07:58:04 +00001132 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1133 ntohs(ip->udp_dst),
1134 ntohs(ip->udp_src),
1135 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk68ceb292004-08-02 21:11:11 +00001136#endif
wdenk2d966952002-10-31 22:12:35 +00001137 /*
1138 * IP header OK. Pass the packet to the current handler.
1139 */
Joe Hershbergerece223b2012-05-23 07:59:15 +00001140 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1141 ntohs(ip->udp_dst),
1142 src_ip,
1143 ntohs(ip->udp_src),
1144 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001145 break;
1146 }
1147}
1148
1149
1150/**********************************************************************/
1151
Simon Glasse4bf0c52011-10-24 18:00:02 +00001152static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001153{
1154 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001155 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001156#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001157 case PING:
wdenk6e592382004-04-18 17:39:38 +00001158 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001159 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001160 return 1;
wdenk6e592382004-04-18 17:39:38 +00001161 }
1162 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001163#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001164#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001165 case SNTP:
1166 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001167 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001168 return 1;
wdenkea287de2005-04-01 00:25:43 +00001169 }
1170 goto common;
1171#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001172#if defined(CONFIG_CMD_DNS)
1173 case DNS:
1174 if (NetOurDNSIP == 0) {
1175 puts("*** ERROR: DNS server address not given\n");
1176 return 1;
1177 }
1178 goto common;
1179#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001180#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001181 case NFS:
1182#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001183 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001184 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001185 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001186 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001187 return 1;
wdenk6e592382004-04-18 17:39:38 +00001188 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001189#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1190 defined(CONFIG_CMD_DNS)
1191common:
wdenk73a8b272003-06-05 19:27:42 +00001192#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001193 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001194
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001195 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001196 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001197 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001198 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001199 return 1;
wdenk6e592382004-04-18 17:39:38 +00001200 }
1201 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001202
Peter Tyserbf6cb242010-09-30 11:25:48 -05001203#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001204 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001205#endif
wdenk2d966952002-10-31 22:12:35 +00001206 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001207 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001208 case DHCP:
Joe Hershbergerd22c3382012-05-23 08:00:12 +00001209 case LINKLOCAL:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001210 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001211 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001212
wdenk6e592382004-04-18 17:39:38 +00001213 switch (num) {
1214 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001215 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001216 return 1;
wdenk6e592382004-04-18 17:39:38 +00001217 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001218 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001219 break;
wdenk6e592382004-04-18 17:39:38 +00001220 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001221 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001222 num);
1223 break;
wdenk2d966952002-10-31 22:12:35 +00001224 }
wdenk6e592382004-04-18 17:39:38 +00001225
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001226 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001227 return 2;
wdenk6e592382004-04-18 17:39:38 +00001228 }
1229 /* Fall through */
1230 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001231 return 0;
wdenk2d966952002-10-31 22:12:35 +00001232 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001233 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001234}
1235/**********************************************************************/
1236
1237int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001238NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001239{
1240 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1241}
1242
1243
1244unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001245NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001246{
1247 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001248 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001249
1250 xsum = 0;
1251 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001252 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001253 xsum = (xsum & 0xffff) + (xsum >> 16);
1254 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001255 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001256}
1257
wdenka3d991b2004-04-15 21:48:45 +00001258int
1259NetEthHdrSize(void)
1260{
1261 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001262
wdenka3d991b2004-04-15 21:48:45 +00001263 myvlanid = ntohs(NetOurVLAN);
1264 if (myvlanid == (ushort)-1)
1265 myvlanid = VLAN_NONE;
1266
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001267 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1268 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001269}
1270
1271int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001272NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001273{
Joe Hershbergercb487f52012-05-23 07:58:06 +00001274 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001275 ushort myvlanid;
1276
1277 myvlanid = ntohs(NetOurVLAN);
1278 if (myvlanid == (ushort)-1)
1279 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001280
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001281 memcpy(et->et_dest, addr, 6);
1282 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001283 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001284 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001285 return ETHER_HDR_SIZE;
1286 } else {
Joe Hershbergerc68cca32012-05-23 07:58:07 +00001287 struct vlan_ethernet_hdr *vet =
1288 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001289
wdenka3d991b2004-04-15 21:48:45 +00001290 vet->vet_vlan_type = htons(PROT_VLAN);
1291 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1292 vet->vet_type = htons(prot);
1293 return VLAN_ETHER_HDR_SIZE;
1294 }
1295}
wdenk2d966952002-10-31 22:12:35 +00001296
Joe Hershbergere7111012012-05-23 07:59:16 +00001297int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1298{
1299 ushort protlen;
1300
1301 memcpy(et->et_dest, addr, 6);
1302 memcpy(et->et_src, NetOurEther, 6);
1303 protlen = ntohs(et->et_protlen);
1304 if (protlen == PROT_VLAN) {
1305 struct vlan_ethernet_hdr *vet =
1306 (struct vlan_ethernet_hdr *)et;
1307 vet->vet_type = htons(prot);
1308 return VLAN_ETHER_HDR_SIZE;
1309 } else if (protlen > 1514) {
1310 et->et_protlen = htons(prot);
1311 return ETHER_HDR_SIZE;
1312 } else {
1313 /* 802.2 + SNAP */
1314 struct e802_hdr *et802 = (struct e802_hdr *)et;
1315 et802->et_prot = htons(prot);
1316 return E802_HDR_SIZE;
1317 }
1318}
1319
Joe Hershberger4b11c912012-05-23 07:59:07 +00001320void net_set_ip_header(uchar *pkt, IPaddr_t dest, IPaddr_t source)
wdenk2d966952002-10-31 22:12:35 +00001321{
Joe Hershberger4b11c912012-05-23 07:59:07 +00001322 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1323
1324 /*
1325 * Construct an IP header.
1326 */
1327 /* IP_HDR_SIZE / 4 (not including UDP) */
1328 ip->ip_hl_v = 0x45;
1329 ip->ip_tos = 0;
1330 ip->ip_len = htons(IP_HDR_SIZE);
1331 ip->ip_id = htons(NetIPID++);
1332 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1333 ip->ip_ttl = 255;
1334 ip->ip_sum = 0;
1335 /* already in network byte order */
1336 NetCopyIP((void *)&ip->ip_src, &source);
1337 /* already in network byte order */
1338 NetCopyIP((void *)&ip->ip_dst, &dest);
1339}
1340
1341void net_set_udp_header(uchar *pkt, IPaddr_t dest, int dport, int sport,
1342 int len)
1343{
1344 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001345
1346 /*
1347 * If the data is an odd number of bytes, zero the
1348 * byte after the last byte so that the checksum
1349 * will work.
1350 */
1351 if (len & 1)
Joe Hershberger4b11c912012-05-23 07:59:07 +00001352 pkt[IP_UDP_HDR_SIZE + len] = 0;
wdenk2d966952002-10-31 22:12:35 +00001353
Joe Hershberger4b11c912012-05-23 07:59:07 +00001354 net_set_ip_header(pkt, dest, NetOurIP);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001355 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
Joe Hershberger4b11c912012-05-23 07:59:07 +00001356 ip->ip_p = IPPROTO_UDP;
1357 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE >> 1);
1358
wdenk2d966952002-10-31 22:12:35 +00001359 ip->udp_src = htons(sport);
1360 ip->udp_dst = htons(dport);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001361 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001362 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001363}
1364
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001365void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001366{
1367 if (*src && (*src == '"')) {
1368 ++src;
1369 --size;
1370 }
1371
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001372 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001373 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001374 *dst = '\0';
1375}
1376
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001377#if defined(CONFIG_CMD_NFS) || \
1378 defined(CONFIG_CMD_SNTP) || \
1379 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001380/*
Robin Getz97399462010-03-08 14:07:00 -05001381 * make port a little random (1024-17407)
1382 * This keeps the math somewhat trivial to compute, and seems to work with
1383 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001384 */
1385unsigned int random_port(void)
1386{
Robin Getz97399462010-03-08 14:07:00 -05001387 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001388}
1389#endif
1390
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001391void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001392{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001393 x = ntohl(x);
1394 sprintf(s, "%d.%d.%d.%d",
1395 (int) ((x >> 24) & 0xff),
1396 (int) ((x >> 16) & 0xff),
1397 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001398 );
wdenk2d966952002-10-31 22:12:35 +00001399}
1400
wdenka3d991b2004-04-15 21:48:45 +00001401void VLAN_to_string(ushort x, char *s)
1402{
1403 x = ntohs(x);
1404
1405 if (x == (ushort)-1)
1406 x = VLAN_NONE;
1407
1408 if (x == VLAN_NONE)
1409 strcpy(s, "none");
1410 else
1411 sprintf(s, "%d", x & VLAN_IDMASK);
1412}
1413
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001414ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001415{
1416 ushort id;
1417
1418 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001419 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001420
1421 if (*s < '0' || *s > '9')
1422 id = VLAN_NONE;
1423 else
1424 id = (ushort)simple_strtoul(s, NULL, 10);
1425
wdenkb9711de2004-04-25 13:18:40 +00001426 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001427}
1428
wdenka3d991b2004-04-15 21:48:45 +00001429ushort getenv_VLAN(char *var)
1430{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001431 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001432}