3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
31 static int netboot_common (proto_t, cmd_tbl_t *, int , char * const []);
33 int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
35 return netboot_common (BOOTP, cmdtp, argc, argv);
39 bootp, 3, 1, do_bootp,
40 "boot image via network using BOOTP/TFTP protocol",
41 "[loadAddress] [[hostIPaddr:]bootfilename]"
44 int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
46 return netboot_common (TFTP, cmdtp, argc, argv);
50 tftpboot, 3, 1, do_tftpb,
51 "boot image via network using TFTP protocol",
52 "[loadAddress] [[hostIPaddr:]bootfilename]"
55 #ifdef CONFIG_CMD_RARP
56 int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
58 return netboot_common (RARP, cmdtp, argc, argv);
62 rarpboot, 3, 1, do_rarpb,
63 "boot image via network using RARP/TFTP protocol",
64 "[loadAddress] [[hostIPaddr:]bootfilename]"
68 #if defined(CONFIG_CMD_DHCP)
69 int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71 return netboot_common(DHCP, cmdtp, argc, argv);
76 "boot image via network using DHCP/TFTP protocol",
77 "[loadAddress] [[hostIPaddr:]bootfilename]"
81 #if defined(CONFIG_CMD_NFS)
82 int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
84 return netboot_common(NFS, cmdtp, argc, argv);
89 "boot image via network using NFS protocol",
90 "[loadAddress] [[hostIPaddr:]bootfilename]"
94 static void netboot_update_env (void)
98 if (NetOurGatewayIP) {
99 ip_to_string (NetOurGatewayIP, tmp);
100 setenv ("gatewayip", tmp);
103 if (NetOurSubnetMask) {
104 ip_to_string (NetOurSubnetMask, tmp);
105 setenv ("netmask", tmp);
108 if (NetOurHostName[0])
109 setenv ("hostname", NetOurHostName);
111 if (NetOurRootPath[0])
112 setenv ("rootpath", NetOurRootPath);
115 ip_to_string (NetOurIP, tmp);
116 setenv ("ipaddr", tmp);
120 ip_to_string (NetServerIP, tmp);
121 setenv ("serverip", tmp);
125 ip_to_string (NetOurDNSIP, tmp);
126 setenv ("dnsip", tmp);
128 #if defined(CONFIG_BOOTP_DNS2)
130 ip_to_string (NetOurDNS2IP, tmp);
131 setenv ("dnsip2", tmp);
134 if (NetOurNISDomain[0])
135 setenv ("domain", NetOurNISDomain);
137 #if defined(CONFIG_CMD_SNTP) \
138 && defined(CONFIG_BOOTP_TIMEOFFSET)
140 sprintf (tmp, "%d", NetTimeOffset);
141 setenv ("timeoffset", tmp);
144 #if defined(CONFIG_CMD_SNTP) \
145 && defined(CONFIG_BOOTP_NTPSERVER)
146 if (NetNtpServerIP) {
147 ip_to_string (NetNtpServerIP, tmp);
148 setenv ("ntpserverip", tmp);
154 netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char * const argv[])
162 /* pre-set load_addr */
163 if ((s = getenv("loadaddr")) != NULL) {
164 load_addr = simple_strtoul(s, NULL, 16);
172 * Only one arg - accept two forms:
173 * Just load address, or just boot file name. The latter
174 * form must be written in a format which can not be
175 * mis-interpreted as a valid number.
177 addr = simple_strtoul(argv[1], &end, 16);
178 if (end == (argv[1] + strlen(argv[1])))
181 copy_filename(BootFile, argv[1], sizeof(BootFile));
184 case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
185 copy_filename (BootFile, argv[2], sizeof(BootFile));
190 show_boot_progress (-80);
191 return cmd_usage(cmdtp);
194 show_boot_progress (80);
195 if ((size = NetLoop(proto)) < 0) {
196 show_boot_progress (-81);
200 show_boot_progress (81);
201 /* NetLoop ok, update environment */
202 netboot_update_env();
204 /* done if no file was loaded (no errors though) */
206 show_boot_progress (-82);
211 flush_cache(load_addr, size);
213 /* Loading ok, check if we should attempt an auto-start */
214 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"yes") == 0)) {
216 local_args[0] = argv[0];
217 local_args[1] = NULL;
219 printf ("Automatic boot of image at addr 0x%08lX ...\n",
221 show_boot_progress (82);
222 rcode = do_bootm (cmdtp, 0, 1, local_args);
226 show_boot_progress (-83);
228 show_boot_progress (84);
232 #if defined(CONFIG_CMD_PING)
233 int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
238 NetPingIP = string_to_ip(argv[1]);
240 return cmd_usage(cmdtp);
242 if (NetLoop(PING) < 0) {
243 printf("ping failed; host %s is not alive\n", argv[1]);
247 printf("host %s is alive\n", argv[1]);
254 "send ICMP ECHO_REQUEST to network host",
259 #if defined(CONFIG_CMD_CDP)
261 static void cdp_update_env(void)
265 if (CDPApplianceVLAN != htons(-1)) {
266 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
267 VLAN_to_string(CDPApplianceVLAN, tmp);
269 NetOurVLAN = CDPApplianceVLAN;
272 if (CDPNativeVLAN != htons(-1)) {
273 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
274 VLAN_to_string(CDPNativeVLAN, tmp);
275 setenv("nvlan", tmp);
276 NetOurNativeVLAN = CDPNativeVLAN;
281 int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
287 printf("cdp failed; perhaps not a CISCO switch?\n");
298 "Perform CDP network configuration",
303 #if defined(CONFIG_CMD_SNTP)
304 int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
309 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
310 if (NetNtpServerIP == 0) {
311 printf ("ntpserverip not set\n");
315 NetNtpServerIP = string_to_ip(argv[1]);
316 if (NetNtpServerIP == 0) {
317 printf ("Bad NTP server IP address\n");
322 toff = getenv ("timeoffset");
323 if (toff == NULL) NetTimeOffset = 0;
324 else NetTimeOffset = simple_strtol (toff, NULL, 10);
326 if (NetLoop(SNTP) < 0) {
327 printf("SNTP failed: host %s not responding\n", argv[1]);
336 "synchronize RTC via network",
341 #if defined(CONFIG_CMD_DNS)
342 int do_dns(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
345 return cmd_usage(cmdtp);
348 * We should check for a valid hostname:
349 * - Each label must be between 1 and 63 characters long
350 * - the entire hostname has a maximum of 255 characters
351 * - only the ASCII letters 'a' through 'z' (case-insensitive),
352 * the digits '0' through '9', and the hyphen
353 * - cannot begin or end with a hyphen
354 * - no other symbols, punctuation characters, or blank spaces are
356 * but hey - this is a minimalist implmentation, so only check length
357 * and let the name server deal with things.
359 if (strlen(argv[1]) >= 255) {
360 printf("dns error: hostname too long\n");
364 NetDNSResolve = argv[1];
367 NetDNSenvvar = argv[2];
371 if (NetLoop(DNS) < 0) {
372 printf("dns lookup of %s failed, check setup\n", argv[1]);
381 "lookup the IP of a hostname",
385 #endif /* CONFIG_CMD_DNS */