2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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
26 * $FreeBSD: src/sys/boot/common/interp.c,v 1.29 2003/08/25 23:30:41 obrien Exp $
27 * $DragonFly: src/sys/boot/common/interp.c,v 1.3 2003/11/10 06:08:31 dillon Exp $
31 * Simple commandline interpreter, toplevel and misc.
33 * XXX may be obsoleted by BootFORTH or some other, better, interpreter.
38 #include "bootstrap.h"
42 #define RETURN(x) stackPushINT(bf_vm->pStack,!x); return(x)
44 extern FICL_VM
*bf_vm
;
46 #define RETURN(x) return(x)
49 #define MAXARGS 20 /* maximum number of arguments allowed */
51 static void prompt(void);
54 static int perform(int argc
, char *argv
[]);
60 perform(int argc
, char *argv
[])
63 struct bootblk_command
**cmdp
;
69 /* set return defaults; a successful command will override these */
70 command_errmsg
= command_errbuf
;
71 strcpy(command_errbuf
, "no error message");
75 /* search the command set for the command */
76 SET_FOREACH(cmdp
, Xcommand_set
) {
77 if (((*cmdp
)->c_name
!= NULL
) && !strcmp(argv
[0], (*cmdp
)->c_name
))
81 result
= (cmd
)(argc
, argv
);
83 command_errmsg
= "unknown command";
87 #endif /* ! BOOT_FORTH */
95 char input
[256]; /* big enough? */
106 * Read our default configuration
108 if(include("/boot/loader.rc")!=CMD_OK
)
109 include("/boot/boot.conf");
112 * Before interacting, we might want to autoboot.
117 * Not autobooting, go manual
119 printf("\nType '?' for a list of commands, 'help' for more detailed help.\n");
120 if (getenv("prompt") == NULL
)
121 setenv("prompt", "${interpret}", 1);
122 if (getenv("interpret") == NULL
)
123 setenv("interpret", "OK", 1);
129 ngets(input
, sizeof(input
));
131 bf_vm
->sourceID
.i
= 0;
134 if (!parse(&argc
, &argv
, input
)) {
135 if (perform(argc
, argv
))
136 printf("%s: %s\n", argv
[0], command_errmsg
);
139 printf("parse error\n");
146 * Read commands from a file, then execute them.
148 * We store the commands in memory and close the source file so that the media
149 * holding it can safely go away while we are executing.
151 * Commands may be prefixed with '@' (so they aren't displayed) or '-' (so
152 * that the script won't stop if they fail).
154 COMMAND_SET(include
, "include", "read commands from a file", command_include
);
157 command_include(int argc
, char *argv
[])
164 * Since argv is static, we need to save it here.
166 argvbuf
= (char**) calloc((u_int
)argc
, sizeof(char*));
167 for (i
= 0; i
< argc
; i
++)
168 argvbuf
[i
] = strdup(argv
[i
]);
171 for (i
= 1; (i
< argc
) && (res
== CMD_OK
); i
++)
172 res
= include(argvbuf
[i
]);
174 for (i
= 0; i
< argc
; i
++)
186 #define SL_QUIET (1<<0)
187 #define SL_IGNOREERR (1<<1)
188 struct includeline
*next
;
192 include(const char *filename
)
194 struct includeline
*script
, *se
, *sp
;
195 char input
[256]; /* big enough? */
199 int prevsrcid
, fd
, line
;
206 if (((fd
= open(filename
, O_RDONLY
)) == -1)) {
207 sprintf(command_errbuf
,"can't open '%s': %s\n", filename
, strerror(errno
));
212 * Read the script into memory.
217 while (fgetstr(input
, sizeof(input
), fd
) >= 0) {
223 /* Discard comments */
224 if (strncmp(input
+strspn(input
, " "), "\\ ", 2) == 0)
228 if (input
[0] == '@') {
233 if (input
[0] == '-') {
235 flags
|= SL_IGNOREERR
;
238 /* Allocate script line structure and copy line, flags */
239 sp
= malloc(sizeof(struct includeline
) + strlen(cp
) + 1);
240 sp
->text
= (char *)sp
+ sizeof(struct includeline
);
241 strcpy(sp
->text
, cp
);
248 if (script
== NULL
) {
263 prevsrcid
= bf_vm
->sourceID
.i
;
264 bf_vm
->sourceID
.i
= fd
;
267 for (sp
= script
; sp
!= NULL
; sp
= sp
->next
) {
270 res
= bf_run(sp
->text
);
271 if (res
!= VM_OUTOFTEXT
) {
272 sprintf(command_errbuf
, "Error while including %s, in the line:\n%s", filename
, sp
->text
);
278 /* print if not being quiet */
279 if (!(sp
->flags
& SL_QUIET
)) {
281 printf("%s\n", sp
->text
);
284 /* Parse the command */
285 if (!parse(&argc
, &argv
, sp
->text
)) {
286 if ((argc
> 0) && (perform(argc
, argv
) != 0)) {
288 printf("%s: %s\n", argv
[0], command_errmsg
);
289 if (!(sp
->flags
& SL_IGNOREERR
)) {
297 printf("%s line %d: parse error\n", filename
, sp
->line
);
307 bf_vm
->sourceID
.i
= prevsrcid
;
309 while(script
!= NULL
) {
311 script
= script
->next
;
318 * Emit the current prompt; use the same syntax as the parser
319 * for embedding environment variables.
324 char *pr
, *p
, *cp
, *ev
;
326 if ((cp
= getenv("prompt")) == NULL
)
331 if ((*p
== '$') && (*(p
+1) == '{')) {
332 for (cp
= p
+ 2; (*cp
!= 0) && (*cp
!= '}'); cp
++)