1--
2-- SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3--
4-- Copyright (c) 2015 Pedro Souza <pedrosouza@freebsd.org>
5-- Copyright (C) 2018 Kyle Evans <kevans@FreeBSD.org>
6-- All rights reserved.
7--
8-- Redistribution and use in source and binary forms, with or without
9-- modification, are permitted provided that the following conditions
10-- are met:
11-- 1. Redistributions of source code must retain the above copyright
12--    notice, this list of conditions and the following disclaimer.
13-- 2. Redistributions in binary form must reproduce the above copyright
14--    notice, this list of conditions and the following disclaimer in the
15--    documentation and/or other materials provided with the distribution.
16--
17-- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18-- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20-- ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21-- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22-- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23-- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24-- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25-- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26-- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27-- SUCH DAMAGE.
28--
29-- $FreeBSD: stable/11/stand/lua/config.lua 360596 2020-05-03 03:53:38Z kevans $
30--
31
32local hook = require("hook")
33
34local config = {}
35local modules = {}
36local carousel_choices = {}
37-- Which variables we changed
38local env_changed = {}
39-- Values to restore env to (nil to unset)
40local env_restore = {}
41
42local MSG_FAILEXEC = "Failed to exec '%s'"
43local MSG_FAILSETENV = "Failed to '%s' with value: %s"
44local MSG_FAILOPENCFG = "Failed to open config: '%s'"
45local MSG_FAILREADCFG = "Failed to read config: '%s'"
46local MSG_FAILPARSECFG = "Failed to parse config: '%s'"
47local MSG_FAILEXBEF = "Failed to execute '%s' before loading '%s'"
48local MSG_FAILEXAF = "Failed to execute '%s' after loading '%s'"
49local MSG_MALFORMED = "Malformed line (%d):\n\t'%s'"
50local MSG_DEFAULTKERNFAIL = "No kernel set, failed to load from module_path"
51local MSG_KERNFAIL = "Failed to load kernel '%s'"
52local MSG_XENKERNFAIL = "Failed to load Xen kernel '%s'"
53local MSG_XENKERNLOADING = "Loading Xen kernel..."
54local MSG_KERNLOADING = "Loading kernel..."
55local MSG_MODLOADING = "Loading configured modules..."
56local MSG_MODBLACKLIST = "Not loading blacklisted module '%s'"
57
58local MODULEEXPR = '([%w-_]+)'
59local QVALEXPR = "\"([%w%s%p]-)\""
60local QVALREPL = QVALEXPR:gsub('%%', '%%%%')
61local WORDEXPR = "([%w]+)"
62local WORDREPL = WORDEXPR:gsub('%%', '%%%%')
63
64-- Entries that should never make it into the environment; each one should have
65-- a documented reason for its existence, and these should all be implementation
66-- details of the config module.
67local loader_env_restricted_table = {
68	-- loader_conf_files should be considered write-only, and consumers
69	-- should not rely on any particular value; it's a loader implementation
70	-- detail.  Moreover, it's not a particularly useful variable to have in
71	-- the kenv.  Save the overhead, let it get fetched other ways.
72	loader_conf_files = true,
73}
74
75local function restoreEnv()
76	-- Examine changed environment variables
77	for k, v in pairs(env_changed) do
78		local restore_value = env_restore[k]
79		if restore_value == nil then
80			-- This one doesn't need restored for some reason
81			goto continue
82		end
83		local current_value = loader.getenv(k)
84		if current_value ~= v then
85			-- This was overwritten by some action taken on the menu
86			-- most likely; we'll leave it be.
87			goto continue
88		end
89		restore_value = restore_value.value
90		if restore_value ~= nil then
91			loader.setenv(k, restore_value)
92		else
93			loader.unsetenv(k)
94		end
95		::continue::
96	end
97
98	env_changed = {}
99	env_restore = {}
100end
101
102-- XXX This getEnv/setEnv should likely be exported at some point.  We can save
103-- the call back into loader.getenv for any variable that's been set or
104-- overridden by any loader.conf using this implementation with little overhead
105-- since we're already tracking the values.
106local function getEnv(key)
107	if loader_env_restricted_table[key] ~= nil or
108	    env_changed[key] ~= nil then
109		return env_changed[key]
110	end
111
112	return loader.getenv(key)
113end
114
115local function setEnv(key, value)
116	env_changed[key] = value
117
118	if loader_env_restricted_table[key] ~= nil then
119		return 0
120	end
121
122	-- Track the original value for this if we haven't already
123	if env_restore[key] == nil then
124		env_restore[key] = {value = loader.getenv(key)}
125	end
126
127	return loader.setenv(key, value)
128end
129
130-- name here is one of 'name', 'type', flags', 'before', 'after', or 'error.'
131-- These are set from lines in loader.conf(5): ${key}_${name}="${value}" where
132-- ${key} is a module name.
133local function setKey(key, name, value)
134	if modules[key] == nil then
135		modules[key] = {}
136	end
137	modules[key][name] = value
138end
139
140-- Escapes the named value for use as a literal in a replacement pattern.
141-- e.g. dhcp.host-name gets turned into dhcp%.host%-name to remove the special
142-- meaning.
143local function escapeName(name)
144	return name:gsub("([%p])", "%%%1")
145end
146
147local function processEnvVar(value)
148	for name in value:gmatch("${([^}]+)}") do
149		local replacement = loader.getenv(name) or ""
150		value = value:gsub("${" .. escapeName(name) .. "}", replacement)
151	end
152	for name in value:gmatch("$([%w%p]+)%s*") do
153		local replacement = loader.getenv(name) or ""
154		value = value:gsub("$" .. escapeName(name), replacement)
155	end
156	return value
157end
158
159local function checkPattern(line, pattern)
160	local function _realCheck(_line, _pattern)
161		return _line:match(_pattern)
162	end
163
164	if pattern:find('$VALUE') then
165		local k, v, c
166		k, v, c = _realCheck(line, pattern:gsub('$VALUE', QVALREPL))
167		if k ~= nil then
168			return k,v, c
169		end
170		return _realCheck(line, pattern:gsub('$VALUE', WORDREPL))
171	else
172		return _realCheck(line, pattern)
173	end
174end
175
176-- str in this table is a regex pattern.  It will automatically be anchored to
177-- the beginning of a line and any preceding whitespace will be skipped.  The
178-- pattern should have no more than two captures patterns, which correspond to
179-- the two parameters (usually 'key' and 'value') that are passed to the
180-- process function.  All trailing characters will be validated.  Any $VALUE
181-- token included in a pattern will be tried first with a quoted value capture
182-- group, then a single-word value capture group.  This is our kludge for Lua
183-- regex not supporting branching.
184--
185-- We have two special entries in this table: the first is the first entry,
186-- a full-line comment.  The second is for 'exec' handling.  Both have a single
187-- capture group, but the difference is that the full-line comment pattern will
188-- match the entire line.  This does not run afoul of the later end of line
189-- validation that we'll do after a match.  However, the 'exec' pattern will.
190-- We document the exceptions with a special 'groups' index that indicates
191-- the number of capture groups, if not two.  We'll use this later to do
192-- validation on the proper entry.
193--
194local pattern_table = {
195	{
196		str = "(#.*)",
197		process = function(_, _)  end,
198		groups = 1,
199	},
200	--  module_load="value"
201	{
202		str = MODULEEXPR .. "_load%s*=%s*$VALUE",
203		process = function(k, v)
204			if modules[k] == nil then
205				modules[k] = {}
206			end
207			modules[k].load = v:upper()
208		end,
209	},
210	--  module_name="value"
211	{
212		str = MODULEEXPR .. "_name%s*=%s*$VALUE",
213		process = function(k, v)
214			setKey(k, "name", v)
215		end,
216	},
217	--  module_type="value"
218	{
219		str = MODULEEXPR .. "_type%s*=%s*$VALUE",
220		process = function(k, v)
221			setKey(k, "type", v)
222		end,
223	},
224	--  module_flags="value"
225	{
226		str = MODULEEXPR .. "_flags%s*=%s*$VALUE",
227		process = function(k, v)
228			setKey(k, "flags", v)
229		end,
230	},
231	--  module_before="value"
232	{
233		str = MODULEEXPR .. "_before%s*=%s*$VALUE",
234		process = function(k, v)
235			setKey(k, "before", v)
236		end,
237	},
238	--  module_after="value"
239	{
240		str = MODULEEXPR .. "_after%s*=%s*$VALUE",
241		process = function(k, v)
242			setKey(k, "after", v)
243		end,
244	},
245	--  module_error="value"
246	{
247		str = MODULEEXPR .. "_error%s*=%s*$VALUE",
248		process = function(k, v)
249			setKey(k, "error", v)
250		end,
251	},
252	--  exec="command"
253	{
254		str = "exec%s*=%s*" .. QVALEXPR,
255		process = function(k, _)
256			if cli_execute_unparsed(k) ~= 0 then
257				print(MSG_FAILEXEC:format(k))
258			end
259		end,
260		groups = 1,
261	},
262	--  env_var="value"
263	{
264		str = "([%w%p]+)%s*=%s*$VALUE",
265		process = function(k, v)
266			if setEnv(k, processEnvVar(v)) ~= 0 then
267				print(MSG_FAILSETENV:format(k, v))
268			end
269		end,
270	},
271	--  env_var=num
272	{
273		str = "([%w%p]+)%s*=%s*(-?%d+)",
274		process = function(k, v)
275			if setEnv(k, processEnvVar(v)) ~= 0 then
276				print(MSG_FAILSETENV:format(k, tostring(v)))
277			end
278		end,
279	},
280}
281
282local function isValidComment(line)
283	if line ~= nil then
284		local s = line:match("^%s*#.*")
285		if s == nil then
286			s = line:match("^%s*$")
287		end
288		if s == nil then
289			return false
290		end
291	end
292	return true
293end
294
295local function getBlacklist()
296	local blacklist = {}
297	local blacklist_str = loader.getenv('module_blacklist')
298	if blacklist_str == nil then
299		return blacklist
300	end
301
302	for mod in blacklist_str:gmatch("[;, ]?([%w-_]+)[;, ]?") do
303		blacklist[mod] = true
304	end
305	return blacklist
306end
307
308local function loadModule(mod, silent)
309	local status = true
310	local blacklist = getBlacklist()
311	local pstatus
312	for k, v in pairs(mod) do
313		if v.load ~= nil and v.load:lower() == "yes" then
314			local module_name = v.name or k
315			if blacklist[module_name] ~= nil then
316				if not silent then
317					print(MSG_MODBLACKLIST:format(module_name))
318				end
319				goto continue
320			end
321			if not silent then
322				loader.printc(module_name .. "...")
323			end
324			local str = "load "
325			if v.type ~= nil then
326				str = str .. "-t " .. v.type .. " "
327			end
328			str = str .. module_name
329			if v.flags ~= nil then
330				str = str .. " " .. v.flags
331			end
332			if v.before ~= nil then
333				pstatus = cli_execute_unparsed(v.before) == 0
334				if not pstatus and not silent then
335					print(MSG_FAILEXBEF:format(v.before, k))
336				end
337				status = status and pstatus
338			end
339
340			if cli_execute_unparsed(str) ~= 0 then
341				-- XXX Temporary shim: don't break the boot if
342				-- loader hadn't been recompiled with this
343				-- function exposed.
344				if loader.command_error then
345					print(loader.command_error())
346				end
347				if not silent then
348					print("failed!")
349				end
350				if v.error ~= nil then
351					cli_execute_unparsed(v.error)
352				end
353				status = false
354			elseif v.after ~= nil then
355				pstatus = cli_execute_unparsed(v.after) == 0
356				if not pstatus and not silent then
357					print(MSG_FAILEXAF:format(v.after, k))
358				end
359				if not silent then
360					print("ok")
361				end
362				status = status and pstatus
363			end
364		end
365		::continue::
366	end
367
368	return status
369end
370
371local function readFile(name, silent)
372	local f = io.open(name)
373	if f == nil then
374		if not silent then
375			print(MSG_FAILOPENCFG:format(name))
376		end
377		return nil
378	end
379
380	local text, _ = io.read(f)
381	-- We might have read in the whole file, this won't be needed any more.
382	io.close(f)
383
384	if text == nil and not silent then
385		print(MSG_FAILREADCFG:format(name))
386	end
387	return text
388end
389
390local function checkNextboot()
391	local nextboot_file = loader.getenv("nextboot_conf")
392	if nextboot_file == nil then
393		return
394	end
395
396	local text = readFile(nextboot_file, true)
397	if text == nil then
398		return
399	end
400
401	if text:match("^nextboot_enable=\"NO\"") ~= nil then
402		-- We're done; nextboot is not enabled
403		return
404	end
405
406	if not config.parse(text) then
407		print(MSG_FAILPARSECFG:format(nextboot_file))
408	end
409
410	-- Attempt to rewrite the first line and only the first line of the
411	-- nextboot_file. We overwrite it with nextboot_enable="NO", then
412	-- check for that on load.
413	-- It's worth noting that this won't work on every filesystem, so we
414	-- won't do anything notable if we have any errors in this process.
415	local nfile = io.open(nextboot_file, 'w')
416	if nfile ~= nil then
417		-- We need the trailing space here to account for the extra
418		-- character taken up by the string nextboot_enable="YES"
419		-- Or new end quotation mark lands on the S, and we want to
420		-- rewrite the entirety of the first line.
421		io.write(nfile, "nextboot_enable=\"NO\" ")
422		io.close(nfile)
423	end
424end
425
426-- Module exports
427config.verbose = false
428
429-- The first item in every carousel is always the default item.
430function config.getCarouselIndex(id)
431	return carousel_choices[id] or 1
432end
433
434function config.setCarouselIndex(id, idx)
435	carousel_choices[id] = idx
436end
437
438-- Returns true if we processed the file successfully, false if we did not.
439-- If 'silent' is true, being unable to read the file is not considered a
440-- failure.
441function config.processFile(name, silent)
442	if silent == nil then
443		silent = false
444	end
445
446	local text = readFile(name, silent)
447	if text == nil then
448		return silent
449	end
450
451	return config.parse(text)
452end
453
454-- silent runs will not return false if we fail to open the file
455function config.parse(text)
456	local n = 1
457	local status = true
458
459	for line in text:gmatch("([^\n]+)") do
460		if line:match("^%s*$") == nil then
461			for _, val in ipairs(pattern_table) do
462				local pattern = '^%s*' .. val.str .. '%s*(.*)';
463				local cgroups = val.groups or 2
464				local k, v, c = checkPattern(line, pattern)
465				if k ~= nil then
466					-- Offset by one, drats
467					if cgroups == 1 then
468						c = v
469						v = nil
470					end
471
472					if isValidComment(c) then
473						val.process(k, v)
474						goto nextline
475					end
476
477					break
478				end
479			end
480
481			print(MSG_MALFORMED:format(n, line))
482			status = false
483		end
484		::nextline::
485		n = n + 1
486	end
487
488	return status
489end
490
491function config.readConf(file, loaded_files)
492	if loaded_files == nil then
493		loaded_files = {}
494	end
495
496	if loaded_files[file] ~= nil then
497		return
498	end
499
500	print("Loading " .. file)
501
502	-- The final value of loader_conf_files is not important, so just
503	-- clobber it here.  We'll later check if it's no longer nil and process
504	-- the new value for files to read.
505	setEnv("loader_conf_files", nil)
506
507	-- These may or may not exist, and that's ok. Do a
508	-- silent parse so that we complain on parse errors but
509	-- not for them simply not existing.
510	if not config.processFile(file, true) then
511		print(MSG_FAILPARSECFG:format(file))
512	end
513
514	loaded_files[file] = true
515
516	-- Going to process "loader_conf_files" extra-files
517	local loader_conf_files = getEnv("loader_conf_files")
518	if loader_conf_files ~= nil then
519		for name in loader_conf_files:gmatch("[%w%p]+") do
520			config.readConf(name, loaded_files)
521		end
522	end
523end
524
525-- other_kernel is optionally the name of a kernel to load, if not the default
526-- or autoloaded default from the module_path
527function config.loadKernel(other_kernel)
528	local flags = loader.getenv("kernel_options") or ""
529	local kernel = other_kernel or loader.getenv("kernel")
530
531	local function tryLoad(names)
532		for name in names:gmatch("([^;]+)%s*;?") do
533			local r = loader.perform("load " .. name ..
534			     " " .. flags)
535			if r == 0 then
536				return name
537			end
538		end
539		return nil
540	end
541
542	local function getModulePath()
543		local module_path = loader.getenv("module_path")
544		local kernel_path = loader.getenv("kernel_path")
545
546		if kernel_path == nil then
547			return module_path
548		end
549
550		-- Strip the loaded kernel path from module_path. This currently assumes
551		-- that the kernel path will be prepended to the module_path when it's
552		-- found.
553		kernel_path = escapeName(kernel_path .. ';')
554		return module_path:gsub(kernel_path, '')
555	end
556
557	local function loadBootfile()
558		local bootfile = loader.getenv("bootfile")
559
560		-- append default kernel name
561		if bootfile == nil then
562			bootfile = "kernel"
563		else
564			bootfile = bootfile .. ";kernel"
565		end
566
567		return tryLoad(bootfile)
568	end
569
570	-- kernel not set, try load from default module_path
571	if kernel == nil then
572		local res = loadBootfile()
573
574		if res ~= nil then
575			-- Default kernel is loaded
576			config.kernel_loaded = nil
577			return true
578		else
579			print(MSG_DEFAULTKERNFAIL)
580			return false
581		end
582	else
583		-- Use our cached module_path, so we don't end up with multiple
584		-- automatically added kernel paths to our final module_path
585		local module_path = getModulePath()
586		local res
587
588		if other_kernel ~= nil then
589			kernel = other_kernel
590		end
591		-- first try load kernel with module_path = /boot/${kernel}
592		-- then try load with module_path=${kernel}
593		local paths = {"/boot/" .. kernel, kernel}
594
595		for _, v in pairs(paths) do
596			loader.setenv("module_path", v)
597			res = loadBootfile()
598
599			-- succeeded, add path to module_path
600			if res ~= nil then
601				config.kernel_loaded = kernel
602				if module_path ~= nil then
603					loader.setenv("module_path", v .. ";" ..
604					    module_path)
605					loader.setenv("kernel_path", v)
606				end
607				return true
608			end
609		end
610
611		-- failed to load with ${kernel} as a directory
612		-- try as a file
613		res = tryLoad(kernel)
614		if res ~= nil then
615			config.kernel_loaded = kernel
616			return true
617		else
618			print(MSG_KERNFAIL:format(kernel))
619			return false
620		end
621	end
622end
623
624function config.selectKernel(kernel)
625	config.kernel_selected = kernel
626end
627
628function config.load(file, reloading)
629	if not file then
630		file = "/boot/defaults/loader.conf"
631	end
632
633	config.readConf(file)
634
635	checkNextboot()
636
637	local verbose = loader.getenv("verbose_loading") or "no"
638	config.verbose = verbose:lower() == "yes"
639	if not reloading then
640		hook.runAll("config.loaded")
641	end
642end
643
644-- Reload configuration
645function config.reload(file)
646	modules = {}
647	restoreEnv()
648	config.load(file, true)
649	hook.runAll("config.reloaded")
650end
651
652function config.loadelf()
653	local xen_kernel = loader.getenv('xen_kernel')
654	local kernel = config.kernel_selected or config.kernel_loaded
655	local status
656
657	if xen_kernel ~= nil then
658		print(MSG_XENKERNLOADING)
659		if cli_execute_unparsed('load ' .. xen_kernel) ~= 0 then
660			print(MSG_XENKERNFAIL:format(xen_kernel))
661			return false
662		end
663	end
664	print(MSG_KERNLOADING)
665	if not config.loadKernel(kernel) then
666		return false
667	end
668	hook.runAll("kernel.loaded")
669
670	print(MSG_MODLOADING)
671	status = loadModule(modules, not config.verbose)
672	hook.runAll("modules.loaded")
673	return status
674end
675
676hook.registerType("config.loaded")
677hook.registerType("config.reloaded")
678hook.registerType("kernel.loaded")
679hook.registerType("modules.loaded")
680return config
681