9c5e4a4a276c8b06c9d0a11ca91a89e35394c3a7
[prosody.git] / core / modulemanager.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9 local logger = require "util.logger";
10 local log = logger.init("modulemanager");
11 local config = require "core.configmanager";
12 local pluginloader = require "util.pluginloader";
13 local set = require "util.set";
14
15 local new_multitable = require "util.multitable".new;
16
17 local hosts = hosts;
18 local prosody = prosody;
19
20 local pcall, xpcall = pcall, xpcall;
21 local setmetatable, rawget = setmetatable, rawget;
22 local pairs, type, tostring = pairs, type, tostring;
23
24 local debug_traceback = debug.traceback;
25 local unpack, select = unpack, select;
26 pcall = function(f, ...)
27         local n = select("#", ...);
28         local params = {...};
29         return xpcall(function() return f(unpack(params, 1, n)) end, function(e) return tostring(e).."\n"..debug_traceback(); end);
30 end
31
32 local autoload_modules = {"presence", "message", "iq", "offline", "c2s", "s2s"};
33 local component_inheritable_modules = {"tls", "dialback", "iq", "s2s"};
34
35 -- We need this to let modules access the real global namespace
36 local _G = _G;
37
38 module "modulemanager"
39
40 local api = _G.require "core.moduleapi"; -- Module API container
41
42 -- [host] = { [module] = module_env }
43 local modulemap = { ["*"] = {} };
44
45 -- Load modules when a host is activated
46 function load_modules_for_host(host)
47         local component = config.get(host, "core", "component_module");
48         
49         local global_modules_enabled = config.get("*", "core", "modules_enabled");
50         local global_modules_disabled = config.get("*", "core", "modules_disabled");
51         local host_modules_enabled = config.get(host, "core", "modules_enabled");
52         local host_modules_disabled = config.get(host, "core", "modules_disabled");
53         
54         if host_modules_enabled == global_modules_enabled then host_modules_enabled = nil; end
55         if host_modules_disabled == global_modules_disabled then host_modules_disabled = nil; end
56         
57         local global_modules = set.new(autoload_modules) + set.new(global_modules_enabled) - set.new(global_modules_disabled);
58         if component then
59                 global_modules = set.intersection(set.new(component_inheritable_modules), global_modules);
60         end
61         local modules = (global_modules + set.new(host_modules_enabled)) - set.new(host_modules_disabled);
62         
63         -- COMPAT w/ pre 0.8
64         if modules:contains("console") then
65                 log("error", "The mod_console plugin has been renamed to mod_admin_telnet. Please update your config.");
66                 modules:remove("console");
67                 modules:add("admin_telnet");
68         end
69         
70         if component then
71                 load(host, component);
72         end
73         for module in modules do
74                 load(host, module);
75         end
76 end
77 prosody.events.add_handler("host-activated", load_modules_for_host);
78 prosody.events.add_handler("host-deactivated", function (host)
79         modulemap[host] = nil;
80 end);
81
82 --- Private helpers ---
83
84 local function do_unload_module(host, name)
85         local mod = get_module(host, name);
86         if not mod then return nil, "module-not-loaded"; end
87         
88         if module_has_method(mod, "unload") then
89                 local ok, err = call_module_method(mod, "unload");
90                 if (not ok) and err then
91                         log("warn", "Non-fatal error unloading module '%s' on '%s': %s", name, host, err);
92                 end
93         end
94         
95         for object, event, handler in mod.module.event_handlers:iter(nil, nil, nil) do
96                 object.remove_handler(event, handler);
97         end
98         
99         if mod.module.items then -- remove items
100                 local events = (host == "*" and prosody.events) or hosts[host].events;
101                 for key,t in pairs(mod.module.items) do
102                         for i = #t,1,-1 do
103                                 local value = t[i];
104                                 t[i] = nil;
105                                 events.fire_event("item-removed/"..key, {source = mod.module, item = value});
106                         end
107                 end
108         end
109         mod.module.loaded = false;
110         modulemap[host][name] = nil;
111         return true;
112 end
113
114 local function do_load_module(host, module_name)
115         if not (host and module_name) then
116                 return nil, "insufficient-parameters";
117         elseif not hosts[host] and host ~= "*"then
118                 return nil, "unknown-host";
119         end
120         
121         if not modulemap[host] then
122                 modulemap[host] = {};
123                 if host ~= "*" then
124                         hosts[host].modules = modulemap[host];
125                 end
126         end
127         
128         if modulemap[host][module_name] then
129                 log("warn", "%s is already loaded for %s, so not loading again", module_name, host);
130                 return nil, "module-already-loaded";
131         elseif modulemap["*"][module_name] then
132                 local mod = modulemap["*"][module_name];
133                 if module_has_method(mod, "add_host") then
134                         local _log = logger.init(host..":"..module_name);
135                         local host_module_api = setmetatable({
136                                 host = host, event_handlers = new_multitable(), items = {};
137                                 _log = _log, log = function (self, ...) return _log(...); end;
138                         },{
139                                 __index = modulemap["*"][module_name].module;
140                         });
141                         local host_module = setmetatable({ module = host_module_api }, { __index = mod });
142                         host_module_api.environment = host_module;
143                         modulemap[host][module_name] = host_module;
144                         local ok, result, module_err = call_module_method(mod, "add_host", host_module_api);
145                         if not ok or result == false then
146                                 modulemap[host][module_name] = nil;
147                                 return nil, ok and module_err or result;
148                         end
149                         return host_module;
150                 end
151                 return nil, "global-module-already-loaded";
152         end
153         
154
155
156         local _log = logger.init(host..":"..module_name);
157         local api_instance = setmetatable({ name = module_name, host = host,
158                 _log = _log, log = function (self, ...) return _log(...); end, event_handlers = new_multitable() }
159                 , { __index = api });
160
161         local pluginenv = setmetatable({ module = api_instance }, { __index = _G });
162         api_instance.environment = pluginenv;
163         
164         local mod, err = pluginloader.load_code(module_name, nil, pluginenv);
165         if not mod then
166                 log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
167                 return nil, err;
168         end
169
170         api_instance.path = err;
171
172         modulemap[host][module_name] = pluginenv;
173         local ok, err = pcall(mod);
174         if ok then
175                 -- Call module's "load"
176                 if module_has_method(pluginenv, "load") then
177                         ok, err = call_module_method(pluginenv, "load");
178                         if not ok then
179                                 log("warn", "Error loading module '%s' on '%s': %s", module_name, host, err or "nil");
180                         end
181                 end
182
183                 if api_instance.host == "*" then
184                         if not api_instance.global then -- COMPAT w/pre-0.9
185                                 if host ~= "*" then
186                                         log("warn", "mod_%s: Setting module.host = '*' deprecated, call module:set_global() instead", module_name);
187                                 end
188                                 api_instance:set_global();
189                         end
190                         modulemap[host][module_name] = nil;
191                         modulemap[api_instance.host][module_name] = pluginenv;
192                         if host ~= api_instance.host and module_has_method(pluginenv, "add_host") then
193                                 -- Now load the module again onto the host it was originally being loaded on
194                                 ok, err = do_load_module(host, module_name);
195                         end
196                 end
197         end
198         if not ok then
199                 modulemap[api_instance.host][module_name] = nil;
200                 log("error", "Error initializing module '%s' on '%s': %s", module_name, host, err or "nil");
201         end
202         return ok and pluginenv, err;
203 end
204
205 local function do_reload_module(host, name)
206         local mod = get_module(host, name);
207         if not mod then return nil, "module-not-loaded"; end
208
209         local _mod, err = pluginloader.load_code(name); -- checking for syntax errors
210         if not _mod then
211                 log("error", "Unable to load module '%s': %s", name or "nil", err or "nil");
212                 return nil, err;
213         end
214
215         local saved;
216         if module_has_method(mod, "save") then
217                 local ok, ret, err = call_module_method(mod, "save");
218                 if ok then
219                         saved = ret;
220                 else
221                         log("warn", "Error saving module '%s:%s' state: %s", host, name, ret);
222                         if not config.get(host, "core", "force_module_reload") then
223                                 log("warn", "Aborting reload due to error, set force_module_reload to ignore this");
224                                 return nil, "save-state-failed";
225                         else
226                                 log("warn", "Continuing with reload (using the force)");
227                         end
228                 end
229         end
230
231         do_unload_module(host, name);
232         local ok, err = do_load_module(host, name);
233         if ok then
234                 mod = get_module(host, name);
235                 if module_has_method(mod, "restore") then
236                         local ok, err = call_module_method(mod, "restore", saved or {})
237                         if (not ok) and err then
238                                 log("warn", "Error restoring module '%s' from '%s': %s", name, host, err);
239                         end
240                 end
241         end
242         return ok and mod, err;
243 end
244
245 --- Public API ---
246
247 -- Load a module and fire module-loaded event
248 function load(host, name)
249         local mod, err = do_load_module(host, name);
250         if mod then
251                 (hosts[mod.module.host] or prosody).events.fire_event("module-loaded", { module = name, host = mod.module.host });
252         end
253         return mod, err;
254 end
255
256 -- Unload a module and fire module-unloaded
257 function unload(host, name)
258         local ok, err = do_unload_module(host, name);
259         if ok then
260                 (hosts[host] or prosody).events.fire_event("module-unloaded", { module = name, host = host });
261         end
262         return ok, err;
263 end
264
265 function reload(host, name)
266         local mod, err = do_reload_module(host, name);
267         if mod then
268                 modulemap[host][name].module.reloading = true;
269                 (hosts[host] or prosody).events.fire_event("module-reloaded", { module = name, host = host });
270                 mod.module.reloading = nil;
271         elseif not is_loaded(host, name) then
272                 (hosts[host] or prosody).events.fire_event("module-unloaded", { module = name, host = host });
273         end
274         return mod, err;
275 end
276
277 function get_module(host, name)
278         return modulemap[host] and modulemap[host][name];
279 end
280
281 function get_modules(host)
282         return modulemap[host];
283 end
284
285 function is_loaded(host, name)
286         return modulemap[host] and modulemap[host][name] and true;
287 end
288
289 function module_has_method(module, method)
290         return type(rawget(module.module, method)) == "function";
291 end
292
293 function call_module_method(module, method, ...)
294         local f = rawget(module.module, method);
295         if type(f) == "function" then
296                 return pcall(f, ...);
297         else
298                 return false, "no-such-method";
299         end
300 end
301
302 return _M;