bootmenu.c revision 1.13 1 1.13 rtr /* $NetBSD: bootmenu.c,v 1.13 2014/06/28 09:16:18 rtr Exp $ */
2 1.1 ad
3 1.1 ad /*-
4 1.1 ad * Copyright (c) 2008 The NetBSD Foundation, Inc.
5 1.1 ad * All rights reserved.
6 1.1 ad *
7 1.1 ad * Redistribution and use in source and binary forms, with or without
8 1.1 ad * modification, are permitted provided that the following conditions
9 1.1 ad * are met:
10 1.1 ad * 1. Redistributions of source code must retain the above copyright
11 1.1 ad * notice, this list of conditions and the following disclaimer.
12 1.1 ad * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 ad * notice, this list of conditions and the following disclaimer in the
14 1.1 ad * documentation and/or other materials provided with the distribution.
15 1.1 ad *
16 1.1 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 ad * POSSIBILITY OF SUCH DAMAGE.
27 1.1 ad */
28 1.1 ad
29 1.1 ad #ifndef SMALL
30 1.1 ad
31 1.1 ad #include <sys/types.h>
32 1.1 ad #include <sys/reboot.h>
33 1.1 ad #include <sys/bootblock.h>
34 1.1 ad
35 1.1 ad #include <lib/libsa/stand.h>
36 1.13 rtr #include <lib/libsa/bootcfg.h>
37 1.1 ad #include <lib/libsa/ufs.h>
38 1.1 ad #include <lib/libkern/libkern.h>
39 1.1 ad
40 1.1 ad #include <libi386.h>
41 1.1 ad #include <bootmenu.h>
42 1.1 ad
43 1.1 ad #define isnum(c) ((c) >= '0' && (c) <= '9')
44 1.1 ad
45 1.11 he static void docommandchoice(int);
46 1.11 he
47 1.1 ad extern struct x86_boot_params boot_params;
48 1.1 ad extern const char bootprog_name[], bootprog_rev[], bootprog_kernrev[];
49 1.1 ad
50 1.1 ad #define MENUFORMAT_AUTO 0
51 1.1 ad #define MENUFORMAT_NUMBER 1
52 1.1 ad #define MENUFORMAT_LETTER 2
53 1.1 ad
54 1.1 ad int
55 1.1 ad atoi(const char *in)
56 1.1 ad {
57 1.1 ad char *c;
58 1.1 ad int ret;
59 1.1 ad
60 1.1 ad ret = 0;
61 1.1 ad c = (char *)in;
62 1.1 ad if (*c == '-')
63 1.1 ad c++;
64 1.1 ad for (; isnum(*c); c++)
65 1.1 ad ret = (ret * 10) + (*c - '0');
66 1.1 ad
67 1.1 ad return (*in == '-') ? -ret : ret;
68 1.1 ad }
69 1.1 ad
70 1.1 ad /*
71 1.13 rtr * XXX
72 1.13 rtr * if module_add, userconf_add are strictly mi they can be folded back
73 1.13 rtr * into sys/lib/libsa/bootcfg.c:perform_bootcfg().
74 1.13 rtr */
75 1.13 rtr static void
76 1.13 rtr do_bootcfg_command(const char *cmd, char *arg)
77 1.13 rtr {
78 1.13 rtr if (strcmp(cmd, BOOTCFG_CMD_LOAD) == 0)
79 1.13 rtr module_add(arg);
80 1.13 rtr else if (strcmp(cmd, BOOTCFG_CMD_USERCONF) == 0)
81 1.13 rtr userconf_add(arg);
82 1.13 rtr }
83 1.13 rtr
84 1.1 ad void
85 1.1 ad parsebootconf(const char *conf)
86 1.1 ad {
87 1.13 rtr perform_bootcfg(conf, &do_bootcfg_command, 32768);
88 1.1 ad }
89 1.1 ad
90 1.1 ad /*
91 1.1 ad * doboottypemenu will render the menu and parse any user input
92 1.1 ad */
93 1.1 ad static int
94 1.1 ad getchoicefrominput(char *input, int def)
95 1.1 ad {
96 1.8 jmcneill int choice, usedef;
97 1.8 jmcneill
98 1.1 ad choice = -1;
99 1.8 jmcneill usedef = 0;
100 1.8 jmcneill
101 1.8 jmcneill if (*input == '\0' || *input == '\r' || *input == '\n') {
102 1.1 ad choice = def;
103 1.8 jmcneill usedef = 1;
104 1.13 rtr } else if (*input >= 'A' && *input < bootcfg_info.nummenu + 'A')
105 1.1 ad choice = (*input) - 'A';
106 1.13 rtr else if (*input >= 'a' && *input < bootcfg_info.nummenu + 'a')
107 1.1 ad choice = (*input) - 'a';
108 1.1 ad else if (isnum(*input)) {
109 1.1 ad choice = atoi(input) - 1;
110 1.13 rtr if (choice < 0 || choice >= bootcfg_info.nummenu)
111 1.1 ad choice = -1;
112 1.1 ad }
113 1.7 jmcneill
114 1.13 rtr if (bootcfg_info.menuformat != MENUFORMAT_LETTER &&
115 1.8 jmcneill !isnum(*input) && !usedef)
116 1.7 jmcneill choice = -1;
117 1.7 jmcneill
118 1.1 ad return choice;
119 1.1 ad }
120 1.1 ad
121 1.11 he static void
122 1.11 he docommandchoice(int choice)
123 1.11 he {
124 1.11 he char input[80], *ic, *oc;
125 1.11 he
126 1.13 rtr ic = bootcfg_info.command[choice];
127 1.11 he /* Split command string at ; into separate commands */
128 1.11 he do {
129 1.11 he oc = input;
130 1.11 he /* Look for ; separator */
131 1.11 he for (; *ic && *ic != COMMAND_SEPARATOR; ic++)
132 1.11 he *oc++ = *ic;
133 1.11 he if (*input == '\0')
134 1.11 he continue;
135 1.11 he /* Strip out any trailing spaces */
136 1.11 he oc--;
137 1.11 he for (; *oc == ' ' && oc > input; oc--);
138 1.11 he *++oc = '\0';
139 1.11 he if (*ic == COMMAND_SEPARATOR)
140 1.11 he ic++;
141 1.11 he /* Stop silly command strings like ;;; */
142 1.11 he if (*input != '\0')
143 1.11 he docommand(input);
144 1.11 he /* Skip leading spaces */
145 1.11 he for (; *ic == ' '; ic++);
146 1.11 he } while (*ic);
147 1.11 he }
148 1.11 he
149 1.11 he void
150 1.11 he bootdefault(void)
151 1.11 he {
152 1.11 he int choice;
153 1.11 he static int entered;
154 1.11 he
155 1.13 rtr if (bootcfg_info.nummenu > 0) {
156 1.11 he if (entered) {
157 1.11 he printf("default boot twice, skipping...\n");
158 1.11 he return;
159 1.11 he }
160 1.11 he entered = 1;
161 1.13 rtr choice = bootcfg_info.def;
162 1.13 rtr printf("command(s): %s\n", bootcfg_info.command[choice]);
163 1.11 he docommandchoice(choice);
164 1.11 he }
165 1.11 he }
166 1.11 he
167 1.12 jakllsch __dead void
168 1.1 ad doboottypemenu(void)
169 1.1 ad {
170 1.1 ad int choice;
171 1.11 he char input[80];
172 1.3 christos
173 1.1 ad printf("\n");
174 1.1 ad /* Display menu */
175 1.13 rtr if (bootcfg_info.menuformat == MENUFORMAT_LETTER) {
176 1.13 rtr for (choice = 0; choice < bootcfg_info.nummenu; choice++)
177 1.1 ad printf(" %c. %s\n", choice + 'A',
178 1.13 rtr bootcfg_info.desc[choice]);
179 1.1 ad } else {
180 1.1 ad /* Can't use %2d format string with libsa */
181 1.13 rtr for (choice = 0; choice < bootcfg_info.nummenu; choice++)
182 1.1 ad printf(" %s%d. %s\n",
183 1.1 ad (choice < 9) ? " " : "",
184 1.1 ad choice + 1,
185 1.13 rtr bootcfg_info.desc[choice]);
186 1.3 christos }
187 1.1 ad choice = -1;
188 1.4 christos for (;;) {
189 1.1 ad input[0] = '\0';
190 1.3 christos
191 1.13 rtr if (bootcfg_info.timeout < 0) {
192 1.13 rtr if (bootcfg_info.menuformat == MENUFORMAT_LETTER)
193 1.1 ad printf("\nOption: [%c]:",
194 1.13 rtr bootcfg_info.def + 'A');
195 1.1 ad else
196 1.1 ad printf("\nOption: [%d]:",
197 1.13 rtr bootcfg_info.def + 1);
198 1.3 christos
199 1.1 ad gets(input);
200 1.13 rtr choice = getchoicefrominput(input, bootcfg_info.def);
201 1.13 rtr } else if (bootcfg_info.timeout == 0)
202 1.13 rtr choice = bootcfg_info.def;
203 1.1 ad else {
204 1.1 ad printf("\nChoose an option; RETURN for default; "
205 1.1 ad "SPACE to stop countdown.\n");
206 1.13 rtr if (bootcfg_info.menuformat == MENUFORMAT_LETTER)
207 1.1 ad printf("Option %c will be chosen in ",
208 1.13 rtr bootcfg_info.def + 'A');
209 1.1 ad else
210 1.1 ad printf("Option %d will be chosen in ",
211 1.13 rtr bootcfg_info.def + 1);
212 1.13 rtr input[0] = awaitkey(bootcfg_info.timeout, 1);
213 1.1 ad input[1] = '\0';
214 1.13 rtr choice = getchoicefrominput(input, bootcfg_info.def);
215 1.1 ad /* If invalid key pressed, drop to menu */
216 1.1 ad if (choice == -1)
217 1.13 rtr bootcfg_info.timeout = -1;
218 1.1 ad }
219 1.1 ad if (choice < 0)
220 1.1 ad continue;
221 1.13 rtr if (!strcmp(bootcfg_info.command[choice], "prompt") &&
222 1.1 ad ((boot_params.bp_flags & X86_BP_FLAGS_PASSWORD) == 0 ||
223 1.1 ad check_password((char *)boot_params.bp_password))) {
224 1.1 ad printf("type \"?\" or \"help\" for help.\n");
225 1.1 ad bootmenu(); /* does not return */
226 1.1 ad } else {
227 1.11 he docommandchoice(choice);
228 1.1 ad }
229 1.3 christos
230 1.1 ad }
231 1.1 ad }
232 1.1 ad
233 1.1 ad #endif /* !SMALL */
234