mbr: convert to preprocessed source
[dragonfly.git] / sys / boot / common / commands.c
blob60335f7b8ee85313b31100b21810cfee568b525b
1 /*-
2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
26 * $FreeBSD: src/sys/boot/common/commands.c,v 1.19 2003/08/25 23:30:41 obrien Exp $
27 * $DragonFly: src/sys/boot/common/commands.c,v 1.4 2008/09/02 17:21:12 dillon Exp $
30 #include <stand.h>
31 #include <string.h>
33 #include "bootstrap.h"
35 char *command_errmsg;
36 char command_errbuf[256]; /* XXX should have procedural interface for setting, size limit? */
38 static int page_file(char *filename);
41 * Help is read from a formatted text file.
43 * Entries in the file are formatted as
45 # Ttopic [Ssubtopic] Ddescription
46 help
47 text
48 here
52 * Note that for code simplicity's sake, the above format must be followed
53 * exactly.
55 * Subtopic entries must immediately follow the topic (this is used to
56 * produce the listing of subtopics).
58 * If no argument(s) are supplied by the user, the help for 'help' is displayed.
60 COMMAND_SET(help, "help", "detailed help", command_help);
62 static int
63 help_getnext(int fd, char **topic, char **subtopic, char **desc)
65 char line[81], *cp, *ep;
67 for (;;) {
68 if (fgetstr(line, 80, fd) < 0)
69 return(0);
71 if ((strlen(line) < 3) || (line[0] != '#') || (line[1] != ' '))
72 continue;
74 *topic = *subtopic = *desc = NULL;
75 cp = line + 2;
76 while((cp != NULL) && (*cp != 0)) {
77 ep = strchr(cp, ' ');
78 if ((*cp == 'T') && (*topic == NULL)) {
79 if (ep != NULL)
80 *ep++ = 0;
81 *topic = strdup(cp + 1);
82 } else if ((*cp == 'S') && (*subtopic == NULL)) {
83 if (ep != NULL)
84 *ep++ = 0;
85 *subtopic = strdup(cp + 1);
86 } else if (*cp == 'D') {
87 *desc = strdup(cp + 1);
88 ep = NULL;
90 cp = ep;
92 if (*topic == NULL) {
93 if (*subtopic != NULL)
94 free(*subtopic);
95 if (*desc != NULL)
96 free(*desc);
97 continue;
99 return(1);
103 static void
104 help_emitsummary(char *topic, char *subtopic, char *desc)
106 int i;
108 pager_output(" ");
109 pager_output(topic);
110 i = strlen(topic);
111 if (subtopic != NULL) {
112 pager_output(" ");
113 pager_output(subtopic);
114 i += strlen(subtopic) + 1;
116 if (desc != NULL) {
117 do {
118 pager_output(" ");
119 } while (i++ < 30);
120 pager_output(desc);
122 pager_output("\n");
126 static int
127 command_help(int argc, char *argv[])
129 char buf[81]; /* XXX buffer size? */
130 int hfd, matched, doindex;
131 char *topic, *subtopic, *t, *s, *d;
133 /* page the help text from our load path */
134 /* sprintf(buf, "%s/boot/loader.help", getenv("loaddev")); */
135 if ((hfd = rel_open("loader.help", O_RDONLY)) < 0) {
136 printf("Verbose help not available, use '?' to list commands\n");
137 return(CMD_OK);
140 /* pick up request from arguments */
141 topic = subtopic = NULL;
142 switch(argc) {
143 case 3:
144 subtopic = strdup(argv[2]);
145 case 2:
146 topic = strdup(argv[1]);
147 break;
148 case 1:
149 topic = strdup("help");
150 break;
151 default:
152 command_errmsg = "usage is 'help <topic> [<subtopic>]";
153 return(CMD_ERROR);
156 /* magic "index" keyword */
157 doindex = !strcmp(topic, "index");
158 matched = doindex;
160 /* Scan the helpfile looking for help matching the request */
161 pager_open();
162 while(help_getnext(hfd, &t, &s, &d)) {
164 if (doindex) { /* dink around formatting */
165 help_emitsummary(t, s, d);
167 } else if (strcmp(topic, t)) {
168 /* topic mismatch */
169 if(matched) /* nothing more on this topic, stop scanning */
170 break;
172 } else {
173 /* topic matched */
174 matched = 1;
175 if (((subtopic == NULL) && (s == NULL)) ||
176 ((subtopic != NULL) && (s != NULL) && !strcmp(subtopic, s))) {
177 /* exact match, print text */
178 while((fgetstr(buf, 80, hfd) >= 0) && (buf[0] != '#')) {
179 if (pager_output(buf))
180 break;
181 if (pager_output("\n"))
182 break;
184 } else if ((subtopic == NULL) && (s != NULL)) {
185 /* topic match, list subtopics */
186 help_emitsummary(t, s, d);
189 free(t);
190 free(s);
191 free(d);
193 pager_close();
194 close(hfd);
195 if (!matched) {
196 sprintf(command_errbuf, "no help available for '%s'", topic);
197 free(topic);
198 if (subtopic)
199 free(subtopic);
200 return(CMD_ERROR);
202 free(topic);
203 if (subtopic)
204 free(subtopic);
205 return(CMD_OK);
209 COMMAND_SET(commandlist, "?", "list commands", command_commandlist);
211 static int
212 command_commandlist(int argc, char *argv[])
214 struct bootblk_command **cmdp;
216 printf("Available commands:\n");
217 SET_FOREACH(cmdp, Xcommand_set) {
218 if (((*cmdp)->c_name != NULL) && ((*cmdp)->c_desc != NULL))
219 printf(" %-15s %s\n", (*cmdp)->c_name, (*cmdp)->c_desc);
221 return(CMD_OK);
225 * XXX set/show should become set/echo if we have variable
226 * substitution happening.
229 COMMAND_SET(show, "show", "show variable(s)", command_show);
231 static int
232 command_show(int argc, char *argv[])
234 struct env_var *ev;
235 char *cp;
237 if (argc < 2) {
239 * With no arguments, print everything.
241 pager_open();
242 for (ev = environ; ev != NULL; ev = ev->ev_next) {
243 pager_output(ev->ev_name);
244 cp = getenv(ev->ev_name);
245 if (cp != NULL) {
246 pager_output("=");
247 pager_output(cp);
249 if (pager_output("\n"))
250 break;
252 pager_close();
253 } else {
254 if ((cp = getenv(argv[1])) != NULL) {
255 printf("%s\n", cp);
256 } else {
257 sprintf(command_errbuf, "variable '%s' not found", argv[1]);
258 return(CMD_ERROR);
261 return(CMD_OK);
264 COMMAND_SET(set, "set", "set a variable", command_set);
266 static int
267 command_set(int argc, char *argv[])
269 int err;
271 if (argc != 2) {
272 command_errmsg = "wrong number of arguments";
273 return(CMD_ERROR);
274 } else {
275 if ((err = putenv(argv[1])) != 0) {
276 command_errmsg = strerror(err);
277 return(CMD_ERROR);
280 return(CMD_OK);
283 COMMAND_SET(unset, "unset", "unset a variable", command_unset);
285 static int
286 command_unset(int argc, char *argv[])
288 int err;
290 if (argc != 2) {
291 command_errmsg = "wrong number of arguments";
292 return(CMD_ERROR);
293 } else {
294 if ((err = unsetenv(argv[1])) != 0) {
295 command_errmsg = strerror(err);
296 return(CMD_ERROR);
299 return(CMD_OK);
302 COMMAND_SET(echo, "echo", NULL, command_echo);
304 static int
305 command_echo(int argc, char *argv[])
307 char *s;
308 int nl, ch;
310 nl = 0;
311 optind = 1;
312 optreset = 1;
313 while ((ch = getopt(argc, argv, "n")) != -1) {
314 switch(ch) {
315 case 'n':
316 nl = 1;
317 break;
318 case '?':
319 default:
320 /* getopt has already reported an error */
321 return(CMD_OK);
324 argv += (optind);
325 argc -= (optind);
327 s = unargv(argc, argv);
328 if (s != NULL) {
329 printf("%s", s);
330 free(s);
332 if (!nl)
333 printf("\n");
334 return(CMD_OK);
338 * A passable emulation of the sh(1) command of the same name.
341 COMMAND_SET(read, "read", NULL, command_read);
343 static int
344 command_read(int argc, char *argv[])
346 char *prompt;
347 int timeout;
348 time_t when;
349 char *cp;
350 char *name;
351 char buf[256]; /* XXX size? */
352 int c;
354 timeout = -1;
355 prompt = NULL;
356 optind = 1;
357 optreset = 1;
358 while ((c = getopt(argc, argv, "p:t:")) != -1) {
359 switch(c) {
361 case 'p':
362 prompt = optarg;
363 break;
364 case 't':
365 timeout = strtol(optarg, &cp, 0);
366 if (cp == optarg) {
367 sprintf(command_errbuf, "bad timeout '%s'", optarg);
368 return(CMD_ERROR);
370 break;
371 default:
372 return(CMD_OK);
376 argv += (optind);
377 argc -= (optind);
378 name = (argc > 0) ? argv[0]: NULL;
380 if (prompt != NULL)
381 printf("%s", prompt);
382 if (timeout >= 0) {
383 when = time(NULL) + timeout;
384 while (!ischar())
385 if (time(NULL) >= when)
386 return(CMD_OK); /* is timeout an error? */
389 ngets(buf, sizeof(buf));
391 if (name != NULL)
392 setenv(name, buf, 1);
393 return(CMD_OK);
397 * File pager
399 COMMAND_SET(more, "more", "show contents of a file", command_more);
401 static int
402 command_more(int argc, char *argv[])
404 int i;
405 int res;
406 char line[80];
408 res=0;
409 pager_open();
410 for (i = 1; (i < argc) && (res == 0); i++) {
411 sprintf(line, "*** FILE %s BEGIN ***\n", argv[i]);
412 if (pager_output(line))
413 break;
414 res = page_file(argv[i]);
415 if (!res) {
416 sprintf(line, "*** FILE %s END ***\n", argv[i]);
417 res = pager_output(line);
420 pager_close();
422 if (res == 0)
423 return CMD_OK;
424 else
425 return CMD_ERROR;
428 static int
429 page_file(char *filename)
431 int result;
433 result = pager_file(filename);
435 if (result == -1)
436 sprintf(command_errbuf, "error showing %s", filename);
438 return result;
442 * List all disk-like devices
444 COMMAND_SET(lsdev, "lsdev", "list all devices", command_lsdev);
446 static int
447 command_lsdev(int argc, char *argv[])
449 int verbose, ch, i;
450 char line[80];
452 verbose = 0;
453 optind = 1;
454 optreset = 1;
455 while ((ch = getopt(argc, argv, "v")) != -1) {
456 switch(ch) {
457 case 'v':
458 verbose = 1;
459 break;
460 case '?':
461 default:
462 /* getopt has already reported an error */
463 return(CMD_OK);
466 argv += (optind);
467 argc -= (optind);
469 pager_open();
470 for (i = 0; devsw[i] != NULL; i++) {
471 if (devsw[i]->dv_print != NULL){
472 sprintf(line, "%s devices:\n", devsw[i]->dv_name);
473 if (pager_output(line))
474 break;
475 devsw[i]->dv_print(verbose);
476 } else {
477 sprintf(line, "%s: (unknown)\n", devsw[i]->dv_name);
478 if (pager_output(line))
479 break;
482 pager_close();
483 return(CMD_OK);