mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Eliminate direct setfenv usage
This commit is contained in:
parent
217e6d011c
commit
d49b9bc2ab
11 changed files with 52 additions and 54 deletions
|
@ -13,6 +13,7 @@ local format, math_max = string.format, math.max;
|
||||||
|
|
||||||
local fire_event = prosody and prosody.events.fire_event or function () end;
|
local fire_event = prosody and prosody.events.fire_event or function () end;
|
||||||
|
|
||||||
|
local envload = require"util.envload".envload;
|
||||||
local lfs = require "lfs";
|
local lfs = require "lfs";
|
||||||
local path_sep = package.config:sub(1,1);
|
local path_sep = package.config:sub(1,1);
|
||||||
|
|
||||||
|
@ -164,8 +165,8 @@ end
|
||||||
|
|
||||||
-- Built-in Lua parser
|
-- Built-in Lua parser
|
||||||
do
|
do
|
||||||
local loadstring, pcall, setmetatable = _G.loadstring, _G.pcall, _G.setmetatable;
|
local pcall, setmetatable = _G.pcall, _G.setmetatable;
|
||||||
local setfenv, rawget, tostring = _G.setfenv, _G.rawget, _G.tostring;
|
local rawget, tostring = _G.rawget, _G.tostring;
|
||||||
parsers.lua = {};
|
parsers.lua = {};
|
||||||
function parsers.lua.load(data, config_file, config)
|
function parsers.lua.load(data, config_file, config)
|
||||||
local env;
|
local env;
|
||||||
|
@ -263,14 +264,12 @@ do
|
||||||
return dofile(resolve_relative_path(config_file:gsub("[^"..path_sep.."]+$", ""), file));
|
return dofile(resolve_relative_path(config_file:gsub("[^"..path_sep.."]+$", ""), file));
|
||||||
end
|
end
|
||||||
|
|
||||||
local chunk, err = loadstring(data, "@"..config_file);
|
local chunk, err = envload(data, "@"..config_file, env);
|
||||||
|
|
||||||
if not chunk then
|
if not chunk then
|
||||||
return nil, err;
|
return nil, err;
|
||||||
end
|
end
|
||||||
|
|
||||||
setfenv(chunk, env);
|
|
||||||
|
|
||||||
local ok, err = pcall(chunk);
|
local ok, err = pcall(chunk);
|
||||||
|
|
||||||
if not ok then
|
if not ok then
|
||||||
|
|
|
@ -17,7 +17,7 @@ local timer = require "util.timer";
|
||||||
local multitable_new = require "util.multitable".new;
|
local multitable_new = require "util.multitable".new;
|
||||||
|
|
||||||
local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
|
local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
|
||||||
local error, setmetatable, setfenv, type = error, setmetatable, setfenv, type;
|
local error, setmetatable, type = error, setmetatable, type;
|
||||||
local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack;
|
local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack;
|
||||||
local tonumber, tostring = tonumber, tostring;
|
local tonumber, tostring = tonumber, tostring;
|
||||||
|
|
||||||
|
@ -99,12 +99,11 @@ end
|
||||||
api.hook_stanza = api.hook_tag; -- COMPAT w/pre-0.9
|
api.hook_stanza = api.hook_tag; -- COMPAT w/pre-0.9
|
||||||
|
|
||||||
function api:require(lib)
|
function api:require(lib)
|
||||||
local f, n = pluginloader.load_code(self.name, lib..".lib.lua");
|
local f, n = pluginloader.load_code(self.name, lib..".lib.lua", self.environment);
|
||||||
if not f then
|
if not f then
|
||||||
f, n = pluginloader.load_code(lib, lib..".lib.lua");
|
f, n = pluginloader.load_code(lib, lib..".lib.lua", self.environment);
|
||||||
end
|
end
|
||||||
if not f then error("Failed to load plugin library '"..lib.."', error: "..n); end -- FIXME better error message
|
if not f then error("Failed to load plugin library '"..lib.."', error: "..n); end -- FIXME better error message
|
||||||
setfenv(f, self.environment);
|
|
||||||
return f();
|
return f();
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ local hosts = hosts;
|
||||||
local prosody = prosody;
|
local prosody = prosody;
|
||||||
|
|
||||||
local pcall, xpcall = pcall, xpcall;
|
local pcall, xpcall = pcall, xpcall;
|
||||||
local setmetatable, rawget, setfenv = setmetatable, rawget, setfenv;
|
local setmetatable, rawget = setmetatable, rawget;
|
||||||
local pairs, type, tostring = pairs, type, tostring;
|
local pairs, type, tostring = pairs, type, tostring;
|
||||||
|
|
||||||
local debug_traceback = debug.traceback;
|
local debug_traceback = debug.traceback;
|
||||||
|
@ -152,22 +152,23 @@ local function do_load_module(host, module_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local mod, err = pluginloader.load_code(module_name);
|
|
||||||
if not mod then
|
|
||||||
log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
|
|
||||||
return nil, err;
|
|
||||||
end
|
|
||||||
|
|
||||||
local _log = logger.init(host..":"..module_name);
|
local _log = logger.init(host..":"..module_name);
|
||||||
local api_instance = setmetatable({ name = module_name, host = host, path = err,
|
local api_instance = setmetatable({ name = module_name, host = host,
|
||||||
_log = _log, log = function (self, ...) return _log(...); end, event_handlers = new_multitable() }
|
_log = _log, log = function (self, ...) return _log(...); end, event_handlers = new_multitable() }
|
||||||
, { __index = api });
|
, { __index = api });
|
||||||
|
|
||||||
local pluginenv = setmetatable({ module = api_instance }, { __index = _G });
|
local pluginenv = setmetatable({ module = api_instance }, { __index = _G });
|
||||||
api_instance.environment = pluginenv;
|
api_instance.environment = pluginenv;
|
||||||
|
|
||||||
setfenv(mod, pluginenv);
|
local mod, err = pluginloader.load_code(module_name, nil, pluginenv);
|
||||||
|
if not mod then
|
||||||
|
log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
|
||||||
|
return nil, err;
|
||||||
|
end
|
||||||
|
|
||||||
|
api_instance.path = err;
|
||||||
|
|
||||||
modulemap[host][module_name] = pluginenv;
|
modulemap[host][module_name] = pluginenv;
|
||||||
local ok, err = pcall(mod);
|
local ok, err = pcall(mod);
|
||||||
if ok then
|
if ok then
|
||||||
|
|
|
@ -13,7 +13,7 @@ local log = require "util.logger".init("rostermanager");
|
||||||
|
|
||||||
local setmetatable = setmetatable;
|
local setmetatable = setmetatable;
|
||||||
local format = string.format;
|
local format = string.format;
|
||||||
local loadfile, setfenv, pcall = loadfile, setfenv, pcall;
|
local pcall = pcall;
|
||||||
local pairs, ipairs = pairs, ipairs;
|
local pairs, ipairs = pairs, ipairs;
|
||||||
local tostring = tostring;
|
local tostring = tostring;
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,8 @@ local jid = require "util.jid";
|
||||||
local jid_bare, jid_split = jid.bare, jid.split;
|
local jid_bare, jid_split = jid.bare, jid.split;
|
||||||
local set, array = require "util.set", require "util.array";
|
local set, array = require "util.set", require "util.array";
|
||||||
local cert_verify_identity = require "util.x509".verify_identity;
|
local cert_verify_identity = require "util.x509".verify_identity;
|
||||||
|
local envload = require "util.envload".envload;
|
||||||
|
local envloadfile = require "util.envload".envloadfile;
|
||||||
|
|
||||||
local commands = module:shared("commands")
|
local commands = module:shared("commands")
|
||||||
local def_env = module:shared("env");
|
local def_env = module:shared("env");
|
||||||
|
@ -29,9 +31,9 @@ local default_env_mt = { __index = def_env };
|
||||||
local function redirect_output(_G, session)
|
local function redirect_output(_G, session)
|
||||||
local env = setmetatable({ print = session.print }, { __index = function (t, k) return rawget(_G, k); end });
|
local env = setmetatable({ print = session.print }, { __index = function (t, k) return rawget(_G, k); end });
|
||||||
env.dofile = function(name)
|
env.dofile = function(name)
|
||||||
local f, err = loadfile(name);
|
local f, err = envloadfile(name, env);
|
||||||
if not f then return f, err; end
|
if not f then return f, err; end
|
||||||
return setfenv(f, env)();
|
return f();
|
||||||
end;
|
end;
|
||||||
return env;
|
return env;
|
||||||
end
|
end
|
||||||
|
@ -98,9 +100,10 @@ function console_listener.onincoming(conn, data)
|
||||||
session.env._ = data;
|
session.env._ = data;
|
||||||
|
|
||||||
local chunkname = "=console";
|
local chunkname = "=console";
|
||||||
local chunk, err = loadstring("return "..data, chunkname);
|
local env = (useglobalenv and redirect_output(_G, session)) or session.env or nil
|
||||||
|
local chunk, err = envload("return "..data, chunkname, env);
|
||||||
if not chunk then
|
if not chunk then
|
||||||
chunk, err = loadstring(data, chunkname);
|
chunk, err = envload(data, chunkname, env);
|
||||||
if not chunk then
|
if not chunk then
|
||||||
err = err:gsub("^%[string .-%]:%d+: ", "");
|
err = err:gsub("^%[string .-%]:%d+: ", "");
|
||||||
err = err:gsub("^:%d+: ", "");
|
err = err:gsub("^:%d+: ", "");
|
||||||
|
@ -110,8 +113,6 @@ function console_listener.onincoming(conn, data)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
setfenv(chunk, (useglobalenv and redirect_output(_G, session)) or session.env or nil);
|
|
||||||
|
|
||||||
local ranok, taskok, message = pcall(chunk);
|
local ranok, taskok, message = pcall(chunk);
|
||||||
|
|
||||||
if not (ranok or message or useglobalenv) and commands[data:lower()] then
|
if not (ranok or message or useglobalenv) and commands[data:lower()] then
|
||||||
|
@ -880,8 +881,7 @@ if option and option ~= "short" and option ~= "full" and option ~= "graphic" the
|
||||||
if type(option) == "string" then
|
if type(option) == "string" then
|
||||||
session.print(option)
|
session.print(option)
|
||||||
elseif type(option) == "function" then
|
elseif type(option) == "function" then
|
||||||
setfenv(option, redirect_output(_G, session));
|
module:log("warn", "Using functions as value for the console_banner option is no longer supported");
|
||||||
pcall(option, session);
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,12 +3,12 @@
|
||||||
-- This driver stores data as simple key-values
|
-- This driver stores data as simple key-values
|
||||||
|
|
||||||
local ser = require "util.serialization".serialize;
|
local ser = require "util.serialization".serialize;
|
||||||
|
local envload = require "util.envload".envload;
|
||||||
local deser = function(data)
|
local deser = function(data)
|
||||||
module:log("debug", "deser: %s", tostring(data));
|
module:log("debug", "deser: %s", tostring(data));
|
||||||
if not data then return nil; end
|
if not data then return nil; end
|
||||||
local f = loadstring("return "..data);
|
local f = envload("return "..data, nil, {});
|
||||||
if not f then return nil; end
|
if not f then return nil; end
|
||||||
setfenv(f, {});
|
|
||||||
local s, d = pcall(f);
|
local s, d = pcall(f);
|
||||||
if not s then return nil; end
|
if not s then return nil; end
|
||||||
return d;
|
return d;
|
||||||
|
|
|
@ -7,7 +7,6 @@ local char = string.char;
|
||||||
local coroutine = coroutine;
|
local coroutine = coroutine;
|
||||||
local lfs = require "lfs";
|
local lfs = require "lfs";
|
||||||
local loadfile = loadfile;
|
local loadfile = loadfile;
|
||||||
local setfenv = setfenv;
|
|
||||||
local pcall = pcall;
|
local pcall = pcall;
|
||||||
local mtools = require "migrator.mtools";
|
local mtools = require "migrator.mtools";
|
||||||
local next = next;
|
local next = next;
|
||||||
|
|
|
@ -30,16 +30,22 @@ for i = 1, #arg do
|
||||||
end
|
end
|
||||||
table.remove(arg, handled_opts);
|
table.remove(arg, handled_opts);
|
||||||
|
|
||||||
|
if CFG_SOURCEDIR then
|
||||||
|
package.path = CFG_SOURCEDIR.."/?.lua;"..package.path;
|
||||||
|
package.cpath = CFG_SOURCEDIR.."/?.so;"..package.cpath;
|
||||||
|
else
|
||||||
|
package.path = "../../?.lua;"..package.path
|
||||||
|
package.cpath = "../../?.so;"..package.cpath
|
||||||
|
end
|
||||||
|
|
||||||
|
local envloadfile = require "util.envload".envloadfile;
|
||||||
|
|
||||||
-- Load config file
|
-- Load config file
|
||||||
local function loadfilein(file, env)
|
local function loadfilein(file, env)
|
||||||
if loadin then
|
if loadin then
|
||||||
return loadin(env, io.open(file):read("*a"));
|
return loadin(env, io.open(file):read("*a"));
|
||||||
else
|
else
|
||||||
local chunk, err = loadfile(file);
|
return envloadfile(file, env);
|
||||||
if chunk then
|
|
||||||
setfenv(chunk, env);
|
|
||||||
end
|
|
||||||
return chunk, err;
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -59,14 +65,6 @@ end
|
||||||
|
|
||||||
config_chunk();
|
config_chunk();
|
||||||
|
|
||||||
if CFG_SOURCEDIR then
|
|
||||||
package.path = CFG_SOURCEDIR.."/?.lua;"..package.path;
|
|
||||||
package.cpath = CFG_SOURCEDIR.."/?.so;"..package.cpath;
|
|
||||||
elseif not package.loaded["util.json"] then
|
|
||||||
package.path = "../../?.lua;"..package.path
|
|
||||||
package.cpath = "../../?.so;"..package.cpath
|
|
||||||
end
|
|
||||||
|
|
||||||
local have_err;
|
local have_err;
|
||||||
if #arg > 0 and #arg ~= 2 then
|
if #arg > 0 and #arg ~= 2 then
|
||||||
have_err = true;
|
have_err = true;
|
||||||
|
|
|
@ -11,7 +11,7 @@ local format = string.format;
|
||||||
local setmetatable, type = setmetatable, type;
|
local setmetatable, type = setmetatable, type;
|
||||||
local pairs, ipairs = pairs, ipairs;
|
local pairs, ipairs = pairs, ipairs;
|
||||||
local char = string.char;
|
local char = string.char;
|
||||||
local loadfile, setfenv, pcall = loadfile, setfenv, pcall;
|
local pcall = pcall;
|
||||||
local log = require "util.logger".init("datamanager");
|
local log = require "util.logger".init("datamanager");
|
||||||
local io_open = io.open;
|
local io_open = io.open;
|
||||||
local os_remove = os.remove;
|
local os_remove = os.remove;
|
||||||
|
@ -20,6 +20,7 @@ local error = error;
|
||||||
local next = next;
|
local next = next;
|
||||||
local t_insert = table.insert;
|
local t_insert = table.insert;
|
||||||
local append = require "util.serialization".append;
|
local append = require "util.serialization".append;
|
||||||
|
local envloadfile = require"util.envload".envloadfile;
|
||||||
local path_separator = assert ( package.config:match ( "^([^\n]+)" ) , "package.config not in standard form" ) -- Extract directory seperator from package.config (an undocumented string that comes with lua)
|
local path_separator = assert ( package.config:match ( "^([^\n]+)" ) , "package.config not in standard form" ) -- Extract directory seperator from package.config (an undocumented string that comes with lua)
|
||||||
local lfs = require "lfs";
|
local lfs = require "lfs";
|
||||||
local prosody = prosody;
|
local prosody = prosody;
|
||||||
|
@ -111,7 +112,7 @@ function getpath(username, host, datastore, ext, create)
|
||||||
end
|
end
|
||||||
|
|
||||||
function load(username, host, datastore)
|
function load(username, host, datastore)
|
||||||
local data, ret = loadfile(getpath(username, host, datastore));
|
local data, ret = envloadfile(getpath(username, host, datastore), {});
|
||||||
if not data then
|
if not data then
|
||||||
local mode = lfs.attributes(getpath(username, host, datastore), "mode");
|
local mode = lfs.attributes(getpath(username, host, datastore), "mode");
|
||||||
if not mode then
|
if not mode then
|
||||||
|
@ -123,7 +124,7 @@ function load(username, host, datastore)
|
||||||
return nil, "Error reading storage";
|
return nil, "Error reading storage";
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
setfenv(data, {});
|
|
||||||
local success, ret = pcall(data);
|
local success, ret = pcall(data);
|
||||||
if not success then
|
if not success then
|
||||||
log("error", "Unable to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
|
log("error", "Unable to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
|
||||||
|
@ -203,7 +204,8 @@ function list_store(username, host, datastore, data)
|
||||||
end
|
end
|
||||||
|
|
||||||
function list_load(username, host, datastore)
|
function list_load(username, host, datastore)
|
||||||
local data, ret = loadfile(getpath(username, host, datastore, "list"));
|
local items = {};
|
||||||
|
local data, ret = envloadfile(getpath(username, host, datastore, "list"), {item = function(i) t_insert(items, i); end});
|
||||||
if not data then
|
if not data then
|
||||||
local mode = lfs.attributes(getpath(username, host, datastore, "list"), "mode");
|
local mode = lfs.attributes(getpath(username, host, datastore, "list"), "mode");
|
||||||
if not mode then
|
if not mode then
|
||||||
|
@ -215,8 +217,7 @@ function list_load(username, host, datastore)
|
||||||
return nil, "Error reading storage";
|
return nil, "Error reading storage";
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local items = {};
|
|
||||||
setfenv(data, {item = function(i) t_insert(items, i); end});
|
|
||||||
local success, ret = pcall(data);
|
local success, ret = pcall(data);
|
||||||
if not success then
|
if not success then
|
||||||
log("error", "Unable to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
|
log("error", "Unable to load "..datastore.." storage ('"..ret.."') for user: "..(username or "nil").."@"..(host or "nil"));
|
||||||
|
|
|
@ -16,6 +16,7 @@ end
|
||||||
|
|
||||||
local io_open, os_time = io.open, os.time;
|
local io_open, os_time = io.open, os.time;
|
||||||
local loadstring, pairs = loadstring, pairs;
|
local loadstring, pairs = loadstring, pairs;
|
||||||
|
local envload = require "util.envload".envload;
|
||||||
|
|
||||||
module "pluginloader"
|
module "pluginloader"
|
||||||
|
|
||||||
|
@ -48,11 +49,11 @@ function load_resource(plugin, resource)
|
||||||
return load_file(names);
|
return load_file(names);
|
||||||
end
|
end
|
||||||
|
|
||||||
function load_code(plugin, resource)
|
function load_code(plugin, resource, env)
|
||||||
local content, err = load_resource(plugin, resource);
|
local content, err = load_resource(plugin, resource);
|
||||||
if not content then return content, err; end
|
if not content then return content, err; end
|
||||||
local path = err;
|
local path = err;
|
||||||
local f, err = loadstring(content, "@"..path);
|
local f, err = envload(content, "@"..path, env);
|
||||||
if not f then return f, err; end
|
if not f then return f, err; end
|
||||||
return f, path;
|
return f, path;
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,11 +16,12 @@ local pairs = pairs;
|
||||||
local next = next;
|
local next = next;
|
||||||
|
|
||||||
local loadstring = loadstring;
|
local loadstring = loadstring;
|
||||||
local setfenv = setfenv;
|
|
||||||
local pcall = pcall;
|
local pcall = pcall;
|
||||||
|
|
||||||
local debug_traceback = debug.traceback;
|
local debug_traceback = debug.traceback;
|
||||||
local log = require "util.logger".init("serialization");
|
local log = require "util.logger".init("serialization");
|
||||||
|
local envload = require"util.envload".envload;
|
||||||
|
|
||||||
module "serialization"
|
module "serialization"
|
||||||
|
|
||||||
local indent = function(i)
|
local indent = function(i)
|
||||||
|
@ -84,9 +85,8 @@ end
|
||||||
function deserialize(str)
|
function deserialize(str)
|
||||||
if type(str) ~= "string" then return nil; end
|
if type(str) ~= "string" then return nil; end
|
||||||
str = "return "..str;
|
str = "return "..str;
|
||||||
local f, err = loadstring(str, "@data");
|
local f, err = envload(str, "@data", {});
|
||||||
if not f then return nil, err; end
|
if not f then return nil, err; end
|
||||||
setfenv(f, {});
|
|
||||||
local success, ret = pcall(f);
|
local success, ret = pcall(f);
|
||||||
if not success then return nil, ret; end
|
if not success then return nil, ret; end
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue