-
Notifications
You must be signed in to change notification settings - Fork 29
/
lunatik_core.c
254 lines (206 loc) · 5.95 KB
/
lunatik_core.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
* SPDX-FileCopyrightText: (c) 2023-2024 Ring Zero Desenvolvimento de Software LTDA
* SPDX-License-Identifier: MIT OR GPL-2.0-only
*/
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
#include "lunatik.h"
#include "lunatik_sym.h"
#ifdef LUNATIK_RUNTIME
lunatik_object_t *lunatik_env;
EXPORT_SYMBOL(lunatik_env);
static inline void lunatik_setversion(lua_State *L)
{
lua_pushstring(L, LUNATIK_VERSION);
lua_setglobal(L, "_LUNATIK_VERSION");
}
/* based on l_alloc() @ lua/lauxlib.c */
static void *lunatik_alloc(void *ud, void *ptr, size_t osize, size_t nsize)
{
lunatik_object_t *runtime;
(void)osize; /* not used */
if (nsize == 0) {
kfree(ptr);
return NULL;
}
runtime = (lunatik_object_t *)ud;
return krealloc(ptr, nsize, lunatik_gfp(runtime));
}
static inline void lunatik_runerror(lua_State *L, const char *errmsg)
{
if (L)
lua_pushstring(L, errmsg);
else
pr_err("%s\n", errmsg);
}
static void lunatik_releaseruntime(void *private)
{
lua_State *L = (lua_State *)private;
lua_close(L);
}
int lunatik_stop(lunatik_object_t *runtime)
{
void *private;
lunatik_lock(runtime);
private = runtime->private;
runtime->private = NULL;
lunatik_unlock(runtime);
lunatik_releaseruntime(private);
return lunatik_putobject(runtime);
}
EXPORT_SYMBOL(lunatik_stop);
static int lunatik_lruntime(lua_State *L);
LUNATIK_PRIVATECHECKER(lunatik_check, lua_State *);
static int lunatik_lcopyobjects(lua_State *L)
{
lua_State *Lfrom = (lua_State *)lua_touserdata(L, 1);
int ixfrom = lua_tointeger(L, 2);
int nobjects = lua_tointeger(L, 3);
for (int i = 0; i < nobjects; i++) {
lunatik_object_t *object = lunatik_testobject(Lfrom, ixfrom + i);
luaL_argcheck(L, object != NULL, i + 1, "invalid object");
lunatik_pushobject(L, object);
}
return nobjects;
}
static inline int lunatik_copyobjects(lua_State *Lto, lua_State *Lfrom, int ixfrom, int nobjects)
{
lua_pushcfunction(Lto, lunatik_lcopyobjects);
lua_pushlightuserdata(Lto, Lfrom);
lua_pushinteger(Lto, ixfrom);
lua_pushinteger(Lto, nobjects);
return lua_pcall(Lto, 3, nobjects, 0);
}
static inline int lunatik_resume(lua_State *Lto, lua_State *Lfrom, int nargs)
{
int nresults;
int status = lua_resume(Lto, Lfrom, nargs, &nresults);
return status == LUA_OK || status == LUA_YIELD ? nresults : -1;
}
static int lunatik_lresume(lua_State *L)
{
lua_State *Lto = lunatik_check(L, 1);
int nargs = lua_gettop(L) - 1;
int nresults;
if (lunatik_copyobjects(Lto, L, 2, nargs) != LUA_OK || (nresults = lunatik_resume(Lto, L, nargs) < 0)) {
lua_pushfstring(L, "%s\n", lua_tostring(Lto, -1));
lua_pop(Lto, 1); /* error message */
lua_error(L);
}
int status = lunatik_copyobjects(L, Lto, nargs, nresults);
lua_pop(Lto, nresults);
if (status != LUA_OK)
lua_error(L);
return nresults;
}
static const luaL_Reg lunatik_lib[] = {
{"runtime", lunatik_lruntime},
{NULL, NULL}
};
static const luaL_Reg lunatik_stub_lib[] = {
{NULL, NULL}
};
static const luaL_Reg lunatik_mt[] = {
{"__index", lunatik_monitorobject},
{"__gc", lunatik_deleteobject},
{"__close", lunatik_closeobject},
{"stop", lunatik_closeobject},
{"resume", lunatik_lresume},
{NULL, NULL}
};
static const lunatik_class_t lunatik_class = {
.name = "lunatik",
.methods = lunatik_mt,
.release = lunatik_releaseruntime,
.sleep = true,
.pointer = true,
};
/* used for luaL_requiref() */
int luaopen_lunatik(lua_State *L);
int luaopen_lunatik_stub(lua_State *L);
static inline void lunatik_setready(lua_State *L)
{
lua_pushboolean(L, true);
lua_rawsetp(L, LUA_REGISTRYINDEX, L);
}
static int lunatik_runscript(lua_State *L)
{
const char *script = lua_pushfstring(L, "%s%s.lua", LUA_ROOT, lua_touserdata(L, 1));
int scriptix = lua_gettop(L);
lunatik_setversion(L);
luaL_openlibs(L);
if (lunatik_toruntime(L)->sleep)
luaL_requiref(L, "lunatik", luaopen_lunatik, 0);
else
luaL_requiref(L, "lunatik", luaopen_lunatik_stub, 0);
if (lunatik_env != NULL) {
lunatik_pushobject(L, lunatik_env);
lua_setfield(L, -2, "_ENV");
}
lua_pop(L, 1); /* lunatik library */
if (lunatik_loadfile(L, script, NULL) != LUA_OK)
lua_error(L);
lua_call(L, 0, 1);
lua_remove(L, scriptix);
lunatik_setready(L);
return 1; /* callback */
}
static int lunatik_newruntime(lunatik_object_t **pruntime, lua_State *Lfrom, const char *script, bool sleep)
{
lunatik_object_t *runtime;
lua_State *L;
if ((L = luaL_newstate()) == NULL) {
lunatik_runerror(Lfrom, "failed to allocate Lua state");
return -ENOMEM;
}
if ((runtime = lunatik_malloc(L, sizeof(lunatik_object_t))) == NULL) {
lunatik_runerror(Lfrom, "failed to allocate runtime");
lua_close(L);
return -ENOMEM;
}
lunatik_setobject(runtime, &lunatik_class, sleep);
lunatik_toruntime(L) = runtime;
runtime->private = L;
lua_pushcfunction(L, lunatik_runscript);
lua_pushlightuserdata(L, (void *)script);
if (lua_pcall(L, 1, 1, 0) != LUA_OK) {
lunatik_runerror(Lfrom, lua_tostring(L, -1));
lunatik_putobject(runtime);
return -ENOEXEC;
}
lua_setallocf(L, lunatik_alloc, runtime);
*pruntime = runtime;
return 0;
}
int lunatik_runtime(lunatik_object_t **pruntime, const char *script, bool sleep)
{
return lunatik_newruntime(pruntime, NULL, script, sleep);
}
EXPORT_SYMBOL(lunatik_runtime);
static int lunatik_lruntime(lua_State *L)
{
const char *script = luaL_checkstring(L, 1);
bool sleep = (bool)(lua_gettop(L) >= 2 ? lua_toboolean(L, 2) : true);
lunatik_object_t **pruntime = lunatik_newpobject(L, 1);
if (lunatik_newruntime(pruntime, L, script, sleep) != 0)
lua_error(L);
lunatik_setclass(L, &lunatik_class);
return 1;
}
LUNATIK_NEWLIB(lunatik, lunatik_lib, &lunatik_class, NULL);
LUNATIK_NEWLIB(lunatik_stub, lunatik_stub_lib, NULL, NULL);
#endif /* LUNATIK_RUNTIME */
static int __init lunatik_init(void)
{
return 0;
}
static void __exit lunatik_exit(void)
{
}
module_init(lunatik_init);
module_exit(lunatik_exit);
MODULE_LICENSE("Dual MIT/GPL");
MODULE_AUTHOR("Lourival Vieira Neto <lourival.neto@ring-0.io>");