]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_net.c
microblaze: Fix strict-aliasing rules for in_be32
[karo-tx-uboot.git] / common / cmd_net.c
1 /*
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>
29 #include <net.h>
30
31 static int netboot_common (proto_t, cmd_tbl_t *, int , char * const []);
32
33 int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
34 {
35         return netboot_common (BOOTP, cmdtp, argc, argv);
36 }
37
38 U_BOOT_CMD(
39         bootp,  3,      1,      do_bootp,
40         "boot image via network using BOOTP/TFTP protocol",
41         "[loadAddress] [[hostIPaddr:]bootfilename]"
42 );
43
44 int do_tftpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
45 {
46         return netboot_common (TFTP, cmdtp, argc, argv);
47 }
48
49 U_BOOT_CMD(
50         tftpboot,       3,      1,      do_tftpb,
51         "boot image via network using TFTP protocol",
52         "[loadAddress] [[hostIPaddr:]bootfilename]"
53 );
54
55 #ifdef CONFIG_CMD_TFTPSRV
56 static int do_tftpsrv(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
57 {
58         return netboot_common(TFTPSRV, cmdtp, argc, argv);
59 }
60
61 U_BOOT_CMD(
62         tftpsrv,        2,      1,      do_tftpsrv,
63         "act as a TFTP server and boot the first received file",
64         "[loadAddress]\n"
65         "Listen for an incoming TFTP transfer, receive a file and boot it.\n"
66         "The transfer is aborted if a transfer has not been started after\n"
67         "about 50 seconds or if Ctrl-C is pressed."
68 );
69 #endif
70
71
72 #ifdef CONFIG_CMD_RARP
73 int do_rarpb (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
74 {
75         return netboot_common (RARP, cmdtp, argc, argv);
76 }
77
78 U_BOOT_CMD(
79         rarpboot,       3,      1,      do_rarpb,
80         "boot image via network using RARP/TFTP protocol",
81         "[loadAddress] [[hostIPaddr:]bootfilename]"
82 );
83 #endif
84
85 #if defined(CONFIG_CMD_DHCP)
86 int do_dhcp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
87 {
88         return netboot_common(DHCP, cmdtp, argc, argv);
89 }
90
91 U_BOOT_CMD(
92         dhcp,   3,      1,      do_dhcp,
93         "boot image via network using DHCP/TFTP protocol",
94         "[loadAddress] [[hostIPaddr:]bootfilename]"
95 );
96 #endif
97
98 #if defined(CONFIG_CMD_NFS)
99 int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
100 {
101         return netboot_common(NFS, cmdtp, argc, argv);
102 }
103
104 U_BOOT_CMD(
105         nfs,    3,      1,      do_nfs,
106         "boot image via network using NFS protocol",
107         "[loadAddress] [[hostIPaddr:]bootfilename]"
108 );
109 #endif
110
111 static void netboot_update_env (void)
112 {
113         char tmp[22];
114
115         if (NetOurGatewayIP) {
116                 ip_to_string (NetOurGatewayIP, tmp);
117                 setenv ("gatewayip", tmp);
118         }
119
120         if (NetOurSubnetMask) {
121                 ip_to_string (NetOurSubnetMask, tmp);
122                 setenv ("netmask", tmp);
123         }
124
125         if (NetOurHostName[0])
126                 setenv ("hostname", NetOurHostName);
127
128         if (NetOurRootPath[0])
129                 setenv ("rootpath", NetOurRootPath);
130
131         if (NetOurIP) {
132                 ip_to_string (NetOurIP, tmp);
133                 setenv ("ipaddr", tmp);
134         }
135
136         if (NetServerIP) {
137                 ip_to_string (NetServerIP, tmp);
138                 setenv ("serverip", tmp);
139         }
140
141         if (NetOurDNSIP) {
142                 ip_to_string (NetOurDNSIP, tmp);
143                 setenv ("dnsip", tmp);
144         }
145 #if defined(CONFIG_BOOTP_DNS2)
146         if (NetOurDNS2IP) {
147                 ip_to_string (NetOurDNS2IP, tmp);
148                 setenv ("dnsip2", tmp);
149         }
150 #endif
151         if (NetOurNISDomain[0])
152                 setenv ("domain", NetOurNISDomain);
153
154 #if defined(CONFIG_CMD_SNTP) \
155     && defined(CONFIG_BOOTP_TIMEOFFSET)
156         if (NetTimeOffset) {
157                 sprintf (tmp, "%d", NetTimeOffset);
158                 setenv ("timeoffset", tmp);
159         }
160 #endif
161 #if defined(CONFIG_CMD_SNTP) \
162     && defined(CONFIG_BOOTP_NTPSERVER)
163         if (NetNtpServerIP) {
164                 ip_to_string (NetNtpServerIP, tmp);
165                 setenv ("ntpserverip", tmp);
166         }
167 #endif
168 }
169
170 static int
171 netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char * const argv[])
172 {
173         char *s;
174         char *end;
175         int   rcode = 0;
176         int   size;
177         ulong addr;
178
179         /* pre-set load_addr */
180         if ((s = getenv("loadaddr")) != NULL) {
181                 load_addr = simple_strtoul(s, NULL, 16);
182         }
183
184         switch (argc) {
185         case 1:
186                 break;
187
188         case 2: /*
189                  * Only one arg - accept two forms:
190                  * Just load address, or just boot file name. The latter
191                  * form must be written in a format which can not be
192                  * mis-interpreted as a valid number.
193                  */
194                 addr = simple_strtoul(argv[1], &end, 16);
195                 if (end == (argv[1] + strlen(argv[1])))
196                         load_addr = addr;
197                 else
198                         copy_filename(BootFile, argv[1], sizeof(BootFile));
199                 break;
200
201         case 3: load_addr = simple_strtoul(argv[1], NULL, 16);
202                 copy_filename (BootFile, argv[2], sizeof(BootFile));
203
204                 break;
205
206         default:
207                 show_boot_progress (-80);
208                 return cmd_usage(cmdtp);
209         }
210
211         show_boot_progress (80);
212         if ((size = NetLoop(proto)) < 0) {
213                 show_boot_progress (-81);
214                 return 1;
215         }
216
217         show_boot_progress (81);
218         /* NetLoop ok, update environment */
219         netboot_update_env();
220
221         /* done if no file was loaded (no errors though) */
222         if (size == 0) {
223                 show_boot_progress (-82);
224                 return 0;
225         }
226
227         /* flush cache */
228         flush_cache(load_addr, size);
229
230         show_boot_progress(82);
231         rcode = bootm_maybe_autostart(cmdtp, argv[0]);
232
233         if (rcode < 0)
234                 show_boot_progress (-83);
235         else
236                 show_boot_progress (84);
237         return rcode;
238 }
239
240 #if defined(CONFIG_CMD_PING)
241 int do_ping (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
242 {
243         if (argc < 2)
244                 return -1;
245
246         NetPingIP = string_to_ip(argv[1]);
247         if (NetPingIP == 0)
248                 return cmd_usage(cmdtp);
249
250         if (NetLoop(PING) < 0) {
251                 printf("ping failed; host %s is not alive\n", argv[1]);
252                 return 1;
253         }
254
255         printf("host %s is alive\n", argv[1]);
256
257         return 0;
258 }
259
260 U_BOOT_CMD(
261         ping,   2,      1,      do_ping,
262         "send ICMP ECHO_REQUEST to network host",
263         "pingAddress"
264 );
265 #endif
266
267 #if defined(CONFIG_CMD_CDP)
268
269 static void cdp_update_env(void)
270 {
271         char tmp[16];
272
273         if (CDPApplianceVLAN != htons(-1)) {
274                 printf("CDP offered appliance VLAN %d\n", ntohs(CDPApplianceVLAN));
275                 VLAN_to_string(CDPApplianceVLAN, tmp);
276                 setenv("vlan", tmp);
277                 NetOurVLAN = CDPApplianceVLAN;
278         }
279
280         if (CDPNativeVLAN != htons(-1)) {
281                 printf("CDP offered native VLAN %d\n", ntohs(CDPNativeVLAN));
282                 VLAN_to_string(CDPNativeVLAN, tmp);
283                 setenv("nvlan", tmp);
284                 NetOurNativeVLAN = CDPNativeVLAN;
285         }
286
287 }
288
289 int do_cdp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
290 {
291         int r;
292
293         r = NetLoop(CDP);
294         if (r < 0) {
295                 printf("cdp failed; perhaps not a CISCO switch?\n");
296                 return 1;
297         }
298
299         cdp_update_env();
300
301         return 0;
302 }
303
304 U_BOOT_CMD(
305         cdp,    1,      1,      do_cdp,
306         "Perform CDP network configuration",
307         "\n"
308 );
309 #endif
310
311 #if defined(CONFIG_CMD_SNTP)
312 int do_sntp (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
313 {
314         char *toff;
315
316         if (argc < 2) {
317                 NetNtpServerIP = getenv_IPaddr ("ntpserverip");
318                 if (NetNtpServerIP == 0) {
319                         printf ("ntpserverip not set\n");
320                         return (1);
321                 }
322         } else {
323                 NetNtpServerIP = string_to_ip(argv[1]);
324                 if (NetNtpServerIP == 0) {
325                         printf ("Bad NTP server IP address\n");
326                         return (1);
327                 }
328         }
329
330         toff = getenv ("timeoffset");
331         if (toff == NULL) NetTimeOffset = 0;
332         else NetTimeOffset = simple_strtol (toff, NULL, 10);
333
334         if (NetLoop(SNTP) < 0) {
335                 printf("SNTP failed: host %pI4 not responding\n",
336                         &NetNtpServerIP);
337                 return 1;
338         }
339
340         return 0;
341 }
342
343 U_BOOT_CMD(
344         sntp,   2,      1,      do_sntp,
345         "synchronize RTC via network",
346         "[NTP server IP]\n"
347 );
348 #endif
349
350 #if defined(CONFIG_CMD_DNS)
351 int do_dns(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
352 {
353         if (argc == 1)
354                 return cmd_usage(cmdtp);
355
356         /*
357          * We should check for a valid hostname:
358          * - Each label must be between 1 and 63 characters long
359          * - the entire hostname has a maximum of 255 characters
360          * - only the ASCII letters 'a' through 'z' (case-insensitive),
361          *   the digits '0' through '9', and the hyphen
362          * - cannot begin or end with a hyphen
363          * - no other symbols, punctuation characters, or blank spaces are
364          *   permitted
365          * but hey - this is a minimalist implmentation, so only check length
366          * and let the name server deal with things.
367          */
368         if (strlen(argv[1]) >= 255) {
369                 printf("dns error: hostname too long\n");
370                 return 1;
371         }
372
373         NetDNSResolve = argv[1];
374
375         if (argc == 3)
376                 NetDNSenvvar = argv[2];
377         else
378                 NetDNSenvvar = NULL;
379
380         if (NetLoop(DNS) < 0) {
381                 printf("dns lookup of %s failed, check setup\n", argv[1]);
382                 return 1;
383         }
384
385         return 0;
386 }
387
388 U_BOOT_CMD(
389         dns,    3,      1,      do_dns,
390         "lookup the IP of a hostname",
391         "hostname [envvar]"
392 );
393
394 #endif  /* CONFIG_CMD_DNS */