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
|
local function standard(loaded)
local r = {}
for _, s in ipairs {
--'package',
'coroutine',
'table',
--'io',
'os',
'string',
'math',
'utf8',
'debug',
} do
r[s] = _G[s]
loaded[s] = _G[s]
end
for _, s in ipairs {
'assert',
'collectgarbage',
--'dofile',
'error',
'getmetatable',
'ipairs',
--'loadfile',
'load',
'next',
'pairs',
'pcall',
'print',
'rawequal',
'rawlen',
'rawget',
'rawset',
'select',
'setmetatable',
'tonumber',
'tostring',
'type',
'xpcall',
'_VERSION',
--'require',
} do
r[s] = _G[s]
end
return r
end
local function sandbox_env(loadlua, openfile, loaded)
local _LOADED = loaded or {}
local _E = standard(_LOADED)
local _PRELOAD = {}
_E.io = {
open = openfile,
}
local function searchpath(name, path)
local err = ''
name = string.gsub(name, '%.', '/')
for c in string.gmatch(path, '[^;]+') do
local filename = string.gsub(c, '%?', name)
local f = openfile(filename)
if f then
f:close()
return filename
end
err = err .. ("\n\tno file '%s'"):format(filename)
end
return nil, err
end
local function searcher_preload(name)
assert(type(_PRELOAD) == "table", "'package.preload' must be a table")
if _PRELOAD[name] == nil then
return ("\n\tno field package.preload['%s']"):format(name)
end
return _PRELOAD[name]
end
local function searcher_lua(name)
assert(type(_E.package.path) == "string", "'package.path' must be a string")
local filename, err = searchpath(name, _E.package.path)
if not filename then
return err
end
local f, err = loadlua(filename)
if not f then
error(("error loading module '%s' from file '%s':\n\t%s"):format(name, filename, err))
end
return f, filename
end
local function require_load(name)
local msg = ''
local _SEARCHERS = _E.package.searchers
assert(type(_SEARCHERS) == "table", "'package.searchers' must be a table")
for _, searcher in ipairs(_SEARCHERS) do
local f, extra = searcher(name)
if type(f) == 'function' then
return f, extra
elseif type(f) == 'string' then
msg = msg .. f
end
end
error(("module '%s' not found:%s"):format(name, msg))
end
_E.require = function(name)
assert(type(name) == "string", ("bad argument #1 to 'require' (string expected, got %s)"):format(type(name)))
local p = _LOADED[name]
if p ~= nil then
return p
end
local init, extra = require_load(name)
debug.setupvalue(init, 1, _E)
local res = init(name, extra)
if res ~= nil then
_LOADED[name] = res
end
if _LOADED[name] == nil then
_LOADED[name] = true
end
return _LOADED[name]
end
_E.package = {
config = [[
\
;
?
!
-
]],
loaded = _LOADED,
path = '?.lua',
preload = _PRELOAD,
searchers = { searcher_preload, searcher_lua },
searchpath = searchpath
}
return _E
end
return function(name, root, io_open, loaded)
if not root:sub(-1):find '[/\\]' then
root = root .. '/'
end
local function openfile(name, mode)
return io_open(root .. name, mode)
end
local function loadlua(name)
local f = openfile(name, 'r')
if f then
local str = f:read 'a'
f:close()
return load(str, '@' .. root .. name)
end
end
local init = loadlua(name)
if not init then
return
end
debug.setupvalue(init, 1, sandbox_env(loadlua, openfile, loaded))
return init()
end
|