blob: 651f3f73ef2df8ade28dfebafb28ee422c4fb5df [file] [log] [blame]
wdenk2d966952002-10-31 22:12:35 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020043 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000047 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
wdenkcbd8a352004-02-24 02:00:03 +000058 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
wdenkea287de2005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkea287de2005-04-01 00:25:43 +000071 * - own IP address
72 * We want: - network time
73 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000074 */
75
76
77#include <common.h>
wdenk2d966952002-10-31 22:12:35 +000078#include <command.h>
79#include <net.h>
Joe Hershberger4545f4e2012-05-23 07:58:15 +000080#if defined(CONFIG_STATUS_LED)
81#include <miiphy.h>
82#include <status_led.h>
83#endif
84#include <watchdog.h>
85#include <linux/compiler.h>
Joe Hershbergerd280d3f2012-05-23 07:58:01 +000086#include "arp.h"
wdenk2d966952002-10-31 22:12:35 +000087#include "bootp.h"
Joe Hershbergerf575ae12012-05-23 07:57:59 +000088#include "cdp.h"
Robin Getz1a32bf42009-07-20 14:53:54 -040089#if defined(CONFIG_CMD_DNS)
90#include "dns.h"
91#endif
Joe Hershberger4545f4e2012-05-23 07:58:15 +000092#include "nfs.h"
Joe Hershbergera36b12f2012-05-23 07:58:02 +000093#include "ping.h"
Joe Hershberger4545f4e2012-05-23 07:58:15 +000094#include "rarp.h"
95#if defined(CONFIG_CMD_SNTP)
96#include "sntp.h"
97#endif
98#include "tftp.h"
wdenk2d966952002-10-31 22:12:35 +000099
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200100DECLARE_GLOBAL_DATA_PTR;
101
wdenk2d966952002-10-31 22:12:35 +0000102/** BOOTP EXTENTIONS **/
103
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000104/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000105IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000106/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000107IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000108/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000109IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500110#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000111/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000112IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000113#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000114/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000115char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000116/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000117char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000118/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000119char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000120/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000121ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000122
David Updegraff53a5c422007-06-11 10:41:07 -0500123#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
124IPaddr_t Mcast_addr;
125#endif
126
wdenk2d966952002-10-31 22:12:35 +0000127/** END OF BOOTP EXTENTIONS **/
128
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000129/* The actual transferred size of the bootfile (in bytes) */
130ulong NetBootFileXferSize;
131/* Our ethernet address */
132uchar NetOurEther[6];
133/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000134uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000135/* Our IP addr (0 = unknown) */
136IPaddr_t NetOurIP;
137/* Server IP addr (0 = unknown) */
138IPaddr_t NetServerIP;
139/* Current receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000140uchar *NetRxPacket;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000141/* Current rx packet length */
142int NetRxPacketLen;
143/* IP packet ID */
144unsigned NetIPID;
145/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000146uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
147uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100148#ifdef CONFIG_API
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000149void (*push_packet)(void *, int len) = 0;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100150#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000151/* Network loop state */
Joe Hershberger22f6e992012-05-23 07:59:14 +0000152enum net_loop_state net_state;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000153/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000154int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000155/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000156static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000157/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000158static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000159
wdenk6e592382004-04-18 17:39:38 +0000160/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000161/* default is without VLAN */
162ushort NetOurVLAN = 0xFFFF;
163/* ditto */
164ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000165
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000166/* Boot File name */
167char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000168
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500169#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000170/* NTP server IP address */
171IPaddr_t NetNtpServerIP;
172/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000173int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000174#endif
175
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000176uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
wdenk2d966952002-10-31 22:12:35 +0000177
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000178/* Receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000179uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000180
Joe Hershbergerece223b2012-05-23 07:59:15 +0000181/* Current UDP RX packet handler */
182static rxhand_f *udp_packet_handler;
183/* Current ARP RX packet handler */
184static rxhand_f *arp_packet_handler;
Simon Glass39bccd22011-10-26 14:18:38 +0000185#ifdef CONFIG_CMD_TFTPPUT
Joe Hershbergerece223b2012-05-23 07:59:15 +0000186/* Current ICMP rx handler */
187static rxhand_icmp_f *packet_icmp_handler;
Simon Glass39bccd22011-10-26 14:18:38 +0000188#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000189/* Current timeout handler */
190static thand_f *timeHandler;
191/* Time base value */
192static ulong timeStart;
193/* Current timeout value */
194static ulong timeDelta;
195/* THE transmit packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000196uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000197
Simon Glasse4bf0c52011-10-24 18:00:02 +0000198static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000199
Remy Bohmer67b96e82009-10-28 22:13:39 +0100200static int NetTryCount;
201
wdenk2d966952002-10-31 22:12:35 +0000202/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000203
Simon Glasse4a3d572011-10-27 06:24:32 +0000204/*
205 * Check if autoload is enabled. If so, use either NFS or TFTP to download
206 * the boot file.
207 */
208void net_auto_load(void)
209{
210 const char *s = getenv("autoload");
211
212 if (s != NULL) {
213 if (*s == 'n') {
214 /*
215 * Just use BOOTP/RARP to configure system;
216 * Do not use TFTP to load the bootfile.
217 */
Joe Hershberger22f6e992012-05-23 07:59:14 +0000218 net_set_state(NETLOOP_SUCCESS);
Simon Glasse4a3d572011-10-27 06:24:32 +0000219 return;
220 }
221#if defined(CONFIG_CMD_NFS)
222 if (strcmp(s, "NFS") == 0) {
223 /*
224 * Use NFS to load the bootfile.
225 */
226 NfsStart();
227 return;
228 }
229#endif
230 }
231 TftpStart(TFTPGET);
232}
233
Simon Glasse4bf0c52011-10-24 18:00:02 +0000234static void NetInitLoop(enum proto_t protocol)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100235{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000236 static int env_changed_id;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000237 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100238
239 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300240 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000241 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000242 NetOurGatewayIP = getenv_IPaddr("gatewayip");
243 NetOurSubnetMask = getenv_IPaddr("netmask");
244 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100245 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300246 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400247#if defined(CONFIG_CMD_DNS)
248 NetOurDNSIP = getenv_IPaddr("dnsip");
249#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300250 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100251 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300252
Heiko Schocherda954272009-04-28 08:36:11 +0200253 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100254}
255
Joe Hershbergerece223b2012-05-23 07:59:15 +0000256static void net_clear_handlers(void)
257{
258 net_set_udp_handler(NULL);
259 net_set_arp_handler(NULL);
260 NetSetTimeout(0, NULL);
261}
262
263static void net_cleanup_loop(void)
264{
265 net_clear_handlers();
266}
267
wdenk73a8b272003-06-05 19:27:42 +0000268/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000269/*
270 * Main network processing loop.
271 */
272
Simon Glasse4bf0c52011-10-24 18:00:02 +0000273int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000274{
Joe Hershbergerece223b2012-05-23 07:59:15 +0000275 int i;
wdenk2d966952002-10-31 22:12:35 +0000276 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000277 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000278
wdenk2d966952002-10-31 22:12:35 +0000279 NetRestarted = 0;
280 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000281
wdenk73a8b272003-06-05 19:27:42 +0000282 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100283 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000284
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000285 ArpInit();
Joe Hershbergerece223b2012-05-23 07:59:15 +0000286 net_clear_handlers();
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000287
Joe Hershbergerece223b2012-05-23 07:59:15 +0000288 /*
289 * Setup packet buffers, aligned correctly.
290 */
291 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
292 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
293 for (i = 0; i < PKTBUFSRX; i++)
294 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000295
Simon Glass573f14f2011-12-10 11:08:06 +0000296 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
wdenk2d966952002-10-31 22:12:35 +0000297 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000298 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000299 if (eth_init(bd) < 0) {
300 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000301 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000302 }
wdenk2d966952002-10-31 22:12:35 +0000303
304restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000305 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000306
Joe Hershberger22f6e992012-05-23 07:59:14 +0000307 net_set_state(NETLOOP_CONTINUE);
wdenk2d966952002-10-31 22:12:35 +0000308
309 /*
310 * Start the ball rolling with the given start function. From
311 * here on, this code is a state machine driven by received
312 * packets and timer events.
313 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100314 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000315
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000316 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000317 case 1:
318 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000319 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000320 return -1;
wdenk2d966952002-10-31 22:12:35 +0000321
wdenk2d966952002-10-31 22:12:35 +0000322 case 2:
323 /* network device not configured */
324 break;
wdenk2d966952002-10-31 22:12:35 +0000325
326 case 0:
wdenk2d966952002-10-31 22:12:35 +0000327 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000328 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000329 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000330 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000331#ifdef CONFIG_CMD_TFTPPUT
332 case TFTPPUT:
333#endif
wdenk2d966952002-10-31 22:12:35 +0000334 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000335 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000336 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000337#ifdef CONFIG_CMD_TFTPSRV
338 case TFTPSRV:
339 TftpStartServer();
340 break;
341#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500342#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000343 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000344 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300345 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000346 DhcpRequest(); /* Basically same as BOOTP */
347 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500348#endif
wdenk2d966952002-10-31 22:12:35 +0000349
350 case BOOTP:
351 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300352 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000353 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000354 break;
355
Peter Tyserbf6cb242010-09-30 11:25:48 -0500356#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000357 case RARP:
358 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300359 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000360 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000361 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500362#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500363#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000364 case PING:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000365 ping_start();
wdenk73a8b272003-06-05 19:27:42 +0000366 break;
367#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500368#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000369 case NFS:
370 NfsStart();
371 break;
372#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500373#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000374 case CDP:
375 CDPStart();
376 break;
377#endif
wdenk68ceb292004-08-02 21:11:11 +0000378#ifdef CONFIG_NETCONSOLE
379 case NETCONS:
380 NcStart();
381 break;
382#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500383#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000384 case SNTP:
385 SntpStart();
386 break;
387#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400388#if defined(CONFIG_CMD_DNS)
389 case DNS:
390 DnsStart();
391 break;
392#endif
wdenk2d966952002-10-31 22:12:35 +0000393 default:
394 break;
395 }
396
wdenk2d966952002-10-31 22:12:35 +0000397 break;
398 }
399
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500400#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000401#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
402 defined(CONFIG_STATUS_LED) && \
403 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000404 /*
wdenk42d1f032003-10-15 23:53:47 +0000405 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000406 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000407 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000408 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000409 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000410 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200411#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000412#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000413
414 /*
415 * Main packet reception loop. Loop receiving packets until
Joe Hershberger22f6e992012-05-23 07:59:14 +0000416 * someone sets `net_state' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000417 */
418 for (;;) {
419 WATCHDOG_RESET();
420#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000421 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000422#endif
423 /*
424 * Check the ethernet for a new packet. The ethernet
425 * receive routine will process it.
426 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200427 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000428
429 /*
430 * Abort if ctrl-c was pressed.
431 */
432 if (ctrlc()) {
Joe Hershbergerece223b2012-05-23 07:59:15 +0000433 net_cleanup_loop();
wdenk8bde7f72003-06-27 21:31:46 +0000434 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000435 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000436 goto done;
wdenk2d966952002-10-31 22:12:35 +0000437 }
438
wdenk73a8b272003-06-05 19:27:42 +0000439 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000440
441 /*
442 * Check for a timeout, and run the timeout handler
443 * if we have one.
444 */
wdenke0ac62d2003-08-17 18:55:18 +0000445 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000446 thand_f *x;
447
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500448#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000449#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
450 defined(CONFIG_STATUS_LED) && \
451 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000452 /*
wdenk42d1f032003-10-15 23:53:47 +0000453 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000454 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000455 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000456 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000457 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000458 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000459 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000460 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000461#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000462#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000463 x = timeHandler;
464 timeHandler = (thand_f *)0;
465 (*x)();
466 }
467
468
Joe Hershberger22f6e992012-05-23 07:59:14 +0000469 switch (net_state) {
wdenk2d966952002-10-31 22:12:35 +0000470
471 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000472 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000473 goto restart;
474
475 case NETLOOP_SUCCESS:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000476 net_cleanup_loop();
wdenk2d966952002-10-31 22:12:35 +0000477 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200478 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000479 printf("Bytes transferred = %ld (%lx hex)\n",
480 NetBootFileXferSize,
481 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200482 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000483 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000484
485 sprintf(buf, "%lX", (unsigned long)load_addr);
486 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000487 }
488 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000489 ret = NetBootFileXferSize;
490 goto done;
wdenk2d966952002-10-31 22:12:35 +0000491
492 case NETLOOP_FAIL:
Joe Hershbergerece223b2012-05-23 07:59:15 +0000493 net_cleanup_loop();
Simon Glass4793ee62011-10-24 18:00:01 +0000494 goto done;
Joe Hershberger22f6e992012-05-23 07:59:14 +0000495
496 case NETLOOP_CONTINUE:
497 continue;
wdenk2d966952002-10-31 22:12:35 +0000498 }
499 }
Simon Glass4793ee62011-10-24 18:00:01 +0000500
501done:
Simon Glass39bccd22011-10-26 14:18:38 +0000502#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000503 /* Clear out the handlers */
Joe Hershbergerece223b2012-05-23 07:59:15 +0000504 net_set_udp_handler(NULL);
Simon Glass4793ee62011-10-24 18:00:01 +0000505 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000506#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000507 return ret;
wdenk2d966952002-10-31 22:12:35 +0000508}
509
510/**********************************************************************/
511
512static void
513startAgainTimeout(void)
514{
Joe Hershberger22f6e992012-05-23 07:59:14 +0000515 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000516}
517
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000518void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000519{
wdenk6e592382004-04-18 17:39:38 +0000520 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100521 int retry_forever = 0;
522 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000523
Remy Bohmer67b96e82009-10-28 22:13:39 +0100524 nretry = getenv("netretry");
525 if (nretry) {
526 if (!strcmp(nretry, "yes"))
527 retry_forever = 1;
528 else if (!strcmp(nretry, "no"))
529 retrycnt = 0;
530 else if (!strcmp(nretry, "once"))
531 retrycnt = 1;
532 else
533 retrycnt = simple_strtoul(nretry, NULL, 0);
534 } else
535 retry_forever = 1;
536
537 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
538 eth_halt();
Joe Hershberger22f6e992012-05-23 07:59:14 +0000539 net_set_state(NETLOOP_FAIL);
wdenka3d991b2004-04-15 21:48:45 +0000540 return;
541 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100542
543 NetTryCount++;
544
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000545 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100546#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000547 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100548#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000549 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000550 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000551 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100552 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000553 NetSetTimeout(10000UL, startAgainTimeout);
Joe Hershbergerece223b2012-05-23 07:59:15 +0000554 net_set_udp_handler(NULL);
wdenk6e592382004-04-18 17:39:38 +0000555 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000556 net_set_state(NETLOOP_FAIL);
wdenk2d966952002-10-31 22:12:35 +0000557 }
wdenk6e592382004-04-18 17:39:38 +0000558 } else {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000559 net_set_state(NETLOOP_RESTART);
wdenk2d966952002-10-31 22:12:35 +0000560 }
wdenk2d966952002-10-31 22:12:35 +0000561}
562
563/**********************************************************************/
564/*
565 * Miscelaneous bits.
566 */
567
Joe Hershbergerece223b2012-05-23 07:59:15 +0000568static void dummy_handler(uchar *pkt, unsigned dport,
569 IPaddr_t sip, unsigned sport,
570 unsigned len)
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000571{
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000572}
573
Joe Hershbergerece223b2012-05-23 07:59:15 +0000574rxhand_f *net_get_udp_handler(void)
wdenk2d966952002-10-31 22:12:35 +0000575{
Joe Hershbergerece223b2012-05-23 07:59:15 +0000576 return udp_packet_handler;
577}
578
579void net_set_udp_handler(rxhand_f *f)
580{
581 if (f == NULL)
582 udp_packet_handler = dummy_handler;
583 else
584 udp_packet_handler = f;
585}
586
587rxhand_f *net_get_arp_handler(void)
588{
589 return arp_packet_handler;
590}
591
592void net_set_arp_handler(rxhand_f *f)
593{
594 if (f == NULL)
595 arp_packet_handler = dummy_handler;
596 else
597 arp_packet_handler = f;
wdenk2d966952002-10-31 22:12:35 +0000598}
599
Simon Glass39bccd22011-10-26 14:18:38 +0000600#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000601void net_set_icmp_handler(rxhand_icmp_f *f)
602{
603 packet_icmp_handler = f;
604}
Simon Glass39bccd22011-10-26 14:18:38 +0000605#endif
wdenk2d966952002-10-31 22:12:35 +0000606
607void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000608NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000609{
610 if (iv == 0) {
611 timeHandler = (thand_f *)0;
612 } else {
613 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000614 timeStart = get_timer(0);
615 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000616 }
617}
618
Joe Hershberger206d07f2012-05-23 07:58:10 +0000619int NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport,
620 int payload_len)
wdenk73a8b272003-06-05 19:27:42 +0000621{
wdenka3d991b2004-04-15 21:48:45 +0000622 uchar *pkt;
Joe Hershberger92146372012-05-23 07:59:08 +0000623 int need_arp = 0;
624 int eth_hdr_size;
625 int pkt_hdr_size;
wdenka3d991b2004-04-15 21:48:45 +0000626
wdenk73a8b272003-06-05 19:27:42 +0000627 /* convert to new style broadcast */
628 if (dest == 0)
629 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000630
wdenk73a8b272003-06-05 19:27:42 +0000631 /* if broadcast, make the ether address a broadcast and don't do ARP */
632 if (dest == 0xFFFFFFFF)
633 ether = NetBcastAddr;
634
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000635 /*
636 * if MAC address was not discovered yet, save the packet and do
637 * an ARP request
638 */
wdenk73a8b272003-06-05 19:27:42 +0000639 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
Joe Hershberger92146372012-05-23 07:59:08 +0000640 need_arp = 1;
641 pkt = NetArpWaitTxPacket;
642 } else
643 pkt = (uchar *)NetTxPacket;
wdenk73a8b272003-06-05 19:27:42 +0000644
Joe Hershberger92146372012-05-23 07:59:08 +0000645 eth_hdr_size = NetSetEther(pkt, ether, PROT_IP);
646 pkt += eth_hdr_size;
647 net_set_udp_header(pkt, dest, dport, sport, payload_len);
648 pkt_hdr_size = eth_hdr_size + IP_UDP_HDR_SIZE;
Robin Getz0ebf04c2009-07-23 03:01:03 -0400649
Joe Hershberger92146372012-05-23 07:59:08 +0000650 if (need_arp) {
651 debug("sending ARP for %pI4\n", &dest);
652
653 /* save the ip and eth addr for the packet to send after arp */
wdenk73a8b272003-06-05 19:27:42 +0000654 NetArpWaitPacketIP = dest;
655 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000656
Joe Hershberger92146372012-05-23 07:59:08 +0000657 /*
658 * Copy the packet data from the NetTxPacket into the
659 * NetArpWaitTxPacket to send after arp
660 */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000661 memcpy(pkt + IP_UDP_HDR_SIZE, (uchar *)NetTxPacket +
Joe Hershberger92146372012-05-23 07:59:08 +0000662 pkt_hdr_size, payload_len);
wdenk73a8b272003-06-05 19:27:42 +0000663
664 /* size of the waiting packet */
Joe Hershberger92146372012-05-23 07:59:08 +0000665 NetArpWaitTxPacketSize = pkt_hdr_size + payload_len;
wdenk73a8b272003-06-05 19:27:42 +0000666
667 /* and do the ARP request */
668 NetArpWaitTry = 1;
669 NetArpWaitTimerStart = get_timer(0);
670 ArpRequest();
671 return 1; /* waiting */
Joe Hershberger92146372012-05-23 07:59:08 +0000672 } else {
673 debug("sending UDP to %pI4/%pM\n", &dest, ether);
Joe Hershbergeradf5d932012-05-23 07:59:13 +0000674 NetSendPacket(NetTxPacket, pkt_hdr_size + payload_len);
Joe Hershberger92146372012-05-23 07:59:08 +0000675 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000676 }
wdenk73a8b272003-06-05 19:27:42 +0000677}
678
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200679#ifdef CONFIG_IP_DEFRAG
680/*
681 * This function collects fragments in a single packet, according
682 * to the algorithm in RFC815. It returns NULL or the pointer to
683 * a complete packet, in static storage
684 */
685#ifndef CONFIG_NET_MAXDEFRAG
686#define CONFIG_NET_MAXDEFRAG 16384
687#endif
688/*
689 * MAXDEFRAG, above, is chosen in the config file and is real data
690 * so we need to add the NFS overhead, which is more than TFTP.
691 * To use sizeof in the internal unnamed structures, we need a real
692 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
693 * The compiler doesn't complain nor allocates the actual structure
694 */
695static struct rpc_t rpc_specimen;
696#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
697
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000698#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200699
700/*
701 * this is the packet being assembled, either data or frag control.
702 * Fragments go by 8 bytes, so this union must be 8 bytes long
703 */
704struct hole {
705 /* first_byte is address of this structure */
706 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
707 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
708 u16 prev_hole; /* index of prev, 0 == none */
709 u16 unused;
710};
711
Joe Hershberger594c26f2012-05-23 07:58:04 +0000712static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200713{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000714 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200715 static u16 first_hole, total_len;
716 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000717 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200718 uchar *indata = (uchar *)ip;
719 int offset8, start, len, done = 0;
720 u16 ip_off = ntohs(ip->ip_off);
721
722 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000723 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200724 offset8 = (ip_off & IP_OFFS);
725 thisfrag = payload + offset8;
726 start = offset8 * 8;
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000727 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200728
729 if (start + len > IP_MAXUDP) /* fragment extends too far */
730 return NULL;
731
732 if (!total_len || localip->ip_id != ip->ip_id) {
733 /* new (or different) packet, reset structs */
734 total_len = 0xffff;
735 payload[0].last_byte = ~0;
736 payload[0].next_hole = 0;
737 payload[0].prev_hole = 0;
738 first_hole = 0;
739 /* any IP header will work, copy the first we received */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000740 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200741 }
742
743 /*
744 * What follows is the reassembly algorithm. We use the payload
745 * array as a linked list of hole descriptors, as each hole starts
746 * at a multiple of 8 bytes. However, last byte can be whatever value,
747 * so it is represented as byte count, not as 8-byte blocks.
748 */
749
750 h = payload + first_hole;
751 while (h->last_byte < start) {
752 if (!h->next_hole) {
753 /* no hole that far away */
754 return NULL;
755 }
756 h = payload + h->next_hole;
757 }
758
Fillod Stephanee397e592010-06-11 19:26:43 +0200759 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
760 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200761 /* no overlap with holes (dup fragment?) */
762 return NULL;
763 }
764
765 if (!(ip_off & IP_FLAGS_MFRAG)) {
766 /* no more fragmentss: truncate this (last) hole */
767 total_len = start + len;
768 h->last_byte = start + len;
769 }
770
771 /*
772 * There is some overlap: fix the hole list. This code doesn't
773 * deal with a fragment that overlaps with two different holes
774 * (thus being a superset of a previously-received fragment).
775 */
776
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000777 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200778 /* complete overlap with hole: remove hole */
779 if (!h->prev_hole && !h->next_hole) {
780 /* last remaining hole */
781 done = 1;
782 } else if (!h->prev_hole) {
783 /* first hole */
784 first_hole = h->next_hole;
785 payload[h->next_hole].prev_hole = 0;
786 } else if (!h->next_hole) {
787 /* last hole */
788 payload[h->prev_hole].next_hole = 0;
789 } else {
790 /* in the middle of the list */
791 payload[h->next_hole].prev_hole = h->prev_hole;
792 payload[h->prev_hole].next_hole = h->next_hole;
793 }
794
795 } else if (h->last_byte <= start + len) {
796 /* overlaps with final part of the hole: shorten this hole */
797 h->last_byte = start;
798
799 } else if (h >= thisfrag) {
800 /* overlaps with initial part of the hole: move this hole */
801 newh = thisfrag + (len / 8);
802 *newh = *h;
803 h = newh;
804 if (h->next_hole)
805 payload[h->next_hole].prev_hole = (h - payload);
806 if (h->prev_hole)
807 payload[h->prev_hole].next_hole = (h - payload);
808 else
809 first_hole = (h - payload);
810
811 } else {
812 /* fragment sits in the middle: split the hole */
813 newh = thisfrag + (len / 8);
814 *newh = *h;
815 h->last_byte = start;
816 h->next_hole = (newh - payload);
817 newh->prev_hole = (h - payload);
818 if (newh->next_hole)
819 payload[newh->next_hole].prev_hole = (newh - payload);
820 }
821
822 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000823 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200824 if (!done)
825 return NULL;
826
827 localip->ip_len = htons(total_len);
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000828 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200829 return localip;
830}
831
Joe Hershberger594c26f2012-05-23 07:58:04 +0000832static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200833{
834 u16 ip_off = ntohs(ip->ip_off);
835 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
836 return ip; /* not a fragment */
837 return __NetDefragment(ip, lenp);
838}
839
840#else /* !CONFIG_IP_DEFRAG */
841
Joe Hershberger594c26f2012-05-23 07:58:04 +0000842static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200843{
844 u16 ip_off = ntohs(ip->ip_off);
845 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
846 return ip; /* not a fragment */
847 return NULL;
848}
849#endif
wdenka3d991b2004-04-15 21:48:45 +0000850
Simon Glass8f79bb12011-10-24 18:00:00 +0000851/**
852 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
853 * drop others.
854 *
855 * @parma ip IP packet containing the ICMP
856 */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000857static void receive_icmp(struct ip_udp_hdr *ip, int len,
Joe Hershbergercb487f52012-05-23 07:58:06 +0000858 IPaddr_t src_ip, struct ethernet_hdr *et)
Simon Glass8f79bb12011-10-24 18:00:00 +0000859{
Joe Hershbergere0a63072012-05-23 07:58:09 +0000860 struct icmp_hdr *icmph = (struct icmp_hdr *)&ip->udp_src;
Simon Glass8f79bb12011-10-24 18:00:00 +0000861
862 switch (icmph->type) {
863 case ICMP_REDIRECT:
864 if (icmph->code != ICMP_REDIR_HOST)
865 return;
866 printf(" ICMP Host Redirect to %pI4 ",
867 &icmph->un.gateway);
868 break;
Simon Glass8f79bb12011-10-24 18:00:00 +0000869 default:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000870#if defined(CONFIG_CMD_PING)
871 ping_receive(et, ip, len);
872#endif
Simon Glass39bccd22011-10-26 14:18:38 +0000873#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000874 if (packet_icmp_handler)
875 packet_icmp_handler(icmph->type, icmph->code,
876 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
877 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +0000878#endif
Simon Glass8f79bb12011-10-24 18:00:00 +0000879 break;
880 }
881}
882
wdenk2d966952002-10-31 22:12:35 +0000883void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000884NetReceive(uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000885{
Joe Hershbergercb487f52012-05-23 07:58:06 +0000886 struct ethernet_hdr *et;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000887 struct ip_udp_hdr *ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000888 IPaddr_t dst_ip;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000889 IPaddr_t src_ip;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000890 int eth_proto;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500891#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000892 int iscdp;
893#endif
894 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000895
Robin Getz0ebf04c2009-07-23 03:01:03 -0400896 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000897
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400898 NetRxPacket = inpkt;
899 NetRxPacketLen = len;
Joe Hershbergercb487f52012-05-23 07:58:06 +0000900 et = (struct ethernet_hdr *)inpkt;
wdenka3d991b2004-04-15 21:48:45 +0000901
902 /* too small packet? */
903 if (len < ETHER_HDR_SIZE)
904 return;
905
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100906#ifdef CONFIG_API
907 if (push_packet) {
908 (*push_packet)(inpkt, len);
909 return;
910 }
911#endif
912
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500913#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000914 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +0000915 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +0000916#endif
917
918 myvlanid = ntohs(NetOurVLAN);
919 if (myvlanid == (ushort)-1)
920 myvlanid = VLAN_NONE;
921 mynvlanid = ntohs(NetOurNativeVLAN);
922 if (mynvlanid == (ushort)-1)
923 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +0000924
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000925 eth_proto = ntohs(et->et_protlen);
wdenk2d966952002-10-31 22:12:35 +0000926
Robin Getz0ebf04c2009-07-23 03:01:03 -0400927 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000928
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000929 if (eth_proto < 1514) {
Joe Hershbergercb487f52012-05-23 07:58:06 +0000930 struct e802_hdr *et802 = (struct e802_hdr *)et;
wdenk2d966952002-10-31 22:12:35 +0000931 /*
Joe Hershbergerda5ebe22012-05-23 07:58:11 +0000932 * Got a 802.2 packet. Check the other protocol field.
933 * XXX VLAN over 802.2+SNAP not implemented!
wdenk2d966952002-10-31 22:12:35 +0000934 */
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000935 eth_proto = ntohs(et802->et_prot);
wdenka3d991b2004-04-15 21:48:45 +0000936
Joe Hershberger594c26f2012-05-23 07:58:04 +0000937 ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000938 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000939
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000940 } else if (eth_proto != PROT_VLAN) { /* normal packet */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000941 ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000942 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000943
944 } else { /* VLAN packet */
Joe Hershbergerc68cca32012-05-23 07:58:07 +0000945 struct vlan_ethernet_hdr *vet =
946 (struct vlan_ethernet_hdr *)et;
wdenka3d991b2004-04-15 21:48:45 +0000947
Robin Getz0ebf04c2009-07-23 03:01:03 -0400948 debug("VLAN packet received\n");
949
wdenka3d991b2004-04-15 21:48:45 +0000950 /* too small packet? */
951 if (len < VLAN_ETHER_HDR_SIZE)
952 return;
953
954 /* if no VLAN active */
955 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500956#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000957 && iscdp == 0
958#endif
959 )
960 return;
961
962 cti = ntohs(vet->vet_tag);
963 vlanid = cti & VLAN_IDMASK;
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000964 eth_proto = ntohs(vet->vet_type);
wdenka3d991b2004-04-15 21:48:45 +0000965
Joe Hershberger594c26f2012-05-23 07:58:04 +0000966 ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE);
wdenka3d991b2004-04-15 21:48:45 +0000967 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +0000968 }
969
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000970 debug("Receive from protocol 0x%x\n", eth_proto);
wdenk2d966952002-10-31 22:12:35 +0000971
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500972#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000973 if (iscdp) {
Joe Hershberger0b4c5ff2012-05-23 07:58:13 +0000974 cdp_receive((uchar *)ip, len);
wdenka3d991b2004-04-15 21:48:45 +0000975 return;
976 }
977#endif
978
979 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
980 if (vlanid == VLAN_NONE)
981 vlanid = (mynvlanid & VLAN_IDMASK);
982 /* not matched? */
983 if (vlanid != (myvlanid & VLAN_IDMASK))
984 return;
985 }
986
Joe Hershberger8d353eb2012-05-23 07:58:12 +0000987 switch (eth_proto) {
wdenk2d966952002-10-31 22:12:35 +0000988
989 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000990 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +0000991 break;
wdenk2d966952002-10-31 22:12:35 +0000992
Peter Tyserbf6cb242010-09-30 11:25:48 -0500993#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +0000994 case PROT_RARP:
Joe Hershberger8b9c5322012-05-23 07:58:03 +0000995 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +0000996 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500997#endif
wdenk2d966952002-10-31 22:12:35 +0000998 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -0400999 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001000 /* Before we start poking the header, make sure it is there */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001001 if (len < IP_UDP_HDR_SIZE) {
1002 debug("len bad %d < %lu\n", len,
1003 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001004 return;
1005 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001006 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +00001007 if (len < ntohs(ip->ip_len)) {
1008 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
1009 return;
1010 }
1011 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -04001012 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1013
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001014 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001015 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001016 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001017 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001018 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001019 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001020 /* Check the Checksum of the header */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +00001021 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001022 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001023 return;
1024 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001025 /* If it is not for us, ignore it */
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001026 dst_ip = NetReadIP(&ip->ip_dst);
1027 if (NetOurIP && dst_ip != NetOurIP && dst_ip != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001028#ifdef CONFIG_MCAST_TFTP
Joe Hershberger8d353eb2012-05-23 07:58:12 +00001029 if (Mcast_addr != dst_ip)
David Updegraff53a5c422007-06-11 10:41:07 -05001030#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001031 return;
wdenk2d966952002-10-31 22:12:35 +00001032 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001033 /* Read source IP address for later use */
1034 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001035 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001036 * The function returns the unchanged packet if it's not
1037 * a fragment, and either the complete packet or NULL if
1038 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1039 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001040 ip = NetDefragment(ip, &len);
1041 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001042 return;
1043 /*
wdenk2d966952002-10-31 22:12:35 +00001044 * watch for ICMP host redirects
1045 *
wdenk8bde7f72003-06-27 21:31:46 +00001046 * There is no real handler code (yet). We just watch
1047 * for ICMP host redirect messages. In case anybody
1048 * sees these messages: please contact me
1049 * (wd@denx.de), or - even better - send me the
1050 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001051 *
wdenk8bde7f72003-06-27 21:31:46 +00001052 * Note: in all cases where I have seen this so far
1053 * it was a problem with the router configuration,
1054 * for instance when a router was configured in the
1055 * BOOTP reply, but the TFTP server was on the same
1056 * subnet. So this is probably a warning that your
1057 * configuration might be wrong. But I'm not really
1058 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001059 *
1060 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1061 * we send a tftp packet to a dead connection, or when
1062 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001063 */
1064 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001065 receive_icmp(ip, len, src_ip, et);
1066 return;
wdenk2d966952002-10-31 22:12:35 +00001067 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1068 return;
1069 }
1070
Stefan Roese8534bf92005-08-12 20:06:52 +02001071#ifdef CONFIG_UDP_CHECKSUM
1072 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001073 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001074 ushort *sumptr;
1075 ushort sumlen;
1076
1077 xsum = ip->ip_p;
1078 xsum += (ntohs(ip->udp_len));
1079 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1080 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1081 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1082 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1083
1084 sumlen = ntohs(ip->udp_len);
1085 sumptr = (ushort *) &(ip->udp_src);
1086
1087 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001088 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001089
1090 sumdata = *sumptr++;
1091 xsum += ntohs(sumdata);
1092 sumlen -= 2;
1093 }
1094 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001095 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001096
1097 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001098 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001099 xsum += sumdata;
1100 }
1101 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001102 xsum = (xsum & 0x0000ffff) +
1103 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001104 }
1105 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001106 printf(" UDP wrong checksum %08lx %08x\n",
1107 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001108 return;
1109 }
1110 }
1111#endif
1112
David Updegraff53a5c422007-06-11 10:41:07 -05001113
wdenk68ceb292004-08-02 21:11:11 +00001114#ifdef CONFIG_NETCONSOLE
Joe Hershberger594c26f2012-05-23 07:58:04 +00001115 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1116 ntohs(ip->udp_dst),
1117 ntohs(ip->udp_src),
1118 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk68ceb292004-08-02 21:11:11 +00001119#endif
wdenk2d966952002-10-31 22:12:35 +00001120 /*
1121 * IP header OK. Pass the packet to the current handler.
1122 */
Joe Hershbergerece223b2012-05-23 07:59:15 +00001123 (*udp_packet_handler)((uchar *)ip + IP_UDP_HDR_SIZE,
1124 ntohs(ip->udp_dst),
1125 src_ip,
1126 ntohs(ip->udp_src),
1127 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001128 break;
1129 }
1130}
1131
1132
1133/**********************************************************************/
1134
Simon Glasse4bf0c52011-10-24 18:00:02 +00001135static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001136{
1137 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001138 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001139#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001140 case PING:
wdenk6e592382004-04-18 17:39:38 +00001141 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001142 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001143 return 1;
wdenk6e592382004-04-18 17:39:38 +00001144 }
1145 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001146#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001147#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001148 case SNTP:
1149 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001150 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001151 return 1;
wdenkea287de2005-04-01 00:25:43 +00001152 }
1153 goto common;
1154#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001155#if defined(CONFIG_CMD_DNS)
1156 case DNS:
1157 if (NetOurDNSIP == 0) {
1158 puts("*** ERROR: DNS server address not given\n");
1159 return 1;
1160 }
1161 goto common;
1162#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001163#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001164 case NFS:
1165#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001166 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001167 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001168 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001169 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001170 return 1;
wdenk6e592382004-04-18 17:39:38 +00001171 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001172#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1173 defined(CONFIG_CMD_DNS)
1174common:
wdenk73a8b272003-06-05 19:27:42 +00001175#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001176 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001177
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001178 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001179 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001180 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001181 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001182 return 1;
wdenk6e592382004-04-18 17:39:38 +00001183 }
1184 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001185
Peter Tyserbf6cb242010-09-30 11:25:48 -05001186#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001187 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001188#endif
wdenk2d966952002-10-31 22:12:35 +00001189 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001190 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001191 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001192 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001193 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001194
wdenk6e592382004-04-18 17:39:38 +00001195 switch (num) {
1196 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001197 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001198 return 1;
wdenk6e592382004-04-18 17:39:38 +00001199 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001200 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001201 break;
wdenk6e592382004-04-18 17:39:38 +00001202 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001203 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001204 num);
1205 break;
wdenk2d966952002-10-31 22:12:35 +00001206 }
wdenk6e592382004-04-18 17:39:38 +00001207
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001208 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001209 return 2;
wdenk6e592382004-04-18 17:39:38 +00001210 }
1211 /* Fall through */
1212 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001213 return 0;
wdenk2d966952002-10-31 22:12:35 +00001214 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001215 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001216}
1217/**********************************************************************/
1218
1219int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001220NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001221{
1222 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1223}
1224
1225
1226unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001227NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001228{
1229 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001230 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001231
1232 xsum = 0;
1233 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001234 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001235 xsum = (xsum & 0xffff) + (xsum >> 16);
1236 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001237 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001238}
1239
wdenka3d991b2004-04-15 21:48:45 +00001240int
1241NetEthHdrSize(void)
1242{
1243 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001244
wdenka3d991b2004-04-15 21:48:45 +00001245 myvlanid = ntohs(NetOurVLAN);
1246 if (myvlanid == (ushort)-1)
1247 myvlanid = VLAN_NONE;
1248
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001249 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1250 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001251}
1252
1253int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001254NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001255{
Joe Hershbergercb487f52012-05-23 07:58:06 +00001256 struct ethernet_hdr *et = (struct ethernet_hdr *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001257 ushort myvlanid;
1258
1259 myvlanid = ntohs(NetOurVLAN);
1260 if (myvlanid == (ushort)-1)
1261 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001262
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001263 memcpy(et->et_dest, addr, 6);
1264 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001265 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001266 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001267 return ETHER_HDR_SIZE;
1268 } else {
Joe Hershbergerc68cca32012-05-23 07:58:07 +00001269 struct vlan_ethernet_hdr *vet =
1270 (struct vlan_ethernet_hdr *)xet;
wdenk2d966952002-10-31 22:12:35 +00001271
wdenka3d991b2004-04-15 21:48:45 +00001272 vet->vet_vlan_type = htons(PROT_VLAN);
1273 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1274 vet->vet_type = htons(prot);
1275 return VLAN_ETHER_HDR_SIZE;
1276 }
1277}
wdenk2d966952002-10-31 22:12:35 +00001278
Joe Hershbergere7111012012-05-23 07:59:16 +00001279int net_update_ether(struct ethernet_hdr *et, uchar *addr, uint prot)
1280{
1281 ushort protlen;
1282
1283 memcpy(et->et_dest, addr, 6);
1284 memcpy(et->et_src, NetOurEther, 6);
1285 protlen = ntohs(et->et_protlen);
1286 if (protlen == PROT_VLAN) {
1287 struct vlan_ethernet_hdr *vet =
1288 (struct vlan_ethernet_hdr *)et;
1289 vet->vet_type = htons(prot);
1290 return VLAN_ETHER_HDR_SIZE;
1291 } else if (protlen > 1514) {
1292 et->et_protlen = htons(prot);
1293 return ETHER_HDR_SIZE;
1294 } else {
1295 /* 802.2 + SNAP */
1296 struct e802_hdr *et802 = (struct e802_hdr *)et;
1297 et802->et_prot = htons(prot);
1298 return E802_HDR_SIZE;
1299 }
1300}
1301
Joe Hershberger4b11c912012-05-23 07:59:07 +00001302void net_set_ip_header(uchar *pkt, IPaddr_t dest, IPaddr_t source)
wdenk2d966952002-10-31 22:12:35 +00001303{
Joe Hershberger4b11c912012-05-23 07:59:07 +00001304 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
1305
1306 /*
1307 * Construct an IP header.
1308 */
1309 /* IP_HDR_SIZE / 4 (not including UDP) */
1310 ip->ip_hl_v = 0x45;
1311 ip->ip_tos = 0;
1312 ip->ip_len = htons(IP_HDR_SIZE);
1313 ip->ip_id = htons(NetIPID++);
1314 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
1315 ip->ip_ttl = 255;
1316 ip->ip_sum = 0;
1317 /* already in network byte order */
1318 NetCopyIP((void *)&ip->ip_src, &source);
1319 /* already in network byte order */
1320 NetCopyIP((void *)&ip->ip_dst, &dest);
1321}
1322
1323void net_set_udp_header(uchar *pkt, IPaddr_t dest, int dport, int sport,
1324 int len)
1325{
1326 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)pkt;
wdenk2d966952002-10-31 22:12:35 +00001327
1328 /*
1329 * If the data is an odd number of bytes, zero the
1330 * byte after the last byte so that the checksum
1331 * will work.
1332 */
1333 if (len & 1)
Joe Hershberger4b11c912012-05-23 07:59:07 +00001334 pkt[IP_UDP_HDR_SIZE + len] = 0;
wdenk2d966952002-10-31 22:12:35 +00001335
Joe Hershberger4b11c912012-05-23 07:59:07 +00001336 net_set_ip_header(pkt, dest, NetOurIP);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001337 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
Joe Hershberger4b11c912012-05-23 07:59:07 +00001338 ip->ip_p = IPPROTO_UDP;
1339 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE >> 1);
1340
wdenk2d966952002-10-31 22:12:35 +00001341 ip->udp_src = htons(sport);
1342 ip->udp_dst = htons(dport);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001343 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001344 ip->udp_xsum = 0;
wdenk2d966952002-10-31 22:12:35 +00001345}
1346
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001347void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001348{
1349 if (*src && (*src == '"')) {
1350 ++src;
1351 --size;
1352 }
1353
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001354 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001355 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001356 *dst = '\0';
1357}
1358
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001359#if defined(CONFIG_CMD_NFS) || \
1360 defined(CONFIG_CMD_SNTP) || \
1361 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001362/*
Robin Getz97399462010-03-08 14:07:00 -05001363 * make port a little random (1024-17407)
1364 * This keeps the math somewhat trivial to compute, and seems to work with
1365 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001366 */
1367unsigned int random_port(void)
1368{
Robin Getz97399462010-03-08 14:07:00 -05001369 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001370}
1371#endif
1372
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001373void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001374{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001375 x = ntohl(x);
1376 sprintf(s, "%d.%d.%d.%d",
1377 (int) ((x >> 24) & 0xff),
1378 (int) ((x >> 16) & 0xff),
1379 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001380 );
wdenk2d966952002-10-31 22:12:35 +00001381}
1382
wdenka3d991b2004-04-15 21:48:45 +00001383void VLAN_to_string(ushort x, char *s)
1384{
1385 x = ntohs(x);
1386
1387 if (x == (ushort)-1)
1388 x = VLAN_NONE;
1389
1390 if (x == VLAN_NONE)
1391 strcpy(s, "none");
1392 else
1393 sprintf(s, "%d", x & VLAN_IDMASK);
1394}
1395
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001396ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001397{
1398 ushort id;
1399
1400 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001401 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001402
1403 if (*s < '0' || *s > '9')
1404 id = VLAN_NONE;
1405 else
1406 id = (ushort)simple_strtoul(s, NULL, 10);
1407
wdenkb9711de2004-04-25 13:18:40 +00001408 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001409}
1410
wdenka3d991b2004-04-15 21:48:45 +00001411ushort getenv_VLAN(char *var)
1412{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001413 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001414}