prosodyctl: Fix for generating certs with UTF-8
[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 };
54 _G.prosody = prosody;
55
56 local dependencies = require "util.dependencies";
57 if not dependencies.check_dependencies() then
58         os.exit(1);
59 end
60
61 config = require "core.configmanager"
62
63 do
64         local filenames = {};
65         
66         local filename;
67         if arg[1] == "--config" and arg[2] then
68                 table.insert(filenames, arg[2]);
69                 table.remove(arg, 1); table.remove(arg, 1);
70                 if CFG_CONFIGDIR then
71                         table.insert(filenames, CFG_CONFIGDIR.."/"..arg[2]);
72                 end
73         else
74                 for _, format in ipairs(config.parsers()) do
75                         table.insert(filenames, (CFG_CONFIGDIR or ".").."/prosody.cfg."..format);
76                 end
77         end
78         for _,_filename in ipairs(filenames) do
79                 filename = _filename;
80                 local file = io.open(filename);
81                 if file then
82                         file:close();
83                         CFG_CONFIGDIR = filename:match("^(.*)[\\/][^\\/]*$");
84                         break;
85                 end
86         end
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                         local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)");
94                         print("Error"..(err_line and (" on line "..err_line) or "")..": "..(err_message or tostring(err)));
95                         print("");
96                 elseif level == "file" then
97                         print("Prosody was unable to find the configuration file.");
98                         print("We looked for: "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
99                         print("A sample config file is included in the Prosody download called prosody.cfg.lua.dist");
100                         print("Copy or rename it to prosody.cfg.lua and edit as necessary.");
101                 end
102                 print("More help on configuring Prosody can be found at http://prosody.im/doc/configure");
103                 print("Good luck!");
104                 print("**************************");
105                 print("");
106                 os.exit(1);
107         end
108 end
109 local original_logging_config = config.get("*", "core", "log");
110 config.set("*", "core", "log", { { levels = { min="info" }, to = "console" } });
111
112 local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data";
113 local custom_plugin_paths = config.get("*", "core", "plugin_paths");
114 if custom_plugin_paths then
115         local path_sep = package.config:sub(3,3);
116         -- path1;path2;path3;defaultpath...
117         CFG_PLUGINDIR = table.concat(custom_plugin_paths, path_sep)..path_sep..(CFG_PLUGINDIR or "plugins");
118 end
119 prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR, 
120                   plugins = CFG_PLUGINDIR or "plugins", data = data_path };
121
122 require "core.loggingmanager"
123
124 dependencies.log_warnings();
125
126 -- Switch away from root and into the prosody user --
127 local switched_user, current_uid;
128
129 local want_pposix_version = "0.3.5";
130 local ok, pposix = pcall(require, "util.pposix");
131
132 if ok and pposix then
133         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
134         current_uid = pposix.getuid();
135         if current_uid == 0 then
136                 -- We haz root!
137                 local desired_user = config.get("*", "core", "prosody_user") or "prosody";
138                 local desired_group = config.get("*", "core", "prosody_group") or desired_user;
139                 local ok, err = pposix.setgid(desired_group);
140                 if ok then
141                         ok, err = pposix.initgroups(desired_user);
142                 end
143                 if ok then
144                         ok, err = pposix.setuid(desired_user);
145                         if ok then
146                                 -- Yay!
147                                 switched_user = true;
148                         end
149                 end
150                 if not switched_user then
151                         -- Boo!
152                         print("Warning: Couldn't switch to Prosody user/group '"..tostring(desired_user).."'/'"..tostring(desired_group).."': "..tostring(err));
153                 end
154         end
155         
156         -- Set our umask to protect data files
157         pposix.umask(config.get("*", "core", "umask") or "027");
158 else
159         print("Error: Unable to load pposix module. Check that Prosody is installed correctly.")
160         print("For more help send the below error to us through http://prosody.im/discuss");
161         print(tostring(pposix))
162 end
163
164 local function test_writeable(filename)
165         local f, err = io.open(filename, "a");
166         if not f then
167                 return false, err;
168         end
169         f:close();
170         return true;
171 end
172
173 local unwriteable_files = {};
174 if type(original_logging_config) == "string" and original_logging_config:sub(1,1) ~= "*" then
175         local ok, err = test_writeable(original_logging_config);
176         if not ok then
177                 table.insert(unwriteable_files, err);
178         end
179 elseif type(original_logging_config) == "table" then
180         for _, rule in ipairs(original_logging_config) do
181                 if rule.filename then
182                         local ok, err = test_writeable(rule.filename);
183                         if not ok then
184                                 table.insert(unwriteable_files, err);
185                         end
186                 end
187         end
188 end
189
190 if #unwriteable_files > 0 then
191         print("One of more of the Prosody log files are not");
192         print("writeable, please correct the errors and try");
193         print("starting prosodyctl again.");
194         print("");
195         for _, err in ipairs(unwriteable_files) do
196                 print(err);
197         end
198         print("");
199         os.exit(1);
200 end
201
202
203 local error_messages = setmetatable({ 
204                 ["invalid-username"] = "The given username is invalid in a Jabber ID";
205                 ["invalid-hostname"] = "The given hostname is invalid";
206                 ["no-password"] = "No password was supplied";
207                 ["no-such-user"] = "The given user does not exist on the server";
208                 ["no-such-host"] = "The given hostname does not exist in the config";
209                 ["unable-to-save-data"] = "Unable to store, perhaps you don't have permission?";
210                 ["no-pidfile"] = "There is no 'pidfile' option in the configuration file, see http://prosody.im/doc/prosodyctl#pidfile for help";
211                 ["no-posix"] = "The mod_posix module is not enabled in the Prosody config file, see http://prosody.im/doc/prosodyctl for more info";
212                 ["no-such-method"] = "This module has no commands";
213                 ["not-running"] = "Prosody is not running";
214                 }, { __index = function (t,k) return "Error: "..(tostring(k):gsub("%-", " "):gsub("^.", string.upper)); end });
215
216 hosts = prosody.hosts;
217
218 local function make_host(hostname)
219         return {
220                 type = "local",
221                 events = prosody.events,
222                 users = require "core.usermanager".new_null_provider(hostname)
223         };
224 end
225
226 for hostname, config in pairs(config.getconfig()) do
227         hosts[hostname] = make_host(hostname);
228 end
229         
230 require "core.modulemanager"
231
232 require "util.prosodyctl"
233 require "socket"
234 -----------------------
235
236 local show_message, show_warning = prosodyctl.show_message, prosodyctl.show_warning;
237 local show_usage = prosodyctl.show_usage;
238 local getchar, getpass = prosodyctl.getchar, prosodyctl.getpass;
239 local show_yesno = prosodyctl.show_yesno;
240 local show_prompt = prosodyctl.show_prompt;
241 local read_password = prosodyctl.read_password;
242
243 local prosodyctl_timeout = (config.get("*", "core", "prosodyctl_timeout") or 5) * 2;
244 -----------------------
245 local commands = {};
246 local command = arg[1];
247
248 function commands.adduser(arg)
249         if not arg[1] or arg[1] == "--help" then
250                 show_usage([[adduser JID]], [[Create the specified user account in Prosody]]);
251                 return 1;
252         end
253         local user, host = arg[1]:match("([^@]+)@(.+)");
254         if not user and host then
255                 show_message [[Failed to understand JID, please supply the JID you want to create]]
256                 show_usage [[adduser user@host]]
257                 return 1;
258         end
259         
260         if not host then
261                 show_message [[Please specify a JID, including a host. e.g. alice@example.com]];
262                 return 1;
263         end
264         
265         if not hosts[host] then
266                 show_warning("The host '%s' is not listed in the configuration file (or is not enabled).", host)
267                 show_warning("The user will not be able to log in until this is changed.");
268                 hosts[host] = make_host(host);
269         end
270         
271         if prosodyctl.user_exists{ user = user, host = host } then
272                 show_message [[That user already exists]];
273                 return 1;
274         end
275         
276         local password = read_password();
277         if not password then return 1; end
278         
279         local ok, msg = prosodyctl.adduser { user = user, host = host, password = password };
280         
281         if ok then return 0; end
282         
283         show_message(msg)
284         return 1;
285 end
286
287 function commands.passwd(arg)
288         if not arg[1] or arg[1] == "--help" then
289                 show_usage([[passwd JID]], [[Set the password for the specified user account in Prosody]]);
290                 return 1;
291         end
292         local user, host = arg[1]:match("([^@]+)@(.+)");
293         if not user and host then
294                 show_message [[Failed to understand JID, please supply the JID you want to set the password for]]
295                 show_usage [[passwd user@host]]
296                 return 1;
297         end
298         
299         if not host then
300                 show_message [[Please specify a JID, including a host. e.g. alice@example.com]];
301                 return 1;
302         end
303         
304         if not hosts[host] then
305                 show_warning("The host '%s' is not listed in the configuration file (or is not enabled).", host)
306                 show_warning("The user will not be able to log in until this is changed.");
307                 hosts[host] = make_host(host);
308         end
309         
310         if not prosodyctl.user_exists { user = user, host = host } then
311                 show_message [[That user does not exist, use prosodyctl adduser to create a new user]]
312                 return 1;
313         end
314         
315         local password = read_password();
316         if not password then return 1; end
317         
318         local ok, msg = prosodyctl.passwd { user = user, host = host, password = password };
319         
320         if ok then return 0; end
321         
322         show_message(error_messages[msg])
323         return 1;
324 end
325
326 function commands.deluser(arg)
327         if not arg[1] or arg[1] == "--help" then
328                 show_usage([[deluser JID]], [[Permanently remove the specified user account from Prosody]]);
329                 return 1;
330         end
331         local user, host = arg[1]:match("([^@]+)@(.+)");
332         if not user and host then
333                 show_message [[Failed to understand JID, please supply the JID you want to set the password for]]
334                 show_usage [[passwd user@host]]
335                 return 1;
336         end
337         
338         if not host then
339                 show_message [[Please specify a JID, including a host. e.g. alice@example.com]];
340                 return 1;
341         end
342         
343         if not hosts[host] then
344                 show_warning("The host '%s' is not listed in the configuration file (or is not enabled).", host)
345                 show_warning("The user will not be able to log in until this is changed.");
346                 hosts[host] = make_host(host);
347         end
348
349         if not prosodyctl.user_exists { user = user, host = host } then
350                 show_message [[That user does not exist on this server]]
351                 return 1;
352         end
353         
354         local ok, msg = prosodyctl.passwd { user = user, host = host };
355         
356         if ok then return 0; end
357         
358         show_message(error_messages[msg])
359         return 1;
360 end
361
362 function commands.start(arg)
363         if arg[1] == "--help" then
364                 show_usage([[start]], [[Start Prosody]]);
365                 return 1;
366         end
367         local ok, ret = prosodyctl.isrunning();
368         if not ok then
369                 show_message(error_messages[ret]);
370                 return 1;
371         end
372         
373         if ret then
374                 local ok, ret = prosodyctl.getpid();
375                 if not ok then
376                         show_message("Couldn't get running Prosody's PID");
377                         show_message(error_messages[ret]);
378                         return 1;
379                 end
380                 show_message("Prosody is already running with PID %s", ret or "(unknown)");
381                 return 1;
382         end
383         
384         local ok, ret = prosodyctl.start();
385         if ok then
386                 if config.get("*", "core", "daemonize") ~= false then
387                         local i=1;
388                         while true do
389                                 local ok, running = prosodyctl.isrunning();
390                                 if ok and running then
391                                         break;
392                                 elseif i == 5 then
393                                         show_message("Still waiting...");
394                                 elseif i >= prosodyctl_timeout then
395                                         show_message("Prosody is still not running. Please give it some time or check your log files for errors.");
396                                         return 2;
397                                 end
398                                 socket.sleep(0.5);
399                                 i = i + 1;
400                         end
401                         show_message("Started");
402                 end
403                 return 0;
404         end
405
406         show_message("Failed to start Prosody");
407         show_message(error_messages[ret])       
408         return 1;       
409 end
410
411 function commands.status(arg)
412         if arg[1] == "--help" then
413                 show_usage([[status]], [[Reports the running status of Prosody]]);
414                 return 1;
415         end
416
417         local ok, ret = prosodyctl.isrunning();
418         if not ok then
419                 show_message(error_messages[ret]);
420                 return 1;
421         end
422         
423         if ret then
424                 local ok, ret = prosodyctl.getpid();
425                 if not ok then
426                         show_message("Couldn't get running Prosody's PID");
427                         show_message(error_messages[ret]);
428                         return 1;
429                 end
430                 show_message("Prosody is running with PID %s", ret or "(unknown)");
431                 return 0;
432         else
433                 show_message("Prosody is not running");
434                 if not switched_user and current_uid ~= 0 then
435                         print("\nNote:")
436                         print(" You will also see this if prosodyctl is not running under");
437                         print(" the same user account as Prosody. Try running as root (e.g. ");
438                         print(" with 'sudo' in front) to gain access to Prosody's real status.");
439                 end
440                 return 2
441         end
442         return 1;
443 end
444
445 function commands.stop(arg)
446         if arg[1] == "--help" then
447                 show_usage([[stop]], [[Stop a running Prosody server]]);
448                 return 1;
449         end
450
451         if not prosodyctl.isrunning() then
452                 show_message("Prosody is not running");
453                 return 1;
454         end
455         
456         local ok, ret = prosodyctl.stop();
457         if ok then
458                 local i=1;
459                 while true do
460                         local ok, running = prosodyctl.isrunning();
461                         if ok and not running then
462                                 break;
463                         elseif i == 5 then
464                                 show_message("Still waiting...");
465                         elseif i >= prosodyctl_timeout then
466                                 show_message("Prosody is still running. Please give it some time or check your log files for errors.");
467                                 return 2;
468                         end
469                         socket.sleep(0.5);
470                         i = i + 1;
471                 end
472                 show_message("Stopped");
473                 return 0;
474         end
475
476         show_message(error_messages[ret]);
477         return 1;
478 end
479
480 function commands.restart(arg)
481         if arg[1] == "--help" then
482                 show_usage([[restart]], [[Restart a running Prosody server]]);
483                 return 1;
484         end
485         
486         commands.stop(arg);
487         return commands.start(arg);
488 end
489
490 function commands.about(arg)
491         if arg[1] == "--help" then
492                 show_usage([[about]], [[Show information about this Prosody installation]]);
493                 return 1;
494         end
495         
496         require "util.array";
497         local keys = require "util.iterators".keys;
498         
499         print("Prosody "..(prosody.version or "(unknown version)"));
500         print("");
501         print("# Prosody directories");
502         print("Data directory:  ", CFG_DATADIR or "./");
503         print("Plugin directory:", CFG_PLUGINDIR or "./");
504         print("Config directory:", CFG_CONFIGDIR or "./");
505         print("Source directory:", CFG_SOURCEDIR or "./");
506         print("");
507         print("# Lua environment");
508         print("Lua version:             ", _G._VERSION);
509         print("");
510         print("Lua module search paths:");
511         for path in package.path:gmatch("[^;]+") do
512                 print("  "..path);
513         end
514         print("");
515         print("Lua C module search paths:");
516         for path in package.cpath:gmatch("[^;]+") do
517                 print("  "..path);
518         end
519         print("");
520         local luarocks_status = (pcall(require, "luarocks.loader") and "Installed ("..(luarocks.cfg.program_version or "2.x+")..")")
521                 or (pcall(require, "luarocks.require") and "Installed (1.x)")
522                 or "Not installed";
523         print("LuaRocks:        ", luarocks_status);
524         print("");
525         print("# Lua module versions");
526         local module_versions, longest_name = {}, 8;
527         for name, module in pairs(package.loaded) do
528                 if type(module) == "table" and rawget(module, "_VERSION")
529                 and name ~= "_G" and not name:match("%.") then
530                         if #name > longest_name then
531                                 longest_name = #name;
532                         end
533                         module_versions[name] = module._VERSION;
534                 end
535         end
536         local sorted_keys = array.collect(keys(module_versions)):sort();
537         for _, name in ipairs(array.collect(keys(module_versions)):sort()) do
538                 print(name..":"..string.rep(" ", longest_name-#name), module_versions[name]);
539         end
540         print("");
541 end
542
543 function commands.reload(arg)
544         if arg[1] == "--help" then
545                 show_usage([[reload]], [[Reload Prosody's configuration and re-open log files]]);
546                 return 1;
547         end
548
549         if not prosodyctl.isrunning() then
550                 show_message("Prosody is not running");
551                 return 1;
552         end
553         
554         local ok, ret = prosodyctl.reload();
555         if ok then
556                 
557                 show_message("Prosody log files re-opened and config file reloaded. You may need to reload modules for some changes to take effect.");
558                 return 0;
559         end
560
561         show_message(error_messages[ret]);
562         return 1;
563 end
564 -- ejabberdctl compatibility
565
566 function commands.register(arg)
567         local user, host, password = unpack(arg);
568         if (not (user and host)) or arg[1] == "--help" then
569                 if user ~= "--help" then
570                         if not user then
571                                 show_message [[No username specified]]
572                         elseif not host then
573                                 show_message [[Please specify which host you want to register the user on]];
574                         end
575                 end
576                 show_usage("register USER HOST [PASSWORD]", "Register a user on the server, with the given password");
577                 return 1;
578         end
579         if not password then
580                 password = read_password();
581                 if not password then
582                         show_message [[Unable to register user with no password]];
583                         return 1;
584                 end
585         end
586         
587         local ok, msg = prosodyctl.adduser { user = user, host = host, password = password };
588         
589         if ok then return 0; end
590         
591         show_message(error_messages[msg])
592         return 1;
593 end
594
595 function commands.unregister(arg)
596         local user, host = unpack(arg);
597         if (not (user and host)) or arg[1] == "--help" then
598                 if user ~= "--help" then
599                         if not user then
600                                 show_message [[No username specified]]
601                         elseif not host then
602                                 show_message [[Please specify which host you want to unregister the user from]];
603                         end
604                 end
605                 show_usage("unregister USER HOST [PASSWORD]", "Permanently remove a user account from the server");
606                 return 1;
607         end
608
609         local ok, msg = prosodyctl.deluser { user = user, host = host };
610         
611         if ok then return 0; end
612         
613         show_message(error_messages[msg])
614         return 1;
615 end
616
617 local openssl = require "util.openssl";
618 local lfs = require "lfs";
619
620 local cert_commands = {};
621
622 local function ask_overwrite(filename)
623         return lfs.attributes(filename) and not show_yesno("Overwrite "..filename .. "?");
624 end
625
626 function cert_commands.config(arg)
627         if #arg >= 1 and arg[1] ~= "--help" then
628                 local conf_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".cnf";
629                 if ask_overwrite(conf_filename) then
630                         return nil, conf_filename;
631                 end
632                 local conf = openssl.config.new();
633                 conf:from_prosody(hosts, config, arg);
634                 for k, v in pairs(conf.distinguished_name) do
635                         local nv;
636                         if k == "commonName" then 
637                                 v = arg[1]
638                         elseif k == "emailAddress" then
639                                 v = "xmpp@" .. arg[1];
640                         end
641                         nv = show_prompt(("%s (%s):"):format(k, nv or v));
642                         nv = (not nv or nv == "") and v or nv;
643                         if nv:find"[\192-\252][\128-\191]+" then
644                                 conf.req.string_mask = "utf8only"
645                         end
646                         conf.distinguished_name[k] = nv ~= "." and nv or nil;
647                 end
648                 local conf_file = io.open(conf_filename, "w");
649                 conf_file:write(conf:serialize());
650                 conf_file:close();
651                 print("");
652                 show_message("Config written to " .. conf_filename);
653                 return nil, conf_filename;
654         else
655                 show_usage("cert config HOSTNAME [HOSTNAME+]", "Builds a certificate config file covering the supplied hostname(s)")
656         end
657 end
658
659 function cert_commands.key(arg)
660         if #arg >= 1 and arg[1] ~= "--help" then
661                 local key_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".key";
662                 if ask_overwrite(key_filename) then
663                         return nil, key_filename;
664                 end
665                 os.remove(key_filename); -- We chmod this file to not have write permissions
666                 local key_size = tonumber(arg[2] or show_prompt("Choose key size (2048):") or 2048);
667                 if openssl.genrsa{out=key_filename, key_size} then
668                         os.execute(("chmod 400 '%s'"):format(key_filename));
669                         show_message("Key written to ".. key_filename);
670                         return nil, key_filename;
671                 end
672                 show_message("There was a problem, see OpenSSL output");
673         else
674                 show_usage("cert key HOSTNAME <bits>", "Generates a RSA key named HOSTNAME.key\n "
675                 .."Promps for a key size if none given")
676         end
677 end
678
679 function cert_commands.request(arg)
680         if #arg >= 1 and arg[1] ~= "--help" then
681                 local req_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".req";
682                 if ask_overwrite(req_filename) then
683                         return nil, req_filename;
684                 end
685                 local _, key_filename = cert_commands.key({arg[1]});
686                 local _, conf_filename = cert_commands.config(arg);
687                 if openssl.req{new=true, key=key_filename, utf8=true, config=conf_filename, out=req_filename} then
688                         show_message("Certificate request written to ".. req_filename);
689                 else
690                         show_message("There was a problem, see OpenSSL output");
691                 end
692         else
693                 show_usage("cert request HOSTNAME [HOSTNAME+]", "Generates a certificate request for the supplied hostname(s)")
694         end
695 end
696
697 function cert_commands.generate(arg)
698         if #arg >= 1 and arg[1] ~= "--help" then
699                 local cert_filename = (CFG_DATADIR or ".") .. "/" .. arg[1] .. ".cert";
700                 if ask_overwrite(cert_filename) then
701                         return nil, conf_filename;
702                 end
703                 local _, key_filename = cert_commands.key({arg[1]});
704                 local _, conf_filename = cert_commands.config(arg);
705                 local ret;
706                 if key_filename and conf_filename and cert_filename
707                         and openssl.req{new=true, x509=true, nodes=true, key=key_filename,
708                                 days=365, sha1=true, utf8=true, config=conf_filename, out=cert_filename} then
709                         show_message("Certificate written to ".. cert_filename);
710                 else
711                         show_message("There was a problem, see OpenSSL output");
712                 end
713         else
714                 show_usage("cert generate HOSTNAME [HOSTNAME+]", "Generates a self-signed certificate for the current hostname(s)")
715         end
716 end
717
718 function commands.cert(arg)
719         if #arg >= 1 and arg[1] ~= "--help" then
720                 local subcmd = table.remove(arg, 1);
721                 if type(cert_commands[subcmd]) == "function" then
722                         if not arg[1] then
723                                 show_message"You need to supply at least one hostname"
724                                 arg = { "--help" };
725                         end
726                         if arg[1] ~= "--help" and not hosts[arg[1]] then
727                                 show_message(error_messages["no-such-host"]);
728                                 return
729                         end
730                         return cert_commands[subcmd](arg);
731                 end
732         end
733         show_usage("cert config|request|generate|key", "Helpers for generating X.509 certificates and keys.")
734 end
735
736 ---------------------
737
738 if command and command:match("^mod_") then -- Is a command in a module
739         local module_name = command:match("^mod_(.+)");
740         local ret, err = modulemanager.load("*", module_name);
741         if not ret then
742                 show_message("Failed to load module '"..module_name.."': "..err);
743                 os.exit(1);
744         end
745         
746         table.remove(arg, 1);
747         
748         local module = modulemanager.get_module("*", module_name);
749         if not module then
750                 show_message("Failed to load module '"..module_name.."': Unknown error");
751                 os.exit(1);
752         end
753         
754         if not modulemanager.module_has_method(module, "command") then
755                 show_message("Fail: mod_"..module_name.." does not support any commands");
756                 os.exit(1);
757         end
758         
759         local ok, ret = modulemanager.call_module_method(module, "command", arg);
760         if ok then
761                 if type(ret) == "number" then
762                         os.exit(ret);
763                 elseif type(ret) == "string" then
764                         show_message(ret);
765                 end
766                 os.exit(0); -- :)
767         else
768                 show_message("Failed to execute command: "..error_messages[ret]);
769                 os.exit(1); -- :(
770         end
771 end
772
773 if not commands[command] then -- Show help for all commands
774         function show_usage(usage, desc)
775                 print(" "..usage);
776                 print("    "..desc);
777         end
778
779         print("prosodyctl - Manage a Prosody server");
780         print("");
781         print("Usage: "..arg[0].." COMMAND [OPTIONS]");
782         print("");
783         print("Where COMMAND may be one of:\n");
784
785         local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" };
786         local commands_order = { "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", "about" };
787
788         local done = {};
789
790         for _, command_name in ipairs(commands_order) do
791                 local command = commands[command_name];
792                 if command then
793                         command{ "--help" };
794                         print""
795                         done[command_name] = true;
796                 end
797         end
798
799         for command_name, command in pairs(commands) do
800                 if not done[command_name] and not hidden_commands:contains(command_name) then
801                         command{ "--help" };
802                         print""
803                         done[command_name] = true;
804                 end
805         end
806         
807         
808         os.exit(0);
809 end
810
811 os.exit(commands[command]({ select(2, unpack(arg)) }));