2 * Copyright (C) 1997 Andre Noll <maan@tuebingen.mpg.de>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file daemon.c Some helpers for programs that detach from the console. */
11 #include <sys/types.h> /* getgrnam() */
20 /** The internal state of the daemon. */
22 /** See \ref daemon_flags. */
24 /** Set by \ref daemon_set_logfile(). */
26 /** Current loglevel, see \ref daemon_set_loglevel(). */
28 /** Used by \ref server_uptime() and \ref uptime_str(). */
30 /** The file pointer if the logfile is open. */
32 /** Used by para_log() if \p DF_LOG_HOSTNAME is set. */
34 /** Used for colored log messages. */
35 char log_colors
[NUM_LOGLEVELS
][COLOR_MAXLEN
];
38 static struct daemon the_daemon
, *me
= &the_daemon
;
40 static void daemon_set_default_log_colors(void)
43 static const char *default_log_colors
[NUM_LOGLEVELS
] = {
44 [LL_DEBUG
] = "normal",
46 [LL_NOTICE
] = "normal",
47 [LL_WARNING
] = "yellow",
49 [LL_CRIT
] = "magenta bold",
50 [LL_EMERG
] = "red bold",
52 for (i
= 0; i
< NUM_LOGLEVELS
; i
++)
53 color_parse_or_die(default_log_colors
[i
], me
->log_colors
[i
]);
57 * Set the color for one loglevel.
59 * arg must be of the form "ll:[fg [bg]] [attr]".
61 static void daemon_set_log_color_or_die(char const *arg
)
63 char *p
= strchr(arg
, ':');
68 ret
= get_loglevel_by_name(arg
);
73 color_parse_or_die(p
, me
->log_colors
[ll
]);
76 PARA_EMERG_LOG("%s: color syntax error\n", arg
);
81 * Initialize color mode if necessary.
83 * \param color_arg The argument given to --color.
84 * \param color_arg_auto The value for automatic color detection.
85 * \param color_arg_no The value to disable colored log messages.
86 * \param logfile_given In auto mode colors are disabled if this value is true.
87 * \param log_color_argv Color specifiers given to --log-color.
88 * \param argc Number of color specifiers in \a log_color_argv.
90 * If \a color_arg equals \a color_arg_no, color mode is disabled, i.e., calls
91 * to \a para_log() will not produce colored output. If \a color_arg == \a
92 * color_arg_auto, the function autodetects whether to activate colors.
93 * Otherwise color mode is enabled.
95 * If color mode is to be enabled, the strings in \a log_color_argv are parsed
96 * and the color scheme is updated accordingly. For each loglevel, the default
97 * colors apply if there is no log_color_argv for this loglevel.
99 void daemon_init_colors_or_die(int color_arg
, int color_arg_auto
,
100 int color_arg_no
, bool logfile_given
, char **log_color_argv
,
105 if (color_arg
== color_arg_no
)
107 if (color_arg
== color_arg_auto
) {
110 if (!isatty(STDERR_FILENO
))
113 daemon_set_flag(DF_COLOR_LOG
);
114 daemon_set_default_log_colors();
115 for (i
= 0; i
< argc
; i
++)
116 daemon_set_log_color_or_die(log_color_argv
[i
]);
120 * Init or change the name of the log file.
122 * \param logfile_name The full path of the logfile.
124 void daemon_set_logfile(char *logfile_name
)
126 free(me
->logfile_name
);
127 me
->logfile_name
= NULL
;
129 me
->logfile_name
= para_strdup(logfile_name
);
133 * Suppress log messages with severity lower than the given loglevel.
135 * \param loglevel The smallest level that should be logged.
137 void daemon_set_loglevel(char *loglevel
)
139 int ret
= get_loglevel_by_name(loglevel
);
146 * Set one of the daemon config flags.
148 * \param flag The flag to set.
150 * \sa \ref daemon_flags.
152 void daemon_set_flag(unsigned flag
)
157 static bool daemon_test_flag(unsigned flag
)
159 return me
->flags
& flag
;
162 static void dummy_sighandler(__a_unused
int s
)
167 * Do the usual stuff to become a daemon.
169 * \param parent_waits Whether the parent process should pause before exit.
171 * Fork, become session leader, cd to /, and dup fd 0, 1, 2 to /dev/null. If \a
172 * parent_waits is false, the parent process terminates immediately.
173 * Otherwise, it calls pause() to sleep until it receives \p SIGTERM or \p
174 * SIGCHLD and exits successfully thereafter. This behaviour is useful if the
175 * daemon process should not detach from the console until the child process
176 * has completed its setup.
178 * \sa fork(2), setsid(2), dup(2), pause(2).
180 void daemonize(bool parent_waits
)
185 PARA_INFO_LOG("daemonizing\n");
191 signal(SIGTERM
, dummy_sighandler
);
192 signal(SIGCHLD
, dummy_sighandler
);
195 exit(EXIT_SUCCESS
); /* parent exits */
197 /* become session leader */
202 null
= open("/dev/null", O_RDWR
);
205 if (dup2(null
, STDIN_FILENO
) < 0)
207 if (dup2(null
, STDOUT_FILENO
) < 0)
209 if (dup2(null
, STDERR_FILENO
) < 0)
214 PARA_EMERG_LOG("fatal: %s\n", strerror(errno
));
219 * Close the log file of the daemon.
221 void daemon_close_log(void)
225 PARA_INFO_LOG("closing logfile\n");
231 * fopen() the logfile in append mode.
233 * \return Either succeeds or exits.
235 void daemon_open_log_or_die(void)
238 if (!me
->logfile_name
)
240 me
->logfile
= fopen(me
->logfile_name
, "a");
242 PARA_EMERG_LOG("can not open %s: %s\n", me
->logfile_name
,
246 /* equivalent to setlinebuf(), but portable */
247 setvbuf(me
->logfile
, NULL
, _IOLBF
, 0);
251 * Log the startup message containing the paraslash version.
253 void daemon_log_welcome(const char *whoami
)
255 PARA_INFO_LOG("welcome to %s " PACKAGE_VERSION
" ("BUILD_DATE
")\n",
260 * Give up superuser privileges.
262 * \param username The user to switch to.
263 * \param groupname The group to switch to.
265 * This function returns immediately if not invoked with EUID zero. Otherwise,
266 * it tries to obtain the GID of \a groupname and the UID of \a username. On
267 * success, effective and real GID/UID and the saved set-group-ID/set-user-ID
268 * are all set accordingly. On errors, an appropriate message is logged and
269 * exit() is called to terminate the process.
271 * \sa getpwnam(3), getuid(2), setuid(2), getgrnam(2), setgid(2)
273 void daemon_drop_privileges_or_die(const char *username
, const char *groupname
)
281 struct group
*g
= getgrnam(groupname
);
283 PARA_EMERG_LOG("failed to get group %s: %s\n",
284 groupname
, strerror(errno
));
287 if (setgid(g
->gr_gid
) < 0) {
288 PARA_EMERG_LOG("failed to set group id %d: %s\n",
289 (int)g
->gr_gid
, strerror(errno
));
294 PARA_EMERG_LOG("root privileges, but no user option given\n");
297 tmp
= para_strdup(username
);
301 PARA_EMERG_LOG("%s: no such user\n", username
);
304 PARA_INFO_LOG("dropping root privileges\n");
305 if (setuid(p
->pw_uid
) < 0) {
306 PARA_EMERG_LOG("failed to set effective user ID (%s)",
310 PARA_DEBUG_LOG("uid: %d, euid: %d\n", (int)getuid(), (int)geteuid());
314 * Set the startup time.
316 * This should be called once on startup. It sets the start time to the
317 * current time. The stored time is used for retrieving the server uptime.
319 * \sa time(2), \ref daemon_get_uptime(), \ref daemon_get_uptime_str().
321 void daemon_set_start_time(void)
323 time(&me
->startuptime
);
329 * \param current_time The current time.
331 * The \a current_time pointer may be \p NULL. In this case the function
332 * obtains the current time from the system.
334 * \return This returns the server uptime in seconds, i.e. the difference
335 * between the current time and the value stored previously via \ref
336 * daemon_set_start_time().
338 time_t daemon_get_uptime(const struct timeval
*current_time
)
343 return current_time
->tv_sec
- me
->startuptime
;
345 return difftime(t
, me
->startuptime
);
349 * Construct a string containing the current uptime.
351 * \param current_time See a \ref daemon_get_uptime().
353 * \return A dynamically allocated string of the form "days:hours:minutes".
357 __malloc
char *daemon_get_uptime_str(const struct timeval
*current_time
)
359 long t
= daemon_get_uptime(current_time
);
360 return make_message("%li:%02li:%02li", t
/ 86400,
361 (t
/ 3600) % 24, (t
/ 60) % 60);
365 * The log function for para_server and para_audiod.
367 * \param ll The log level.
368 * \param fmt The format string describing the log message.
370 __printf_2_3
void daemon_log(int ll
, const char* fmt
,...)
376 bool log_time
= daemon_test_flag(DF_LOG_TIME
), log_timing
=
377 daemon_test_flag(DF_LOG_TIMING
);
379 ll
= PARA_MIN(ll
, NUM_LOGLEVELS
- 1);
380 ll
= PARA_MAX(ll
, LL_DEBUG
);
381 if (ll
< me
->loglevel
)
384 fp
= me
->logfile
? me
->logfile
: stderr
;
385 color
= daemon_test_flag(DF_COLOR_LOG
)? me
->log_colors
[ll
] : NULL
;
387 fprintf(fp
, "%s", color
);
388 if (log_time
|| log_timing
) {
390 clock_get_realtime(&tv
);
391 if (daemon_test_flag(DF_LOG_TIME
)) { /* print date and time */
392 time_t t1
= tv
.tv_sec
;
395 strftime(str
, sizeof(str
), "%b %d %H:%M:%S", tm
);
396 fprintf(fp
, "%s%s", str
, log_timing
? ":" : " ");
398 if (log_timing
) /* print milliseconds */
399 fprintf(fp
, "%04lu ", (long unsigned)tv
.tv_usec
/ 1000);
401 if (daemon_test_flag(DF_LOG_HOSTNAME
)) {
403 me
->hostname
= para_hostname();
404 fprintf(fp
, "%s ", me
->hostname
);
406 if (daemon_test_flag(DF_LOG_LL
)) /* log loglevel */
407 fprintf(fp
, "(%d) ", ll
);
408 if (daemon_test_flag(DF_LOG_PID
)) { /* log pid */
409 pid_t mypid
= getpid();
410 fprintf(fp
, "(%d) ", (int)mypid
);
413 vfprintf(fp
, fmt
, argp
);
416 fprintf(fp
, "%s", COLOR_RESET
);