425 lines
12 KiB
Lua
Raw Normal View History

-- Buildat: extension/urho3d
-- http://www.apache.org/licenses/LICENSE-2.0
-- Copyright 2014 Perttu Ahola <celeron55@gmail.com>
local log = buildat.Logger("extension/urho3d")
local dump = buildat.dump
local magic_sandbox = require("buildat/extension/magic_sandbox")
local safe_globals = dofile(buildat.extension_path("urho3d").."/safe_globals.lua")
local safe_events = dofile(buildat.extension_path("urho3d").."/safe_events.lua")
local safe_classes = dofile(buildat.extension_path("urho3d").."/safe_classes.lua")
local Safe = {}
local Unsafe = {}
2014-09-30 12:37:23 +03:00
--[[
--
-- ResourceCache support code
--
-- Checks that this is not an absolute file path or anything funny
local allowed_name_pattern = '^[a-zA-Z0-9_][a-zA-Z0-9/._ ]*$'
function Unsafe.check_safe_resource_name(name)
if type(name) ~= "string" then
error("Unsafe resource name: "..dump(name).." (not string)")
end
if string.match(name, '^/.*$') then
error("Unsafe resource name: "..dump(name).." (absolute path)")
end
if not string.match(name, allowed_name_pattern) then
error("Unsafe resource name: "..dump(name).." (unneeded chars)")
end
if string.match(name, '[.][.]') then
error("Unsafe resource name: "..dump(name).." (contains ..)")
end
--log:verbose("Safe resource name: "..name)
return name
end
-- Basic tests
assert(pcall(function()
Unsafe.check_safe_resource_name("/etc/passwd")
end) == false)
assert(pcall(function()
Unsafe.check_safe_resource_name(" /etc/passwd")
end) == false)
assert(pcall(function()
Unsafe.check_safe_resource_name("\t /etc/passwd")
end) == false)
assert(pcall(function()
Unsafe.check_safe_resource_name("Safeodels/Box.mdl")
end) == true)
assert(pcall(function()
Unsafe.check_safe_resource_name("Fonts/Anonymous Pro.ttf")
end) == true)
assert(pcall(function()
Unsafe.check_safe_resource_name("test1/pink_texture.png")
end) == true)
assert(pcall(function()
Unsafe.check_safe_resource_name(" Box.mdl ")
end) == false)
assert(pcall(function()
Unsafe.check_safe_resource_name("../../foo")
end) == false)
assert(pcall(function()
Unsafe.check_safe_resource_name("abc$de")
end) == false)
local hack_resaved_files = {} -- name -> temporary target file
-- Create temporary file with wanted file name to make Urho3D load it correctly
function Unsafe.resave_file(resource_name)
Unsafe.check_safe_resource_name(resource_name)
local path2 = hack_resaved_files[resource_name]
if path2 == nil then
local path = __buildat_get_file_path(resource_name)
if path == nil then
-- Not found in data received by server.
-- Could be missing, or could be a local file.
return nil
end
path2 = __buildat_get_path("tmp").."/"..resource_name
dir2 = string.match(path2, '^(.*)/.+$')
if dir2 then
if not __buildat_mkdir(dir2) then
error("Failed to create directory: \""..dir2.."\"")
end
end
log:info("Temporary path: "..path2)
local src = io.open(path, "rb")
local dst = io.open(path2, "wb")
while true do
local buf = src:read(100000)
if buf == nil then break end
dst:write(buf)
end
src:close()
dst:close()
hack_resaved_files[resource_name] = path2
end
return path2
end
-- Callback from core
function __buildat_file_updated_in_cache(name, hash, cached_path)
log:debug("__buildat_file_updated_in_cache(): name="..dump(name)..
", cached_path="..dump(cached_path))
if hack_resaved_files[name] then
log:verbose("__buildat_file_updated_in_cache(): Re-saving: "..dump(name))
hack_resaved_files[name] = nil -- Force re-copy
Unsafe.resave_file(name)
end
end
2014-09-30 12:37:23 +03:00
--]]
--
-- Safe interface
--
local function wc(name, def)
Safe[name] = magic_sandbox.wrap_class(name, def)
end
local function wrap_instance(name, instance)
local class = Safe[name]
local class_meta = getmetatable(class)
if not class_meta then error(dump(name).." is not a whitelisted class") end
return class_meta.wrap(instance)
end
-- (return_types, param_types, f) or (param_types, f)
local function wrap_function(return_types, param_types, f)
if type(param_types) == 'function' and f == nil then
f = param_types
param_types = return_types
return_types = {"__safe"}
end
return function(...)
local arg = {...}
local checked_arg = {}
for i = 1, #param_types do
checked_arg[i] = magic_sandbox.safe_to_unsafe(arg[i], param_types[i])
end
local wrapped_ret = {}
local ret = {f(unpack(checked_arg, 1, table.maxn(checked_arg)))}
for i = 1, #return_types do
wrapped_ret[i] = magic_sandbox.unsafe_to_safe(ret[i], return_types[i])
end
return unpack(wrapped_ret, 1, #return_types)
end
end
local function self_function(function_name, return_types, param_types)
return function(...)
if #param_types < 1 then
error("At least one argument required (self)")
end
local arg = {...}
local checked_arg = {}
for i = 1, #param_types do
checked_arg[i] = magic_sandbox.safe_to_unsafe(arg[i], param_types[i])
end
local wrapped_ret = {}
local self = checked_arg[1]
local f = self[function_name]
if type(f) ~= 'function' then
error(dump(function_name).." not found in instance")
end
local ret = {f(unpack(checked_arg, 1, table.maxn(checked_arg)))}
for i = 1, #return_types do
wrapped_ret[i] = magic_sandbox.unsafe_to_safe(ret[i], return_types[i])
end
return unpack(wrapped_ret, 1, #return_types)
end
end
local function simple_property(valid_types)
return {
get = function(current_value)
return magic_sandbox.unsafe_to_safe(current_value, valid_types)
end,
set = function(new_value)
return magic_sandbox.safe_to_unsafe(new_value, valid_types)
end,
}
end
for _, name in ipairs(safe_globals) do
local v = _G[name]
if type(v) ~= 'number' and type(v) ~= 'string' then
error("Invalid safe global "..dump(name).." type: "..dump(type(v)))
end
Safe[name] = v
end
safe_classes.define(Safe, {
wc = wc,
wrap_instance = wrap_instance,
wrap_function = wrap_function,
self_function = self_function,
simple_property = simple_property,
check_safe_resource_name = Unsafe.check_safe_resource_name,
2014-09-30 12:37:23 +03:00
--resave_file = Unsafe.resave_file,
})
setmetatable(Safe, {
__index = function(t, k)
local v = rawget(t, k)
if v ~= nil then return v end
error("extension/urho3d: Class "..dump(k).." is not whitelisted")
end,
})
-- SubscribeToEvent
local sandbox_callback_to_global_function_name = {}
local next_sandbox_global_function_i = 1
function Safe.SubscribeToEvent(x, y, z)
local object = x
local sub_event_type = y
local callback = z
if z == nil then
object = nil
sub_event_type = x
callback = y
end
if object then
if not getmetatable(object) or not getmetatable(object).unsafe then
error("SubscribeToEvent(): Object must be sandboxed")
end
end
if not safe_events[sub_event_type] then
error("Event type is not whitelisted: "..dump(sub_event_type))
end
if type(callback) == 'string' then
-- Allow supplying callback function name like Urho3D does by default
local caller_environment = getfenv(2)
callback = caller_environment[callback]
if type(callback) ~= 'function' then
error("SubscribeToEvent(): '"..callback..
"' is not a global function in current sandbox environment")
end
else
-- Allow directly supplying callback function
end
local global_function_i = next_sandbox_global_function_i
next_sandbox_global_function_i = next_sandbox_global_function_i + 1
local global_callback_name = "__buildat_sandbox_callback_"..global_function_i
sandbox_callback_to_global_function_name[callback] = global_callback_name
_G[global_callback_name] = function(event_type_thing, unsafe_event_data)
local f = function()
-- How the hell does one get a string out of event_type_thing?
-- It is not a Variant, and none of the Lua examples try to do anything
-- with it.
-- Let's just assume it's the correct one...
local got_event_type = sub_event_type
-- Filter event_data (Urho3D::VariantMap)
local safe_fields = safe_events[got_event_type]
if not safe_fields then
log:warning("Received unsafe event: "..dump(got_event_type))
end
local safe_event_data = Safe.VariantMap()
for field_name, field_def in pairs(safe_fields) do
local variant_type = field_def.variant
local safe_type = field_def.safe
local safe_value = nil
if variant_type == "Ptr" then
local unsafe_value = unsafe_event_data:GetPtr(
safe_type, field_name)
safe_value = wrap_instance(safe_type, unsafe_value)
else
local unsafe_value = unsafe_event_data["Get"..variant_type](
unsafe_event_data, field_name)
safe_value = magic_sandbox.unsafe_to_safe(unsafe_value, safe_type)
end
safe_event_data["Set"..variant_type](
safe_event_data, field_name, safe_value)
end
-- Call callback
if object then
callback(object, got_event_type, safe_event_data)
else
callback(got_event_type, safe_event_data)
end
end
__buildat_run_function_in_sandbox(f)
end
if object then
local unsafe_object = getmetatable(object).unsafe
SubscribeToEvent(unsafe_object, sub_event_type, global_callback_name)
else
SubscribeToEvent(sub_event_type, global_callback_name)
end
return global_callback_name
end
function Safe.UnsubscribeFromEvent(sub_event_type, cb_name)
UnsubscribeFromEvent(sub_event_type, cb_name)
-- TODO: Delete the generated global callback
end
-- Network-synchronized (replicated) scene
local sync_node_added_subs = {}
-- Callback will be called for each node added to the scene, once they have a
-- name. Callback is called immediately for all existing nodes.
function Safe.sub_sync_node_added(opts, cb)
-- Add to subscriber table
table.insert(sync_node_added_subs, cb)
-- Handle existing nodes
local function handle_node(node)
local name = node:GetName()
--log:debug("sub_sync_node_added(): node "..node:GetID()..", name="..name)
cb(node)
for i = 0, node:GetNumChildren()-1 do
handle_node(node:GetChild(i))
end
end
-- This hack gives us the replicated scene
local viewport = Safe.renderer:GetViewport(0)
local scene = viewport:GetScene()
handle_node(scene)
end
local nodes_waiting_for_name = {}
Safe.SubscribeToEvent("NodeAdded", function(event_type, event_data)
local node = event_data:GetPtr("Node", "Node")
--log:info("NodeAdded: "..node:GetName())
if node:GetName() == "" then
nodes_waiting_for_name[node:GetID()] = true
else
for _, v in ipairs(sync_node_added_subs) do
v(node)
end
end
end)
Safe.SubscribeToEvent("NodeNameChanged", function(event_type, event_data)
local node = event_data:GetPtr("Node", "Node")
--log:info("NodeNameChanged: "..node:GetName())
if nodes_waiting_for_name[node:GetID()] then
nodes_waiting_for_name[node:GetID()] = nil
for _, v in ipairs(sync_node_added_subs) do
v(node)
end
end
end)
--
-- Unsafe interface
--
-- Just wrap everything to the global environment as we don't have a full list
-- of Urho3D's API available.
setmetatable(Unsafe, {
__index = function(t, k)
local v = rawget(t, k)
if v ~= nil then return v end
return _G[k]
end,
})
-- Unsafe SubscribeToEvent with function support
local unsafe_callback_to_global_function_name = {}
local next_unsafe_global_function_i = 1
function Unsafe.SubscribeToEvent(x, y, z)
local object = x
local event_name = y
local callback = z
if callback == nil then
object = nil
event_name = x
callback = y
end
if type(callback) == 'string' then
-- Allow supplying callback function name like Urho3D does by default
local caller_environment = getfenv(2)
callback = caller_environment[callback]
if type(callback) ~= 'function' then
error("SubscribeToEvent(): '"..callback..
"' is not a global function in current unsafe environment")
end
else
-- Allow directly supplying callback function
end
local global_function_i = next_unsafe_global_function_i
next_unsafe_global_function_i = next_unsafe_global_function_i + 1
local global_callback_name = "__buildat_unsafe_callback_"..global_function_i
unsafe_callback_to_global_function_name[callback] = global_callback_name
_G[global_callback_name] = function(event_type, event_data)
local f = function()
if object then
callback(object, event_type, event_data)
else
callback(event_type, event_data)
end
end
local ok, err = __buildat_pcall(f)
if not ok then
__buildat_fatal_error("Error calling callback: "..err)
end
end
if object then
SubscribeToEvent(object, event_name, global_callback_name)
else
SubscribeToEvent(event_name, global_callback_name)
end
return global_callback_name
end
--
-- Create the final interface
--
local M = {}
M.safe = Safe
M.unsafe = Unsafe
return M
-- vim: set noet ts=4 sw=4: