prosody: Fix getfenv replacement for Lua 5.2
[prosody.git] / prosody
1 #!/usr/bin/env lua
2 -- Prosody IM
3 -- Copyright (C) 2008-2010 Matthew Wild
4 -- Copyright (C) 2008-2010 Waqas Hussain
5 -- 
6 -- This project is MIT/X11 licensed. Please see the
7 -- COPYING file in the source package for more information.
8 --
9
10 -- prosody - main executable for Prosody XMPP server
11
12 -- Will be modified by configure script if run --
13
14 CFG_SOURCEDIR=os.getenv("PROSODY_SRCDIR");
15 CFG_CONFIGDIR=os.getenv("PROSODY_CFGDIR");
16 CFG_PLUGINDIR=os.getenv("PROSODY_PLUGINDIR");
17 CFG_DATADIR=os.getenv("PROSODY_DATADIR");
18
19 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20
21 local function is_relative(path)
22         local path_sep = package.config:sub(1,1);
23         return ((path_sep == "/" and path:sub(1,1) ~= "/")
24         or (path_sep == "\\" and (path:sub(1,1) ~= "/" and path:sub(2,3) ~= ":\\")))
25 end
26
27 -- Tell Lua where to find our libraries
28 if CFG_SOURCEDIR then
29         local function filter_relative_paths(path)
30                 if is_relative(path) then return ""; end
31         end
32         local function sanitise_paths(paths)
33                 return (paths:gsub("[^;]+;?", filter_relative_paths):gsub(";;+", ";"));
34         end
35         package.path = sanitise_paths(CFG_SOURCEDIR.."/?.lua;"..package.path);
36         package.cpath = sanitise_paths(CFG_SOURCEDIR.."/?.so;"..package.cpath);
37 end
38
39 -- Substitute ~ with path to home directory in data path
40 if CFG_DATADIR then
41         if os.getenv("HOME") then
42                 CFG_DATADIR = CFG_DATADIR:gsub("^~", os.getenv("HOME"));
43         end
44 end
45
46 -- Global 'prosody' object
47 local prosody = { events = require "util.events".new(); };
48 _G.prosody = prosody;
49
50 -- Check dependencies
51 local dependencies = require "util.dependencies";
52
53 -- Load the config-parsing module
54 config = require "core.configmanager"
55
56 -- -- -- --
57 -- Define the functions we call during startup, the 
58 -- actual startup happens right at the end, where these
59 -- functions get called
60
61 function read_config()
62         local filenames = {};
63         
64         local filename;
65         if arg[1] == "--config" and arg[2] then
66                 table.insert(filenames, arg[2]);
67                 if CFG_CONFIGDIR then
68                         table.insert(filenames, CFG_CONFIGDIR.."/"..arg[2]);
69                 end
70         elseif os.getenv("PROSODY_CONFIG") then -- Passed by prosodyctl
71                         table.insert(filenames, os.getenv("PROSODY_CONFIG"));
72         else
73                 for _, format in ipairs(config.parsers()) do
74                         table.insert(filenames, (CFG_CONFIGDIR or ".").."/prosody.cfg."..format);
75                 end
76         end
77         for _,_filename in ipairs(filenames) do
78                 filename = _filename;
79                 local file = io.open(filename);
80                 if file then
81                         file:close();
82                         CFG_CONFIGDIR = filename:match("^(.*)[\\/][^\\/]*$");
83                         break;
84                 end
85         end
86         prosody.config_file = filename
87         local ok, level, err = config.load(filename);
88         if not ok then
89                 print("\n");
90                 print("**************************");
91                 if level == "parser" then
92                         print("A problem occured while reading the config file "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua"..":");
93                         print("");
94                         local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)");
95                         if err:match("chunk has too many syntax levels$") then
96                                 print("An Include statement in a config file is including an already-included");
97                                 print("file and causing an infinite loop. An Include statement in a config file is...");
98                         else
99                                 print("Error"..(err_line and (" on line "..err_line) or "")..": "..(err_message or tostring(err)));
100                         end
101                         print("");
102                 elseif level == "file" then
103                         print("Prosody was unable to find the configuration file.");
104                         print("We looked for: "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
105                         print("A sample config file is included in the Prosody download called prosody.cfg.lua.dist");
106                         print("Copy or rename it to prosody.cfg.lua and edit as necessary.");
107                 end
108                 print("More help on configuring Prosody can be found at http://prosody.im/doc/configure");
109                 print("Good luck!");
110                 print("**************************");
111                 print("");
112                 os.exit(1);
113         end
114 end
115
116 function check_dependencies()
117         if not dependencies.check_dependencies() then
118                 os.exit(1);
119         end
120 end
121
122 function load_libraries()
123         -- Load socket framework
124         server = require "net.server"
125 end     
126
127 function init_logging()
128         -- Initialize logging
129         require "core.loggingmanager"
130 end
131
132 function log_dependency_warnings()
133         dependencies.log_warnings();
134 end
135
136 function sanity_check()
137         for host, host_config in pairs(config.getconfig()) do
138                 if host ~= "*"
139                 and host_config.enabled ~= false
140                 and not host_config.component_module then
141                         return;
142                 end
143         end
144         log("error", "No enabled VirtualHost entries found in the config file.");
145         log("error", "At least one active host is required for Prosody to function. Exiting...");
146         os.exit(1);
147 end
148
149 function sandbox_require()
150         -- Replace require() with one that doesn't pollute _G, required
151         -- for neat sandboxing of modules
152         local _realG = _G;
153         local _real_require = require;
154         if not getfenv then
155                 -- FIXME: This is a hack to replace getfenv() in Lua 5.2
156                 function getfenv(f)
157                         local name, env = debug.getupvalue(debug.getinfo(f or 1).func, 1);
158                         if name == "_ENV" then
159                                 return env;
160                         end
161                 end
162         end
163         function require(...)
164                 local curr_env = getfenv(2);
165                 local curr_env_mt = getmetatable(curr_env);
166                 local _realG_mt = getmetatable(_realG);
167                 if curr_env_mt and curr_env_mt.__index and not curr_env_mt.__newindex and _realG_mt then
168                         local old_newindex, old_index;
169                         old_newindex, _realG_mt.__newindex = _realG_mt.__newindex, curr_env;
170                         old_index, _realG_mt.__index = _realG_mt.__index, function (_G, k)
171                                 return rawget(curr_env, k);
172                         end;
173                         local ret = _real_require(...);
174                         _realG_mt.__newindex = old_newindex;
175                         _realG_mt.__index = old_index;
176                         return ret;
177                 end
178                 return _real_require(...);
179         end
180 end
181
182 function set_function_metatable()
183         local mt = {};
184         function mt.__index(f, upvalue)
185                 local i, name, value = 0;
186                 repeat
187                         i = i + 1;
188                         name, value = debug.getupvalue(f, i);
189                 until name == upvalue or name == nil;
190                 return value;
191         end
192         function mt.__newindex(f, upvalue, value)
193                 local i, name = 0;
194                 repeat
195                         i = i + 1;
196                         name = debug.getupvalue(f, i);
197                 until name == upvalue or name == nil;
198                 if name then
199                         debug.setupvalue(f, i, value);
200                 end
201         end
202         function mt.__tostring(f)
203                 local info = debug.getinfo(f);
204                 return ("function(%s:%d)"):format(info.short_src:match("[^\\/]*$"), info.linedefined);
205         end
206         debug.setmetatable(function() end, mt);
207 end
208
209 function init_global_state()
210         -- COMPAT: These globals are deprecated
211         bare_sessions = {};
212         full_sessions = {};
213         hosts = {};
214
215         prosody.bare_sessions = bare_sessions;
216         prosody.full_sessions = full_sessions;
217         prosody.hosts = hosts;
218         
219         local data_path = config.get("*", "data_path") or CFG_DATADIR or "data";
220         local custom_plugin_paths = config.get("*", "plugin_paths");
221         if custom_plugin_paths then
222                 local path_sep = package.config:sub(3,3);
223                 -- path1;path2;path3;defaultpath...
224                 CFG_PLUGINDIR = table.concat(custom_plugin_paths, path_sep)..path_sep..(CFG_PLUGINDIR or "plugins");
225         end
226         prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR or ".", 
227                           plugins = CFG_PLUGINDIR or "plugins", data = data_path };
228
229         prosody.arg = _G.arg;
230
231         prosody.platform = "unknown";
232         if os.getenv("WINDIR") then
233                 prosody.platform = "windows";
234         elseif package.config:sub(1,1) == "/" then
235                 prosody.platform = "posix";
236         end
237         
238         prosody.installed = nil;
239         if CFG_SOURCEDIR and (prosody.platform == "windows" or CFG_SOURCEDIR:match("^/")) then
240                 prosody.installed = true;
241         end
242         
243         if prosody.installed then
244                 -- Change working directory to data path.
245                 require "lfs".chdir(data_path);
246         end
247
248         -- Function to reload the config file
249         function prosody.reload_config()
250                 log("info", "Reloading configuration file");
251                 prosody.events.fire_event("reloading-config");
252                 local ok, level, err = config.load(prosody.config_file);
253                 if not ok then
254                         if level == "parser" then
255                                 log("error", "There was an error parsing the configuration file: %s", tostring(err));
256                         elseif level == "file" then
257                                 log("error", "Couldn't read the config file when trying to reload: %s", tostring(err));
258                         end
259                 end
260                 return ok, (err and tostring(level)..": "..tostring(err)) or nil;
261         end
262
263         -- Function to reopen logfiles
264         function prosody.reopen_logfiles()
265                 log("info", "Re-opening log files");
266                 prosody.events.fire_event("reopen-log-files");
267         end
268
269         -- Function to initiate prosody shutdown
270         function prosody.shutdown(reason)
271                 log("info", "Shutting down: %s", reason or "unknown reason");
272                 prosody.shutdown_reason = reason;
273                 prosody.events.fire_event("server-stopping", {reason = reason});
274                 server.setquitting(true);
275         end
276 end
277
278 function read_version()
279         -- Try to determine version
280         local version_file = io.open((CFG_SOURCEDIR or ".").."/prosody.version");
281         if version_file then
282                 prosody.version = version_file:read("*a"):gsub("%s*$", "");
283                 version_file:close();
284                 if #prosody.version == 12 and prosody.version:match("^[a-f0-9]+$") then
285                         prosody.version = "hg:"..prosody.version;
286                 end
287         else
288                 prosody.version = "unknown";
289         end
290 end
291
292 function load_secondary_libraries()
293         --- Load and initialise core modules
294         require "util.import"
295         require "util.xmppstream"
296         require "core.stanza_router"
297         require "core.hostmanager"
298         require "core.portmanager"
299         require "core.modulemanager"
300         require "core.usermanager"
301         require "core.rostermanager"
302         require "core.sessionmanager"
303         package.loaded['core.componentmanager'] = setmetatable({},{__index=function()
304                 log("warn", "componentmanager is deprecated: %s", debug.traceback():match("\n[^\n]*\n[ \t]*([^\n]*)"));
305                 return function() end
306         end});
307
308         require "net.http"
309         
310         require "util.array"
311         require "util.datetime"
312         require "util.iterators"
313         require "util.timer"
314         require "util.helpers"
315         
316         pcall(require, "util.signal") -- Not on Windows
317         
318         -- Commented to protect us from 
319         -- the second kind of people
320         --[[ 
321         pcall(require, "remdebug.engine");
322         if remdebug then remdebug.engine.start() end
323         ]]
324
325         require "util.stanza"
326         require "util.jid"
327 end
328
329 function init_data_store()
330         require "core.storagemanager";
331 end
332
333 function prepare_to_start()
334         log("info", "Prosody is using the %s backend for connection handling", server.get_backend());
335         -- Signal to modules that we are ready to start
336         prosody.events.fire_event("server-starting");
337         prosody.start_time = os.time();
338 end     
339
340 function init_global_protection()
341         -- Catch global accesses
342         local locked_globals_mt = {
343                 __index = function (t, k) log("warn", "%s", debug.traceback("Attempt to read a non-existent global '"..tostring(k).."'", 2)); end;
344                 __newindex = function (t, k, v) error("Attempt to set a global: "..tostring(k).." = "..tostring(v), 2); end;
345         };
346                 
347         function prosody.unlock_globals()
348                 setmetatable(_G, nil);
349         end
350         
351         function prosody.lock_globals()
352                 setmetatable(_G, locked_globals_mt);
353         end
354
355         -- And lock now...
356         prosody.lock_globals();
357 end
358
359 function loop()
360         -- Error handler for errors that make it this far
361         local function catch_uncaught_error(err)
362                 if type(err) == "string" and err:match("interrupted!$") then
363                         return "quitting";
364                 end
365                 
366                 log("error", "Top-level error, please report:\n%s", tostring(err));
367                 local traceback = debug.traceback("", 2);
368                 if traceback then
369                         log("error", "%s", traceback);
370                 end
371                 
372                 prosody.events.fire_event("very-bad-error", {error = err, traceback = traceback});
373         end
374         
375         while select(2, xpcall(server.loop, catch_uncaught_error)) ~= "quitting" do
376                 socket.sleep(0.2);
377         end
378 end
379
380 function cleanup()
381         log("info", "Shutdown status: Cleaning up");
382         prosody.events.fire_event("server-cleanup");
383 end
384
385 -- Are you ready? :)
386 -- These actions are in a strict order, as many depend on
387 -- previous steps to have already been performed
388 read_config();
389 init_logging();
390 sanity_check();
391 sandbox_require();
392 set_function_metatable();
393 check_dependencies();
394 load_libraries();
395 init_global_state();
396 read_version();
397 log("info", "Hello and welcome to Prosody version %s", prosody.version);
398 log_dependency_warnings();
399 load_secondary_libraries();
400 init_data_store();
401 init_global_protection();
402 prepare_to_start();
403
404 prosody.events.fire_event("server-started");
405
406 loop();
407
408 log("info", "Shutting down...");
409 cleanup();
410 prosody.events.fire_event("server-stopped");
411 log("info", "Shutdown complete");
412