1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
local want_pposix_version = "0.3.0";
local pposix = assert(require "util.pposix");
if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end
local signal = select(2, pcall(require, "util.signal"));
if type(signal) == "string" then
log("warn", "Couldn't load signal library, won't respond to SIGTERM");
end
local config_get = require "core.configmanager".get;
local logger_set = require "util.logger".setwriter;
module.host = "*"; -- we're a global module
local function write_pidfile()
local pidfile = config.get("*", "core", "pidfile");
if pidfile then
local pf, err = io.open(pidfile, "w+");
if not pf then
log("error", "Couldn't write pidfile; %s", err);
else
pf:write(tostring(pposix.getpid()));
pf:close();
end
end
end
local logfilename = config_get("*", "core", "log");
if logfilename == "syslog" then
pposix.syslog_open("prosody");
pposix.syslog_setminlevel(config.get("*", "core", "minimum_log_level") or "info");
local syslog, format = pposix.syslog_log, string.format;
logwriter = function (name, level, message, ...)
if ... then
syslog(level, format(message, ...));
else
syslog(level, message);
end
end;
elseif logfilename then
local logfile = io.open(logfilename, "a+");
if logfile then
local write, format, flush = logfile.write, string.format, logfile.flush;
logwriter = function (name, level, message, ...)
if ... then
write(logfile, name, "\t", level, "\t", format(message, ...), "\n");
else
write(logfile, name, "\t" , level, "\t", message, "\n");
end
flush(logfile);
end;
end
else
log("debug", "No logging specified, will continue with default");
end
if logwriter then
local ok, ret = logger_set(logwriter);
if not ok then
log("error", "Couldn't set new log output: %s", ret);
end
end
if not config_get("*", "core", "no_daemonize") then
local function daemonize_server()
local logwriter;
local ok, ret = pposix.daemonize();
if not ok then
log("error", "Failed to daemonize: %s", ret);
elseif ret and ret > 0 then
os.exit(0);
else
log("info", "Successfully daemonized to PID %d", pposix.getpid());
write_pidfile();
end
end
module:add_event_hook("server-starting", daemonize_server);
else
write_pidfile();
-- Not going to daemonize, but let's write the pidfile anyway
end
-- Set signal handler
if signal.signal then
signal.signal("SIGTERM", function ()
log("warn", "Received SIGTERM...");
unlock_globals();
if prosody_shutdown then
prosody_shutdown("Received SIGTERM");
else
log("warn", "...no prosody_shutdown(), ignoring.");
end
lock_globals();
end);
end
|