xref: /freebsd/stand/lua/menu.lua (revision a7cf056239ff1366cb231f8c6f516b023922bf4e)
1088b4f5fSWarner Losh--
2088b4f5fSWarner Losh-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org>
3088b4f5fSWarner Losh-- All rights reserved.
4088b4f5fSWarner Losh--
5088b4f5fSWarner Losh-- Redistribution and use in source and binary forms, with or without
6088b4f5fSWarner Losh-- modification, are permitted provided that the following conditions
7088b4f5fSWarner Losh-- are met:
8088b4f5fSWarner Losh-- 1. Redistributions of source code must retain the above copyright
9088b4f5fSWarner Losh--    notice, this list of conditions and the following disclaimer.
10088b4f5fSWarner Losh-- 2. Redistributions in binary form must reproduce the above copyright
11088b4f5fSWarner Losh--    notice, this list of conditions and the following disclaimer in the
12088b4f5fSWarner Losh--    documentation and/or other materials provided with the distribution.
13088b4f5fSWarner Losh--
14088b4f5fSWarner Losh-- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15088b4f5fSWarner Losh-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16088b4f5fSWarner Losh-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17088b4f5fSWarner Losh-- ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18088b4f5fSWarner Losh-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19088b4f5fSWarner Losh-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20088b4f5fSWarner Losh-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21088b4f5fSWarner Losh-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22088b4f5fSWarner Losh-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23088b4f5fSWarner Losh-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24088b4f5fSWarner Losh-- SUCH DAMAGE.
25088b4f5fSWarner Losh--
26088b4f5fSWarner Losh-- $FreeBSD$
27088b4f5fSWarner Losh--
28088b4f5fSWarner Losh
29088b4f5fSWarner Losh
30088b4f5fSWarner Loshlocal menu = {};
31088b4f5fSWarner Losh
32088b4f5fSWarner Loshlocal core = require("core");
33088b4f5fSWarner Loshlocal color = require("color");
34088b4f5fSWarner Loshlocal config = require("config");
35088b4f5fSWarner Loshlocal screen = require("screen");
36088b4f5fSWarner Loshlocal drawer = require("drawer");
37088b4f5fSWarner Losh
38088b4f5fSWarner Loshlocal OnOff;
39088b4f5fSWarner Loshlocal skip;
40088b4f5fSWarner Loshlocal run;
41088b4f5fSWarner Loshlocal autoboot;
42ada26c4aSKyle Evanslocal carousel_choices = {};
43088b4f5fSWarner Losh
44088b4f5fSWarner Losh--loader menu tree:
45088b4f5fSWarner Losh--rooted at menu.welcome
46088b4f5fSWarner Losh--submenu declarations:
47088b4f5fSWarner Loshlocal boot_options;
48088b4f5fSWarner Loshlocal welcome;
49088b4f5fSWarner Losh
50088b4f5fSWarner Loshmenu.boot_options = {
51088b4f5fSWarner Losh	-- return to welcome menu
52088b4f5fSWarner Losh	{
53*a7cf0562SKyle Evans		entry_type = core.MENU_RETURN,
54088b4f5fSWarner Losh		name = function()
55088b4f5fSWarner Losh			return "Back to main menu"..color.highlight(" [Backspace]");
561666dfc0SKyle Evans		end
57088b4f5fSWarner Losh	},
58088b4f5fSWarner Losh
59088b4f5fSWarner Losh	-- load defaults
60088b4f5fSWarner Losh	{
61*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
62088b4f5fSWarner Losh		name = function()
63088b4f5fSWarner Losh			return "Load System "..color.highlight("D").."efaults";
64088b4f5fSWarner Losh		end,
65088b4f5fSWarner Losh		func = function()
66088b4f5fSWarner Losh			core.setDefaults()
67088b4f5fSWarner Losh		end,
68088b4f5fSWarner Losh		alias = {"d", "D"}
69088b4f5fSWarner Losh	},
70088b4f5fSWarner Losh
71088b4f5fSWarner Losh	{
72*a7cf0562SKyle Evans		entry_type = core.MENU_SEPARATOR,
73088b4f5fSWarner Losh		name = function()
74088b4f5fSWarner Losh			return "";
75088b4f5fSWarner Losh		end
76088b4f5fSWarner Losh	},
77088b4f5fSWarner Losh
78088b4f5fSWarner Losh	{
79*a7cf0562SKyle Evans		entry_type = core.MENU_SEPARATOR,
80088b4f5fSWarner Losh		name = function()
81088b4f5fSWarner Losh			return "Boot Options:";
82088b4f5fSWarner Losh		end
83088b4f5fSWarner Losh	},
84088b4f5fSWarner Losh
85088b4f5fSWarner Losh	-- acpi
86088b4f5fSWarner Losh	{
87*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
88088b4f5fSWarner Losh		name = function()
89088b4f5fSWarner Losh			return OnOff(color.highlight("A").."CPI       :", core.acpi);
90088b4f5fSWarner Losh		end,
91088b4f5fSWarner Losh		func = function()
92088b4f5fSWarner Losh			core.setACPI();
93088b4f5fSWarner Losh		end,
94088b4f5fSWarner Losh		alias = {"a", "A"}
95088b4f5fSWarner Losh	},
96088b4f5fSWarner Losh	-- safe mode
97088b4f5fSWarner Losh	{
98*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
99088b4f5fSWarner Losh		name = function()
100088b4f5fSWarner Losh			return OnOff("Safe "..color.highlight("M").."ode  :", core.sm);
101088b4f5fSWarner Losh		end,
102088b4f5fSWarner Losh		func = function()
103088b4f5fSWarner Losh			core.setSafeMode();
104088b4f5fSWarner Losh		end,
105088b4f5fSWarner Losh		alias = {"m", "M"}
106088b4f5fSWarner Losh	},
107088b4f5fSWarner Losh	-- single user
108088b4f5fSWarner Losh	{
109*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
110088b4f5fSWarner Losh		name = function()
111088b4f5fSWarner Losh			return OnOff(color.highlight("S").."ingle user:", core.su);
112088b4f5fSWarner Losh		end,
113088b4f5fSWarner Losh		func = function()
114088b4f5fSWarner Losh			core.setSingleUser();
115088b4f5fSWarner Losh		end,
116088b4f5fSWarner Losh		alias = {"s", "S"}
117088b4f5fSWarner Losh	},
118088b4f5fSWarner Losh	-- verbose boot
119088b4f5fSWarner Losh	{
120*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
121088b4f5fSWarner Losh		name = function()
122088b4f5fSWarner Losh			return OnOff(color.highlight("V").."erbose    :", core.verbose);
123088b4f5fSWarner Losh		end,
124088b4f5fSWarner Losh		func = function()
125088b4f5fSWarner Losh			core.setVerbose();
126088b4f5fSWarner Losh		end,
127088b4f5fSWarner Losh		alias = {"v", "V"}
128088b4f5fSWarner Losh	},
129088b4f5fSWarner Losh};
130088b4f5fSWarner Losh
131088b4f5fSWarner Loshmenu.welcome = {
132088b4f5fSWarner Losh	-- boot multi user
133088b4f5fSWarner Losh	{
134*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
135088b4f5fSWarner Losh		name = function()
136088b4f5fSWarner Losh			return color.highlight("B").."oot Multi user "..color.highlight("[Enter]");
137088b4f5fSWarner Losh		end,
138088b4f5fSWarner Losh		func = function()
139088b4f5fSWarner Losh			core.setSingleUser(false);
140088b4f5fSWarner Losh			core.boot();
141088b4f5fSWarner Losh		end,
142b458bf0dSKyle Evans		alias = {"b", "B"}
143088b4f5fSWarner Losh	},
144088b4f5fSWarner Losh
145088b4f5fSWarner Losh	-- boot single user
146088b4f5fSWarner Losh	{
147*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
148088b4f5fSWarner Losh		name = function()
149088b4f5fSWarner Losh			return "Boot "..color.highlight("S").."ingle user";
150088b4f5fSWarner Losh		end,
151088b4f5fSWarner Losh		func = function()
152088b4f5fSWarner Losh			core.setSingleUser(true);
153088b4f5fSWarner Losh			core.boot();
154088b4f5fSWarner Losh		end,
155088b4f5fSWarner Losh		alias = {"s", "S"}
156088b4f5fSWarner Losh	},
157088b4f5fSWarner Losh
158088b4f5fSWarner Losh	-- escape to interpreter
159088b4f5fSWarner Losh	{
160*a7cf0562SKyle Evans		entry_type = core.MENU_RETURN,
161088b4f5fSWarner Losh		name = function()
162e9084012SKyle Evans			return color.highlight("Esc").."ape to loader prompt";
163088b4f5fSWarner Losh		end,
16439006570SKyle Evans		alias = {core.KEYSTR_ESCAPE}
165088b4f5fSWarner Losh	},
166088b4f5fSWarner Losh
167088b4f5fSWarner Losh	-- reboot
168088b4f5fSWarner Losh	{
169*a7cf0562SKyle Evans		entry_type = core.MENU_ENTRY,
170088b4f5fSWarner Losh		name = function()
171088b4f5fSWarner Losh			return color.highlight("R").."eboot";
172088b4f5fSWarner Losh		end,
173088b4f5fSWarner Losh		func = function()
174088b4f5fSWarner Losh			loader.perform("reboot");
175088b4f5fSWarner Losh		end,
176088b4f5fSWarner Losh		alias = {"r", "R"}
177088b4f5fSWarner Losh	},
178088b4f5fSWarner Losh
179088b4f5fSWarner Losh
180088b4f5fSWarner Losh	{
181*a7cf0562SKyle Evans		entry_type = core.MENU_SEPARATOR,
182088b4f5fSWarner Losh		name = function()
183088b4f5fSWarner Losh			return "";
184088b4f5fSWarner Losh		end
185088b4f5fSWarner Losh	},
186088b4f5fSWarner Losh
187088b4f5fSWarner Losh	{
188*a7cf0562SKyle Evans		entry_type = core.MENU_SEPARATOR,
189088b4f5fSWarner Losh		name = function()
190088b4f5fSWarner Losh			return "Options:";
191088b4f5fSWarner Losh		end
192088b4f5fSWarner Losh	},
193088b4f5fSWarner Losh
194088b4f5fSWarner Losh	-- kernel options
195088b4f5fSWarner Losh	{
196*a7cf0562SKyle Evans		entry_type = core.MENU_CAROUSEL_ENTRY,
197ada26c4aSKyle Evans		carousel_id = "kernel",
198ada26c4aSKyle Evans		items = core.kernelList,
199ada26c4aSKyle Evans		name = function(idx, choice, all_choices)
200ada26c4aSKyle Evans			if #all_choices == 0 then
201b1b1f2b8SKyle Evans				return "Kernel: ";
202088b4f5fSWarner Losh			end
203b1b1f2b8SKyle Evans
204b1b1f2b8SKyle Evans			local kernel_name = color.escapef(color.GREEN) ..
205ada26c4aSKyle Evans			    choice .. color.default();
206ada26c4aSKyle Evans			if (idx == 1) then
207b1b1f2b8SKyle Evans				kernel_name = "default/" .. kernel_name;
208b1b1f2b8SKyle Evans			end
209b1b1f2b8SKyle Evans			return color.highlight("K").."ernel: " .. kernel_name ..
210ada26c4aSKyle Evans			    " (" .. idx ..
211ada26c4aSKyle Evans			    " of " .. #all_choices .. ")";
212088b4f5fSWarner Losh		end,
213ada26c4aSKyle Evans		func = function(choice)
214ada26c4aSKyle Evans			config.reload(choice);
215088b4f5fSWarner Losh		end,
216088b4f5fSWarner Losh		alias = {"k", "K"}
217088b4f5fSWarner Losh	},
218088b4f5fSWarner Losh
219088b4f5fSWarner Losh	-- boot options
220088b4f5fSWarner Losh	{
221*a7cf0562SKyle Evans		entry_type = core.MENU_SUBMENU,
222088b4f5fSWarner Losh		name = function()
223088b4f5fSWarner Losh			return "Boot "..color.highlight("O").."ptions";
224088b4f5fSWarner Losh		end,
225088b4f5fSWarner Losh		submenu = function()
226088b4f5fSWarner Losh			return menu.boot_options;
227088b4f5fSWarner Losh		end,
228088b4f5fSWarner Losh		alias = {"o", "O"}
229088b4f5fSWarner Losh	}
230088b4f5fSWarner Losh
231088b4f5fSWarner Losh};
232088b4f5fSWarner Losh
233ada26c4aSKyle Evans-- The first item in every carousel is always the default item.
234ada26c4aSKyle Evansfunction menu.getCarouselIndex(id)
235ada26c4aSKyle Evans	local val = carousel_choices[id];
236ada26c4aSKyle Evans	if (val == nil) then
237ada26c4aSKyle Evans		return 1;
238ada26c4aSKyle Evans	end
239ada26c4aSKyle Evans	return val;
240ada26c4aSKyle Evansend
241ada26c4aSKyle Evans
242ada26c4aSKyle Evansfunction menu.setCarouselIndex(id, idx)
243ada26c4aSKyle Evans	carousel_choices[id] = idx;
244ada26c4aSKyle Evansend
245ada26c4aSKyle Evans
246088b4f5fSWarner Loshfunction menu.run(m)
247088b4f5fSWarner Losh
248088b4f5fSWarner Losh	if (menu.skip()) then
249088b4f5fSWarner Losh		core.autoboot();
250088b4f5fSWarner Losh		return false;
251088b4f5fSWarner Losh	end
252088b4f5fSWarner Losh
253088b4f5fSWarner Losh	if (m == nil) then
254088b4f5fSWarner Losh		m = menu.welcome;
255088b4f5fSWarner Losh	end
256088b4f5fSWarner Losh
257088b4f5fSWarner Losh	-- redraw screen
258088b4f5fSWarner Losh	screen.clear();
259088b4f5fSWarner Losh	screen.defcursor();
260088b4f5fSWarner Losh	local alias_table = drawer.drawscreen(m);
261088b4f5fSWarner Losh
262088b4f5fSWarner Losh--	menu.autoboot();
263088b4f5fSWarner Losh
264088b4f5fSWarner Losh	cont = true;
265088b4f5fSWarner Losh	while cont do
266abc4f7e7SKyle Evans		local key = io.getchar();
267088b4f5fSWarner Losh
268b458bf0dSKyle Evans		-- Special key behaviors
269fe672a15SKyle Evans		if (key == core.KEY_BACKSPACE) and (m ~= menu.welcome) then
270abc4f7e7SKyle Evans			break
271fe672a15SKyle Evans		elseif (key == core.KEY_ENTER) then
272b458bf0dSKyle Evans			core.boot();
273b458bf0dSKyle Evans			-- Should not return
274abc4f7e7SKyle Evans		end
275abc4f7e7SKyle Evans
276abc4f7e7SKyle Evans		key = string.char(key)
277088b4f5fSWarner Losh		-- check to see if key is an alias
278088b4f5fSWarner Losh		local sel_entry = nil;
279088b4f5fSWarner Losh		for k, v in pairs(alias_table) do
280088b4f5fSWarner Losh			if (key == k) then
281088b4f5fSWarner Losh				sel_entry = v;
282088b4f5fSWarner Losh			end
283088b4f5fSWarner Losh		end
284088b4f5fSWarner Losh
285088b4f5fSWarner Losh		-- if we have an alias do the assigned action:
286088b4f5fSWarner Losh		if(sel_entry ~= nil) then
287*a7cf0562SKyle Evans			if (sel_entry.entry_type == core.MENU_ENTRY) then
288088b4f5fSWarner Losh				-- run function
289088b4f5fSWarner Losh				sel_entry.func();
290*a7cf0562SKyle Evans			elseif (sel_entry.entry_type == core.MENU_CAROUSEL_ENTRY) then
291ada26c4aSKyle Evans				-- carousel (rotating) functionality
292ada26c4aSKyle Evans				local carid = sel_entry.carousel_id;
293ada26c4aSKyle Evans				local caridx = menu.getCarouselIndex(carid);
294ada26c4aSKyle Evans				local choices = sel_entry.items();
295ada26c4aSKyle Evans
296ada26c4aSKyle Evans				caridx = (caridx % #choices) + 1;
297ada26c4aSKyle Evans				menu.setCarouselIndex(carid, caridx);
298ada26c4aSKyle Evans				sel_entry.func(choices[caridx]);
299*a7cf0562SKyle Evans			elseif (sel_entry.entry_type == core.MENU_SUBMENU) then
300088b4f5fSWarner Losh				-- recurse
301088b4f5fSWarner Losh				cont = menu.run(sel_entry.submenu());
302*a7cf0562SKyle Evans			elseif (sel_entry.entry_type == core.MENU_RETURN) then
303088b4f5fSWarner Losh				-- break recurse
304088b4f5fSWarner Losh				cont = false;
305088b4f5fSWarner Losh			end
306088b4f5fSWarner Losh			-- if we got an alias key the screen is out of date:
307088b4f5fSWarner Losh			screen.clear();
308088b4f5fSWarner Losh			screen.defcursor();
309088b4f5fSWarner Losh			alias_table = drawer.drawscreen(m);
310088b4f5fSWarner Losh		end
311088b4f5fSWarner Losh	end
312088b4f5fSWarner Losh
313088b4f5fSWarner Losh	if (m == menu.welcome) then
314088b4f5fSWarner Losh		screen.defcursor();
315088b4f5fSWarner Losh		print("Exiting menu!");
316088b4f5fSWarner Losh		return false;
317088b4f5fSWarner Losh	end
318088b4f5fSWarner Losh
319088b4f5fSWarner Losh	return true;
320088b4f5fSWarner Loshend
321088b4f5fSWarner Losh
322088b4f5fSWarner Loshfunction menu.skip()
323088b4f5fSWarner Losh	if core.bootserial() then
324088b4f5fSWarner Losh		return true;
325088b4f5fSWarner Losh	end
326088b4f5fSWarner Losh	local c = string.lower(loader.getenv("console") or "");
327088b4f5fSWarner Losh	if (c:match("^efi[ ;]") or c:match("[ ;]efi[ ;]")) ~= nil then
328088b4f5fSWarner Losh		return true;
329088b4f5fSWarner Losh	end
330088b4f5fSWarner Losh
331088b4f5fSWarner Losh	c = string.lower(loader.getenv("beastie_disable") or "");
332088b4f5fSWarner Losh	print("beastie_disable", c);
333088b4f5fSWarner Losh	return c == "yes";
334088b4f5fSWarner Loshend
335088b4f5fSWarner Losh
336088b4f5fSWarner Loshfunction menu.autoboot()
337088b4f5fSWarner Losh	if menu.already_autoboot == true then
338088b4f5fSWarner Losh		return;
339088b4f5fSWarner Losh	end
340088b4f5fSWarner Losh	menu.already_autoboot = true;
341088b4f5fSWarner Losh
342088b4f5fSWarner Losh	local ab = loader.getenv("autoboot_delay");
343088b4f5fSWarner Losh	if ab == "NO" or ab == "no" then
344088b4f5fSWarner Losh		core.boot();
345088b4f5fSWarner Losh	end
346088b4f5fSWarner Losh	ab = tonumber(ab) or 10;
347088b4f5fSWarner Losh
348088b4f5fSWarner Losh	local x = loader.getenv("loader_menu_timeout_x") or 5;
349088b4f5fSWarner Losh	local y = loader.getenv("loader_menu_timeout_y") or 22;
350088b4f5fSWarner Losh
351088b4f5fSWarner Losh	local endtime = loader.time() + ab;
352088b4f5fSWarner Losh	local time;
353088b4f5fSWarner Losh
354088b4f5fSWarner Losh	repeat
355088b4f5fSWarner Losh		time = endtime - loader.time();
356088b4f5fSWarner Losh		screen.setcursor(x, y);
357088b4f5fSWarner Losh		print("Autoboot in "..time.." seconds, hit [Enter] to boot"
358088b4f5fSWarner Losh			      .." or any other key to stop     ");
359088b4f5fSWarner Losh		screen.defcursor();
360088b4f5fSWarner Losh		if io.ischar() then
361088b4f5fSWarner Losh			local ch = io.getchar();
362fe672a15SKyle Evans			if ch == core.KEY_ENTER then
363088b4f5fSWarner Losh				break;
364088b4f5fSWarner Losh			else
365088b4f5fSWarner Losh				-- prevent autoboot when escaping to interpreter
366088b4f5fSWarner Losh				loader.setenv("autoboot_delay", "NO");
367088b4f5fSWarner Losh				-- erase autoboot msg
368088b4f5fSWarner Losh				screen.setcursor(0, y);
369088b4f5fSWarner Losh				print("                                        "
370088b4f5fSWarner Losh					      .."                                        ");
371088b4f5fSWarner Losh				screen.defcursor();
372088b4f5fSWarner Losh				return;
373088b4f5fSWarner Losh			end
374088b4f5fSWarner Losh		end
375088b4f5fSWarner Losh
376088b4f5fSWarner Losh		loader.delay(50000);
377088b4f5fSWarner Losh	until time <= 0
378088b4f5fSWarner Losh	core.boot();
379088b4f5fSWarner Losh
380088b4f5fSWarner Loshend
381088b4f5fSWarner Losh
382088b4f5fSWarner Loshfunction OnOff(str, b)
383088b4f5fSWarner Losh	if (b) then
384088b4f5fSWarner Losh		return str .. color.escapef(color.GREEN).."On"..color.escapef(color.WHITE);
385088b4f5fSWarner Losh	else
386088b4f5fSWarner Losh		return str .. color.escapef(color.RED).."off"..color.escapef(color.WHITE);
387088b4f5fSWarner Losh	end
388088b4f5fSWarner Loshend
389088b4f5fSWarner Losh
390088b4f5fSWarner Loshreturn menu
391