blob: f89a24bfd4f6568e07eb8aa0bdb556d1537a2602 [file] [log] [blame]
wdenk38635852002-08-27 05:55:31 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * Boot support
26 */
27#include <common.h>
28#include <command.h>
wdenk38635852002-08-27 05:55:31 +000029#include <net.h>
30
Simon Glasse4bf0c52011-10-24 18:00:02 +000031static int netboot_common(enum proto_t, cmd_tbl_t *, int, char * const []);
wdenk38635852002-08-27 05:55:31 +000032
Wolfgang Denk54841ab2010-06-28 22:00:46 +020033int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000034{
35 return netboot_common (BOOTP, cmdtp, argc, argv);
36}
37
wdenk0d498392003-07-01 21:06:45 +000038U_BOOT_CMD(
39 bootp, 3, 1, do_bootp,
Peter Tyser2fb26042009-01-27 18:03:12 -060040 "boot image via network using BOOTP/TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020041 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000042);
43
Wolfgang Denk54841ab2010-06-28 22:00:46 +020044int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000045{
Simon Glasse4bf0c52011-10-24 18:00:02 +000046 return netboot_common(TFTPGET, cmdtp, argc, argv);
wdenk38635852002-08-27 05:55:31 +000047}
48
wdenk0d498392003-07-01 21:06:45 +000049U_BOOT_CMD(
50 tftpboot, 3, 1, do_tftpb,
Peter Tyser2fb26042009-01-27 18:03:12 -060051 "boot image via network using TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020052 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000053);
54
Simon Glass2d46cf22011-10-24 18:00:08 +000055#ifdef CONFIG_CMD_TFTPPUT
56int do_tftpput(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
57{
58 int ret;
59
60 ret = netboot_common(TFTPPUT, cmdtp, argc, argv);
61 return ret;
62}
63
64U_BOOT_CMD(
65 tftpput, 4, 1, do_tftpput,
66 "TFTP put command, for uploading files to a server",
67 "Address Size [[hostIPaddr:]filename]"
68);
69#endif
70
Luca Ceresoli7a83af02011-05-17 00:03:40 +000071#ifdef CONFIG_CMD_TFTPSRV
72static int do_tftpsrv(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
73{
74 return netboot_common(TFTPSRV, cmdtp, argc, argv);
75}
76
77U_BOOT_CMD(
78 tftpsrv, 2, 1, do_tftpsrv,
79 "act as a TFTP server and boot the first received file",
80 "[loadAddress]\n"
81 "Listen for an incoming TFTP transfer, receive a file and boot it.\n"
82 "The transfer is aborted if a transfer has not been started after\n"
83 "about 50 seconds or if Ctrl-C is pressed."
84);
85#endif
86
87
Peter Tyserbf6cb242010-09-30 11:25:48 -050088#ifdef CONFIG_CMD_RARP
Wolfgang Denk54841ab2010-06-28 22:00:46 +020089int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +000090{
91 return netboot_common (RARP, cmdtp, argc, argv);
92}
93
wdenk0d498392003-07-01 21:06:45 +000094U_BOOT_CMD(
95 rarpboot, 3, 1, do_rarpb,
Peter Tyser2fb26042009-01-27 18:03:12 -060096 "boot image via network using RARP/TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +020097 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +000098);
Peter Tyserbf6cb242010-09-30 11:25:48 -050099#endif
wdenk8bde7f72003-06-27 21:31:46 +0000100
Jon Loeligerc76fe472007-07-08 18:02:23 -0500101#if defined(CONFIG_CMD_DHCP)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200102int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000103{
104 return netboot_common(DHCP, cmdtp, argc, argv);
105}
wdenk8bde7f72003-06-27 21:31:46 +0000106
wdenk0d498392003-07-01 21:06:45 +0000107U_BOOT_CMD(
108 dhcp, 3, 1, do_dhcp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600109 "boot image via network using DHCP/TFTP protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200110 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenk8bde7f72003-06-27 21:31:46 +0000111);
Jon Loeliger90253172007-07-10 11:02:44 -0500112#endif
wdenk38635852002-08-27 05:55:31 +0000113
Jon Loeligerc76fe472007-07-08 18:02:23 -0500114#if defined(CONFIG_CMD_NFS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200115int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkcbd8a352004-02-24 02:00:03 +0000116{
117 return netboot_common(NFS, cmdtp, argc, argv);
118}
119
120U_BOOT_CMD(
121 nfs, 3, 1, do_nfs,
Peter Tyser2fb26042009-01-27 18:03:12 -0600122 "boot image via network using NFS protocol",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200123 "[loadAddress] [[hostIPaddr:]bootfilename]"
wdenkcbd8a352004-02-24 02:00:03 +0000124);
Jon Loeliger90253172007-07-10 11:02:44 -0500125#endif
wdenkcbd8a352004-02-24 02:00:03 +0000126
wdenk6e592382004-04-18 17:39:38 +0000127static void netboot_update_env (void)
wdenk38635852002-08-27 05:55:31 +0000128{
wdenk6e592382004-04-18 17:39:38 +0000129 char tmp[22];
wdenk38635852002-08-27 05:55:31 +0000130
wdenk6e592382004-04-18 17:39:38 +0000131 if (NetOurGatewayIP) {
132 ip_to_string (NetOurGatewayIP, tmp);
133 setenv ("gatewayip", tmp);
134 }
wdenk38635852002-08-27 05:55:31 +0000135
wdenk6e592382004-04-18 17:39:38 +0000136 if (NetOurSubnetMask) {
137 ip_to_string (NetOurSubnetMask, tmp);
138 setenv ("netmask", tmp);
139 }
wdenk38635852002-08-27 05:55:31 +0000140
wdenk6e592382004-04-18 17:39:38 +0000141 if (NetOurHostName[0])
142 setenv ("hostname", NetOurHostName);
wdenk38635852002-08-27 05:55:31 +0000143
wdenk6e592382004-04-18 17:39:38 +0000144 if (NetOurRootPath[0])
145 setenv ("rootpath", NetOurRootPath);
wdenk38635852002-08-27 05:55:31 +0000146
wdenk6e592382004-04-18 17:39:38 +0000147 if (NetOurIP) {
148 ip_to_string (NetOurIP, tmp);
149 setenv ("ipaddr", tmp);
150 }
wdenk38635852002-08-27 05:55:31 +0000151
wdenk6e592382004-04-18 17:39:38 +0000152 if (NetServerIP) {
153 ip_to_string (NetServerIP, tmp);
154 setenv ("serverip", tmp);
155 }
wdenk38635852002-08-27 05:55:31 +0000156
wdenk6e592382004-04-18 17:39:38 +0000157 if (NetOurDNSIP) {
158 ip_to_string (NetOurDNSIP, tmp);
159 setenv ("dnsip", tmp);
160 }
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500161#if defined(CONFIG_BOOTP_DNS2)
wdenk6e592382004-04-18 17:39:38 +0000162 if (NetOurDNS2IP) {
163 ip_to_string (NetOurDNS2IP, tmp);
164 setenv ("dnsip2", tmp);
165 }
stroesefe389a82003-08-28 14:17:32 +0000166#endif
wdenk6e592382004-04-18 17:39:38 +0000167 if (NetOurNISDomain[0])
168 setenv ("domain", NetOurNISDomain);
wdenkea287de2005-04-01 00:25:43 +0000169
Jon Loeligerc76fe472007-07-08 18:02:23 -0500170#if defined(CONFIG_CMD_SNTP) \
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500171 && defined(CONFIG_BOOTP_TIMEOFFSET)
wdenkea287de2005-04-01 00:25:43 +0000172 if (NetTimeOffset) {
173 sprintf (tmp, "%d", NetTimeOffset);
174 setenv ("timeoffset", tmp);
175 }
176#endif
Jon Loeligerc76fe472007-07-08 18:02:23 -0500177#if defined(CONFIG_CMD_SNTP) \
Jon Loeliger1fe80d72007-07-09 22:08:34 -0500178 && defined(CONFIG_BOOTP_NTPSERVER)
wdenkea287de2005-04-01 00:25:43 +0000179 if (NetNtpServerIP) {
180 ip_to_string (NetNtpServerIP, tmp);
181 setenv ("ntpserverip", tmp);
182 }
183#endif
wdenk38635852002-08-27 05:55:31 +0000184}
wdenk6e592382004-04-18 17:39:38 +0000185
Simon Glasse4bf0c52011-10-24 18:00:02 +0000186static int netboot_common(enum proto_t proto, cmd_tbl_t *cmdtp, int argc,
187 char * const argv[])
wdenk38635852002-08-27 05:55:31 +0000188{
189 char *s;
Peter Tyser2e4970d2008-12-02 12:59:51 -0600190 char *end;
wdenk38635852002-08-27 05:55:31 +0000191 int rcode = 0;
192 int size;
Peter Tyser2e4970d2008-12-02 12:59:51 -0600193 ulong addr;
wdenk38635852002-08-27 05:55:31 +0000194
195 /* pre-set load_addr */
196 if ((s = getenv("loadaddr")) != NULL) {
197 load_addr = simple_strtoul(s, NULL, 16);
198 }
199
200 switch (argc) {
201 case 1:
202 break;
203
Peter Tyser2e4970d2008-12-02 12:59:51 -0600204 case 2: /*
205 * Only one arg - accept two forms:
206 * Just load address, or just boot file name. The latter
207 * form must be written in a format which can not be
208 * mis-interpreted as a valid number.
wdenk38635852002-08-27 05:55:31 +0000209 */
Peter Tyser2e4970d2008-12-02 12:59:51 -0600210 addr = simple_strtoul(argv[1], &end, 16);
211 if (end == (argv[1] + strlen(argv[1])))
212 load_addr = addr;
213 else
214 copy_filename(BootFile, argv[1], sizeof(BootFile));
wdenk38635852002-08-27 05:55:31 +0000215 break;
216
217 case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
218 copy_filename (BootFile, argv[2], sizeof(BootFile));
219
220 break;
221
Simon Glass2d46cf22011-10-24 18:00:08 +0000222#ifdef CONFIG_CMD_TFTPPUT
223 case 4:
224 save_addr = strict_strtoul(argv[1], NULL, 16);
225 save_size = strict_strtoul(argv[2], NULL, 16);
226 copy_filename(BootFile, argv[3], sizeof(BootFile));
227 break;
228#endif
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200229 default:
Heiko Schocherfad63402007-07-13 09:54:17 +0200230 show_boot_progress (-80);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200231 return cmd_usage(cmdtp);
wdenk38635852002-08-27 05:55:31 +0000232 }
233
Heiko Schocherfad63402007-07-13 09:54:17 +0200234 show_boot_progress (80);
Heiko Schocher566a4942007-06-22 19:11:54 +0200235 if ((size = NetLoop(proto)) < 0) {
Heiko Schocherfad63402007-07-13 09:54:17 +0200236 show_boot_progress (-81);
wdenk38635852002-08-27 05:55:31 +0000237 return 1;
Heiko Schocher566a4942007-06-22 19:11:54 +0200238 }
wdenk38635852002-08-27 05:55:31 +0000239
Heiko Schocherfad63402007-07-13 09:54:17 +0200240 show_boot_progress (81);
wdenk38635852002-08-27 05:55:31 +0000241 /* NetLoop ok, update environment */
242 netboot_update_env();
243
wdenkeb9401e2002-11-11 02:11:37 +0000244 /* done if no file was loaded (no errors though) */
Heiko Schocher566a4942007-06-22 19:11:54 +0200245 if (size == 0) {
Heiko Schocherfad63402007-07-13 09:54:17 +0200246 show_boot_progress (-82);
wdenkeb9401e2002-11-11 02:11:37 +0000247 return 0;
Heiko Schocher566a4942007-06-22 19:11:54 +0200248 }
wdenkeb9401e2002-11-11 02:11:37 +0000249
wdenk38635852002-08-27 05:55:31 +0000250 /* flush cache */
251 flush_cache(load_addr, size);
252
Mike Frysinger67d668b2011-06-05 13:43:02 +0000253 show_boot_progress(82);
254 rcode = bootm_maybe_autostart(cmdtp, argv[0]);
wdenk38635852002-08-27 05:55:31 +0000255
Heiko Schocher566a4942007-06-22 19:11:54 +0200256 if (rcode < 0)
Heiko Schocherfad63402007-07-13 09:54:17 +0200257 show_boot_progress (-83);
Heiko Schocher566a4942007-06-22 19:11:54 +0200258 else
Heiko Schocherfad63402007-07-13 09:54:17 +0200259 show_boot_progress (84);
wdenk38635852002-08-27 05:55:31 +0000260 return rcode;
261}
262
Jon Loeligerc76fe472007-07-08 18:02:23 -0500263#if defined(CONFIG_CMD_PING)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200264int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk73a8b272003-06-05 19:27:42 +0000265{
266 if (argc < 2)
267 return -1;
268
269 NetPingIP = string_to_ip(argv[1]);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200270 if (NetPingIP == 0)
271 return cmd_usage(cmdtp);
wdenk73a8b272003-06-05 19:27:42 +0000272
273 if (NetLoop(PING) < 0) {
274 printf("ping failed; host %s is not alive\n", argv[1]);
275 return 1;
276 }
277
278 printf("host %s is alive\n", argv[1]);
279
280 return 0;
281}
wdenk6dff5522003-07-15 07:45:49 +0000282
283U_BOOT_CMD(
284 ping, 2, 1, do_ping,
Peter Tyser2fb26042009-01-27 18:03:12 -0600285 "send ICMP ECHO_REQUEST to network host",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200286 "pingAddress"
wdenk6dff5522003-07-15 07:45:49 +0000287);
Jon Loeliger90253172007-07-10 11:02:44 -0500288#endif
wdenk73a8b272003-06-05 19:27:42 +0000289
Jon Loeligerc76fe472007-07-08 18:02:23 -0500290#if defined(CONFIG_CMD_CDP)
wdenka3d991b2004-04-15 21:48:45 +0000291
292static void cdp_update_env(void)
293{
294 char tmp[16];
295
296 if (CDPApplianceVLAN != htons(-1)) {
297 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
298 VLAN_to_string(CDPApplianceVLAN, tmp);
299 setenv("vlan", tmp);
300 NetOurVLAN = CDPApplianceVLAN;
301 }
302
303 if (CDPNativeVLAN != htons(-1)) {
304 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
305 VLAN_to_string(CDPNativeVLAN, tmp);
306 setenv("nvlan", tmp);
307 NetOurNativeVLAN = CDPNativeVLAN;
308 }
309
310}
311
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200312int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka3d991b2004-04-15 21:48:45 +0000313{
314 int r;
315
316 r = NetLoop(CDP);
317 if (r < 0) {
318 printf("cdp failed; perhaps not a CISCO switch?\n");
319 return 1;
320 }
321
322 cdp_update_env();
323
324 return 0;
325}
326
327U_BOOT_CMD(
328 cdp, 1, 1, do_cdp,
Wolfgang Denkec5c04c2010-10-26 23:42:23 +0200329 "Perform CDP network configuration",
Wolfgang Denk4b582662010-12-23 17:02:18 +0100330 "\n"
wdenka3d991b2004-04-15 21:48:45 +0000331);
Jon Loeliger90253172007-07-10 11:02:44 -0500332#endif
wdenka3d991b2004-04-15 21:48:45 +0000333
Jon Loeligerc76fe472007-07-08 18:02:23 -0500334#if defined(CONFIG_CMD_SNTP)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200335int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenkea287de2005-04-01 00:25:43 +0000336{
337 char *toff;
338
339 if (argc < 2) {
340 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
341 if (NetNtpServerIP == 0) {
342 printf ("ntpserverip not set\n");
343 return (1);
344 }
345 } else {
346 NetNtpServerIP = string_to_ip(argv[1]);
347 if (NetNtpServerIP == 0) {
348 printf ("Bad NTP server IP address\n");
349 return (1);
350 }
351 }
352
353 toff = getenv ("timeoffset");
354 if (toff == NULL) NetTimeOffset = 0;
355 else NetTimeOffset = simple_strtol (toff, NULL, 10);
356
357 if (NetLoop(SNTP) < 0) {
Luuk Paulussend6840e32011-05-16 18:27:11 +0000358 printf("SNTP failed: host %pI4 not responding\n",
359 &NetNtpServerIP);
wdenkea287de2005-04-01 00:25:43 +0000360 return 1;
361 }
362
363 return 0;
364}
365
366U_BOOT_CMD(
367 sntp, 2, 1, do_sntp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600368 "synchronize RTC via network",
wdenkea287de2005-04-01 00:25:43 +0000369 "[NTP server IP]\n"
370);
Jon Loeliger90253172007-07-10 11:02:44 -0500371#endif
Robin Getz1a32bf42009-07-20 14:53:54 -0400372
373#if defined(CONFIG_CMD_DNS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200374int do_dns(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Robin Getz1a32bf42009-07-20 14:53:54 -0400375{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200376 if (argc == 1)
377 return cmd_usage(cmdtp);
Robin Getz1a32bf42009-07-20 14:53:54 -0400378
379 /*
380 * We should check for a valid hostname:
381 * - Each label must be between 1 and 63 characters long
382 * - the entire hostname has a maximum of 255 characters
383 * - only the ASCII letters 'a' through 'z' (case-insensitive),
384 * the digits '0' through '9', and the hyphen
385 * - cannot begin or end with a hyphen
386 * - no other symbols, punctuation characters, or blank spaces are
387 * permitted
388 * but hey - this is a minimalist implmentation, so only check length
389 * and let the name server deal with things.
390 */
391 if (strlen(argv[1]) >= 255) {
392 printf("dns error: hostname too long\n");
393 return 1;
394 }
395
396 NetDNSResolve = argv[1];
397
398 if (argc == 3)
399 NetDNSenvvar = argv[2];
400 else
401 NetDNSenvvar = NULL;
402
403 if (NetLoop(DNS) < 0) {
404 printf("dns lookup of %s failed, check setup\n", argv[1]);
405 return 1;
406 }
407
408 return 0;
409}
410
411U_BOOT_CMD(
412 dns, 3, 1, do_dns,
413 "lookup the IP of a hostname",
414 "hostname [envvar]"
415);
416
417#endif /* CONFIG_CMD_DNS */