blob: 2bf5631f0d4de9f3cf5b195b4e92959fec4f9e9b [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"
85#include "rarp.h"
wdenkcbd8a352004-02-24 02:00:03 +000086#include "nfs.h"
wdenkfc3e2162003-10-08 22:33:00 +000087#ifdef CONFIG_STATUS_LED
88#include <status_led.h>
89#include <miiphy.h>
90#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -050091#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +000092#include "sntp.h"
93#endif
Joe Hershbergerf575ae12012-05-23 07:57:59 +000094#include "cdp.h"
Robin Getz1a32bf42009-07-20 14:53:54 -040095#if defined(CONFIG_CMD_DNS)
96#include "dns.h"
97#endif
Joe Hershbergera36b12f2012-05-23 07:58:02 +000098#include "ping.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 */
152int NetState;
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
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000181/* Current RX packet handler */
182static rxhand_f *packetHandler;
Simon Glass39bccd22011-10-26 14:18:38 +0000183#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000184static rxhand_icmp_f *packet_icmp_handler; /* Current ICMP rx handler */
Simon Glass39bccd22011-10-26 14:18:38 +0000185#endif
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000186/* Current timeout handler */
187static thand_f *timeHandler;
188/* Time base value */
189static ulong timeStart;
190/* Current timeout value */
191static ulong timeDelta;
192/* THE transmit packet */
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000193uchar *NetTxPacket;
wdenk2d966952002-10-31 22:12:35 +0000194
Simon Glasse4bf0c52011-10-24 18:00:02 +0000195static int net_check_prereq(enum proto_t protocol);
wdenk2d966952002-10-31 22:12:35 +0000196
Remy Bohmer67b96e82009-10-28 22:13:39 +0100197static int NetTryCount;
198
wdenk2d966952002-10-31 22:12:35 +0000199/**********************************************************************/
wdenk73a8b272003-06-05 19:27:42 +0000200
Simon Glasse4a3d572011-10-27 06:24:32 +0000201/*
202 * Check if autoload is enabled. If so, use either NFS or TFTP to download
203 * the boot file.
204 */
205void net_auto_load(void)
206{
207 const char *s = getenv("autoload");
208
209 if (s != NULL) {
210 if (*s == 'n') {
211 /*
212 * Just use BOOTP/RARP to configure system;
213 * Do not use TFTP to load the bootfile.
214 */
215 NetState = NETLOOP_SUCCESS;
216 return;
217 }
218#if defined(CONFIG_CMD_NFS)
219 if (strcmp(s, "NFS") == 0) {
220 /*
221 * Use NFS to load the bootfile.
222 */
223 NfsStart();
224 return;
225 }
226#endif
227 }
228 TftpStart(TFTPGET);
229}
230
Simon Glasse4bf0c52011-10-24 18:00:02 +0000231static void NetInitLoop(enum proto_t protocol)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100232{
Luca Ceresolic586ce62011-05-11 03:59:55 +0000233 static int env_changed_id;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000234 int env_id = get_env_id();
Heiko Schocher2f70c492009-02-10 09:38:52 +0100235
236 /* update only when the environment has changed */
Michael Zaidman3c172c42009-04-04 01:43:00 +0300237 if (env_changed_id != env_id) {
Enric Balletbo i Serra23a70bf2011-05-31 21:01:47 +0000238 NetOurIP = getenv_IPaddr("ipaddr");
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000239 NetOurGatewayIP = getenv_IPaddr("gatewayip");
240 NetOurSubnetMask = getenv_IPaddr("netmask");
241 NetServerIP = getenv_IPaddr("serverip");
Heiko Schocher2f70c492009-02-10 09:38:52 +0100242 NetOurNativeVLAN = getenv_VLAN("nvlan");
Michael Zaidman3c172c42009-04-04 01:43:00 +0300243 NetOurVLAN = getenv_VLAN("vlan");
Robin Getz1a32bf42009-07-20 14:53:54 -0400244#if defined(CONFIG_CMD_DNS)
245 NetOurDNSIP = getenv_IPaddr("dnsip");
246#endif
Michael Zaidman3c172c42009-04-04 01:43:00 +0300247 env_changed_id = env_id;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100248 }
Michael Zaidman3c172c42009-04-04 01:43:00 +0300249
Heiko Schocherda954272009-04-28 08:36:11 +0200250 return;
Heiko Schocher2f70c492009-02-10 09:38:52 +0100251}
252
wdenk73a8b272003-06-05 19:27:42 +0000253/**********************************************************************/
wdenk2d966952002-10-31 22:12:35 +0000254/*
255 * Main network processing loop.
256 */
257
Simon Glasse4bf0c52011-10-24 18:00:02 +0000258int NetLoop(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +0000259{
wdenk2d966952002-10-31 22:12:35 +0000260 bd_t *bd = gd->bd;
Simon Glass4793ee62011-10-24 18:00:01 +0000261 int ret = -1;
wdenk2d966952002-10-31 22:12:35 +0000262
wdenk2d966952002-10-31 22:12:35 +0000263 NetRestarted = 0;
264 NetDevExists = 0;
wdenk2d966952002-10-31 22:12:35 +0000265
wdenk73a8b272003-06-05 19:27:42 +0000266 NetTxPacket = NULL;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100267 NetTryCount = 1;
wdenk73a8b272003-06-05 19:27:42 +0000268
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000269 ArpInit();
270
wdenk2d966952002-10-31 22:12:35 +0000271 if (!NetTxPacket) {
272 int i;
wdenk2d966952002-10-31 22:12:35 +0000273 /*
274 * Setup packet buffers, aligned correctly.
275 */
276 NetTxPacket = &PktBuf[0] + (PKTALIGN - 1);
277 NetTxPacket -= (ulong)NetTxPacket % PKTALIGN;
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000278 for (i = 0; i < PKTBUFSRX; i++)
wdenk2d966952002-10-31 22:12:35 +0000279 NetRxPackets[i] = NetTxPacket + (i+1)*PKTSIZE_ALIGN;
wdenk73a8b272003-06-05 19:27:42 +0000280 }
281
Simon Glass573f14f2011-12-10 11:08:06 +0000282 bootstage_mark_name(BOOTSTAGE_ID_ETH_START, "eth_start");
wdenk2d966952002-10-31 22:12:35 +0000283 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000284 eth_set_current();
wdenkb1bf6f22005-04-03 14:52:59 +0000285 if (eth_init(bd) < 0) {
286 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000287 return -1;
wdenkb1bf6f22005-04-03 14:52:59 +0000288 }
wdenk2d966952002-10-31 22:12:35 +0000289
290restart:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000291 memcpy(NetOurEther, eth_get_dev()->enetaddr, 6);
wdenk2d966952002-10-31 22:12:35 +0000292
293 NetState = NETLOOP_CONTINUE;
294
295 /*
296 * Start the ball rolling with the given start function. From
297 * here on, this code is a state machine driven by received
298 * packets and timer events.
299 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100300 NetInitLoop(protocol);
wdenk2d966952002-10-31 22:12:35 +0000301
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000302 switch (net_check_prereq(protocol)) {
wdenk2d966952002-10-31 22:12:35 +0000303 case 1:
304 /* network not configured */
wdenkb1bf6f22005-04-03 14:52:59 +0000305 eth_halt();
Luca Ceresoli92895de2011-05-04 02:40:45 +0000306 return -1;
wdenk2d966952002-10-31 22:12:35 +0000307
wdenk2d966952002-10-31 22:12:35 +0000308 case 2:
309 /* network device not configured */
310 break;
wdenk2d966952002-10-31 22:12:35 +0000311
312 case 0:
wdenk2d966952002-10-31 22:12:35 +0000313 NetDevExists = 1;
Simon Glasse4bf0c52011-10-24 18:00:02 +0000314 NetBootFileXferSize = 0;
wdenk2d966952002-10-31 22:12:35 +0000315 switch (protocol) {
Simon Glasse4bf0c52011-10-24 18:00:02 +0000316 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +0000317#ifdef CONFIG_CMD_TFTPPUT
318 case TFTPPUT:
319#endif
wdenk2d966952002-10-31 22:12:35 +0000320 /* always use ARP to get server ethernet address */
Simon Glasse4bf0c52011-10-24 18:00:02 +0000321 TftpStart(protocol);
wdenk2d966952002-10-31 22:12:35 +0000322 break;
Luca Ceresoli7a83af02011-05-17 00:03:40 +0000323#ifdef CONFIG_CMD_TFTPSRV
324 case TFTPSRV:
325 TftpStartServer();
326 break;
327#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500328#if defined(CONFIG_CMD_DHCP)
wdenk2d966952002-10-31 22:12:35 +0000329 case DHCP:
wdenkd407bf52004-10-11 22:51:13 +0000330 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300331 NetOurIP = 0;
wdenk2d966952002-10-31 22:12:35 +0000332 DhcpRequest(); /* Basically same as BOOTP */
333 break;
Jon Loeliger610f2e92007-07-10 11:05:02 -0500334#endif
wdenk2d966952002-10-31 22:12:35 +0000335
336 case BOOTP:
337 BootpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300338 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000339 BootpRequest();
wdenk2d966952002-10-31 22:12:35 +0000340 break;
341
Peter Tyserbf6cb242010-09-30 11:25:48 -0500342#if defined(CONFIG_CMD_RARP)
wdenk2d966952002-10-31 22:12:35 +0000343 case RARP:
344 RarpTry = 0;
Michael Zaidman09133f82009-07-14 23:37:12 +0300345 NetOurIP = 0;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000346 RarpRequest();
wdenk2d966952002-10-31 22:12:35 +0000347 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500348#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500349#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +0000350 case PING:
Joe Hershbergera36b12f2012-05-23 07:58:02 +0000351 ping_start();
wdenk73a8b272003-06-05 19:27:42 +0000352 break;
353#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500354#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +0000355 case NFS:
356 NfsStart();
357 break;
358#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500359#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000360 case CDP:
361 CDPStart();
362 break;
363#endif
wdenk68ceb292004-08-02 21:11:11 +0000364#ifdef CONFIG_NETCONSOLE
365 case NETCONS:
366 NcStart();
367 break;
368#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500369#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +0000370 case SNTP:
371 SntpStart();
372 break;
373#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400374#if defined(CONFIG_CMD_DNS)
375 case DNS:
376 DnsStart();
377 break;
378#endif
wdenk2d966952002-10-31 22:12:35 +0000379 default:
380 break;
381 }
382
wdenk2d966952002-10-31 22:12:35 +0000383 break;
384 }
385
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500386#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000387#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
388 defined(CONFIG_STATUS_LED) && \
389 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000390 /*
wdenk42d1f032003-10-15 23:53:47 +0000391 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000392 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000393 if (miiphy_link(eth_get_dev()->name, CONFIG_SYS_FAULT_MII_ADDR))
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000394 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000395 else
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000396 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200397#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000398#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000399
400 /*
401 * Main packet reception loop. Loop receiving packets until
wdenk59acc292005-04-03 14:18:51 +0000402 * someone sets `NetState' to a state that terminates.
wdenk2d966952002-10-31 22:12:35 +0000403 */
404 for (;;) {
405 WATCHDOG_RESET();
406#ifdef CONFIG_SHOW_ACTIVITY
Joe Hershberger48522bb2012-05-15 08:59:08 +0000407 show_activity(1);
wdenk2d966952002-10-31 22:12:35 +0000408#endif
409 /*
410 * Check the ethernet for a new packet. The ethernet
411 * receive routine will process it.
412 */
Guennadi Liakhovetski40cb90e2008-04-03 17:04:19 +0200413 eth_rx();
wdenk2d966952002-10-31 22:12:35 +0000414
415 /*
416 * Abort if ctrl-c was pressed.
417 */
418 if (ctrlc()) {
wdenk8bde7f72003-06-27 21:31:46 +0000419 eth_halt();
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000420 puts("\nAbort\n");
Simon Glass4793ee62011-10-24 18:00:01 +0000421 goto done;
wdenk2d966952002-10-31 22:12:35 +0000422 }
423
wdenk73a8b272003-06-05 19:27:42 +0000424 ArpTimeoutCheck();
wdenk2d966952002-10-31 22:12:35 +0000425
426 /*
427 * Check for a timeout, and run the timeout handler
428 * if we have one.
429 */
wdenke0ac62d2003-08-17 18:55:18 +0000430 if (timeHandler && ((get_timer(0) - timeStart) > timeDelta)) {
wdenk2d966952002-10-31 22:12:35 +0000431 thand_f *x;
432
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500433#if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000434#if defined(CONFIG_SYS_FAULT_ECHO_LINK_DOWN) && \
435 defined(CONFIG_STATUS_LED) && \
436 defined(STATUS_LED_RED)
wdenkfc3e2162003-10-08 22:33:00 +0000437 /*
wdenk42d1f032003-10-15 23:53:47 +0000438 * Echo the inverted link state to the fault LED.
wdenkfc3e2162003-10-08 22:33:00 +0000439 */
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000440 if (miiphy_link(eth_get_dev()->name,
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000441 CONFIG_SYS_FAULT_MII_ADDR)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000442 status_led_set(STATUS_LED_RED, STATUS_LED_OFF);
wdenkfc3e2162003-10-08 22:33:00 +0000443 } else {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000444 status_led_set(STATUS_LED_RED, STATUS_LED_ON);
wdenkfc3e2162003-10-08 22:33:00 +0000445 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000446#endif /* CONFIG_SYS_FAULT_ECHO_LINK_DOWN, ... */
wdenkfc3e2162003-10-08 22:33:00 +0000447#endif /* CONFIG_MII, ... */
wdenk2d966952002-10-31 22:12:35 +0000448 x = timeHandler;
449 timeHandler = (thand_f *)0;
450 (*x)();
451 }
452
453
454 switch (NetState) {
455
456 case NETLOOP_RESTART:
wdenk2d966952002-10-31 22:12:35 +0000457 NetRestarted = 1;
wdenk2d966952002-10-31 22:12:35 +0000458 goto restart;
459
460 case NETLOOP_SUCCESS:
461 if (NetBootFileXferSize > 0) {
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200462 char buf[20];
wdenk2d966952002-10-31 22:12:35 +0000463 printf("Bytes transferred = %ld (%lx hex)\n",
464 NetBootFileXferSize,
465 NetBootFileXferSize);
Wolfgang Denkf34024d2007-09-12 00:48:57 +0200466 sprintf(buf, "%lX", NetBootFileXferSize);
wdenk2d966952002-10-31 22:12:35 +0000467 setenv("filesize", buf);
wdenka3d991b2004-04-15 21:48:45 +0000468
469 sprintf(buf, "%lX", (unsigned long)load_addr);
470 setenv("fileaddr", buf);
wdenk2d966952002-10-31 22:12:35 +0000471 }
472 eth_halt();
Simon Glass4793ee62011-10-24 18:00:01 +0000473 ret = NetBootFileXferSize;
474 goto done;
wdenk2d966952002-10-31 22:12:35 +0000475
476 case NETLOOP_FAIL:
Simon Glass4793ee62011-10-24 18:00:01 +0000477 goto done;
wdenk2d966952002-10-31 22:12:35 +0000478 }
479 }
Simon Glass4793ee62011-10-24 18:00:01 +0000480
481done:
Simon Glass39bccd22011-10-26 14:18:38 +0000482#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000483 /* Clear out the handlers */
484 NetSetHandler(NULL);
485 net_set_icmp_handler(NULL);
Simon Glass39bccd22011-10-26 14:18:38 +0000486#endif
Simon Glass4793ee62011-10-24 18:00:01 +0000487 return ret;
wdenk2d966952002-10-31 22:12:35 +0000488}
489
490/**********************************************************************/
491
492static void
493startAgainTimeout(void)
494{
495 NetState = NETLOOP_RESTART;
496}
497
498static void
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000499startAgainHandler(uchar *pkt, unsigned dest, IPaddr_t sip,
500 unsigned src, unsigned len)
wdenk2d966952002-10-31 22:12:35 +0000501{
502 /* Totally ignore the packet */
503}
504
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000505void NetStartAgain(void)
wdenk2d966952002-10-31 22:12:35 +0000506{
wdenk6e592382004-04-18 17:39:38 +0000507 char *nretry;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100508 int retry_forever = 0;
509 unsigned long retrycnt = 0;
wdenka3d991b2004-04-15 21:48:45 +0000510
Remy Bohmer67b96e82009-10-28 22:13:39 +0100511 nretry = getenv("netretry");
512 if (nretry) {
513 if (!strcmp(nretry, "yes"))
514 retry_forever = 1;
515 else if (!strcmp(nretry, "no"))
516 retrycnt = 0;
517 else if (!strcmp(nretry, "once"))
518 retrycnt = 1;
519 else
520 retrycnt = simple_strtoul(nretry, NULL, 0);
521 } else
522 retry_forever = 1;
523
524 if ((!retry_forever) && (NetTryCount >= retrycnt)) {
525 eth_halt();
wdenka3d991b2004-04-15 21:48:45 +0000526 NetState = NETLOOP_FAIL;
527 return;
528 }
Remy Bohmer67b96e82009-10-28 22:13:39 +0100529
530 NetTryCount++;
531
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000532 eth_halt();
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100533#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000534 eth_try_another(!NetRestarted);
Matthias Fuchs8b0c5c12007-12-27 16:58:41 +0100535#endif
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000536 eth_init(gd->bd);
wdenk6e592382004-04-18 17:39:38 +0000537 if (NetRestartWrap) {
wdenk2d966952002-10-31 22:12:35 +0000538 NetRestartWrap = 0;
Remy Bohmer67b96e82009-10-28 22:13:39 +0100539 if (NetDevExists) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000540 NetSetTimeout(10000UL, startAgainTimeout);
541 NetSetHandler(startAgainHandler);
wdenk6e592382004-04-18 17:39:38 +0000542 } else {
wdenk2d966952002-10-31 22:12:35 +0000543 NetState = NETLOOP_FAIL;
544 }
wdenk6e592382004-04-18 17:39:38 +0000545 } else {
wdenk2d966952002-10-31 22:12:35 +0000546 NetState = NETLOOP_RESTART;
547 }
wdenk2d966952002-10-31 22:12:35 +0000548}
549
550/**********************************************************************/
551/*
552 * Miscelaneous bits.
553 */
554
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000555rxhand_f *
556NetGetHandler(void)
557{
558 return packetHandler;
559}
560
561
wdenk2d966952002-10-31 22:12:35 +0000562void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000563NetSetHandler(rxhand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000564{
565 packetHandler = f;
566}
567
Simon Glass39bccd22011-10-26 14:18:38 +0000568#ifdef CONFIG_CMD_TFTPPUT
Simon Glass4793ee62011-10-24 18:00:01 +0000569void net_set_icmp_handler(rxhand_icmp_f *f)
570{
571 packet_icmp_handler = f;
572}
Simon Glass39bccd22011-10-26 14:18:38 +0000573#endif
wdenk2d966952002-10-31 22:12:35 +0000574
575void
Luca Ceresoli6b147d12011-05-04 02:40:44 +0000576NetSetTimeout(ulong iv, thand_f *f)
wdenk2d966952002-10-31 22:12:35 +0000577{
578 if (iv == 0) {
579 timeHandler = (thand_f *)0;
580 } else {
581 timeHandler = f;
wdenke0ac62d2003-08-17 18:55:18 +0000582 timeStart = get_timer(0);
583 timeDelta = iv;
wdenk2d966952002-10-31 22:12:35 +0000584 }
585}
586
587
588void
Joe Hershbergerdb288a92012-05-15 08:59:04 +0000589NetSendPacket(uchar *pkt, int len)
wdenk2d966952002-10-31 22:12:35 +0000590{
591 (void) eth_send(pkt, len);
592}
593
wdenk73a8b272003-06-05 19:27:42 +0000594int
595NetSendUDPPacket(uchar *ether, IPaddr_t dest, int dport, int sport, int len)
596{
wdenka3d991b2004-04-15 21:48:45 +0000597 uchar *pkt;
598
wdenk73a8b272003-06-05 19:27:42 +0000599 /* convert to new style broadcast */
600 if (dest == 0)
601 dest = 0xFFFFFFFF;
wdenk2d966952002-10-31 22:12:35 +0000602
wdenk73a8b272003-06-05 19:27:42 +0000603 /* if broadcast, make the ether address a broadcast and don't do ARP */
604 if (dest == 0xFFFFFFFF)
605 ether = NetBcastAddr;
606
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000607 /*
608 * if MAC address was not discovered yet, save the packet and do
609 * an ARP request
610 */
wdenk73a8b272003-06-05 19:27:42 +0000611 if (memcmp(ether, NetEtherNullAddr, 6) == 0) {
612
Matthias Weisserea45cb02011-12-03 03:29:44 +0000613 debug("sending ARP for %08x\n", dest);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400614
wdenk73a8b272003-06-05 19:27:42 +0000615 NetArpWaitPacketIP = dest;
616 NetArpWaitPacketMAC = ether;
wdenka3d991b2004-04-15 21:48:45 +0000617
618 pkt = NetArpWaitTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000619 pkt += NetSetEther(pkt, NetArpWaitPacketMAC, PROT_IP);
wdenka3d991b2004-04-15 21:48:45 +0000620
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000621 NetSetIP(pkt, dest, dport, sport, len);
Joe Hershberger594c26f2012-05-23 07:58:04 +0000622 memcpy(pkt + IP_UDP_HDR_SIZE, (uchar *)NetTxPacket +
623 (pkt - (uchar *)NetArpWaitTxPacket) +
624 IP_UDP_HDR_SIZE, len);
wdenk73a8b272003-06-05 19:27:42 +0000625
626 /* size of the waiting packet */
Luca Ceresoli3e38e422011-05-11 03:59:54 +0000627 NetArpWaitTxPacketSize = (pkt - NetArpWaitTxPacket) +
Joe Hershberger594c26f2012-05-23 07:58:04 +0000628 IP_UDP_HDR_SIZE + len;
wdenk73a8b272003-06-05 19:27:42 +0000629
630 /* and do the ARP request */
631 NetArpWaitTry = 1;
632 NetArpWaitTimerStart = get_timer(0);
633 ArpRequest();
634 return 1; /* waiting */
635 }
636
Matthias Weisserea45cb02011-12-03 03:29:44 +0000637 debug("sending UDP to %08x/%pM\n", dest, ether);
wdenk73a8b272003-06-05 19:27:42 +0000638
wdenka3d991b2004-04-15 21:48:45 +0000639 pkt = (uchar *)NetTxPacket;
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000640 pkt += NetSetEther(pkt, ether, PROT_IP);
641 NetSetIP(pkt, dest, dport, sport, len);
Joe Hershberger594c26f2012-05-23 07:58:04 +0000642 eth_send(NetTxPacket, (pkt - NetTxPacket) + IP_UDP_HDR_SIZE + len);
wdenk73a8b272003-06-05 19:27:42 +0000643
wdenk6e592382004-04-18 17:39:38 +0000644 return 0; /* transmitted */
wdenk73a8b272003-06-05 19:27:42 +0000645}
646
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200647#ifdef CONFIG_IP_DEFRAG
648/*
649 * This function collects fragments in a single packet, according
650 * to the algorithm in RFC815. It returns NULL or the pointer to
651 * a complete packet, in static storage
652 */
653#ifndef CONFIG_NET_MAXDEFRAG
654#define CONFIG_NET_MAXDEFRAG 16384
655#endif
656/*
657 * MAXDEFRAG, above, is chosen in the config file and is real data
658 * so we need to add the NFS overhead, which is more than TFTP.
659 * To use sizeof in the internal unnamed structures, we need a real
660 * instance (can't do "sizeof(struct rpc_t.u.reply))", unfortunately).
661 * The compiler doesn't complain nor allocates the actual structure
662 */
663static struct rpc_t rpc_specimen;
664#define IP_PKTSIZE (CONFIG_NET_MAXDEFRAG + sizeof(rpc_specimen.u.reply))
665
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000666#define IP_MAXUDP (IP_PKTSIZE - IP_HDR_SIZE)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200667
668/*
669 * this is the packet being assembled, either data or frag control.
670 * Fragments go by 8 bytes, so this union must be 8 bytes long
671 */
672struct hole {
673 /* first_byte is address of this structure */
674 u16 last_byte; /* last byte in this hole + 1 (begin of next hole) */
675 u16 next_hole; /* index of next (in 8-b blocks), 0 == none */
676 u16 prev_hole; /* index of prev, 0 == none */
677 u16 unused;
678};
679
Joe Hershberger594c26f2012-05-23 07:58:04 +0000680static struct ip_udp_hdr *__NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200681{
Joe Hershberger48522bb2012-05-15 08:59:08 +0000682 static uchar pkt_buff[IP_PKTSIZE] __aligned(PKTALIGN);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200683 static u16 first_hole, total_len;
684 struct hole *payload, *thisfrag, *h, *newh;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000685 struct ip_udp_hdr *localip = (struct ip_udp_hdr *)pkt_buff;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200686 uchar *indata = (uchar *)ip;
687 int offset8, start, len, done = 0;
688 u16 ip_off = ntohs(ip->ip_off);
689
690 /* payload starts after IP header, this fragment is in there */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000691 payload = (struct hole *)(pkt_buff + IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200692 offset8 = (ip_off & IP_OFFS);
693 thisfrag = payload + offset8;
694 start = offset8 * 8;
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000695 len = ntohs(ip->ip_len) - IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200696
697 if (start + len > IP_MAXUDP) /* fragment extends too far */
698 return NULL;
699
700 if (!total_len || localip->ip_id != ip->ip_id) {
701 /* new (or different) packet, reset structs */
702 total_len = 0xffff;
703 payload[0].last_byte = ~0;
704 payload[0].next_hole = 0;
705 payload[0].prev_hole = 0;
706 first_hole = 0;
707 /* any IP header will work, copy the first we received */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000708 memcpy(localip, ip, IP_HDR_SIZE);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200709 }
710
711 /*
712 * What follows is the reassembly algorithm. We use the payload
713 * array as a linked list of hole descriptors, as each hole starts
714 * at a multiple of 8 bytes. However, last byte can be whatever value,
715 * so it is represented as byte count, not as 8-byte blocks.
716 */
717
718 h = payload + first_hole;
719 while (h->last_byte < start) {
720 if (!h->next_hole) {
721 /* no hole that far away */
722 return NULL;
723 }
724 h = payload + h->next_hole;
725 }
726
Fillod Stephanee397e592010-06-11 19:26:43 +0200727 /* last fragment may be 1..7 bytes, the "+7" forces acceptance */
728 if (offset8 + ((len + 7) / 8) <= h - payload) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200729 /* no overlap with holes (dup fragment?) */
730 return NULL;
731 }
732
733 if (!(ip_off & IP_FLAGS_MFRAG)) {
734 /* no more fragmentss: truncate this (last) hole */
735 total_len = start + len;
736 h->last_byte = start + len;
737 }
738
739 /*
740 * There is some overlap: fix the hole list. This code doesn't
741 * deal with a fragment that overlaps with two different holes
742 * (thus being a superset of a previously-received fragment).
743 */
744
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000745 if ((h >= thisfrag) && (h->last_byte <= start + len)) {
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200746 /* complete overlap with hole: remove hole */
747 if (!h->prev_hole && !h->next_hole) {
748 /* last remaining hole */
749 done = 1;
750 } else if (!h->prev_hole) {
751 /* first hole */
752 first_hole = h->next_hole;
753 payload[h->next_hole].prev_hole = 0;
754 } else if (!h->next_hole) {
755 /* last hole */
756 payload[h->prev_hole].next_hole = 0;
757 } else {
758 /* in the middle of the list */
759 payload[h->next_hole].prev_hole = h->prev_hole;
760 payload[h->prev_hole].next_hole = h->next_hole;
761 }
762
763 } else if (h->last_byte <= start + len) {
764 /* overlaps with final part of the hole: shorten this hole */
765 h->last_byte = start;
766
767 } else if (h >= thisfrag) {
768 /* overlaps with initial part of the hole: move this hole */
769 newh = thisfrag + (len / 8);
770 *newh = *h;
771 h = newh;
772 if (h->next_hole)
773 payload[h->next_hole].prev_hole = (h - payload);
774 if (h->prev_hole)
775 payload[h->prev_hole].next_hole = (h - payload);
776 else
777 first_hole = (h - payload);
778
779 } else {
780 /* fragment sits in the middle: split the hole */
781 newh = thisfrag + (len / 8);
782 *newh = *h;
783 h->last_byte = start;
784 h->next_hole = (newh - payload);
785 newh->prev_hole = (h - payload);
786 if (newh->next_hole)
787 payload[newh->next_hole].prev_hole = (newh - payload);
788 }
789
790 /* finally copy this fragment and possibly return whole packet */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000791 memcpy((uchar *)thisfrag, indata + IP_HDR_SIZE, len);
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200792 if (!done)
793 return NULL;
794
795 localip->ip_len = htons(total_len);
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000796 *lenp = total_len + IP_HDR_SIZE;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200797 return localip;
798}
799
Joe Hershberger594c26f2012-05-23 07:58:04 +0000800static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200801{
802 u16 ip_off = ntohs(ip->ip_off);
803 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
804 return ip; /* not a fragment */
805 return __NetDefragment(ip, lenp);
806}
807
808#else /* !CONFIG_IP_DEFRAG */
809
Joe Hershberger594c26f2012-05-23 07:58:04 +0000810static inline struct ip_udp_hdr *NetDefragment(struct ip_udp_hdr *ip, int *lenp)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200811{
812 u16 ip_off = ntohs(ip->ip_off);
813 if (!(ip_off & (IP_OFFS | IP_FLAGS_MFRAG)))
814 return ip; /* not a fragment */
815 return NULL;
816}
817#endif
wdenka3d991b2004-04-15 21:48:45 +0000818
Simon Glass8f79bb12011-10-24 18:00:00 +0000819/**
820 * Receive an ICMP packet. We deal with REDIRECT and PING here, and silently
821 * drop others.
822 *
823 * @parma ip IP packet containing the ICMP
824 */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000825static void receive_icmp(struct ip_udp_hdr *ip, int len,
826 IPaddr_t src_ip, Ethernet_t *et)
Simon Glass8f79bb12011-10-24 18:00:00 +0000827{
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;
Joe Hershberger594c26f2012-05-23 07:58:04 +0000855 struct ip_udp_hdr *ip;
wdenk2d966952002-10-31 22:12:35 +0000856 IPaddr_t tmp;
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000857 IPaddr_t src_ip;
wdenk2d966952002-10-31 22:12:35 +0000858 int x;
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500859#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000860 int iscdp;
861#endif
862 ushort cti = 0, vlanid = VLAN_NONE, myvlanid, mynvlanid;
wdenk2d966952002-10-31 22:12:35 +0000863
Robin Getz0ebf04c2009-07-23 03:01:03 -0400864 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000865
Mike Frysingerd9bec9f2009-07-18 21:04:08 -0400866 NetRxPacket = inpkt;
867 NetRxPacketLen = len;
wdenka3d991b2004-04-15 21:48:45 +0000868 et = (Ethernet_t *)inpkt;
869
870 /* too small packet? */
871 if (len < ETHER_HDR_SIZE)
872 return;
873
Rafal Jaworowskif85b6072007-12-27 18:19:02 +0100874#ifdef CONFIG_API
875 if (push_packet) {
876 (*push_packet)(inpkt, len);
877 return;
878 }
879#endif
880
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500881#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000882 /* keep track if packet is CDP */
Joe Hershberger17351882012-05-23 07:58:00 +0000883 iscdp = is_cdp_packet(et->et_dest);
wdenka3d991b2004-04-15 21:48:45 +0000884#endif
885
886 myvlanid = ntohs(NetOurVLAN);
887 if (myvlanid == (ushort)-1)
888 myvlanid = VLAN_NONE;
889 mynvlanid = ntohs(NetOurNativeVLAN);
890 if (mynvlanid == (ushort)-1)
891 mynvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +0000892
893 x = ntohs(et->et_protlen);
894
Robin Getz0ebf04c2009-07-23 03:01:03 -0400895 debug("packet received\n");
wdenka3d991b2004-04-15 21:48:45 +0000896
wdenk2d966952002-10-31 22:12:35 +0000897 if (x < 1514) {
898 /*
899 * Got a 802 packet. Check the other protocol field.
900 */
901 x = ntohs(et->et_prot);
wdenka3d991b2004-04-15 21:48:45 +0000902
Joe Hershberger594c26f2012-05-23 07:58:04 +0000903 ip = (struct ip_udp_hdr *)(inpkt + E802_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000904 len -= E802_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000905
906 } else if (x != PROT_VLAN) { /* normal packet */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000907 ip = (struct ip_udp_hdr *)(inpkt + ETHER_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000908 len -= ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +0000909
910 } else { /* VLAN packet */
911 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)et;
912
Robin Getz0ebf04c2009-07-23 03:01:03 -0400913 debug("VLAN packet received\n");
914
wdenka3d991b2004-04-15 21:48:45 +0000915 /* too small packet? */
916 if (len < VLAN_ETHER_HDR_SIZE)
917 return;
918
919 /* if no VLAN active */
920 if ((ntohs(NetOurVLAN) & VLAN_IDMASK) == VLAN_NONE
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500921#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000922 && iscdp == 0
923#endif
924 )
925 return;
926
927 cti = ntohs(vet->vet_tag);
928 vlanid = cti & VLAN_IDMASK;
929 x = ntohs(vet->vet_type);
930
Joe Hershberger594c26f2012-05-23 07:58:04 +0000931 ip = (struct ip_udp_hdr *)(inpkt + VLAN_ETHER_HDR_SIZE);
wdenka3d991b2004-04-15 21:48:45 +0000932 len -= VLAN_ETHER_HDR_SIZE;
wdenk2d966952002-10-31 22:12:35 +0000933 }
934
Robin Getz0ebf04c2009-07-23 03:01:03 -0400935 debug("Receive from protocol 0x%x\n", x);
wdenk2d966952002-10-31 22:12:35 +0000936
Jon Loeliger643d1ab2007-07-09 17:45:14 -0500937#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000938 if (iscdp) {
939 CDPHandler((uchar *)ip, len);
940 return;
941 }
942#endif
943
944 if ((myvlanid & VLAN_IDMASK) != VLAN_NONE) {
945 if (vlanid == VLAN_NONE)
946 vlanid = (mynvlanid & VLAN_IDMASK);
947 /* not matched? */
948 if (vlanid != (myvlanid & VLAN_IDMASK))
949 return;
950 }
951
wdenk2d966952002-10-31 22:12:35 +0000952 switch (x) {
953
954 case PROT_ARP:
Joe Hershbergerd280d3f2012-05-23 07:58:01 +0000955 ArpReceive(et, ip, len);
wdenk289f9322005-01-12 00:15:14 +0000956 break;
wdenk2d966952002-10-31 22:12:35 +0000957
Peter Tyserbf6cb242010-09-30 11:25:48 -0500958#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +0000959 case PROT_RARP:
Joe Hershberger8b9c5322012-05-23 07:58:03 +0000960 rarp_receive(ip, len);
wdenk2d966952002-10-31 22:12:35 +0000961 break;
Peter Tyserbf6cb242010-09-30 11:25:48 -0500962#endif
wdenk2d966952002-10-31 22:12:35 +0000963 case PROT_IP:
Robin Getz0ebf04c2009-07-23 03:01:03 -0400964 debug("Got IP\n");
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200965 /* Before we start poking the header, make sure it is there */
Joe Hershberger594c26f2012-05-23 07:58:04 +0000966 if (len < IP_UDP_HDR_SIZE) {
967 debug("len bad %d < %lu\n", len,
968 (ulong)IP_UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +0000969 return;
970 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200971 /* Check the packet length */
wdenk2d966952002-10-31 22:12:35 +0000972 if (len < ntohs(ip->ip_len)) {
973 printf("len bad %d < %d\n", len, ntohs(ip->ip_len));
974 return;
975 }
976 len = ntohs(ip->ip_len);
Robin Getz0ebf04c2009-07-23 03:01:03 -0400977 debug("len=%d, v=%02x\n", len, ip->ip_hl_v & 0xff);
978
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200979 /* Can't deal with anything except IPv4 */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000980 if ((ip->ip_hl_v & 0xf0) != 0x40)
wdenk2d966952002-10-31 22:12:35 +0000981 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200982 /* Can't deal with IP options (headers != 20 bytes) */
Luca Ceresolid3c65b02011-05-04 02:40:43 +0000983 if ((ip->ip_hl_v & 0x0f) > 0x05)
Remy Bohmer6b52cfe2008-06-03 15:48:17 +0200984 return;
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200985 /* Check the Checksum of the header */
Joe Hershbergerc5c59df2012-05-23 07:58:05 +0000986 if (!NetCksumOk((uchar *)ip, IP_HDR_SIZE / 2)) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +0000987 puts("checksum bad\n");
wdenk2d966952002-10-31 22:12:35 +0000988 return;
989 }
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +0200990 /* If it is not for us, ignore it */
wdenk2d966952002-10-31 22:12:35 +0000991 tmp = NetReadIP(&ip->ip_dst);
992 if (NetOurIP && tmp != NetOurIP && tmp != 0xFFFFFFFF) {
David Updegraff53a5c422007-06-11 10:41:07 -0500993#ifdef CONFIG_MCAST_TFTP
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +0200994 if (Mcast_addr != tmp)
David Updegraff53a5c422007-06-11 10:41:07 -0500995#endif
Luca Ceresolic819abe2011-05-04 02:40:46 +0000996 return;
wdenk2d966952002-10-31 22:12:35 +0000997 }
Luca Ceresoli03eb1292011-04-18 06:19:50 +0000998 /* Read source IP address for later use */
999 src_ip = NetReadIP(&ip->ip_src);
wdenk2d966952002-10-31 22:12:35 +00001000 /*
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001001 * The function returns the unchanged packet if it's not
1002 * a fragment, and either the complete packet or NULL if
1003 * it is a fragment (if !CONFIG_IP_DEFRAG, it returns NULL)
1004 */
Luca Ceresoliccb9ebe2011-05-04 02:40:47 +00001005 ip = NetDefragment(ip, &len);
1006 if (!ip)
Alessandro Rubini5cfaa4e2009-08-07 13:58:56 +02001007 return;
1008 /*
wdenk2d966952002-10-31 22:12:35 +00001009 * watch for ICMP host redirects
1010 *
wdenk8bde7f72003-06-27 21:31:46 +00001011 * There is no real handler code (yet). We just watch
1012 * for ICMP host redirect messages. In case anybody
1013 * sees these messages: please contact me
1014 * (wd@denx.de), or - even better - send me the
1015 * necessary fixes :-)
wdenk2d966952002-10-31 22:12:35 +00001016 *
wdenk8bde7f72003-06-27 21:31:46 +00001017 * Note: in all cases where I have seen this so far
1018 * it was a problem with the router configuration,
1019 * for instance when a router was configured in the
1020 * BOOTP reply, but the TFTP server was on the same
1021 * subnet. So this is probably a warning that your
1022 * configuration might be wrong. But I'm not really
1023 * sure if there aren't any other situations.
Simon Glass4793ee62011-10-24 18:00:01 +00001024 *
1025 * Simon Glass <sjg@chromium.org>: We get an ICMP when
1026 * we send a tftp packet to a dead connection, or when
1027 * there is no server at the other end.
wdenk2d966952002-10-31 22:12:35 +00001028 */
1029 if (ip->ip_p == IPPROTO_ICMP) {
Simon Glass8f79bb12011-10-24 18:00:00 +00001030 receive_icmp(ip, len, src_ip, et);
1031 return;
wdenk2d966952002-10-31 22:12:35 +00001032 } else if (ip->ip_p != IPPROTO_UDP) { /* Only UDP packets */
1033 return;
1034 }
1035
Stefan Roese8534bf92005-08-12 20:06:52 +02001036#ifdef CONFIG_UDP_CHECKSUM
1037 if (ip->udp_xsum != 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001038 ulong xsum;
Stefan Roese8534bf92005-08-12 20:06:52 +02001039 ushort *sumptr;
1040 ushort sumlen;
1041
1042 xsum = ip->ip_p;
1043 xsum += (ntohs(ip->udp_len));
1044 xsum += (ntohl(ip->ip_src) >> 16) & 0x0000ffff;
1045 xsum += (ntohl(ip->ip_src) >> 0) & 0x0000ffff;
1046 xsum += (ntohl(ip->ip_dst) >> 16) & 0x0000ffff;
1047 xsum += (ntohl(ip->ip_dst) >> 0) & 0x0000ffff;
1048
1049 sumlen = ntohs(ip->udp_len);
1050 sumptr = (ushort *) &(ip->udp_src);
1051
1052 while (sumlen > 1) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001053 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001054
1055 sumdata = *sumptr++;
1056 xsum += ntohs(sumdata);
1057 sumlen -= 2;
1058 }
1059 if (sumlen > 0) {
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001060 ushort sumdata;
Stefan Roese8534bf92005-08-12 20:06:52 +02001061
1062 sumdata = *(unsigned char *) sumptr;
Wolfgang Denkb2f50802005-08-12 23:43:12 +02001063 sumdata = (sumdata << 8) & 0xff00;
Stefan Roese8534bf92005-08-12 20:06:52 +02001064 xsum += sumdata;
1065 }
1066 while ((xsum >> 16) != 0) {
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001067 xsum = (xsum & 0x0000ffff) +
1068 ((xsum >> 16) & 0x0000ffff);
Stefan Roese8534bf92005-08-12 20:06:52 +02001069 }
1070 if ((xsum != 0x00000000) && (xsum != 0x0000ffff)) {
Wolfgang Denk9b55a252008-07-11 01:16:00 +02001071 printf(" UDP wrong checksum %08lx %08x\n",
1072 xsum, ntohs(ip->udp_xsum));
Stefan Roese8534bf92005-08-12 20:06:52 +02001073 return;
1074 }
1075 }
1076#endif
1077
David Updegraff53a5c422007-06-11 10:41:07 -05001078
wdenk68ceb292004-08-02 21:11:11 +00001079#ifdef CONFIG_NETCONSOLE
Joe Hershberger594c26f2012-05-23 07:58:04 +00001080 nc_input_packet((uchar *)ip + IP_UDP_HDR_SIZE,
1081 ntohs(ip->udp_dst),
1082 ntohs(ip->udp_src),
1083 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk68ceb292004-08-02 21:11:11 +00001084#endif
wdenk2d966952002-10-31 22:12:35 +00001085 /*
1086 * IP header OK. Pass the packet to the current handler.
1087 */
Joe Hershberger594c26f2012-05-23 07:58:04 +00001088 (*packetHandler)((uchar *)ip + IP_UDP_HDR_SIZE,
1089 ntohs(ip->udp_dst),
1090 src_ip,
1091 ntohs(ip->udp_src),
1092 ntohs(ip->udp_len) - UDP_HDR_SIZE);
wdenk2d966952002-10-31 22:12:35 +00001093 break;
1094 }
1095}
1096
1097
1098/**********************************************************************/
1099
Simon Glasse4bf0c52011-10-24 18:00:02 +00001100static int net_check_prereq(enum proto_t protocol)
wdenk2d966952002-10-31 22:12:35 +00001101{
1102 switch (protocol) {
wdenk6e592382004-04-18 17:39:38 +00001103 /* Fall through */
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001104#if defined(CONFIG_CMD_PING)
wdenk73a8b272003-06-05 19:27:42 +00001105 case PING:
wdenk6e592382004-04-18 17:39:38 +00001106 if (NetPingIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001107 puts("*** ERROR: ping address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001108 return 1;
wdenk6e592382004-04-18 17:39:38 +00001109 }
1110 goto common;
wdenk73a8b272003-06-05 19:27:42 +00001111#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001112#if defined(CONFIG_CMD_SNTP)
wdenkea287de2005-04-01 00:25:43 +00001113 case SNTP:
1114 if (NetNtpServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001115 puts("*** ERROR: NTP server address not given\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001116 return 1;
wdenkea287de2005-04-01 00:25:43 +00001117 }
1118 goto common;
1119#endif
Robin Getz1a32bf42009-07-20 14:53:54 -04001120#if defined(CONFIG_CMD_DNS)
1121 case DNS:
1122 if (NetOurDNSIP == 0) {
1123 puts("*** ERROR: DNS server address not given\n");
1124 return 1;
1125 }
1126 goto common;
1127#endif
Jon Loeliger643d1ab2007-07-09 17:45:14 -05001128#if defined(CONFIG_CMD_NFS)
wdenkcbd8a352004-02-24 02:00:03 +00001129 case NFS:
1130#endif
Simon Glasse4bf0c52011-10-24 18:00:02 +00001131 case TFTPGET:
Simon Glass1fb7cd42011-10-24 18:00:07 +00001132 case TFTPPUT:
wdenk6e592382004-04-18 17:39:38 +00001133 if (NetServerIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001134 puts("*** ERROR: `serverip' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001135 return 1;
wdenk6e592382004-04-18 17:39:38 +00001136 }
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001137#if defined(CONFIG_CMD_PING) || defined(CONFIG_CMD_SNTP) || \
1138 defined(CONFIG_CMD_DNS)
1139common:
wdenk73a8b272003-06-05 19:27:42 +00001140#endif
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001141 /* Fall through */
wdenk73a8b272003-06-05 19:27:42 +00001142
Simon Guinot8b6bbe12011-05-01 23:38:40 +00001143 case NETCONS:
Luca Ceresoli7a83af02011-05-17 00:03:40 +00001144 case TFTPSRV:
wdenk6e592382004-04-18 17:39:38 +00001145 if (NetOurIP == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001146 puts("*** ERROR: `ipaddr' not set\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001147 return 1;
wdenk6e592382004-04-18 17:39:38 +00001148 }
1149 /* Fall through */
wdenk2d966952002-10-31 22:12:35 +00001150
Peter Tyserbf6cb242010-09-30 11:25:48 -05001151#ifdef CONFIG_CMD_RARP
wdenk2d966952002-10-31 22:12:35 +00001152 case RARP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001153#endif
wdenk2d966952002-10-31 22:12:35 +00001154 case BOOTP:
wdenka3d991b2004-04-15 21:48:45 +00001155 case CDP:
Peter Tyserbf6cb242010-09-30 11:25:48 -05001156 case DHCP:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001157 if (memcmp(NetOurEther, "\0\0\0\0\0\0", 6) == 0) {
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001158 int num = eth_get_dev_index();
wdenk2d966952002-10-31 22:12:35 +00001159
wdenk6e592382004-04-18 17:39:38 +00001160 switch (num) {
1161 case -1:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001162 puts("*** ERROR: No ethernet found.\n");
Luca Ceresoli92895de2011-05-04 02:40:45 +00001163 return 1;
wdenk6e592382004-04-18 17:39:38 +00001164 case 0:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001165 puts("*** ERROR: `ethaddr' not set\n");
wdenk2d966952002-10-31 22:12:35 +00001166 break;
wdenk6e592382004-04-18 17:39:38 +00001167 default:
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001168 printf("*** ERROR: `eth%daddr' not set\n",
wdenk2d966952002-10-31 22:12:35 +00001169 num);
1170 break;
wdenk2d966952002-10-31 22:12:35 +00001171 }
wdenk6e592382004-04-18 17:39:38 +00001172
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001173 NetStartAgain();
Luca Ceresoli92895de2011-05-04 02:40:45 +00001174 return 2;
wdenk6e592382004-04-18 17:39:38 +00001175 }
1176 /* Fall through */
1177 default:
Luca Ceresoli92895de2011-05-04 02:40:45 +00001178 return 0;
wdenk2d966952002-10-31 22:12:35 +00001179 }
Luca Ceresoli92895de2011-05-04 02:40:45 +00001180 return 0; /* OK */
wdenk2d966952002-10-31 22:12:35 +00001181}
1182/**********************************************************************/
1183
1184int
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001185NetCksumOk(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001186{
1187 return !((NetCksum(ptr, len) + 1) & 0xfffe);
1188}
1189
1190
1191unsigned
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001192NetCksum(uchar *ptr, int len)
wdenk2d966952002-10-31 22:12:35 +00001193{
1194 ulong xsum;
Stefan Roese9d2a8732005-08-31 12:55:50 +02001195 ushort *p = (ushort *)ptr;
wdenk2d966952002-10-31 22:12:35 +00001196
1197 xsum = 0;
1198 while (len-- > 0)
Wolfgang Denk7bc5ee02005-08-26 01:36:03 +02001199 xsum += *p++;
wdenk2d966952002-10-31 22:12:35 +00001200 xsum = (xsum & 0xffff) + (xsum >> 16);
1201 xsum = (xsum & 0xffff) + (xsum >> 16);
Luca Ceresoli92895de2011-05-04 02:40:45 +00001202 return xsum & 0xffff;
wdenk2d966952002-10-31 22:12:35 +00001203}
1204
wdenka3d991b2004-04-15 21:48:45 +00001205int
1206NetEthHdrSize(void)
1207{
1208 ushort myvlanid;
wdenk2d966952002-10-31 22:12:35 +00001209
wdenka3d991b2004-04-15 21:48:45 +00001210 myvlanid = ntohs(NetOurVLAN);
1211 if (myvlanid == (ushort)-1)
1212 myvlanid = VLAN_NONE;
1213
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001214 return ((myvlanid & VLAN_IDMASK) == VLAN_NONE) ? ETHER_HDR_SIZE :
1215 VLAN_ETHER_HDR_SIZE;
wdenka3d991b2004-04-15 21:48:45 +00001216}
1217
1218int
Joe Hershbergerdb288a92012-05-15 08:59:04 +00001219NetSetEther(uchar *xet, uchar * addr, uint prot)
wdenk2d966952002-10-31 22:12:35 +00001220{
1221 Ethernet_t *et = (Ethernet_t *)xet;
wdenka3d991b2004-04-15 21:48:45 +00001222 ushort myvlanid;
1223
1224 myvlanid = ntohs(NetOurVLAN);
1225 if (myvlanid == (ushort)-1)
1226 myvlanid = VLAN_NONE;
wdenk2d966952002-10-31 22:12:35 +00001227
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001228 memcpy(et->et_dest, addr, 6);
1229 memcpy(et->et_src, NetOurEther, 6);
wdenka3d991b2004-04-15 21:48:45 +00001230 if ((myvlanid & VLAN_IDMASK) == VLAN_NONE) {
Luca Ceresolic819abe2011-05-04 02:40:46 +00001231 et->et_protlen = htons(prot);
wdenka3d991b2004-04-15 21:48:45 +00001232 return ETHER_HDR_SIZE;
1233 } else {
1234 VLAN_Ethernet_t *vet = (VLAN_Ethernet_t *)xet;
wdenk2d966952002-10-31 22:12:35 +00001235
wdenka3d991b2004-04-15 21:48:45 +00001236 vet->vet_vlan_type = htons(PROT_VLAN);
1237 vet->vet_tag = htons((0 << 5) | (myvlanid & VLAN_IDMASK));
1238 vet->vet_type = htons(prot);
1239 return VLAN_ETHER_HDR_SIZE;
1240 }
1241}
wdenk2d966952002-10-31 22:12:35 +00001242
Joe Hershberger594c26f2012-05-23 07:58:04 +00001243void NetSetIP(uchar *xip, IPaddr_t dest, int dport, int sport, int len)
wdenk2d966952002-10-31 22:12:35 +00001244{
Joe Hershberger594c26f2012-05-23 07:58:04 +00001245 struct ip_udp_hdr *ip = (struct ip_udp_hdr *)xip;
wdenk2d966952002-10-31 22:12:35 +00001246
1247 /*
1248 * If the data is an odd number of bytes, zero the
1249 * byte after the last byte so that the checksum
1250 * will work.
1251 */
1252 if (len & 1)
Joe Hershberger594c26f2012-05-23 07:58:04 +00001253 xip[IP_UDP_HDR_SIZE + len] = 0;
wdenk2d966952002-10-31 22:12:35 +00001254
1255 /*
1256 * Construct an IP and UDP header.
wdenk6e592382004-04-18 17:39:38 +00001257 * (need to set no fragment bit - XXX)
wdenk2d966952002-10-31 22:12:35 +00001258 */
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001259 /* IP_HDR_SIZE / 4 (not including UDP) */
1260 ip->ip_hl_v = 0x45;
wdenk2d966952002-10-31 22:12:35 +00001261 ip->ip_tos = 0;
Joe Hershberger594c26f2012-05-23 07:58:04 +00001262 ip->ip_len = htons(IP_UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001263 ip->ip_id = htons(NetIPID++);
Peter Tysere0c07b82008-12-01 16:26:20 -06001264 ip->ip_off = htons(IP_FLAGS_DFRAG); /* Don't fragment */
wdenk2d966952002-10-31 22:12:35 +00001265 ip->ip_ttl = 255;
1266 ip->ip_p = 17; /* UDP */
1267 ip->ip_sum = 0;
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001268 /* already in network byte order */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001269 NetCopyIP((void *)&ip->ip_src, &NetOurIP);
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001270 /* - "" - */
Luca Ceresoli6b147d12011-05-04 02:40:44 +00001271 NetCopyIP((void *)&ip->ip_dst, &dest);
wdenk2d966952002-10-31 22:12:35 +00001272 ip->udp_src = htons(sport);
1273 ip->udp_dst = htons(dport);
Joe Hershberger594c26f2012-05-23 07:58:04 +00001274 ip->udp_len = htons(UDP_HDR_SIZE + len);
wdenk2d966952002-10-31 22:12:35 +00001275 ip->udp_xsum = 0;
Joe Hershbergerc5c59df2012-05-23 07:58:05 +00001276 ip->ip_sum = ~NetCksum((uchar *)ip, IP_HDR_SIZE / 2);
wdenk2d966952002-10-31 22:12:35 +00001277}
1278
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001279void copy_filename(char *dst, const char *src, int size)
wdenk2d966952002-10-31 22:12:35 +00001280{
1281 if (*src && (*src == '"')) {
1282 ++src;
1283 --size;
1284 }
1285
Luca Ceresolid3c65b02011-05-04 02:40:43 +00001286 while ((--size > 0) && *src && (*src != '"'))
wdenk2d966952002-10-31 22:12:35 +00001287 *dst++ = *src++;
wdenk2d966952002-10-31 22:12:35 +00001288 *dst = '\0';
1289}
1290
Luca Ceresoli3e38e422011-05-11 03:59:54 +00001291#if defined(CONFIG_CMD_NFS) || \
1292 defined(CONFIG_CMD_SNTP) || \
1293 defined(CONFIG_CMD_DNS)
Robin Getz1a32bf42009-07-20 14:53:54 -04001294/*
Robin Getz97399462010-03-08 14:07:00 -05001295 * make port a little random (1024-17407)
1296 * This keeps the math somewhat trivial to compute, and seems to work with
1297 * all supported protocols/clients/servers
Robin Getz1a32bf42009-07-20 14:53:54 -04001298 */
1299unsigned int random_port(void)
1300{
Robin Getz97399462010-03-08 14:07:00 -05001301 return 1024 + (get_timer(0) % 0x4000);
Robin Getz1a32bf42009-07-20 14:53:54 -04001302}
1303#endif
1304
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001305void ip_to_string(IPaddr_t x, char *s)
wdenk2d966952002-10-31 22:12:35 +00001306{
Luca Ceresoli4f63acd2011-05-11 03:59:56 +00001307 x = ntohl(x);
1308 sprintf(s, "%d.%d.%d.%d",
1309 (int) ((x >> 24) & 0xff),
1310 (int) ((x >> 16) & 0xff),
1311 (int) ((x >> 8) & 0xff), (int) ((x >> 0) & 0xff)
wdenk6e592382004-04-18 17:39:38 +00001312 );
wdenk2d966952002-10-31 22:12:35 +00001313}
1314
wdenka3d991b2004-04-15 21:48:45 +00001315void VLAN_to_string(ushort x, char *s)
1316{
1317 x = ntohs(x);
1318
1319 if (x == (ushort)-1)
1320 x = VLAN_NONE;
1321
1322 if (x == VLAN_NONE)
1323 strcpy(s, "none");
1324 else
1325 sprintf(s, "%d", x & VLAN_IDMASK);
1326}
1327
Mike Frysinger2e3ef6e2010-10-20 07:16:48 -04001328ushort string_to_VLAN(const char *s)
wdenka3d991b2004-04-15 21:48:45 +00001329{
1330 ushort id;
1331
1332 if (s == NULL)
wdenkb9711de2004-04-25 13:18:40 +00001333 return htons(VLAN_NONE);
wdenka3d991b2004-04-15 21:48:45 +00001334
1335 if (*s < '0' || *s > '9')
1336 id = VLAN_NONE;
1337 else
1338 id = (ushort)simple_strtoul(s, NULL, 10);
1339
wdenkb9711de2004-04-25 13:18:40 +00001340 return htons(id);
wdenka3d991b2004-04-15 21:48:45 +00001341}
1342
wdenka3d991b2004-04-15 21:48:45 +00001343ushort getenv_VLAN(char *var)
1344{
Luca Ceresoli92895de2011-05-04 02:40:45 +00001345 return string_to_VLAN(getenv(var));
wdenka3d991b2004-04-15 21:48:45 +00001346}