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