blob: b4884906077af1c1da96448cd56c015cd7144d8b [file] [log] [blame]
wdenk2d966952002-10-31 22:12:35 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
9 */
10
11/*
12 * General Desription:
13 *
14 * The user interface supports commands for BOOTP, RARP, and TFTP.
15 * Also, we support ARP internally. Depending on available data,
16 * these interact as follows:
17 *
18 * BOOTP:
19 *
20 * Prerequisites: - own ethernet address
21 * We want: - own IP address
22 * - TFTP server IP address
23 * - name of bootfile
24 * Next step: ARP
25 *
26 * RARP:
27 *
28 * Prerequisites: - own ethernet address
29 * We want: - own IP address
30 * - TFTP server IP address
31 * Next step: ARP
32 *
33 * ARP:
34 *
35 * Prerequisites: - own ethernet address
36 * - own IP address
37 * - TFTP server IP address
38 * We want: - TFTP server ethernet address
39 * Next step: TFTP
40 *
41 * DHCP:
42 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020043 * Prerequisites: - own ethernet address
44 * We want: - IP, Netmask, ServerIP, Gateway IP
45 * - bootfilename, lease time
46 * Next step: - TFTP
wdenk2d966952002-10-31 22:12:35 +000047 *
48 * TFTP:
49 *
50 * Prerequisites: - own ethernet address
51 * - own IP address
52 * - TFTP server IP address
53 * - TFTP server ethernet address
54 * - name of bootfile (if unknown, we use a default name
55 * derived from our own IP address)
56 * We want: - load the boot file
57 * Next step: none
wdenkcbd8a352004-02-24 02:00:03 +000058 *
59 * NFS:
60 *
61 * Prerequisites: - own ethernet address
62 * - own IP address
63 * - name of bootfile (if unknown, we use a default name
64 * derived from our own IP address)
65 * We want: - load the boot file
66 * Next step: none
wdenkea287de2005-04-01 00:25:43 +000067 *
68 * SNTP:
69 *
Wolfgang Denkb2f50802005-08-12 23:43:12 +020070 * Prerequisites: - own ethernet address
wdenkea287de2005-04-01 00:25:43 +000071 * - own IP address
72 * We want: - network time
73 * Next step: none
wdenk2d966952002-10-31 22:12:35 +000074 */
75
76
77#include <common.h>
78#include <watchdog.h>
79#include <command.h>
Joe Hershberger48522bb2012-05-15 08:59:08 +000080#include <linux/compiler.h>
wdenk2d966952002-10-31 22:12:35 +000081#include <net.h>
Joe Hershbergerd280d3f2012-05-23 07:58:01 +000082#include "arp.h"
wdenk2d966952002-10-31 22:12:35 +000083#include "bootp.h"
84#include "tftp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050085#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +000086#include "rarp.h"
Peter Tyserbf6cb242010-09-30 11:25:48 -050087#endif
wdenkcbd8a352004-02-24 02:00:03 +000088#include "nfs.h"
wdenkfc3e2162003-10-08 22:33:00 +000089#ifdef CONFIG_STATUS_LED
90#include <status_led.h>
91#include <miiphy.h>
92#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -050093#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +000094#include "sntp.h"
95#endif
Joe Hershbergerf575ae12012-05-23 07:57:59 +000096#include "cdp.h"
Robin Getz1a32bf42009-07-20 14:53:54 -040097#if defined(CONFIG_CMD_DNS)
98#include "dns.h"
99#endif
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000100#include "ping.h"
wdenk2d966952002-10-31 22:12:35 +0000101
Wolfgang Denkd87080b2006-03-31 18:32:53 +0200102DECLARE_GLOBAL_DATA_PTR;
103
wdenk2d966952002-10-31 22:12:35 +0000104/** BOOTP EXTENTIONS **/
105
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000106/* Our subnet mask (0=unknown) */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000107IPaddr_t NetOurSubnetMask;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000108/* Our gateways IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000109IPaddr_t NetOurGatewayIP;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000110/* Our DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000111IPaddr_t NetOurDNSIP;
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500112#if defined(CONFIG_BOOTP_DNS2)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000113/* Our 2nd DNS IP address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000114IPaddr_t NetOurDNS2IP;
stroesefe389a82003-08-28 14:17:32 +0000115#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000116/* Our NIS domain */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000117char NetOurNISDomain[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000118/* Our hostname */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000119char NetOurHostName[32] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000120/* Our bootpath */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000121char NetOurRootPath[64] = {0,};
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000122/* Our bootfile size in blocks */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000123ushort NetBootFileSize;
wdenk2d966952002-10-31 22:12:35 +0000124
David Updegraff53a5c422007-06-11 10:41:07 -0500125#ifdef CONFIG_MCAST_TFTP /* Multicast TFTP */
126IPaddr_t Mcast_addr;
127#endif
128
wdenk2d966952002-10-31 22:12:35 +0000129/** END OF BOOTP EXTENTIONS **/
130
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000131/* The actual transferred size of the bootfile (in bytes) */
132ulong NetBootFileXferSize;
133/* Our ethernet address */
134uchar NetOurEther[6];
135/* Boot server enet address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000136uchar NetServerEther[6];
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000137/* Our IP addr (0 = unknown) */
138IPaddr_t NetOurIP;
139/* Server IP addr (0 = unknown) */
140IPaddr_t NetServerIP;
141/* Current receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000142uchar *NetRxPacket;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000143/* Current rx packet length */
144int NetRxPacketLen;
145/* IP packet ID */
146unsigned NetIPID;
147/* Ethernet bcast address */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000148uchar NetBcastAddr[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
149uchar NetEtherNullAddr[6];
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100150#ifdef CONFIG_API
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000151void (*push_packet)(void *, int len) = 0;
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100152#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000153/* Network loop state */
154int NetState;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000155/* Tried all network devices */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000156int NetRestartWrap;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000157/* Network loop restarted */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000158static int NetRestarted;
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000159/* At least one device configured */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000160static int NetDevExists;
wdenk2d966952002-10-31 22:12:35 +0000161
wdenk6e592382004-04-18 17:39:38 +0000162/* XXX in both little & big endian machines 0xFFFF == ntohs(-1) */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000163/* default is without VLAN */
164ushort NetOurVLAN = 0xFFFF;
165/* ditto */
166ushort NetOurNativeVLAN = 0xFFFF;
wdenka3d991b2004-04-15 21:48:45 +0000167
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000168/* Boot File name */
169char BootFile[128];
wdenk2d966952002-10-31 22:12:35 +0000170
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500171#if defined(CONFIG_CMD_SNTP)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000172/* NTP server IP address */
173IPaddr_t NetNtpServerIP;
174/* offset time from UTC */
Luca Ceresolic586ce62011-05-11 03:59:55 +0000175int NetTimeOffset;
wdenkea287de2005-04-01 00:25:43 +0000176#endif
177
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000178uchar PktBuf[(PKTBUFSRX+1) * PKTSIZE_ALIGN + PKTALIGN];
wdenk2d966952002-10-31 22:12:35 +0000179
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000180/* Receive packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000181uchar *NetRxPackets[PKTBUFSRX];
wdenk2d966952002-10-31 22:12:35 +0000182
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000183/* Current RX packet handler */
184static rxhand_f *packetHandler;
Simon Glass39bccd22011-10-26 14:18:38 +0000185#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000186static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Simon Glass39bccd22011-10-26 14:18:38 +0000187#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000188/* Current timeout handler */
189static thand_f *timeHandler;
190/* Time base value */
191static ulong timeStart;
192/* Current timeout value */
193static ulong timeDelta;
194/* THE transmit packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000195uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000196
Simon Glasse4bf0c52011-10-24 18:00:02 +0000197static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000198
Remy Bohmer67b96e82009-10-28 22:13:39 +0100199static int NetTryCount;
200
wdenk2d966952002-10-31 22:12:35 +0000201/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000202
Simon Glasse4a3d572011-10-27 06:24:32 +0000203/*
204 * Check if autoload is enabled. If so, use either NFS or TFTP to download
205 * the boot file.
206 */
207void net_auto_load(void)
208{
209 const char *s = getenv("autoload");
210
211 if (s != NULL) {
212 if (*s == 'n') {
213 /*
214 * Just use BOOTP/RARP to configure system;
215 * Do not use TFTP to load the bootfile.
216 */
217 NetState = NETLOOP_SUCCESS;
218 return;
219 }
220#if defined(CONFIG_CMD_NFS)
221 if (strcmp(s, "NFS") == 0) {
222 /*
223 * Use NFS to load the bootfile.
224 */
225 NfsStart();
226 return;
227 }
228#endif
229 }
230 TftpStart(TFTPGET);
231}
232
Simon Glasse4bf0c52011-10-24 18:00:02 +0000233static void NetInitLoop(enum proto_t protocol)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100234{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000235 static int env_changed_id;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000236 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100237
238 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300239 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000240 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000241 NetOurGatewayIP = getenv_IPaddr("gatewayip");
242 NetOurSubnetMask = getenv_IPaddr("netmask");
243 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100244 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300245 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400246#if defined(CONFIG_CMD_DNS)
247 NetOurDNSIP = getenv_IPaddr("dnsip");
248#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300249 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100250 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300251
Heiko Schocherda954272009-04-28 08:36:11 +0200252 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100253}
254
wdenk73a8b272003-06-05 19:27:42 +0000255/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000256/*
257 * Main network processing loop.
258 */
259
Simon Glasse4bf0c52011-10-24 18:00:02 +0000260int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000261{
wdenk2d966952002-10-31 22:12:35 +0000262 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000263 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000264
wdenk2d966952002-10-31 22:12:35 +0000265 NetRestarted = 0;
266 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000267
wdenk73a8b272003-06-05 19:27:42 +0000268 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100269 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000270
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000271 ArpInit();
272
wdenk2d966952002-10-31 22:12:35 +0000273 if (!NetTxPacket) {
274 int i;
wdenk2d966952002-10-31 22:12:35 +0000275 /*
276 * Setup packet buffers, aligned correctly.
277 */
278 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
279 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000280 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000281 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000282 }
283
Simon Glass573f14f2011-12-10 11:08:06 +0000284 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
wdenk2d966952002-10-31 22:12:35 +0000285 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000286 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000287 if (eth_init(bd) < 0) {
288 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000289 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000290 }
wdenk2d966952002-10-31 22:12:35 +0000291
292restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000293 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000294
295 NetState = NETLOOP_CONTINUE;
296
297 /*
298 * Start the ball rolling with the given start function. From
299 * here on, this code is a state machine driven by received
300 * packets and timer events.
301 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100302 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000303
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000304 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000305 case 1:
306 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000307 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000308 return -1;
wdenk2d966952002-10-31 22:12:35 +0000309
wdenk2d966952002-10-31 22:12:35 +0000310 case 2:
311 /* network device not configured */
312 break;
wdenk2d966952002-10-31 22:12:35 +0000313
314 case 0:
wdenk2d966952002-10-31 22:12:35 +0000315 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000316 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000317 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000318 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000319#ifdef CONFIG_CMD_TFTPPUT
320 case TFTPPUT:
321#endif
wdenk2d966952002-10-31 22:12:35 +0000322 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000323 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000324 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000325#ifdef CONFIG_CMD_TFTPSRV
326 case TFTPSRV:
327 TftpStartServer();
328 break;
329#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500330#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000331 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000332 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300333 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000334 DhcpRequest(); /* Basically same as BOOTP */
335 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500336#endif
wdenk2d966952002-10-31 22:12:35 +0000337
338 case BOOTP:
339 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300340 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000341 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000342 break;
343
Peter Tyserbf6cb242010-09-30 11:25:48 -0500344#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000345 case RARP:
346 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300347 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000348 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000349 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500350#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500351#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000352 case PING:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000353 ping_start();
wdenk73a8b272003-06-05 19:27:42 +0000354 break;
355#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500356#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000357 case NFS:
358 NfsStart();
359 break;
360#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500361#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000362 case CDP:
363 CDPStart();
364 break;
365#endif
wdenk68ceb292004-08-02 21:11:11 +0000366#ifdef CONFIG_NETCONSOLE
367 case NETCONS:
368 NcStart();
369 break;
370#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500371#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000372 case SNTP:
373 SntpStart();
374 break;
375#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400376#if defined(CONFIG_CMD_DNS)
377 case DNS:
378 DnsStart();
379 break;
380#endif
wdenk2d966952002-10-31 22:12:35 +0000381 default:
382 break;
383 }
384
wdenk2d966952002-10-31 22:12:35 +0000385 break;
386 }
387
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500388#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000389#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
390 defined(CONFIG_STATUS_LED) && \
391 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000392 /*
wdenk42d1f032003-10-15 23:53:47 +0000393 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000394 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000395 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000396 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000397 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000398 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200399#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000400#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000401
402 /*
403 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000404 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000405 */
406 for (;;) {
407 WATCHDOG_RESET();
408#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000409 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000410#endif
411 /*
412 * Check the ethernet for a new packet. The ethernet
413 * receive routine will process it.
414 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200415 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000416
417 /*
418 * Abort if ctrl-c was pressed.
419 */
420 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000421 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000422 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000423 goto done;
wdenk2d966952002-10-31 22:12:35 +0000424 }
425
wdenk73a8b272003-06-05 19:27:42 +0000426 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000427
428 /*
429 * Check for a timeout, and run the timeout handler
430 * if we have one.
431 */
wdenke0ac62d2003-08-17 18:55:18 +0000432 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000433 thand_f *x;
434
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500435#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000436#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
437 defined(CONFIG_STATUS_LED) && \
438 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000439 /*
wdenk42d1f032003-10-15 23:53:47 +0000440 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000441 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000442 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000443 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000444 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000445 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000446 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000447 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000448#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000449#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000450 x = timeHandler;
451 timeHandler = (thand_f *)0;
452 (*x)();
453 }
454
455
456 switch (NetState) {
457
458 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000459 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000460 goto restart;
461
462 case NETLOOP_SUCCESS:
463 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200464 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000465 printf("Bytes transferred = %ld (%lx hex)\n",
466 NetBootFileXferSize,
467 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200468 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000469 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000470
471 sprintf(buf, "%lX", (unsigned long)load_addr);
472 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000473 }
474 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000475 ret = NetBootFileXferSize;
476 goto done;
wdenk2d966952002-10-31 22:12:35 +0000477
478 case NETLOOP_FAIL:
Simon Glass4793ee62011-10-24 18:00:01 +0000479 goto done;
wdenk2d966952002-10-31 22:12:35 +0000480 }
481 }
Simon Glass4793ee62011-10-24 18:00:01 +0000482
483done:
Simon Glass39bccd22011-10-26 14:18:38 +0000484#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000485 /* Clear out the handlers */
486 NetSetHandler(NULL);
487 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000488#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000489 return ret;
wdenk2d966952002-10-31 22:12:35 +0000490}
491
492/**********************************************************************/
493
494static void
495startAgainTimeout(void)
496{
497 NetState = NETLOOP_RESTART;
498}
499
500static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000501startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
502 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000503{
504 /* Totally ignore the packet */
505}
506
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000507void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000508{
wdenk6e592382004-04-18 17:39:38 +0000509 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100510 int retry_forever = 0;
511 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000512
Remy Bohmer67b96e82009-10-28 22:13:39 +0100513 nretry = getenv("netretry");
514 if (nretry) {
515 if (!strcmp(nretry, "yes"))
516 retry_forever = 1;
517 else if (!strcmp(nretry, "no"))
518 retrycnt = 0;
519 else if (!strcmp(nretry, "once"))
520 retrycnt = 1;
521 else
522 retrycnt = simple_strtoul(nretry, NULL, 0);
523 } else
524 retry_forever = 1;
525
526 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
527 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000528 NetState = NETLOOP_FAIL;
529 return;
530 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100531
532 NetTryCount++;
533
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000534 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100535#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000536 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100537#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000538 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000539 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000540 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100541 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000542 NetSetTimeout(10000UL, startAgainTimeout);
543 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000544 } else {
wdenk2d966952002-10-31 22:12:35 +0000545 NetState = NETLOOP_FAIL;
546 }
wdenk6e592382004-04-18 17:39:38 +0000547 } else {
wdenk2d966952002-10-31 22:12:35 +0000548 NetState = NETLOOP_RESTART;
549 }
wdenk2d966952002-10-31 22:12:35 +0000550}
551
552/**********************************************************************/
553/*
554 * Miscelaneous bits.
555 */
556
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000557rxhand_f *
558NetGetHandler(void)
559{
560 return packetHandler;
561}
562
563
wdenk2d966952002-10-31 22:12:35 +0000564void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000565NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000566{
567 packetHandler = f;
568}
569
Simon Glass39bccd22011-10-26 14:18:38 +0000570#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000571void net_set_icmp_handler(rxhand_icmp_f *f)
572{
573 packet_icmp_handler = f;
574}
Simon Glass39bccd22011-10-26 14:18:38 +0000575#endif
wdenk2d966952002-10-31 22:12:35 +0000576
577void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000578NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000579{
580 if (iv == 0) {
581 timeHandler = (thand_f *)0;
582 } else {
583 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000584 timeStart = get_timer(0);
585 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000586 }
587}
588
589
590void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000591NetSendPacket(uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000592{
593 (void) eth_send(pkt, len);
594}
595
wdenk73a8b272003-06-05 19:27:42 +0000596int
597NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
598{
wdenka3d991b2004-04-15 21:48:45 +0000599 uchar *pkt;
600
wdenk73a8b272003-06-05 19:27:42 +0000601 /* convert to new style broadcast */
602 if (dest == 0)
603 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000604
wdenk73a8b272003-06-05 19:27:42 +0000605 /* if broadcast, make the ether address a broadcast and don't do ARP */
606 if (dest == 0xFFFFFFFF)
607 ether = NetBcastAddr;
608
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000609 /*
610 * if MAC address was not discovered yet, save the packet and do
611 * an ARP request
612 */
wdenk73a8b272003-06-05 19:27:42 +0000613 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
614
Matthias Weisserea45cb02011-12-03 03:29:44 +0000615 debug("sending ARP for %08x\n", dest);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400616
wdenk73a8b272003-06-05 19:27:42 +0000617 NetArpWaitPacketIP = dest;
618 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000619
620 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000621 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000622
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000623 NetSetIP(pkt, dest, dport, sport, len);
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000624 memcpy(pkt + IP_HDR_SIZE, (uchar *)NetTxPacket +
625 (pkt - (uchar *)NetArpWaitTxPacket) + IP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000626
627 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000628 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
629 IP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000630
631 /* and do the ARP request */
632 NetArpWaitTry = 1;
633 NetArpWaitTimerStart = get_timer(0);
634 ArpRequest();
635 return 1; /* waiting */
636 }
637
Matthias Weisserea45cb02011-12-03 03:29:44 +0000638 debug("sending UDP to %08x/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000639
wdenka3d991b2004-04-15 21:48:45 +0000640 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000641 pkt += NetSetEther(pkt, ether, PROT_IP);
642 NetSetIP(pkt, dest, dport, sport, len);
wdenka3d991b2004-04-15 21:48:45 +0000643 (void) eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000644
wdenk6e592382004-04-18 17:39:38 +0000645 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000646}
647
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200648#ifdef CONFIG_IP_DEFRAG
649/*
650 * This function collects fragments in a single packet, according
651 * to the algorithm in RFC815. It returns NULL or the pointer to
652 * a complete packet, in static storage
653 */
654#ifndef CONFIG_NET_MAXDEFRAG
655#define CONFIG_NET_MAXDEFRAG 16384
656#endif
657/*
658 * MAXDEFRAG, above, is chosen in the config file and is real data
659 * so we need to add the NFS overhead, which is more than TFTP.
660 * To use sizeof in the internal unnamed structures, we need a real
661 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
662 * The compiler doesn't complain nor allocates the actual structure
663 */
664static struct rpc_t rpc_specimen;
665#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
666
667#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE_NO_UDP)
668
669/*
670 * this is the packet being assembled, either data or frag control.
671 * Fragments go by 8 bytes, so this union must be 8 bytes long
672 */
673struct hole {
674 /* first_byte is address of this structure */
675 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
676 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
677 u16 prev_hole; /* index of prev, 0 == none */
678 u16 unused;
679};
680
681static IP_t *__NetDefragment(IP_t *ip, int *lenp)
682{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000683 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200684 static u16 first_hole, total_len;
685 struct hole *payload, *thisfrag, *h, *newh;
686 IP_t *localip = (IP_t *)pkt_buff;
687 uchar *indata = (uchar *)ip;
688 int offset8, start, len, done = 0;
689 u16 ip_off = ntohs(ip->ip_off);
690
691 /* payload starts after IP header, this fragment is in there */
692 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE_NO_UDP);
693 offset8 = (ip_off & IP_OFFS);
694 thisfrag = payload + offset8;
695 start = offset8 * 8;
696 len = ntohs(ip->ip_len) - IP_HDR_SIZE_NO_UDP;
697
698 if (start + len > IP_MAXUDP) /* fragment extends too far */
699 return NULL;
700
701 if (!total_len || localip->ip_id != ip->ip_id) {
702 /* new (or different) packet, reset structs */
703 total_len = 0xffff;
704 payload[0].last_byte = ~0;
705 payload[0].next_hole = 0;
706 payload[0].prev_hole = 0;
707 first_hole = 0;
708 /* any IP header will work, copy the first we received */
709 memcpy(localip, ip, IP_HDR_SIZE_NO_UDP);
710 }
711
712 /*
713 * What follows is the reassembly algorithm. We use the payload
714 * array as a linked list of hole descriptors, as each hole starts
715 * at a multiple of 8 bytes. However, last byte can be whatever value,
716 * so it is represented as byte count, not as 8-byte blocks.
717 */
718
719 h = payload + first_hole;
720 while (h->last_byte < start) {
721 if (!h->next_hole) {
722 /* no hole that far away */
723 return NULL;
724 }
725 h = payload + h->next_hole;
726 }
727
Fillod Stephanee397e592010-06-11 19:26:43 +0200728 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
729 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200730 /* no overlap with holes (dup fragment?) */
731 return NULL;
732 }
733
734 if (!(ip_off & IP_FLAGS_MFRAG)) {
735 /* no more fragmentss: truncate this (last) hole */
736 total_len = start + len;
737 h->last_byte = start + len;
738 }
739
740 /*
741 * There is some overlap: fix the hole list. This code doesn't
742 * deal with a fragment that overlaps with two different holes
743 * (thus being a superset of a previously-received fragment).
744 */
745
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000746 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200747 /* complete overlap with hole: remove hole */
748 if (!h->prev_hole && !h->next_hole) {
749 /* last remaining hole */
750 done = 1;
751 } else if (!h->prev_hole) {
752 /* first hole */
753 first_hole = h->next_hole;
754 payload[h->next_hole].prev_hole = 0;
755 } else if (!h->next_hole) {
756 /* last hole */
757 payload[h->prev_hole].next_hole = 0;
758 } else {
759 /* in the middle of the list */
760 payload[h->next_hole].prev_hole = h->prev_hole;
761 payload[h->prev_hole].next_hole = h->next_hole;
762 }
763
764 } else if (h->last_byte <= start + len) {
765 /* overlaps with final part of the hole: shorten this hole */
766 h->last_byte = start;
767
768 } else if (h >= thisfrag) {
769 /* overlaps with initial part of the hole: move this hole */
770 newh = thisfrag + (len / 8);
771 *newh = *h;
772 h = newh;
773 if (h->next_hole)
774 payload[h->next_hole].prev_hole = (h - payload);
775 if (h->prev_hole)
776 payload[h->prev_hole].next_hole = (h - payload);
777 else
778 first_hole = (h - payload);
779
780 } else {
781 /* fragment sits in the middle: split the hole */
782 newh = thisfrag + (len / 8);
783 *newh = *h;
784 h->last_byte = start;
785 h->next_hole = (newh - payload);
786 newh->prev_hole = (h - payload);
787 if (newh->next_hole)
788 payload[newh->next_hole].prev_hole = (newh - payload);
789 }
790
791 /* finally copy this fragment and possibly return whole packet */
792 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE_NO_UDP, len);
793 if (!done)
794 return NULL;
795
796 localip->ip_len = htons(total_len);
797 *lenp = total_len + IP_HDR_SIZE_NO_UDP;
798 return localip;
799}
800
801static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
802{
803 u16 ip_off = ntohs(ip->ip_off);
804 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
805 return ip; /* not a fragment */
806 return __NetDefragment(ip, lenp);
807}
808
809#else /* !CONFIG_IP_DEFRAG */
810
811static inline IP_t *NetDefragment(IP_t *ip, int *lenp)
812{
813 u16 ip_off = ntohs(ip->ip_off);
814 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
815 return ip; /* not a fragment */
816 return NULL;
817}
818#endif
wdenka3d991b2004-04-15 21:48:45 +0000819
Simon Glass8f79bb12011-10-24 18:00:00 +0000820/**
821 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
822 * drop others.
823 *
824 * @parma ip IP packet containing the ICMP
825 */
826static void receive_icmp(IP_t *ip, int len, IPaddr_t src_ip, Ethernet_t *et)
827{
828 ICMP_t *icmph = (ICMP_t *)&ip->udp_src;
829
830 switch (icmph->type) {
831 case ICMP_REDIRECT:
832 if (icmph->code != ICMP_REDIR_HOST)
833 return;
834 printf(" ICMP Host Redirect to %pI4 ",
835 &icmph->un.gateway);
836 break;
Simon Glass8f79bb12011-10-24 18:00:00 +0000837 default:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000838#if defined(CONFIG_CMD_PING)
839 ping_receive(et, ip, len);
840#endif
Simon Glass39bccd22011-10-26 14:18:38 +0000841#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000842 if (packet_icmp_handler)
843 packet_icmp_handler(icmph->type, icmph->code,
844 ntohs(ip->udp_dst), src_ip, ntohs(ip->udp_src),
845 icmph->un.data, ntohs(ip->udp_len));
Simon Glass39bccd22011-10-26 14:18:38 +0000846#endif
Simon Glass8f79bb12011-10-24 18:00:00 +0000847 break;
848 }
849}
850
wdenk2d966952002-10-31 22:12:35 +0000851void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000852NetReceive(uchar *inpkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000853{
854 Ethernet_t *et;
855 IP_t *ip;
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000856#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +0000857 ARP_t *arp;
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000858#endif
wdenk2d966952002-10-31 22:12:35 +0000859 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000860 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +0000861 int x;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500862#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000863 int iscdp;
864#endif
865 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000866
Robin Getz0ebf04c2009-07-23 03:01:03 -0400867 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000868
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400869 NetRxPacket = inpkt;
870 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +0000871 et = (Ethernet_t *)inpkt;
872
873 /* too small packet? */
874 if (len < ETHER_HDR_SIZE)
875 return;
876
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100877#ifdef CONFIG_API
878 if (push_packet) {
879 (*push_packet)(inpkt, len);
880 return;
881 }
882#endif
883
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500884#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000885 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +0000886 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +0000887#endif
888
889 myvlanid = ntohs(NetOurVLAN);
890 if (myvlanid == (ushort)-1)
891 myvlanid = VLAN_NONE;
892 mynvlanid = ntohs(NetOurNativeVLAN);
893 if (mynvlanid == (ushort)-1)
894 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +0000895
896 x = ntohs(et->et_protlen);
897
Robin Getz0ebf04c2009-07-23 03:01:03 -0400898 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000899
wdenk2d966952002-10-31 22:12:35 +0000900 if (x < 1514) {
901 /*
902 * Got a 802 packet. Check the other protocol field.
903 */
904 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +0000905
906 ip = (IP_t *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000907 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000908
909 } else if (x != PROT_VLAN) { /* normal packet */
910 ip = (IP_t *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000911 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000912
913 } else { /* VLAN packet */
914 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
915
Robin Getz0ebf04c2009-07-23 03:01:03 -0400916 debug("VLAN packet received\n");
917
wdenka3d991b2004-04-15 21:48:45 +0000918 /* too small packet? */
919 if (len < VLAN_ETHER_HDR_SIZE)
920 return;
921
922 /* if no VLAN active */
923 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500924#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000925 && iscdp == 0
926#endif
927 )
928 return;
929
930 cti = ntohs(vet->vet_tag);
931 vlanid = cti & VLAN_IDMASK;
932 x = ntohs(vet->vet_type);
933
934 ip = (IP_t *)(inpkt + VLAN_ETHER_HDR_SIZE);
935 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +0000936 }
937
Robin Getz0ebf04c2009-07-23 03:01:03 -0400938 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +0000939
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500940#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000941 if (iscdp) {
942 CDPHandler((uchar *)ip, len);
943 return;
944 }
945#endif
946
947 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
948 if (vlanid == VLAN_NONE)
949 vlanid = (mynvlanid & VLAN_IDMASK);
950 /* not matched? */
951 if (vlanid != (myvlanid & VLAN_IDMASK))
952 return;
953 }
954
wdenk2d966952002-10-31 22:12:35 +0000955 switch (x) {
956
957 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000958 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +0000959 break;
wdenk2d966952002-10-31 22:12:35 +0000960
Peter Tyserbf6cb242010-09-30 11:25:48 -0500961#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +0000962 case PROT_RARP:
Robin Getz0ebf04c2009-07-23 03:01:03 -0400963 debug("Got RARP\n");
wdenk2d966952002-10-31 22:12:35 +0000964 arp = (ARP_t *)ip;
965 if (len < ARP_HDR_SIZE) {
966 printf("bad length %d < %d\n", len, ARP_HDR_SIZE);
967 return;
968 }
969
970 if ((ntohs(arp->ar_op) != RARPOP_REPLY) ||
971 (ntohs(arp->ar_hrd) != ARP_ETHER) ||
972 (ntohs(arp->ar_pro) != PROT_IP) ||
973 (arp->ar_hln != 6) || (arp->ar_pln != 4)) {
974
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000975 puts("invalid RARP header\n");
wdenk2d966952002-10-31 22:12:35 +0000976 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000977 NetCopyIP(&NetOurIP, &arp->ar_data[16]);
wdenk3d3befa2004-03-14 15:06:13 +0000978 if (NetServerIP == 0)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000979 NetCopyIP(&NetServerIP, &arp->ar_data[6]);
980 memcpy(NetServerEther, &arp->ar_data[0], 6);
wdenk2d966952002-10-31 22:12:35 +0000981
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000982 (*packetHandler)(0, 0, 0, 0, 0);
wdenk2d966952002-10-31 22:12:35 +0000983 }
984 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500985#endif
wdenk2d966952002-10-31 22:12:35 +0000986 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -0400987 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200988 /* Before we start poking the header, make sure it is there */
wdenk2d966952002-10-31 22:12:35 +0000989 if (len < IP_HDR_SIZE) {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400990 debug("len bad %d < %lu\n", len, (ulong)IP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000991 return;
992 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200993 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +0000994 if (len < ntohs(ip->ip_len)) {
995 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
996 return;
997 }
998 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400999 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
1000
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001001 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001002 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +00001003 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001004 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001005 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +02001006 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001007 /* Check the Checksum of the header */
wdenk2d966952002-10-31 22:12:35 +00001008 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001009 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +00001010 return;
1011 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001012 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +00001013 tmp = NetReadIP(&ip->ip_dst);
1014 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -05001015#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +02001016 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -05001017#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +00001018 return;
wdenk2d966952002-10-31 22:12:35 +00001019 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001020 /* Read source IP address for later use */
1021 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001022 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001023 * The function returns the unchanged packet if it's not
1024 * a fragment, and either the complete packet or NULL if
1025 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1026 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001027 ip = NetDefragment(ip, &len);
1028 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001029 return;
1030 /*
wdenk2d966952002-10-31 22:12:35 +00001031 * watch for ICMP host redirects
1032 *
wdenk8bde7f72003-06-27 21:31:46 +00001033 * There is no real handler code (yet). We just watch
1034 * for ICMP host redirect messages. In case anybody
1035 * sees these messages: please contact me
1036 * (wd@denx.de), or - even better - send me the
1037 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001038 *
wdenk8bde7f72003-06-27 21:31:46 +00001039 * Note: in all cases where I have seen this so far
1040 * it was a problem with the router configuration,
1041 * for instance when a router was configured in the
1042 * BOOTP reply, but the TFTP server was on the same
1043 * subnet. So this is probably a warning that your
1044 * configuration might be wrong. But I'm not really
1045 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001046 *
1047 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1048 * we send a tftp packet to a dead connection, or when
1049 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001050 */
1051 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001052 receive_icmp(ip, len, src_ip, et);
1053 return;
wdenk2d966952002-10-31 22:12:35 +00001054 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1055 return;
1056 }
1057
Stefan Roese8534bf92005-08-12 20:06:52 +02001058#ifdef CONFIG_UDP_CHECKSUM
1059 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001060 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001061 ushort *sumptr;
1062 ushort sumlen;
1063
1064 xsum = ip->ip_p;
1065 xsum += (ntohs(ip->udp_len));
1066 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1067 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1068 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1069 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1070
1071 sumlen = ntohs(ip->udp_len);
1072 sumptr = (ushort *) &(ip->udp_src);
1073
1074 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001075 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001076
1077 sumdata = *sumptr++;
1078 xsum += ntohs(sumdata);
1079 sumlen -= 2;
1080 }
1081 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001082 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001083
1084 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001085 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001086 xsum += sumdata;
1087 }
1088 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001089 xsum = (xsum & 0x0000ffff) +
1090 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001091 }
1092 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001093 printf(" UDP wrong checksum %08lx %08x\n",
1094 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001095 return;
1096 }
1097 }
1098#endif
1099
David Updegraff53a5c422007-06-11 10:41:07 -05001100
wdenk68ceb292004-08-02 21:11:11 +00001101#ifdef CONFIG_NETCONSOLE
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001102 nc_input_packet((uchar *)ip + IP_HDR_SIZE,
wdenk68ceb292004-08-02 21:11:11 +00001103 ntohs(ip->udp_dst),
1104 ntohs(ip->udp_src),
1105 ntohs(ip->udp_len) - 8);
1106#endif
wdenk2d966952002-10-31 22:12:35 +00001107 /*
1108 * IP header OK. Pass the packet to the current handler.
1109 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001110 (*packetHandler)((uchar *)ip + IP_HDR_SIZE,
wdenk2d966952002-10-31 22:12:35 +00001111 ntohs(ip->udp_dst),
Luca Ceresoli03eb1292011-04-18 06:19:50 +00001112 src_ip,
wdenk2d966952002-10-31 22:12:35 +00001113 ntohs(ip->udp_src),
1114 ntohs(ip->udp_len) - 8);
wdenk2d966952002-10-31 22:12:35 +00001115 break;
1116 }
1117}
1118
1119
1120/**********************************************************************/
1121
Simon Glasse4bf0c52011-10-24 18:00:02 +00001122static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001123{
1124 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001125 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001126#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001127 case PING:
wdenk6e592382004-04-18 17:39:38 +00001128 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001129 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001130 return 1;
wdenk6e592382004-04-18 17:39:38 +00001131 }
1132 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001133#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001134#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001135 case SNTP:
1136 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001137 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001138 return 1;
wdenkea287de2005-04-01 00:25:43 +00001139 }
1140 goto common;
1141#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001142#if defined(CONFIG_CMD_DNS)
1143 case DNS:
1144 if (NetOurDNSIP == 0) {
1145 puts("*** ERROR: DNS server address not given\n");
1146 return 1;
1147 }
1148 goto common;
1149#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001150#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001151 case NFS:
1152#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001153 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001154 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001155 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001156 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001157 return 1;
wdenk6e592382004-04-18 17:39:38 +00001158 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001159#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1160 defined(CONFIG_CMD_DNS)
1161common:
wdenk73a8b272003-06-05 19:27:42 +00001162#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001163 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001164
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001165 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001166 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001167 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001168 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001169 return 1;
wdenk6e592382004-04-18 17:39:38 +00001170 }
1171 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001172
Peter Tyserbf6cb242010-09-30 11:25:48 -05001173#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001174 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001175#endif
wdenk2d966952002-10-31 22:12:35 +00001176 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001177 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001178 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001179 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001180 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001181
wdenk6e592382004-04-18 17:39:38 +00001182 switch (num) {
1183 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001184 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001185 return 1;
wdenk6e592382004-04-18 17:39:38 +00001186 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001187 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001188 break;
wdenk6e592382004-04-18 17:39:38 +00001189 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001190 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001191 num);
1192 break;
wdenk2d966952002-10-31 22:12:35 +00001193 }
wdenk6e592382004-04-18 17:39:38 +00001194
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001195 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001196 return 2;
wdenk6e592382004-04-18 17:39:38 +00001197 }
1198 /* Fall through */
1199 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001200 return 0;
wdenk2d966952002-10-31 22:12:35 +00001201 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001202 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001203}
1204/**********************************************************************/
1205
1206int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001207NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001208{
1209 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1210}
1211
1212
1213unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001214NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001215{
1216 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001217 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001218
1219 xsum = 0;
1220 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001221 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001222 xsum = (xsum & 0xffff) + (xsum >> 16);
1223 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001224 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001225}
1226
wdenka3d991b2004-04-15 21:48:45 +00001227int
1228NetEthHdrSize(void)
1229{
1230 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001231
wdenka3d991b2004-04-15 21:48:45 +00001232 myvlanid = ntohs(NetOurVLAN);
1233 if (myvlanid == (ushort)-1)
1234 myvlanid = VLAN_NONE;
1235
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001236 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1237 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001238}
1239
1240int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001241NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001242{
1243 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001244 ushort myvlanid;
1245
1246 myvlanid = ntohs(NetOurVLAN);
1247 if (myvlanid == (ushort)-1)
1248 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001249
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001250 memcpy(et->et_dest, addr, 6);
1251 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001252 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001253 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001254 return ETHER_HDR_SIZE;
1255 } else {
1256 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001257
wdenka3d991b2004-04-15 21:48:45 +00001258 vet->vet_vlan_type = htons(PROT_VLAN);
1259 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1260 vet->vet_type = htons(prot);
1261 return VLAN_ETHER_HDR_SIZE;
1262 }
1263}
wdenk2d966952002-10-31 22:12:35 +00001264
1265void
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001266NetSetIP(uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001267{
Olav Morkenaf8626e2009-01-23 12:56:26 +01001268 IP_t *ip = (IP_t *)xip;
wdenk2d966952002-10-31 22:12:35 +00001269
1270 /*
1271 * If the data is an odd number of bytes, zero the
1272 * byte after the last byte so that the checksum
1273 * will work.
1274 */
1275 if (len & 1)
1276 xip[IP_HDR_SIZE + len] = 0;
1277
1278 /*
1279 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001280 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001281 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001282 /* IP_HDR_SIZE / 4 (not including UDP) */
1283 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001284 ip->ip_tos = 0;
1285 ip->ip_len = htons(IP_HDR_SIZE + len);
1286 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001287 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001288 ip->ip_ttl = 255;
1289 ip->ip_p = 17; /* UDP */
1290 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001291 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001292 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001293 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001294 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001295 ip->udp_src = htons(sport);
1296 ip->udp_dst = htons(dport);
1297 ip->udp_len = htons(8 + len);
1298 ip->udp_xsum = 0;
1299 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE_NO_UDP / 2);
1300}
1301
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001302void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001303{
1304 if (*src && (*src == '"')) {
1305 ++src;
1306 --size;
1307 }
1308
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001309 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001310 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001311 *dst = '\0';
1312}
1313
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001314#if defined(CONFIG_CMD_NFS) || \
1315 defined(CONFIG_CMD_SNTP) || \
1316 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001317/*
Robin Getz97399462010-03-08 14:07:00 -05001318 * make port a little random (1024-17407)
1319 * This keeps the math somewhat trivial to compute, and seems to work with
1320 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001321 */
1322unsigned int random_port(void)
1323{
Robin Getz97399462010-03-08 14:07:00 -05001324 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001325}
1326#endif
1327
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001328void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001329{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001330 x = ntohl(x);
1331 sprintf(s, "%d.%d.%d.%d",
1332 (int) ((x >> 24) & 0xff),
1333 (int) ((x >> 16) & 0xff),
1334 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001335 );
wdenk2d966952002-10-31 22:12:35 +00001336}
1337
wdenka3d991b2004-04-15 21:48:45 +00001338void VLAN_to_string(ushort x, char *s)
1339{
1340 x = ntohs(x);
1341
1342 if (x == (ushort)-1)
1343 x = VLAN_NONE;
1344
1345 if (x == VLAN_NONE)
1346 strcpy(s, "none");
1347 else
1348 sprintf(s, "%d", x & VLAN_IDMASK);
1349}
1350
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001351ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001352{
1353 ushort id;
1354
1355 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001356 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001357
1358 if (*s < '0' || *s > '9')
1359 id = VLAN_NONE;
1360 else
1361 id = (ushort)simple_strtoul(s, NULL, 10);
1362
wdenkb9711de2004-04-25 13:18:40 +00001363 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001364}
1365
wdenka3d991b2004-04-15 21:48:45 +00001366ushort getenv_VLAN(char *var)
1367{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001368 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001369}