Merge 0.10->trunk
[prosody.git] / prosodyctl
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 -- prosodyctl - command-line controller 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 = {
48         hosts = {};
49         events = require "util.events".new();
50         platform = "posix";
51         lock_globals = function () end;
52         unlock_globals = function () end;
53         installed = CFG_SOURCEDIR ~= nil;
54         core_post_stanza = function () end; -- TODO: mod_router!
55 };
56 _G.prosody = prosody;
57
58 local dependencies = require "util.dependencies";
59 if not dependencies.check_dependencies() then
60         os.exit(1);
61 end
62
63 config = require "core.configmanager"
64
65 local ENV_CONFIG;
66 do
67         local filenames = {};
68         
69         local filename;
70         if arg[1] == "--config" and arg[2] then
71                 table.insert(filenames, arg[2]);
72                 if CFG_CONFIGDIR then
73                         table.insert(filenames, CFG_CONFIGDIR.."/"..arg[2]);
74                 end
75                 table.remove(arg, 1); table.remove(arg, 1);
76         else
77                 for _, format in ipairs(config.parsers()) do
78                         table.insert(filenames, (CFG_CONFIGDIR or ".").."/prosody.cfg."..format);
79                 end
80         end
81         for _,_filename in ipairs(filenames) do
82                 filename = _filename;
83                 local file = io.open(filename);
84                 if file then
85                         file:close();
86                         ENV_CONFIG = filename;
87                         CFG_CONFIGDIR = filename:match("^(.*)[\\/][^\\/]*$");
88                         break;
89                 end
90         end
91         local ok, level, err = config.load(filename);
92         if not ok then
93                 print("\n");
94                 print("**************************");
95                 if level == "parser" then
96                         print("A problem occured while reading the config file "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
97                         local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)");
98                         print("Error"..(err_line and (" on line "..err_line) or "")..": "..(err_message or tostring(err)));
99                         print("");
100                 elseif level == "file" then
101                         print("Prosody was unable to find the configuration file.");
102                         print("We looked for: "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
103                         print("A sample config file is included in the Prosody download called prosody.cfg.lua.dist");
104                         print("Copy or rename it to prosody.cfg.lua and edit as necessary.");
105                 end
106                 print("More help on configuring Prosody can be found at http://prosody.im/doc/configure");
107                 print("Good luck!");
108                 print("**************************");
109                 print("");
110                 os.exit(1);
111         end
112 end
113 local original_logging_config = config.get("*", "log");
114 config.set("*", "log", { { levels = { min="info" }, to = "console" } });
115
116 local data_path = config.get("*", "data_path") or CFG_DATADIR or "data";
117 local custom_plugin_paths = config.get("*", "plugin_paths");
118 if custom_plugin_paths then
119         local path_sep = package.config:sub(3,3);
120         -- path1;path2;path3;defaultpath...
121         CFG_PLUGINDIR = table.concat(custom_plugin_paths, path_sep)..path_sep..(CFG_PLUGINDIR or "plugins");
122 end
123 prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR, 
124                   plugins = CFG_PLUGINDIR or "plugins", data = data_path };
125
126 if prosody.installed then
127         -- Change working directory to data path.
128         require "lfs".chdir(data_path);
129 end
130
131 require "core.loggingmanager"
132
133 dependencies.log_warnings();
134
135 -- Switch away from root and into the prosody user --
136 local switched_user, current_uid;
137
138 local want_pposix_version = "0.3.6";
139 local ok, pposix = pcall(require, "util.pposix");
140
141 if ok and pposix then
142         if pposix._VERSION ~= want_pposix_version then print(string.format("Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version)); return; end
143         current_uid = pposix.getuid();
144         if current_uid == 0 then
145                 -- We haz root!
146                 local desired_user = config.get("*", "prosody_user") or "prosody";
147                 local desired_group = config.get("*", "prosody_group") or desired_user;
148                 local ok, err = pposix.setgid(desired_group);
149                 if ok then
150                         ok, err = pposix.initgroups(desired_user);
151                 end
152                 if ok then
153                         ok, err = pposix.setuid(desired_user);
154                         if ok then
155                                 -- Yay!
156                                 switched_user = true;
157                         end
158                 end
159                 if not switched_user then
160                         -- Boo!
161                         print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err));
162                 end
163         end
164         
165         -- Set our umask to protect data files
166         pposix.umask(config.get("*", "umask") or "027");
167         pposix.setenv("HOME", data_path);
168         pposix.setenv("PROSODY_CONFIG", ENV_CONFIG);
169 else
170         print("Error: Unable to load pposix module. Check that Prosody is installed correctly.")
171         print("For more help send the below error to us through http://prosody.im/discuss");
172         print(tostring(pposix))
173         os.exit(1);
174 end
175
176 local function test_writeable(filename)
177         local f, err = io.open(filename, "a");
178         if not f then
179                 return false, err;
180         end
181         f:close();
182         return true;
183 end
184
185 local unwriteable_files = {};
186 if type(original_logging_config) == "string" and original_logging_config:sub(1,1) ~= "*" then
187         local ok, err = test_writeable(original_logging_config);
188         if not ok then
189                 table.insert(unwriteable_files, err);
190         end
191 elseif type(original_logging_config) == "table" then
192         for _, rule in ipairs(original_logging_config) do
193                 if rule.filename then
194                         local ok, err = test_writeable(rule.filename);
195                         if not ok then
196                                 table.insert(unwriteable_files, err);
197                         end
198                 end
199         end
200 end
201
202 if #unwriteable_files > 0 then
203         print("One of more of the Prosody log files are not");
204         print("writeable, please correct the errors and try");
205         print("starting prosodyctl again.");
206         print("");
207         for _, err in ipairs(unwriteable_files) do
208                 print(err);
209         end
210         print("");
211         os.exit(1);
212 end
213
214
215 local error_messages = setmetatable({ 
216                 ["invalid-username"] = "The given username is invalid in a Jabber ID";
217                 ["invalid-hostname"] = "The given hostname is invalid";
218                 ["no-password"] = "No password was supplied";
219                 ["no-such-user"] = "The given user does not exist on the server";
220                 ["no-such-host"] = "The given hostname does not exist in the config";
221                 ["unable-to-save-data"] = "Unable to store, perhaps you don't have permission?";
222                 ["no-pidfile"] = "There is no 'pidfile' option in the configuration file, see http://prosody.im/doc/prosodyctl#pidfile for help";
223                 ["invalid-pidfile"] = "The 'pidfile' option in the configuration file is not a string, see http://prosody.im/doc/prosodyctl#pidfile for help";
224                 ["no-posix"] = "The mod_posix module is not enabled in the Prosody config file, see http://prosody.im/doc/prosodyctl for more info";
225                 ["no-such-method"] = "This module has no commands";
226                 ["not-running"] = "Prosody is not running";
227                 }, { __index = function (t,k) return "Error: "..(tostring(k):gsub("%-", " "):gsub("^.", string.upper)); end });
228
229 hosts = prosody.hosts;
230
231 local function make_host(hostname)
232         return {
233                 type = "local",
234                 events = prosody.events,
235                 modules = {},
236                 sessions = {},
237                 users = require "core.usermanager".new_null_provider(hostname)
238         };
239 end
240
241 for hostname, config in pairs(config.getconfig()) do
242         hosts[hostname] = make_host(hostname);
243 end
244         
245 local modulemanager = require "core.modulemanager"
246
247 local prosodyctl = require "util.prosodyctl"
248 local socket = require "socket"
249 -----------------------
250
251  -- FIXME: Duplicate code waiting for util.startup
252 function read_version()
253         -- Try to determine version
254         local version_file = io.open((CFG_SOURCEDIR or ".").."/prosody.version");
255         prosody.version = "unknown";
256         if version_file then
257                 prosody.version = version_file:read("*a"):gsub("%s*$", "");
258                 version_file:close();
259                 if #prosody.version == 12 and prosody.version:match("^[a-f0-9]+$") then
260                         prosody.version = "hg:"..prosody.version;
261                 end
262         else
263                 local hg = require"util.mercurial";
264                 local hgid = hg.check_id(CFG_SOURCEDIR or ".");
265                 if hgid then prosody.version = "hg:" .. hgid; end
266         end
267 end
268
269 local show_message, show_warning = prosodyctl.show_message, prosodyctl.show_warning;
270 local show_usage = prosodyctl.show_usage;
271 local getchar, getpass = prosodyctl.getchar, prosodyctl.getpass;
272 local show_yesno = prosodyctl.show_yesno;
273 local show_prompt = prosodyctl.show_prompt;
274 local read_password = prosodyctl.read_password;
275
276 local jid_split = require "util.jid".prepped_split;
277
278 local prosodyctl_timeout = (config.get("*", "prosodyctl_timeout") or 5) * 2;
279 -----------------------
280 local commands = {};
281 local command = arg[1];
282
283 function commands.adduser(arg)
284         if not arg[1] or arg[1] == "--help" then
285                 show_usage([[adduser JID]], [[Create the specified user account in Prosody]]);
286                 return 1;
287         end
288         local user, host = jid_split(arg[1]);
289         if not user and host then
290                 show_message [[Failed to understand JID, please supply the JID you want to create]]
291                 show_usage [[adduser user@host]]
292                 return 1;
293         end
294         
295         if not host then
296                 show_message [[Please specify a JID, including a host. e.g. alice@example.com]];
297                 return 1;
298         end
299         
300         if not hosts[host] then
301                 show_warning("The host '%s' is not listed in the configuration file (or is not enabled).", host)
302                 show_warning("The user will not be able to log in until this is changed.");
303                 hosts[host] = make_host(host);
304         end
305         
306         if prosodyctl.user_exists{ user = user, host = host } then
307                 show_message [[That user already exists]];
308                 return 1;
309         end
310         
311         local password = read_password();
312         if not password then return 1; end
313         
314         local ok, msg = prosodyctl.adduser { user = user, host = host, password = password };
315         
316         if ok then return 0; end
317         
318         show_message(msg)
319         return 1;
320 end
321
322 function commands.passwd(arg)
323         if not arg[1] or arg[1] == "--help" then
324                 show_usage([[passwd JID]], [[Set the password for the specified user account in Prosody]]);
325                 return 1;
326         end
327         local user, host = jid_split(arg[1]);
328         if not user and host then
329                 show_message [[Failed to understand JID, please supply the JID you want to set the password for]]
330                 show_usage [[passwd user@host]]
331                 return 1;
332         end
333         
334         if not host then
335                 show_message [[Please specify a JID, including a host. e.g. alice@example.com]];
336                 return 1;
337         end
338         
339         if not hosts[host] then
340                 show_warning("The host '%s' is not listed in the configuration file (or is not enabled).", host)
341                 show_warning("The user will not be able to log in until this is changed.");
342                 hosts[host] = make_host(host);
343         end
344         
345         if not prosodyctl.user_exists { user = user, host = host } then
346                 show_message [[That user does not exist, use prosodyctl adduser to create a new user]]
347                 return 1;
348         end
349         
350         local password = read_password();
351         if not password then return 1; end
352         
353         local ok, msg = prosodyctl.passwd { user = user, host = host, password = password };
354         
355         if ok then return 0; end
356         
357         show_message(error_messages[msg])
358         return 1;
359 end
360
361 function commands.deluser(arg)
362         if not arg[1] or arg[1] == "--help" then
363                 show_usage([[deluser JID]], [[Permanently remove the specified user account from Prosody]]);
364                 return 1;
365         end
366         local user, host = jid_split(arg[1]);
367         if not user and host then
368                 show_message [[Failed to understand JID, please supply the JID to the user account you want to delete]]
369                 show_usage [[deluser user@host]]
370                 return 1;
371         end
372         
373         if not host then
374                 show_message [[Please specify a JID, including a host. e.g. alice@example.com]];
375                 return 1;
376         end
377         
378         if not hosts[host] then
379                 show_warning("The host '%s' is not listed in the configuration file (or is not enabled).", host)
380                 hosts[host] = make_host(host);
381         end
382
383         if not prosodyctl.user_exists { user = user, host = host } then
384                 show_message [[That user does not exist on this server]]
385                 return 1;
386         end
387         
388         local ok, msg = prosodyctl.deluser { user = user, host = host };
389         
390         if ok then return 0; end
391         
392         show_message(error_messages[msg])
393         return 1;
394 end
395
396 function commands.start(arg)
397         if arg[1] == "--help" then
398                 show_usage([[start]], [[Start Prosody]]);
399                 return 1;
400         end
401         local ok, ret = prosodyctl.isrunning();
402         if not ok then
403                 show_message(error_messages[ret]);
404                 return 1;
405         end
406         
407         if ret then
408                 local ok, ret = prosodyctl.getpid();
409                 if not ok then
410                         show_message("Couldn't get running Prosody's PID");
411                         show_message(error_messages[ret]);
412                         return 1;
413                 end
414                 show_message("Prosody is already running with PID %s", ret or "(unknown)");
415                 return 1;
416         end
417         
418         local ok, ret = prosodyctl.start();
419         if ok then
420                 local daemonize = config.get("*", "daemonize");
421                 if daemonize == nil then
422                         daemonize = prosody.installed;
423                 end
424                 if daemonize then
425                         local i=1;
426                         while true do
427                                 local ok, running = prosodyctl.isrunning();
428                                 if ok and running then
429                                         break;
430                                 elseif i == 5 then
431                                         show_message("Still waiting...");
432                                 elseif i >= prosodyctl_timeout then
433                                         show_message("Prosody is still not running. Please give it some time or check your log files for errors.");
434                                         return 2;
435                                 end
436                                 socket.sleep(0.5);
437                                 i = i + 1;
438                         end
439                         show_message("Started");
440                 end
441                 return 0;
442         end
443
444         show_message("Failed to start Prosody");
445         show_message(error_messages[ret])       
446         return 1;       
447 end
448
449 function commands.status(arg)
450         if arg[1] == "--help" then
451                 show_usage([[status]], [[Reports the running status of Prosody]]);
452                 return 1;
453         end
454
455         local ok, ret = prosodyctl.isrunning();
456         if not ok then
457                 show_message(error_messages[ret]);
458                 return 1;
459         end
460         
461         if ret then
462                 local ok, ret = prosodyctl.getpid();
463                 if not ok then
464                         show_message("Couldn't get running Prosody's PID");
465                         show_message(error_messages[ret]);
466                         return 1;
467                 end
468                 show_message("Prosody is running with PID %s", ret or "(unknown)");
469                 return 0;
470         else
471                 show_message("Prosody is not running");
472                 if not switched_user and current_uid ~= 0 then
473                         print("\nNote:")
474                         print(" You will also see this if prosodyctl is not running under");
475                         print(" the same user account as Prosody. Try running as root (e.g. ");
476                         print(" with 'sudo' in front) to gain access to Prosody's real status.");
477                 end
478                 return 2
479         end
480         return 1;
481 end
482
483 function commands.stop(arg)
484         if arg[1] == "--help" then
485                 show_usage([[stop]], [[Stop a running Prosody server]]);
486                 return 1;
487         end
488
489         if not prosodyctl.isrunning() then
490                 show_message("Prosody is not running");
491                 return 1;
492         end
493         
494         local ok, ret = prosodyctl.stop();
495         if ok then
496                 local i=1;
497                 while true do
498                         local ok, running = prosodyctl.isrunning();
499                         if ok and not running then
500                                 break;
501                         elseif i == 5 then
502                                 show_message("Still waiting...");
503                         elseif i >= prosodyctl_timeout then
504                                 show_message("Prosody is still running. Please give it some time or check your log files for errors.");
505                                 return 2;
506                         end
507                         socket.sleep(0.5);
508                         i = i + 1;
509                 end
510                 show_message("Stopped");
511                 return 0;
512         end
513
514         show_message(error_messages[ret]);
515         return 1;
516 end
517
518 function commands.restart(arg)
519         if arg[1] == "--help" then
520                 show_usage([[restart]], [[Restart a running Prosody server]]);
521                 return 1;
522         end
523         
524         commands.stop(arg);
525         return commands.start(arg);
526 end
527
528 function commands.about(arg)
529         read_version();
530         if arg[1] == "--help" then
531                 show_usage([[about]], [[Show information about this Prosody installation]]);
532                 return 1;
533         end
534         
535         local pwd = ".";
536         local lfs = require "lfs";
537         local array = require "util.array";
538         local keys = require "util.iterators".keys;
539         local hg = require"util.mercurial";
540         local relpath = config.resolve_relative_path;
541         
542         print("Prosody "..(prosody.version or "(unknown version)"));
543         print("");
544         print("# Prosody directories");
545         print("Data directory:     "..relpath(pwd, data_path));
546         print("Config directory:   "..relpath(pwd, CFG_CONFIGDIR or "."));
547         print("Source directory:   "..relpath(pwd, CFG_SOURCEDIR or "."));
548         print("Plugin directories:")
549         print("  "..(prosody.paths.plugins:gsub("([^;]+);?", function(path)
550                         local opath = path;
551                         path = config.resolve_relative_path(pwd, path);
552                         local hgid, hgrepo = hg.check_id(path);
553                         if not hgid and hgrepo then
554                                 return path.." - "..hgrepo .."!\n  ";
555                         end
556                         -- 010452cfaf53 is the first commit in the prosody-modules repository
557                         hgrepo = hgrepo == "010452cfaf53" and "prosody-modules";
558                         return path..(hgid and " - "..(hgrepo or "HG").." rev: "..hgid or "")
559                                 .."\n  ";
560                 end)));
561         print("");
562         print("# Lua environment");
563         print("Lua version:             ", _G._VERSION);
564         print("");
565         print("Lua module search paths:");
566         for path in package.path:gmatch("[^;]+") do
567                 print("  "..path);
568         end
569         print("");
570         print("Lua C module search paths:");
571         for path in package.cpath:gmatch("[^;]+") do
572                 print("  "..path);
573         end
574         print("");
575         local luarocks_status = (pcall(require, "luarocks.loader") and "Installed ("..(package.loaded["luarocks.cfg"].program_version or "2.x+")..")")
576                 or (pcall(require, "luarocks.require") and "Installed (1.x)")
577                 or "Not installed";
578         print("LuaRocks:        ", luarocks_status);
579         print("");
580         print("# Lua module versions");
581         local module_versions, longest_name = {}, 8;
582         local luaevent =dependencies.softreq"luaevent";
583         local ssl = dependencies.softreq"ssl";
584         for name, module in pairs(package.loaded) do
585                 if type(module) == "table" and rawget(module, "_VERSION")
586                 and name ~= "_G" and not name:match("%.") then
587                         if #name > longest_name then
588                                 longest_name = #name;
589                         end
590                         module_versions[name] = module._VERSION;
591                 end
592         end
593         local sorted_keys = array.collect(keys(module_versions)):sort();
594         for _, name in ipairs(array.collect(keys(module_versions)):sort()) do
595                 print(name..":"..string.rep(" ", longest_name-#name), module_versions[name]);
596         end
597         print("");
598 end
599
600 function commands.reload(arg)
601         if arg[1] == "--help" then
602                 show_usage([[reload]], [[Reload Prosody's configuration and re-open log files]]);
603                 return 1;
604         end
605
606         if not prosodyctl.isrunning() then
607                 show_message("Prosody is not running");
608                 return 1;
609         end
610         
611         local ok, ret = prosodyctl.reload();
612         if ok then
613                 
614                 show_message("Prosody log files re-opened and config file reloaded. You may need to reload modules for some changes to take effect.");
615                 return 0;
616         end
617
618         show_message(error_messages[ret]);
619         return 1;
620 end
621 -- ejabberdctl compatibility
622
623 function commands.register(arg)
624         local user, host, password = unpack(arg);
625         if (not (user and host)) or arg[1] == "--help" then
626                 if user ~= "--help" then
627                         if not user then
628                                 show_message [[No username specified]]
629                         elseif not host then
630                                 show_message [[Please specify which host you want to register the user on]];
631                         end
632                 end
633                 show_usage("register USER HOST [PASSWORD]", "Register a user on the server, with the given password");
634                 return 1;
635         end
636         if not password then
637                 password = read_password();
638                 if not password then
639                         show_message [[Unable to register user with no password]];
640                         return 1;
641                 end
642         end
643         
644         local ok, msg = prosodyctl.adduser { user = user, host = host, password = password };
645         
646         if ok then return 0; end
647         
648         show_message(error_messages[msg])
649         return 1;
650 end
651
652 function commands.unregister(arg)
653         local user, host = unpack(arg);
654         if (not (user and host)) or arg[1] == "--help" then
655                 if user ~= "--help" then
656                         if not user then
657                                 show_message [[No username specified]]
658                         elseif not host then
659                                 show_message [[Please specify which host you want to unregister the user from]];
660                         end
661                 end
662                 show_usage("unregister USER HOST [PASSWORD]", "Permanently remove a user account from the server");
663                 return 1;
664         end
665
666         local ok, msg = prosodyctl.deluser { user = user, host = host };
667         
668         if ok then return 0; end
669         
670         show_message(error_messages[msg])
671         return 1;
672 end
673
674 local openssl;
675 local lfs;
676
677 local cert_commands = {};
678
679 -- If a file already exists, ask if the user wants to use it or replace it
680 -- Backups the old file if replaced
681 local function use_existing(filename)
682         local attrs = lfs.attributes(filename);
683         if attrs then
684                 if show_yesno(filename .. " exists, do you want to replace it? [y/n]") then
685                         local backup = filename..".bkp~"..os.date("%FT%T", attrs.change);
686                         os.rename(filename, backup);
687                         show_message(filename.." backed up to "..backup);
688                 else
689                         -- Use the existing file
690                         return true;
691                 end
692         end
693 end
694
695 function cert_commands.config(arg)
696         if #arg >= 1 and arg[1] ~= "--help" then
697                 local conf_filename = (CFG_DATADIR or "./certs") .. "/" .. arg[1] .. ".cnf";
698                 if use_existing(conf_filename) then
699                         return nil, conf_filename;
700                 end
701                 local distinguished_name;
702                 if arg[#arg]:find("^/") then
703                         distinguished_name = table.remove(arg);
704                 end
705                 local conf = openssl.config.new();
706                 conf:from_prosody(hosts, config, arg);
707                 if distinguished_name then
708                         local dn = {};
709                         for k, v in distinguished_name:gmatch("/([^=/]+)=([^/]+)") do
710                                 table.insert(dn, k);
711                                 dn[k] = v;
712                         end
713                         conf.distinguished_name = dn;
714                 else
715                         show_message("Please provide details to include in the certificate config file.");
716                         show_message("Leave the field empty to use the default value or '.' to exclude the field.")
717                         for i, k in ipairs(openssl._DN_order) do
718                                 local v = conf.distinguished_name[k];
719                                 if v then
720                                         local nv;
721                                         if k == "commonName" then
722                                                 v = arg[1]
723                                         elseif k == "emailAddress" then
724                                                 v = "xmpp@" .. arg[1];
725                                         elseif k == "countryName" then
726                                                 local tld = arg[1]:match"%.([a-z]+)$";
727                                                 if tld and #tld == 2 and tld ~= "uk" then
728                                                         v = tld:upper();
729                                                 end
730                                         end
731                                         nv = show_prompt(("%s (%s):"):format(k, nv or v));
732                                         nv = (not nv or nv == "") and v or nv;
733                                         if nv:find"[\192-\252][\128-\191]+" then
734                                                 conf.req.string_mask = "utf8only"
735                                         end
736                                         conf.distinguished_name[k] = nv ~= "." and nv or nil;
737                                 end
738                         end
739                 end
740                 local conf_file, err = io.open(conf_filename, "w");
741                 if not conf_file then
742                         show_warning("Could not open OpenSSL config file for writing");
743                         show_warning(err);
744                         os.exit(1);
745                 end
746                 conf_file:write(conf:serialize());
747                 conf_file:close();
748                 print("");
749                 show_message("Config written to " .. conf_filename);
750                 return nil, conf_filename;
751         else
752                 show_usage("cert config HOSTNAME [HOSTNAME+]", "Builds a certificate config file covering the supplied hostname(s)")
753         end
754 end
755
756 function cert_commands.key(arg)
757         if #arg >= 1 and arg[1] ~= "--help" then
758                 local key_filename = (CFG_DATADIR or "./certs") .. "/" .. arg[1] .. ".key";
759                 if use_existing(key_filename) then
760                         return nil, key_filename;
761                 end
762                 os.remove(key_filename); -- This file, if it exists is unlikely to have write permissions
763                 local key_size = tonumber(arg[2] or show_prompt("Choose key size (2048):") or 2048);
764                 local old_umask = pposix.umask("0377");
765                 if openssl.genrsa{out=key_filename, key_size} then
766                         os.execute(("chmod 400 '%s'"):format(key_filename));
767                         show_message("Key written to ".. key_filename);
768                         pposix.umask(old_umask);
769                         return nil, key_filename;
770                 end
771                 show_message("There was a problem, see OpenSSL output");
772         else
773                 show_usage("cert key HOSTNAME <bits>", "Generates a RSA key named HOSTNAME.key\n "
774                 .."Prompts for a key size if none given")
775         end
776 end
777
778 function cert_commands.request(arg)
779         if #arg >= 1 and arg[1] ~= "--help" then
780                 local req_filename = (CFG_DATADIR or "./certs") .. "/" .. arg[1] .. ".req";
781                 if use_existing(req_filename) then
782                         return nil, req_filename;
783                 end
784                 local _, key_filename = cert_commands.key({arg[1]});
785                 local _, conf_filename = cert_commands.config(arg);
786                 if openssl.req{new=true, key=key_filename, utf8=true, sha256=true, config=conf_filename, out=req_filename} then
787                         show_message("Certificate request written to ".. req_filename);
788                 else
789                         show_message("There was a problem, see OpenSSL output");
790                 end
791         else
792                 show_usage("cert request HOSTNAME [HOSTNAME+]", "Generates a certificate request for the supplied hostname(s)")
793         end
794 end
795
796 function cert_commands.generate(arg)
797         if #arg >= 1 and arg[1] ~= "--help" then
798                 local cert_filename = (CFG_DATADIR or "./certs") .. "/" .. arg[1] .. ".crt";
799                 if use_existing(cert_filename) then
800                         return nil, cert_filename;
801                 end
802                 local _, key_filename = cert_commands.key({arg[1]});
803                 local _, conf_filename = cert_commands.config(arg);
804                 local ret;
805                 if key_filename and conf_filename and cert_filename
806                         and openssl.req{new=true, x509=true, nodes=true, key=key_filename,
807                                 days=365, sha256=true, utf8=true, config=conf_filename, out=cert_filename} then
808                         show_message("Certificate written to ".. cert_filename);
809                         print();
810                         show_message(("Example config:\n\nssl = {\n\tcertificate = %q;\n\tkey = %q;\n}"):format(cert_filename, key_filename));
811                 else
812                         show_message("There was a problem, see OpenSSL output");
813                 end
814         else
815                 show_usage("cert generate HOSTNAME [HOSTNAME+]", "Generates a self-signed certificate for the current hostname(s)")
816         end
817 end
818
819 function commands.cert(arg)
820         if #arg >= 1 and arg[1] ~= "--help" then
821                 openssl = require "util.openssl";
822                 lfs = require "lfs";
823                 local subcmd = table.remove(arg, 1);
824                 if type(cert_commands[subcmd]) == "function" then
825                         if not arg[1] then
826                                 show_message"You need to supply at least one hostname"
827                                 arg = { "--help" };
828                         end
829                         if arg[1] ~= "--help" and not hosts[arg[1]] then
830                                 show_message(error_messages["no-such-host"]);
831                                 return
832                         end
833                         return cert_commands[subcmd](arg);
834                 end
835         end
836         show_usage("cert config|request|generate|key", "Helpers for generating X.509 certificates and keys.")
837 end
838
839 function commands.check(arg)
840         if arg[1] == "--help" then
841                 show_usage([[check]], [[Perform basic checks on your Prosody installation]]);
842                 return 1;
843         end
844         local what = table.remove(arg, 1);
845         local array, set = require "util.array", require "util.set";
846         local it = require "util.iterators";
847         local ok = true;
848         local function disabled_hosts(host, conf) return host ~= "*" and conf.enabled ~= false; end
849         local function enabled_hosts() return it.filter(disabled_hosts, pairs(config.getconfig())); end
850         if not what or what == "disabled" then
851                 local disabled_hosts = set.new();
852                 for host, host_options in it.filter("*", pairs(config.getconfig())) do
853                         if host_options.enabled == false then
854                                 disabled_hosts:add(host);
855                         end
856                 end
857                 if not disabled_hosts:empty() then
858                         local msg = "Checks will be skipped for these disabled hosts: %s";
859                         if what then msg = "These hosts are disabled: %s"; end
860                         show_warning(msg, tostring(disabled_hosts));
861                         if what then return 0; end
862                         print""
863                 end
864         end
865         if not what or what == "config" then
866                 print("Checking config...");
867                 local deprecated = set.new({
868                         "bosh_ports", "disallow_s2s", "no_daemonize", "anonymous_login", "require_encryption",
869                 });
870                 local known_global_options = set.new({
871                         "pidfile", "log", "plugin_paths", "prosody_user", "prosody_group", "daemonize",
872                         "umask", "prosodyctl_timeout", "use_ipv6", "use_libevent", "network_settings",
873                         "network_backend", "http_default_host",
874                 });
875                 local config = config.getconfig();
876                 -- Check that we have any global options (caused by putting a host at the top)
877                 if it.count(it.filter("log", pairs(config["*"]))) == 0 then
878                         ok = false;
879                         print("");
880                         print("    No global options defined. Perhaps you have put a host definition at the top")
881                         print("    of the config file? They should be at the bottom, see http://prosody.im/doc/configure#overview");
882                 end
883                 if it.count(enabled_hosts()) == 0 then
884                         ok = false;
885                         print("");
886                         if it.count(it.filter("*", pairs(config))) == 0 then
887                                 print("    No hosts are defined, please add at least one VirtualHost section")
888                         elseif config["*"]["enabled"] == false then
889                                 print("    No hosts are enabled. Remove enabled = false from the global section or put enabled = true under at least one VirtualHost section")
890                         else
891                                 print("    All hosts are disabled. Remove enabled = false from at least one VirtualHost section")
892                         end
893                 end
894                 if not config["*"].modules_enabled then
895                         print("    No global modules_enabled is set?");
896                         local suggested_global_modules;
897                         for host, options in enabled_hosts() do
898                                 if not options.component_module and options.modules_enabled then
899                                         suggested_global_modules = set.intersection(suggested_global_modules or set.new(options.modules_enabled), set.new(options.modules_enabled));
900                                 end
901                         end
902                         if not suggested_global_modules:empty() then
903                                 print("    Consider moving these modules into modules_enabled in the global section:")
904                                 print("    "..tostring(suggested_global_modules / function (x) return ("%q"):format(x) end));
905                         end
906                         print();
907                 end
908                 -- Check for global options under hosts
909                 local global_options = set.new(it.to_array(it.keys(config["*"])));
910                 local deprecated_global_options = set.intersection(global_options, deprecated);
911                 if not deprecated_global_options:empty() then
912                         print("");
913                         print("    You have some deprecated options in the global section:");
914                         print("    "..tostring(deprecated_global_options))
915                         ok = false;
916                 end
917                 for host, options in enabled_hosts() do
918                         local host_options = set.new(it.to_array(it.keys(options)));
919                         local misplaced_options = set.intersection(host_options, known_global_options);
920                         for name in pairs(options) do
921                                 if name:match("^interfaces?")
922                                 or name:match("_ports?$") or name:match("_interfaces?$")
923                                 or (name:match("_ssl$") and not name:match("^[cs]2s_ssl$")) then
924                                         misplaced_options:add(name);
925                                 end
926                         end
927                         if not misplaced_options:empty() then
928                                 ok = false;
929                                 print("");
930                                 local n = it.count(misplaced_options);
931                                 print("    You have "..n.." option"..(n>1 and "s " or " ").."set under "..host.." that should be");
932                                 print("    in the global section of the config file, above any VirtualHost or Component definitions,")
933                                 print("    see http://prosody.im/doc/configure#overview for more information.")
934                                 print("");
935                                 print("    You need to move the following option"..(n>1 and "s" or "")..": "..table.concat(it.to_array(misplaced_options), ", "));
936                         end
937                         local subdomain = host:match("^[^.]+");
938                         if not(host_options:contains("component_module")) and (subdomain == "jabber" or subdomain == "xmpp"
939                            or subdomain == "chat" or subdomain == "im") then
940                                 print("");
941                                 print("    Suggestion: If "..host.. " is a new host with no real users yet, consider renaming it now to");
942                                 print("     "..host:gsub("^[^.]+%.", "")..". You can use SRV records to redirect XMPP clients and servers to "..host..".");
943                                 print("     For more information see: http://prosody.im/doc/dns");
944                         end
945                 end
946                 local all_modules = set.new(config["*"].modules_enabled);
947                 local all_options = set.new(it.to_array(it.keys(config["*"])));
948                 for host in enabled_hosts() do
949                         all_options:include(set.new(it.to_array(it.keys(config[host]))));
950                         all_modules:include(set.new(config[host].modules_enabled));
951                 end
952                 for mod in all_modules do
953                         if mod:match("^mod_") then
954                                 print("");
955                                 print("    Modules in modules_enabled should not have the 'mod_' prefix included.");
956                                 print("    Change '"..mod.."' to '"..mod:match("^mod_(.*)").."'.");
957                         elseif mod:match("^auth_") then
958                                 print("");
959                                 print("    Authentication modules should not be added to modules_enabled,");
960                                 print("    but be specified in the 'authentication' option.");
961                                 print("    Remove '"..mod.."' from modules_enabled and instead add");
962                                 print("        authentication = '"..mod:match("^auth_(.*)").."'");
963                                 print("    For more information see https://prosody.im/doc/authentication");
964                         elseif mod:match("^storage_") then
965                                 print("");
966                                 print("    storage modules should not be added to modules_enabled,");
967                                 print("    but be specified in the 'storage' option.");
968                                 print("    Remove '"..mod.."' from modules_enabled and instead add");
969                                 print("        storage = '"..mod:match("^storage_(.*)").."'");
970                                 print("    For more information see https://prosody.im/doc/storage");
971                         end
972                 end
973                 local ssl = dependencies.softreq"ssl";
974                 if not ssl then
975                         if not set.intersection(all_options, set.new({"require_encryption", "c2s_require_encryption", "s2s_require_encryption"})):empty() then
976                                 print("");
977                                 print("    You require encryption but LuaSec is not available.");
978                                 print("    Connections will fail.");
979                                 ok = false;
980                         end
981                 elseif not ssl.loadcertificate then
982                         if all_options:contains("s2s_secure_auth") then
983                                 print("");
984                                 print("    You have set s2s_secure_auth but your version of LuaSec does ");
985                                 print("    not support certificate validation, so all s2s connections will");
986                                 print("    fail.");
987                                 ok = false;
988                         elseif all_options:contains("s2s_secure_domains") then
989                                 local secure_domains = set.new();
990                                 for host in enabled_hosts() do
991                                         if config[host].s2s_secure_auth == true then
992                                                 secure_domains:add("*");
993                                         else
994                                                 secure_domains:include(set.new(config[host].s2s_secure_domains));
995                                         end
996                                 end
997                                 if not secure_domains:empty() then
998                                         print("");
999                                         print("    You have set s2s_secure_domains but your version of LuaSec does ");
1000                                         print("    not support certificate validation, so s2s connections to/from ");
1001                                         print("    these domains will fail.");
1002                                         ok = false;
1003                                 end
1004                         end
1005                 end
1006                 
1007                 print("Done.\n");
1008         end
1009         if not what or what == "dns" then
1010                 local dns = require "net.dns";
1011                 local idna = require "util.encodings".idna;
1012                 local ip = require "util.ip";
1013                 local c2s_ports = set.new(config.get("*", "c2s_ports") or {5222});
1014                 local s2s_ports = set.new(config.get("*", "s2s_ports") or {5269});
1015                 
1016                 local c2s_srv_required, s2s_srv_required;
1017                 if not c2s_ports:contains(5222) then
1018                         c2s_srv_required = true;
1019                 end
1020                 if not s2s_ports:contains(5269) then
1021                         s2s_srv_required = true;
1022                 end
1023                 
1024                 local problem_hosts = set.new();
1025                 
1026                 local external_addresses, internal_addresses = set.new(), set.new();
1027                 
1028                 local fqdn = socket.dns.tohostname(socket.dns.gethostname());
1029                 if fqdn then
1030                         local res = dns.lookup(idna.to_ascii(fqdn), "A");
1031                         if res then
1032                                 for _, record in ipairs(res) do
1033                                         external_addresses:add(record.a);
1034                                 end
1035                         end
1036                         local res = dns.lookup(idna.to_ascii(fqdn), "AAAA");
1037                         if res then
1038                                 for _, record in ipairs(res) do
1039                                         external_addresses:add(record.aaaa);
1040                                 end
1041                         end
1042                 end
1043                 
1044                 local local_addresses = require"util.net".local_addresses() or {};
1045                 
1046                 for addr in it.values(local_addresses) do
1047                         if not ip.new_ip(addr).private then
1048                                 external_addresses:add(addr);
1049                         else
1050                                 internal_addresses:add(addr);
1051                         end
1052                 end
1053                 
1054                 if external_addresses:empty() then
1055                         print("");
1056                         print("   Failed to determine the external addresses of this server. Checks may be inaccurate.");
1057                         c2s_srv_required, s2s_srv_required = true, true;
1058                 end
1059                 
1060                 local v6_supported = not not socket.tcp6;
1061                 
1062                 for host, host_options in enabled_hosts() do
1063                         local all_targets_ok, some_targets_ok = true, false;
1064                         
1065                         local is_component = not not host_options.component_module;
1066                         print("Checking DNS for "..(is_component and "component" or "host").." "..host.."...");
1067                         local target_hosts = set.new();
1068                         if not is_component then
1069                                 local res = dns.lookup("_xmpp-client._tcp."..idna.to_ascii(host)..".", "SRV");
1070                                 if res then
1071                                         for _, record in ipairs(res) do
1072                                                 target_hosts:add(record.srv.target);
1073                                                 if not c2s_ports:contains(record.srv.port) then
1074                                                         print("    SRV target "..record.srv.target.." contains unknown client port: "..record.srv.port);
1075                                                 end
1076                                         end
1077                                 else
1078                                         if c2s_srv_required then
1079                                                 print("    No _xmpp-client SRV record found for "..host..", but it looks like you need one.");
1080                                                 all_targst_ok = false;
1081                                         else
1082                                                 target_hosts:add(host);
1083                                         end
1084                                 end
1085                         end
1086                         local res = dns.lookup("_xmpp-server._tcp."..idna.to_ascii(host)..".", "SRV");
1087                         if res then
1088                                 for _, record in ipairs(res) do
1089                                         target_hosts:add(record.srv.target);
1090                                         if not s2s_ports:contains(record.srv.port) then
1091                                                 print("    SRV target "..record.srv.target.." contains unknown server port: "..record.srv.port);
1092                                         end
1093                                 end
1094                         else
1095                                 if s2s_srv_required then
1096                                         print("    No _xmpp-server SRV record found for "..host..", but it looks like you need one.");
1097                                         all_targets_ok = false;
1098                                 else
1099                                         target_hosts:add(host);
1100                                 end
1101                         end
1102                         if target_hosts:empty() then
1103                                 target_hosts:add(host);
1104                         end
1105                         
1106                         if target_hosts:contains("localhost") then
1107                                 print("    Target 'localhost' cannot be accessed from other servers");
1108                                 target_hosts:remove("localhost");
1109                         end
1110                         
1111                         local modules = set.new(it.to_array(it.values(host_options.modules_enabled or {})))
1112                                         + set.new(it.to_array(it.values(config.get("*", "modules_enabled") or {})))
1113                                         + set.new({ config.get(host, "component_module") });
1114
1115                         if modules:contains("proxy65") then
1116                                 local proxy65_target = config.get(host, "proxy65_address") or host;
1117                                 local A, AAAA = dns.lookup(idna.to_ascii(proxy65_target), "A"), dns.lookup(idna.to_ascii(proxy65_target), "AAAA");
1118                                 local prob = {};
1119                                 if not A then
1120                                         table.insert(prob, "A");
1121                                 end
1122                                 if v6_supported and not AAAA then
1123                                         table.insert(prob, "AAAA");
1124                                 end
1125                                 if #prob > 0 then
1126                                         print("    File transfer proxy "..proxy65_target.." has no "..table.concat(prob, "/").." record. Create one or set 'proxy65_address' to the correct host/IP.");
1127                                 end
1128                         end
1129                         
1130                         for host in target_hosts do
1131                                 local host_ok_v4, host_ok_v6;
1132                                 local res = dns.lookup(idna.to_ascii(host), "A");
1133                                 if res then
1134                                         for _, record in ipairs(res) do
1135                                                 if external_addresses:contains(record.a) then
1136                                                         some_targets_ok = true;
1137                                                         host_ok_v4 = true;
1138                                                 elseif internal_addresses:contains(record.a) then
1139                                                         host_ok_v4 = true;
1140                                                         some_targets_ok = true;
1141                                                         print("    "..host.." A record points to internal address, external connections might fail");
1142                                                 else
1143                                                         print("    "..host.." A record points to unknown address "..record.a);
1144                                                         all_targets_ok = false;
1145                                                 end
1146                                         end
1147                                 end
1148                                 local res = dns.lookup(idna.to_ascii(host), "AAAA");
1149                                 if res then
1150                                         for _, record in ipairs(res) do
1151                                                 if external_addresses:contains(record.aaaa) then
1152                                                         some_targets_ok = true;
1153                                                         host_ok_v6 = true;
1154                                                 elseif internal_addresses:contains(record.aaaa) then
1155                                                         host_ok_v6 = true;
1156                                                         some_targets_ok = true;
1157                                                         print("    "..host.." AAAA record points to internal address, external connections might fail");
1158                                                 else
1159                                                         print("    "..host.." AAAA record points to unknown address "..record.aaaa);
1160                                                         all_targets_ok = false;
1161                                                 end
1162                                         end
1163                                 end
1164                                 
1165                                 local bad_protos = {}
1166                                 if not host_ok_v4 then
1167                                         table.insert(bad_protos, "IPv4");
1168                                 end
1169                                 if not host_ok_v6 then
1170                                         table.insert(bad_protos, "IPv6");
1171                                 end
1172                                 if #bad_protos > 0 then
1173                                         print("    Host "..host.." does not seem to resolve to this server ("..table.concat(bad_protos, "/")..")");
1174                                 end
1175                                 if host_ok_v6 and not v6_supported then
1176                                         print("    Host "..host.." has AAAA records, but your version of LuaSocket does not support IPv6.");
1177                                         print("      Please see http://prosody.im/doc/ipv6 for more information.");
1178                                 end
1179                         end
1180                         if not all_targets_ok then
1181                                 print("    "..(some_targets_ok and "Only some" or "No").." targets for "..host.." appear to resolve to this server.");
1182                                 if is_component then
1183                                         print("    DNS records are necessary if you want users on other servers to access this component.");
1184                                 end
1185                                 problem_hosts:add(host);
1186                         end
1187                         print("");
1188                 end
1189                 if not problem_hosts:empty() then
1190                         print("");
1191                         print("For more information about DNS configuration please see http://prosody.im/doc/dns");
1192                         print("");
1193                         ok = false;
1194                 end
1195         end
1196         if not what or what == "certs" then
1197                 local cert_ok;
1198                 print"Checking certificates..."
1199                 local x509_verify_identity = require"util.x509".verify_identity;
1200                 local create_context = require "core.certmanager".create_context;
1201                 local ssl = dependencies.softreq"ssl";
1202                 -- local datetime_parse = require"util.datetime".parse_x509;
1203                 local load_cert = ssl and ssl.loadcertificate;
1204                 -- or ssl.cert_from_pem
1205                 if not ssl then
1206                         print("LuaSec not available, can't perform certificate checks")
1207                         if what == "certs" then cert_ok = false end
1208                 elseif not load_cert then
1209                         print("This version of LuaSec (" .. ssl._VERSION .. ") does not support certificate checking");
1210                         cert_ok = false
1211                 else
1212                         for host in enabled_hosts() do
1213                                 print("Checking certificate for "..host);
1214                                 -- First, let's find out what certificate this host uses.
1215                                 local host_ssl_config = config.rawget(host, "ssl")
1216                                         or config.rawget(host:match("%.(.*)"), "ssl");
1217                                 local global_ssl_config = config.rawget("*", "ssl");
1218                                 local ok, err, ssl_config = create_context(host, "server", host_ssl_config, global_ssl_config);
1219                                 if not ok then
1220                                         print("  Error: "..err);
1221                                         cert_ok = false
1222                                 elseif not ssl_config.certificate then
1223                                         print("  No 'certificate' found for "..host)
1224                                         cert_ok = false
1225                                 elseif not ssl_config.key then
1226                                         print("  No 'key' found for "..host)
1227                                         cert_ok = false
1228                                 else
1229                                         local key, err = io.open(ssl_config.key); -- Permissions check only
1230                                         if not key then
1231                                                 print("    Could not open "..ssl_config.key..": "..err);
1232                                                 cert_ok = false
1233                                         else
1234                                                 key:close();
1235                                         end
1236                                         local cert_fh, err = io.open(ssl_config.certificate); -- Load the file.
1237                                         if not cert_fh then
1238                                                 print("    Could not open "..ssl_config.certificate..": "..err);
1239                                                 cert_ok = false
1240                                         else
1241                                                 print("  Certificate: "..ssl_config.certificate)
1242                                                 local cert = load_cert(cert_fh:read"*a"); cert_fh = cert_fh:close();
1243                                                 if not cert:validat(os.time()) then
1244                                                         print("    Certificate has expired.")
1245                                                         cert_ok = false
1246                                                 elseif not cert:validat(os.time() + 86400) then
1247                                                         print("    Certificate expires within one day.")
1248                                                         cert_ok = false
1249                                                 elseif not cert:validat(os.time() + 86400*7) then
1250                                                         print("    Certificate expires within one week.")
1251                                                 elseif not cert:validat(os.time() + 86400*31) then
1252                                                         print("    Certificate expires within one month.")
1253                                                 end
1254                                                 if config.get(host, "component_module") == nil
1255                                                         and not x509_verify_identity(host, "_xmpp-client", cert) then
1256                                                         print("    Not vaild for client connections to "..host..".")
1257                                                         cert_ok = false
1258                                                 end
1259                                                 if (not (config.get(host, "anonymous_login")
1260                                                         or config.get(host, "authentication") == "anonymous"))
1261                                                         and not x509_verify_identity(host, "_xmpp-server", cert) then
1262                                                         print("    Not vaild for server-to-server connections to "..host..".")
1263                                                         cert_ok = false
1264                                                 end
1265                                         end
1266                                 end
1267                         end
1268                         if cert_ok == false then
1269                                 print("")
1270                                 print("For more information about certificates please see http://prosody.im/doc/certificates");
1271                                 ok = false
1272                         end
1273                 end
1274                 print("")
1275         end
1276         if not ok then
1277                 print("Problems found, see above.");
1278         else
1279                 print("All checks passed, congratulations!");
1280         end
1281         return ok and 0 or 2;
1282 end
1283
1284 ---------------------
1285
1286 if command and command:match("^mod_") then -- Is a command in a module
1287         local module_name = command:match("^mod_(.+)");
1288         local ret, err = modulemanager.load("*", module_name);
1289         if not ret then
1290                 show_message("Failed to load module '"..module_name.."': "..err);
1291                 os.exit(1);
1292         end
1293         
1294         table.remove(arg, 1);
1295         
1296         local module = modulemanager.get_module("*", module_name);
1297         if not module then
1298                 show_message("Failed to load module '"..module_name.."': Unknown error");
1299                 os.exit(1);
1300         end
1301         
1302         if not modulemanager.module_has_method(module, "command") then
1303                 show_message("Fail: mod_"..module_name.." does not support any commands");
1304                 os.exit(1);
1305         end
1306         
1307         local ok, ret = modulemanager.call_module_method(module, "command", arg);
1308         if ok then
1309                 if type(ret) == "number" then
1310                         os.exit(ret);
1311                 elseif type(ret) == "string" then
1312                         show_message(ret);
1313                 end
1314                 os.exit(0); -- :)
1315         else
1316                 show_message("Failed to execute command: "..error_messages[ret]);
1317                 os.exit(1); -- :(
1318         end
1319 end
1320
1321 if not commands[command] then -- Show help for all commands
1322         function show_usage(usage, desc)
1323                 print(" "..usage);
1324                 print("    "..desc);
1325         end
1326
1327         print("prosodyctl - Manage a Prosody server");
1328         print("");
1329         print("Usage: "..arg[0].." COMMAND [OPTIONS]");
1330         print("");
1331         print("Where COMMAND may be one of:\n");
1332
1333         local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" };
1334         local commands_order = { "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", "about" };
1335
1336         local done = {};
1337
1338         for _, command_name in ipairs(commands_order) do
1339                 local command = commands[command_name];
1340                 if command then
1341                         command{ "--help" };
1342                         print""
1343                         done[command_name] = true;
1344                 end
1345         end
1346
1347         for command_name, command in pairs(commands) do
1348                 if not done[command_name] and not hidden_commands:contains(command_name) then
1349                         command{ "--help" };
1350                         print""
1351                         done[command_name] = true;
1352                 end
1353         end
1354         
1355         
1356         os.exit(0);
1357 end
1358
1359 os.exit(commands[command]({ select(2, unpack(arg)) }));