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() */
14 #include <sys/resource.h>
21 /** The internal state of the daemon. */
23 /** See \ref daemon_flags. */
25 /** Set by \ref daemon_set_logfile(). */
27 /** Current loglevel, see \ref daemon_set_loglevel(). */
29 /** Used by \ref server_uptime() and \ref uptime_str(). */
31 /** The file pointer if the logfile is open. */
33 /** Used by para_log() if \p DF_LOG_HOSTNAME is set. */
35 /** Used for colored log messages. */
36 char log_colors
[NUM_LOGLEVELS
][COLOR_MAXLEN
];
39 static struct daemon the_daemon
, *me
= &the_daemon
;
41 static void daemon_set_default_log_colors(void)
44 static const char *default_log_colors
[NUM_LOGLEVELS
] = {
45 [LL_DEBUG
] = "normal",
47 [LL_NOTICE
] = "normal",
48 [LL_WARNING
] = "yellow",
50 [LL_CRIT
] = "magenta bold",
51 [LL_EMERG
] = "red bold",
53 for (i
= 0; i
< NUM_LOGLEVELS
; i
++)
54 color_parse_or_die(default_log_colors
[i
], me
->log_colors
[i
]);
58 * Set the color for one loglevel.
60 * \param arg Must be of the form "ll:[fg [bg]] [attr]".
62 void daemon_set_log_color_or_die(const char *arg
)
64 char *p
= strchr(arg
, ':');
69 ret
= get_loglevel_by_name(arg
);
74 color_parse_or_die(p
, me
->log_colors
[ll
]);
77 PARA_EMERG_LOG("%s: invalid color argument\n", arg
);
82 * Initialize color mode if necessary.
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.
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.
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().
97 * \return Whether colors have been enabled by the function.
99 bool daemon_init_colors_or_die(int color_arg
, int color_arg_auto
,
100 int color_arg_no
, bool logfile_given
)
102 if (color_arg
== color_arg_no
)
104 if (color_arg
== color_arg_auto
) {
107 if (!isatty(STDERR_FILENO
))
110 daemon_set_flag(DF_COLOR_LOG
);
111 daemon_set_default_log_colors();
116 * Init or change the name of the log file.
118 * \param logfile_name The full path of the logfile.
120 void daemon_set_logfile(const char *logfile_name
)
122 free(me
->logfile_name
);
123 me
->logfile_name
= NULL
;
125 me
->logfile_name
= para_strdup(logfile_name
);
129 * Suppress log messages with severity lower than the given loglevel.
131 * \param loglevel The smallest level that should be logged.
133 void daemon_set_loglevel(const char *loglevel
)
135 int ret
= get_loglevel_by_name(loglevel
);
142 * Set one of the daemon config flags.
144 * \param flag The flag to set.
146 * \sa \ref daemon_flags.
148 void daemon_set_flag(unsigned flag
)
153 static bool daemon_test_flag(unsigned flag
)
155 return me
->flags
& flag
;
159 * Do the usual stuff to become a daemon.
161 * \param parent_waits Whether the parent process should pause before exit.
163 * Fork, become session leader, cd to /, and dup fd 0, 1, 2 to /dev/null. If \a
164 * parent_waits is false, the parent process terminates immediately.
165 * Otherwise, a pipe is created prior to the fork() and the parent tries to
166 * read a single byte from the reading end of the pipe. The child is supposed
167 * to write to the writing end of the pipe after it completed its setup
168 * procedure successfully. This behaviour is useful to let the parent process
169 * die with an error if the child process aborts early, since in this case the
170 * read() will return non-positive.
172 * \return This function either succeeds or calls exit(3). If parent_waits is
173 * true, the return value is the file descriptor of the writing end of the
174 * pipe. Otherwise the function returns zero.
176 * \sa fork(2), setsid(2), dup(2), pause(2).
178 int daemonize(bool parent_waits
)
181 int null
, pipe_fd
[2];
183 if (parent_waits
&& pipe(pipe_fd
) < 0)
185 PARA_INFO_LOG("subsequent log messages go to %s\n", me
->logfile_name
?
186 me
->logfile_name
: "/dev/null");
190 if (pid
) { /* parent exits */
194 exit(read(pipe_fd
[0], &c
, 1) <= 0?
195 EXIT_FAILURE
: EXIT_SUCCESS
);
201 /* become session leader */
206 null
= open("/dev/null", O_RDWR
);
209 if (dup2(null
, STDIN_FILENO
) < 0)
211 if (dup2(null
, STDOUT_FILENO
) < 0)
213 if (dup2(null
, STDERR_FILENO
) < 0)
216 return parent_waits
? pipe_fd
[1] : 0;
218 PARA_EMERG_LOG("fatal: %s\n", strerror(errno
));
223 * Close the log file of the daemon.
225 void daemon_close_log(void)
229 PARA_INFO_LOG("closing logfile\n");
235 * fopen() the logfile in append mode.
237 * \return Either succeeds or exits.
239 void daemon_open_log_or_die(void)
242 if (!me
->logfile_name
)
244 me
->logfile
= fopen(me
->logfile_name
, "a");
246 PARA_EMERG_LOG("can not open %s: %s\n", me
->logfile_name
,
250 /* equivalent to setlinebuf(), but portable */
251 setvbuf(me
->logfile
, NULL
, _IOLBF
, 0);
255 * Log the startup message containing the paraslash version.
257 * \param name The name of the executable.
259 * First the given \a name is prefixed with the string "para_". Next the git
260 * version is appended. The resulting string is logged with priority "INFO".
262 void daemon_log_welcome(const char *name
)
264 PARA_INFO_LOG("welcome to para_%s-" PACKAGE_VERSION
" \n", name
);
268 * Renice the calling process.
270 * \param prio The priority value to set.
272 * Errors are not considered fatal, but a warning message is logged if the
273 * underlying call to setpriority(2) fails.
275 void daemon_set_priority(int prio
)
277 if (setpriority(PRIO_PROCESS
, 0, prio
) < 0)
278 PARA_WARNING_LOG("could not set priority to %d: %s\n", prio
,
283 * Give up superuser privileges.
285 * \param username The user to switch to.
286 * \param groupname The group to switch to.
288 * This function returns immediately if not invoked with EUID zero. Otherwise,
289 * it tries to obtain the GID of \a groupname and the UID of \a username. On
290 * success, effective and real GID/UID and the saved set-group-ID/set-user-ID
291 * are all set accordingly. On errors, an appropriate message is logged and
292 * exit() is called to terminate the process.
294 * \sa getpwnam(3), getuid(2), setuid(2), getgrnam(2), setgid(2)
296 void daemon_drop_privileges_or_die(const char *username
, const char *groupname
)
304 struct group
*g
= getgrnam(groupname
);
306 PARA_EMERG_LOG("failed to get group %s: %s\n",
307 groupname
, strerror(errno
));
310 if (setgid(g
->gr_gid
) < 0) {
311 PARA_EMERG_LOG("failed to set group id %d: %s\n",
312 (int)g
->gr_gid
, strerror(errno
));
317 PARA_EMERG_LOG("root privileges, but no user option given\n");
320 tmp
= para_strdup(username
);
324 PARA_EMERG_LOG("%s: no such user\n", username
);
327 PARA_INFO_LOG("dropping root privileges\n");
328 if (setuid(p
->pw_uid
) < 0) {
329 PARA_EMERG_LOG("failed to set effective user ID (%s)",
333 PARA_DEBUG_LOG("uid: %d, euid: %d\n", (int)getuid(), (int)geteuid());
337 * Set the startup time.
339 * This should be called once on startup. It sets the start time to the
340 * current time. The stored time is used for retrieving the server uptime.
342 * \sa time(2), \ref daemon_get_uptime(), \ref daemon_get_uptime_str().
344 void daemon_set_start_time(void)
346 time(&me
->startuptime
);
352 * \param current_time The current time.
354 * The \a current_time pointer may be \p NULL. In this case the function
355 * obtains the current time from the system.
357 * \return This returns the server uptime in seconds, i.e. the difference
358 * between the current time and the value stored previously via \ref
359 * daemon_set_start_time().
361 time_t daemon_get_uptime(const struct timeval
*current_time
)
366 return current_time
->tv_sec
- me
->startuptime
;
368 return difftime(t
, me
->startuptime
);
372 * Construct a string containing the current uptime.
374 * \param current_time See a \ref daemon_get_uptime().
376 * \return A dynamically allocated string of the form "days:hours:minutes".
380 __malloc
char *daemon_get_uptime_str(const struct timeval
*current_time
)
382 long t
= daemon_get_uptime(current_time
);
383 return make_message("%li:%02li:%02li", t
/ 86400,
384 (t
/ 3600) % 24, (t
/ 60) % 60);
388 * The log function for para_server and para_audiod.
390 * \param ll The log level.
391 * \param fmt The format string describing the log message.
393 __printf_2_3
void daemon_log(int ll
, const char* fmt
,...)
399 bool log_time
= daemon_test_flag(DF_LOG_TIME
), log_timing
=
400 daemon_test_flag(DF_LOG_TIMING
);
402 ll
= PARA_MIN(ll
, NUM_LOGLEVELS
- 1);
403 ll
= PARA_MAX(ll
, LL_DEBUG
);
404 if (ll
< me
->loglevel
)
407 fp
= me
->logfile
? me
->logfile
: stderr
;
408 color
= daemon_test_flag(DF_COLOR_LOG
)? me
->log_colors
[ll
] : NULL
;
410 fprintf(fp
, "%s", color
);
411 if (log_time
|| log_timing
) {
413 clock_get_realtime(&tv
);
414 if (daemon_test_flag(DF_LOG_TIME
)) { /* print date and time */
415 time_t t1
= tv
.tv_sec
;
418 strftime(str
, sizeof(str
), "%b %d %H:%M:%S", tm
);
419 fprintf(fp
, "%s%s", str
, log_timing
? ":" : " ");
421 if (log_timing
) /* print milliseconds */
422 fprintf(fp
, "%04lu ", (long unsigned)tv
.tv_usec
/ 1000);
424 if (daemon_test_flag(DF_LOG_HOSTNAME
)) {
426 me
->hostname
= para_hostname();
427 fprintf(fp
, "%s ", me
->hostname
);
429 if (daemon_test_flag(DF_LOG_LL
)) /* log loglevel */
430 fprintf(fp
, "(%d) ", ll
);
431 if (daemon_test_flag(DF_LOG_PID
)) { /* log pid */
432 pid_t mypid
= getpid();
433 fprintf(fp
, "(%d) ", (int)mypid
);
436 vfprintf(fp
, fmt
, argp
);
439 fprintf(fp
, "%s", COLOR_RESET
);