xref: /freebsd/stand/common/interp_lua.c (revision 1edb7116)
1 /*-
2  * Copyright (c) 2011 Wojciech A. Koszek <wkoszek@FreeBSD.org>
3  * Copyright (c) 2014 Pedro Souza <pedrosouza@freebsd.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 #include <stand.h>
30 #include "bootstrap.h"
31 
32 #define lua_c
33 
34 #include "lstd.h"
35 
36 #include <lua.h>
37 #include <ldebug.h>
38 #include <lauxlib.h>
39 #include <lualib.h>
40 
41 #include <lerrno.h>
42 #include <lfs.h>
43 #include <lutils.h>
44 
45 struct interp_lua_softc {
46 	lua_State	*luap;
47 };
48 
49 static struct interp_lua_softc lua_softc;
50 
51 #ifdef LUA_DEBUG
52 #define	LDBG(...)	do {			\
53 	printf("%s(%d): ", __func__, __LINE__);	\
54 	printf(__VA_ARGS__);			\
55 	printf("\n");				\
56 } while (0)
57 #else
58 #define	LDBG(...)
59 #endif
60 
61 #define	LOADER_LUA	LUA_PATH "/loader.lua"
62 
63 INTERP_DEFINE("lua");
64 
65 static void *
66 interp_lua_realloc(void *ud __unused, void *ptr, size_t osize __unused, size_t nsize)
67 {
68 
69 	if (nsize == 0) {
70 		free(ptr);
71 		return NULL;
72 	}
73 	return realloc(ptr, nsize);
74 }
75 
76 /*
77  * The libraries commented out below either lack the proper
78  * support from libsa, or they are unlikely to be useful
79  * in the bootloader, so have been commented out.
80  */
81 static const luaL_Reg loadedlibs[] = {
82   {"_G", luaopen_base},
83   {LUA_LOADLIBNAME, luaopen_package},
84 //  {LUA_COLIBNAME, luaopen_coroutine},
85 //  {LUA_TABLIBNAME, luaopen_table},
86   {LUA_STRLIBNAME, luaopen_string},
87 //  {LUA_IOLIBNAME, luaopen_io},
88 //  {LUA_OSLIBNAME, luaopen_os},
89 //  {LUA_MATHLIBNAME, luaopen_math},
90 //  {LUA_UTF8LIBNAME, luaopen_utf8},
91 //  {LUA_DBLIBNAME, luaopen_debug},
92   {"errno", luaopen_errno},
93   {"io", luaopen_io},
94   {"lfs", luaopen_lfs},
95   {"loader", luaopen_loader},
96   {"pager", luaopen_pager},
97   {NULL, NULL}
98 };
99 
100 void
101 interp_init(void)
102 {
103 	lua_State *luap;
104 	struct interp_lua_softc	*softc = &lua_softc;
105 	const char *filename;
106 	const luaL_Reg *lib;
107 	lua_init_md_t **fnpp;
108 
109 	TSENTER();
110 
111 	setenv("script.lang", "lua", 1);
112 	LDBG("creating context");
113 
114 	luap = lua_newstate(interp_lua_realloc, NULL);
115 	if (luap == NULL) {
116 		printf("problem initializing the Lua interpreter\n");
117 		abort();
118 	}
119 	softc->luap = luap;
120 
121 	/* "require" functions from 'loadedlibs' and set results to global table */
122 	for (lib = loadedlibs; lib->func; lib++) {
123 		luaL_requiref(luap, lib->name, lib->func, 1);
124 		lua_pop(luap, 1);  /* remove lib */
125 	}
126 
127 	LUA_FOREACH_SET(fnpp)
128 	    (*fnpp)(luap);
129 
130 	filename = getenv("loader_lua");
131 	if (filename == NULL)
132 		filename = LOADER_LUA;
133 	if (interp_include(filename) != 0) {
134 		const char *errstr = lua_tostring(luap, -1);
135 		errstr = errstr == NULL ? "unknown" : errstr;
136 		printf("ERROR: %s.\n", errstr);
137 		lua_pop(luap, 1);
138 		setenv("autoboot_delay", "NO", 1);
139 	}
140 
141 	TSEXIT();
142 }
143 
144 int
145 interp_run(const char *line)
146 {
147 	int	argc, nargc;
148 	char	**argv;
149 	lua_State *luap;
150 	struct interp_lua_softc	*softc = &lua_softc;
151 	int status, ret;
152 
153 	TSENTER();
154 	luap = softc->luap;
155 	LDBG("executing line...");
156 	if ((status = luaL_dostring(luap, line)) != 0) {
157 		lua_pop(luap, 1);
158 		/*
159 		 * The line wasn't executable as lua; run it through parse to
160 		 * to get consistent parsing of command line arguments, then
161 		 * run it through cli_execute. If that fails, then we'll try it
162 		 * as a builtin.
163 		 */
164 		command_errmsg = NULL;
165 		if (parse(&argc, &argv, line) == 0) {
166 			lua_getglobal(luap, "cli_execute");
167 			for (nargc = 0; nargc < argc; ++nargc) {
168 				lua_pushstring(luap, argv[nargc]);
169 			}
170 			status = lua_pcall(luap, argc, 1, 0);
171 			ret = lua_tointeger(luap, 1);
172 			lua_pop(luap, 1);
173 			if (status != 0 || ret != 0) {
174 				/*
175 				 * Lua cli_execute will pass the function back
176 				 * through loader.command, which is a proxy to
177 				 * interp_builtin_cmd. If we failed to interpret
178 				 * the command, though, then there's a chance
179 				 * that didn't happen. Call interp_builtin_cmd
180 				 * directly if our lua_pcall was not successful.
181 				 */
182 				status = interp_builtin_cmd(argc, argv);
183 			}
184 			if (status != 0) {
185 				if (command_errmsg != NULL)
186 					printf("%s\n", command_errmsg);
187 				else
188 					printf("Command failed\n");
189 				status = CMD_ERROR;
190 			}
191 			free(argv);
192 		} else {
193 			printf("Failed to parse \'%s\'\n", line);
194 			status = CMD_ERROR;
195 		}
196 	}
197 
198 	TSEXIT();
199 	return (status == 0 ? CMD_OK : CMD_ERROR);
200 }
201 
202 int
203 interp_include(const char *filename)
204 {
205 	struct interp_lua_softc	*softc = &lua_softc;
206 
207 	LDBG("loading file %s", filename);
208 
209 	return (luaL_dofile(softc->luap, filename));
210 }
211