mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-26 02:10:18 +01:00
Fix bug where functions in Luacontroller EEPROM crashes the server (fixes #107).
This commit is contained in:
parent
367a41416b
commit
8ea71a9036
@ -135,10 +135,29 @@ local code_prohibited = function(code)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local safeprint = function(param)
|
local safe_print = function(param)
|
||||||
print(dump(param))
|
print(dump(param))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
deep_copy = function(original) --deep copy that removes functions
|
||||||
|
if type(original) == 'table' then --nested table
|
||||||
|
local copy = {}
|
||||||
|
for key, value in next, original, nil do
|
||||||
|
copy[deep_copy(key)] = deep_copy(value)
|
||||||
|
end
|
||||||
|
setmetatable(copy, deep_copy(getmetatable(original)))
|
||||||
|
return copy
|
||||||
|
elseif type(original) == 'function' then --ignore functions
|
||||||
|
return nil
|
||||||
|
else --by-value type
|
||||||
|
return original
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local safe_serialize = function(value)
|
||||||
|
return minetest.serialize(deep_copy(value))
|
||||||
|
end
|
||||||
|
|
||||||
local interrupt = function(params)
|
local interrupt = function(params)
|
||||||
lc_update(params.pos, {type="interrupt", iid = params.iid})
|
lc_update(params.pos, {type="interrupt", iid = params.iid})
|
||||||
end
|
end
|
||||||
@ -150,15 +169,16 @@ local getinterrupt = function(pos)
|
|||||||
local meta = minetest.env:get_meta(pos)
|
local meta = minetest.env:get_meta(pos)
|
||||||
local interrupts = minetest.deserialize(meta:get_string("lc_interrupts")) or {}
|
local interrupts = minetest.deserialize(meta:get_string("lc_interrupts")) or {}
|
||||||
local found = false
|
local found = false
|
||||||
|
local search = safe_serialize(iid)
|
||||||
for _, i in ipairs(interrupts) do
|
for _, i in ipairs(interrupts) do
|
||||||
if minetest.serialize(i) == minetest.serialize(iid) then
|
if safe_serialize(i) == search then
|
||||||
found = true
|
found = true
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if not found then
|
if not found then
|
||||||
table.insert(interrupts, iid)
|
table.insert(interrupts, iid)
|
||||||
meta:set_string("lc_interrupts", minetest.serialize(interrupts))
|
meta:set_string("lc_interrupts", safe_serialize(interrupts))
|
||||||
end
|
end
|
||||||
minetest.after(time, interrupt, {pos=pos, iid = iid})
|
minetest.after(time, interrupt, {pos=pos, iid = iid})
|
||||||
end
|
end
|
||||||
@ -181,7 +201,7 @@ local create_environment = function(pos, mem, event)
|
|||||||
local rports = get_real_portstates(pos)
|
local rports = get_real_portstates(pos)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
print = safeprint,
|
print = safe_print,
|
||||||
pin = merge_portstates(vports, rports),
|
pin = merge_portstates(vports, rports),
|
||||||
port = vports,
|
port = vports,
|
||||||
interrupt = getinterrupt(pos),
|
interrupt = getinterrupt(pos),
|
||||||
@ -272,15 +292,16 @@ local load_memory = function(meta)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local save_memory = function(meta, mem)
|
local save_memory = function(meta, mem)
|
||||||
meta:set_string("lc_memory", minetest.serialize(mem))
|
meta:set_string("lc_memory", safe_serialize(mem))
|
||||||
end
|
end
|
||||||
|
|
||||||
local interrupt_allow = function (meta, event)
|
local interrupt_allow = function (meta, event)
|
||||||
if event.type ~= "interrupt" then return true end
|
if event.type ~= "interrupt" then return true end
|
||||||
|
|
||||||
local interrupts = minetest.deserialize(meta:get_string("lc_interrupts")) or {}
|
local interrupts = minetest.deserialize(meta:get_string("lc_interrupts")) or {}
|
||||||
|
local search = safe_serialize(event.iid)
|
||||||
for _, i in ipairs(interrupts) do
|
for _, i in ipairs(interrupts) do
|
||||||
if minetest.serialize(i) == minetest.serialize(event.iid) then
|
if safe_serialize(i) == search then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user