flacdec: Switch to the alternative post select method.
[paraslash.git] / daemon.c
1 /*
2  * Copyright (C) 1997-2013 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file daemon.c Some helpers for programs that detach from the console. */
8
9 #include <regex.h>
10 #include <pwd.h>
11 #include <sys/types.h> /* getgrnam() */
12 #include <grp.h>
13 #include <signal.h>
14
15 #include "para.h"
16 #include "daemon.h"
17 #include "string.h"
18 #include "color.h"
19
20 /** The internal state of the daemon. */
21 struct daemon {
22         /** See \ref daemon_flags. */
23         unsigned flags;
24         /** Set by \ref daemon_set_logfile(). */
25         char *logfile_name;
26         /** Current loglevel, see \ref daemon_set_loglevel(). */
27         int loglevel;
28         /** Used by \ref server_uptime() and \ref uptime_str(). */
29         time_t startuptime;
30         /** The file pointer if the logfile is open. */
31         FILE *logfile;
32         /** Used by para_log() if \p DF_LOG_HOSTNAME is set. */
33         char *hostname;
34         /** Used for colored log messages. */
35         char log_colors[NUM_LOGLEVELS][COLOR_MAXLEN];
36 };
37
38 static struct daemon the_daemon, *me = &the_daemon;
39
40 /**
41  * Activate default log colors.
42  *
43  * This should be called early if color support is wanted.
44  */
45 void daemon_set_default_log_colors(void)
46 {
47         int i;
48         static const char *default_log_colors[NUM_LOGLEVELS] = {
49                 [LL_DEBUG] = "normal",
50                 [LL_INFO] = "normal",
51                 [LL_NOTICE] = "normal",
52                 [LL_WARNING] = "yellow",
53                 [LL_ERROR] = "red",
54                 [LL_CRIT] = "magenta bold",
55                 [LL_EMERG] = "red bold",
56         };
57         for (i = 0; i < NUM_LOGLEVELS; i++)
58                 color_parse_or_die(default_log_colors[i], me->log_colors[i]);
59 }
60
61 /**
62  * Set the color for one loglevel.
63  *
64  * \param arg The loglevel/color specifier.
65  *
66  * \a arg must be of the form "ll:[fg [bg]] [attr]".
67  */
68 void daemon_set_log_color_or_die(char const *arg)
69 {
70         char *p = strchr(arg, ':');
71         int ret, ll;
72
73         if (!p)
74                 goto err;
75         ret = get_loglevel_by_name(arg);
76         if (ret < 0)
77                 goto err;
78         ll = ret;
79         p++;
80         color_parse_or_die(p, me->log_colors[ll]);
81         return;
82 err:
83         PARA_EMERG_LOG("%s: color syntax error\n", arg);
84         exit(EXIT_FAILURE);
85 }
86
87 /**
88  * Init or change the name of the log file.
89  *
90  * \param logfile_name The full path of the logfile.
91  */
92 void daemon_set_logfile(char *logfile_name)
93 {
94         free(me->logfile_name);
95         me->logfile_name = NULL;
96         if (logfile_name)
97                 me->logfile_name = para_strdup(logfile_name);
98 }
99
100 /**
101  * Suppress log messages with severity lower than the given loglevel.
102  *
103  * \param loglevel The smallest level that should be logged.
104  */
105 void daemon_set_loglevel(char *loglevel)
106 {
107         int ret = get_loglevel_by_name(loglevel);
108
109         assert(ret >= 0);
110         me->loglevel = ret;
111 }
112
113 /**
114  * Set one of the daemon config flags.
115  *
116  * \param flag The flag to set.
117  *
118  * \sa \ref daemon_flags.
119  */
120 void daemon_set_flag(unsigned flag)
121 {
122         me->flags |= flag;
123 }
124
125 /**
126  * Clear one of the daemon config flags.
127  *
128  * \param flag The flag to clear.
129  *
130  * \sa \ref daemon_flags.
131  */
132 void daemon_clear_flag(unsigned flag)
133 {
134         me->flags &= ~flag;
135 }
136
137 static bool daemon_test_flag(unsigned flag)
138 {
139         return me->flags & flag;
140 }
141
142 static void dummy_sighandler(__a_unused int s)
143 {
144 }
145
146 /**
147  * Do the usual stuff to become a daemon.
148  *
149  * \param parent_waits Whether the parent process should pause before exit.
150  *
151  * Fork, become session leader, cd to /, and dup fd 0, 1, 2 to /dev/null. If \a
152  * parent_waits is false, the parent process terminates immediately.
153  * Otherwise, it calls pause() to sleep until it receives \p SIGTERM or \p
154  * SIGCHLD and exits successfully thereafter. This behaviour is useful if the
155  * daemon process should not detach from the console until the child process
156  * has completed its setup.
157  *
158  * \sa fork(2), setsid(2), dup(2), pause(2).
159  */
160 void daemonize(bool parent_waits)
161 {
162         pid_t pid;
163         int null;
164
165         PARA_INFO_LOG("daemonizing\n");
166         pid = fork();
167         if (pid < 0)
168                 goto err;
169         if (pid) {
170                 if (parent_waits) {
171                         signal(SIGTERM, dummy_sighandler);
172                         signal(SIGCHLD, dummy_sighandler);
173                         pause();
174                 }
175                 exit(EXIT_SUCCESS); /* parent exits */
176         }
177         /* become session leader */
178         if (setsid() < 0)
179                 goto err;
180         if (chdir("/") < 0)
181                 goto err;
182         null = open("/dev/null", O_RDONLY);
183         if (null < 0)
184                 goto err;
185         if (dup2(null, STDIN_FILENO) < 0)
186                 goto err;
187         if (dup2(null, STDOUT_FILENO) < 0)
188                 goto err;
189         if (dup2(null, STDERR_FILENO) < 0)
190                 goto err;
191         close(null);
192         return;
193 err:
194         PARA_EMERG_LOG("fatal: %s\n", strerror(errno));
195         exit(EXIT_FAILURE);
196 }
197
198 /**
199  * Close the log file of the daemon.
200  */
201 void daemon_close_log(void)
202 {
203         if (!me->logfile)
204                 return;
205         PARA_INFO_LOG("closing logfile\n");
206         fclose(me->logfile);
207         me->logfile = NULL;
208 }
209
210 /**
211  * fopen() the logfile in append mode.
212  *
213  * \return Either succeeds or exits.
214  */
215 void daemon_open_log_or_die(void)
216 {
217         daemon_close_log();
218         if (!me->logfile_name)
219                 return;
220         me->logfile = fopen(me->logfile_name, "a");
221         if (!me->logfile) {
222                 PARA_EMERG_LOG("can not open %s: %s\n", me->logfile_name,
223                         strerror(errno));
224                 exit(EXIT_FAILURE);
225         }
226         setlinebuf(me->logfile);
227 }
228
229 /**
230  * Log the startup message containing the paraslash version.
231  */
232 void log_welcome(const char *whoami)
233 {
234         PARA_INFO_LOG("welcome to %s " PACKAGE_VERSION " ("BUILD_DATE")\n",
235                 whoami);
236 }
237
238 /**
239  * Give up superuser privileges.
240  *
241  * \param username The user to switch to.
242  * \param groupname The group to switch to.
243  *
244  * This function returns immediately if not invoked with EUID zero. Otherwise,
245  * it tries to obtain the GID of \a groupname and the UID of \a username.  On
246  * success, effective and real GID/UID and the saved set-group-ID/set-user-ID
247  * are all set accordingly. On errors, an appropriate message is logged and
248  * exit() is called to terminate the process.
249  *
250  * \sa getpwnam(3), getuid(2), setuid(2), getgrnam(2), setgid(2)
251  */
252 void drop_privileges_or_die(const char *username, const char *groupname)
253 {
254         struct passwd *p;
255         char *tmp;
256
257         if (geteuid())
258                 return;
259         if (groupname) {
260                 struct group *g = getgrnam(groupname);
261                 if (!g) {
262                         PARA_EMERG_LOG("failed to get group %s: %s\n",
263                                 groupname, strerror(errno));
264                         exit(EXIT_FAILURE);
265                 }
266                 if (setgid(g->gr_gid) < 0) {
267                         PARA_EMERG_LOG("failed to set group id %d: %s\n",
268                                 (int)g->gr_gid, strerror(errno));
269                         exit(EXIT_FAILURE);
270                 }
271         }
272         if (!username) {
273                 PARA_EMERG_LOG("root privileges, but no user option given\n");
274                 exit(EXIT_FAILURE);
275         }
276         tmp = para_strdup(username);
277         p = getpwnam(tmp);
278         free(tmp);
279         if (!p) {
280                 PARA_EMERG_LOG("%s: no such user\n", username);
281                 exit(EXIT_FAILURE);
282         }
283         PARA_INFO_LOG("dropping root privileges\n");
284         if (setuid(p->pw_uid) < 0) {
285                 PARA_EMERG_LOG("failed to set effective user ID (%s)",
286                         strerror(errno));
287                 exit(EXIT_FAILURE);
288         }
289         PARA_DEBUG_LOG("uid: %d, euid: %d\n", (int)getuid(), (int)geteuid());
290 }
291
292 /**
293  * Set the server startup time.
294  *
295  * \param startuptime The value to store as the server start time.
296  *
297  * This should be called once on startup with \a startuptime either NULL or a
298  * pointer to a struct timeval which contains the current time. If \a
299  * startuptime is NULL, the server start time is set to the current time.
300  *
301  * \sa time(2), difftime(3) \ref get_server_uptime(), \ref
302  * get_server_uptime_str().
303  */
304 void set_server_start_time(const struct timeval *startuptime)
305 {
306         if (startuptime)
307                 me->startuptime = startuptime->tv_sec;
308         else
309                 time(&me->startuptime);
310 }
311
312 /**
313  * Get the server uptime.
314  *
315  * \param current_time The current time.
316  *
317  * The \a current_time pointer may be \p NULL. In this case the function
318  * obtains the current time from the system.
319  *
320  * \return This returns the server uptime in seconds, i.e. the difference
321  * between the current time and the value stored previously via \ref
322  * set_server_start_time().
323  */
324 time_t get_server_uptime(const struct timeval *current_time)
325 {
326         time_t t;
327
328         if (current_time)
329                 return current_time->tv_sec - me->startuptime;
330         time(&t);
331         return difftime(t, me->startuptime);
332 }
333
334 /**
335  * Construct a string containing the current uptime.
336  *
337  * \param current_time See a \ref get_server_uptime().
338  *
339  * \return A dynamically allocated string of the form "days:hours:minutes".
340  *
341  * \sa server_uptime.
342  */
343 __malloc char *get_server_uptime_str(const struct timeval *current_time)
344 {
345         long t = get_server_uptime(current_time);
346         return make_message("%li:%02li:%02li", t / 86400,
347                 (t / 3600) % 24, (t / 60) % 60);
348 }
349
350 /**
351  * The log function for para_server and para_audiod.
352  *
353  * \param ll The log level.
354  * \param fmt The format string describing the log message.
355  */
356 __printf_2_3 void daemon_log(int ll, const char* fmt,...)
357 {
358         va_list argp;
359         FILE *fp;
360         struct tm *tm;
361         char *color;
362         bool log_time = daemon_test_flag(DF_LOG_TIME), log_timing =
363                 daemon_test_flag(DF_LOG_TIMING);
364
365         ll = PARA_MIN(ll, NUM_LOGLEVELS - 1);
366         ll = PARA_MAX(ll, LL_DEBUG);
367         if (ll < me->loglevel)
368                 return;
369
370         fp = me->logfile? me->logfile : stderr;
371         color = daemon_test_flag(DF_COLOR_LOG)? me->log_colors[ll] : NULL;
372         if (color)
373                 fprintf(fp, "%s", color);
374         if (log_time || log_timing) {
375                 struct timeval tv;
376                 clock_get_realtime(&tv);
377                 if (daemon_test_flag(DF_LOG_TIME)) { /* print date and time */
378                         time_t t1 = tv.tv_sec;
379                         char str[100];
380                         tm = localtime(&t1);
381                         strftime(str, sizeof(str), "%b %d %H:%M:%S", tm);
382                         fprintf(fp, "%s%s", str, log_timing? ":" : " ");
383                 }
384                 if (log_timing) /* print milliseconds */
385                         fprintf(fp, "%04lu ", (long unsigned)tv.tv_usec / 1000);
386         }
387         if (daemon_test_flag(DF_LOG_HOSTNAME)) {
388                 if (!me->hostname)
389                         me->hostname = para_hostname();
390                 fprintf(fp, "%s ", me->hostname);
391         }
392         if (daemon_test_flag(DF_LOG_LL)) /* log loglevel */
393                 fprintf(fp, "(%d) ", ll);
394         if (daemon_test_flag(DF_LOG_PID)) { /* log pid */
395                 pid_t mypid = getpid();
396                 fprintf(fp, "(%d) ", (int)mypid);
397         }
398         va_start(argp, fmt);
399         vfprintf(fp, fmt, argp);
400         va_end(argp);
401         if (color)
402                 fprintf(fp, "%s", COLOR_RESET);
403 }