Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
DAEMON(7) | Miscellaneous Information Manual | DAEMON(7) |
NAME
daemon
—
system background process
DESCRIPTION
A daemon is a system background process that performs a task or continuously provides a service. init(8) starts daemons on system startup per the init(5) configuration and stops them on system shutdown. Conventions for daemons have varied between traditional init systems and this document describes the modern design of daemons suitable for this operating system. Daemons should default to the behavior described below, or offer the behavior through options if they need to be compatible with historic default behavior. A daemon is implemented as a system program, usually in /sbin inside the appropriate prefix, whose name conventionally is the name of the service it implements plus the letter d (as opposed to a client program). Its runtime dependencies on other daemons are declared ahead of time in the init system's configuration, so the daemons can be started in the right order. The process will be started per the init system's configuration with the appropriate command line arguments, environment variables, working directory, user, group, and so on. The process must remain in the foreground such that init(8) can manage its lifetime. It must not fork(2) to become a background process and escape the init system. The process should have no need to escape the controlling terminal by starting a new session using setsid(2). Daemons should not write a pid file but instead be administered through the init system. Logs should be written to the standard error as it is non-buffered and is meant to contain messages that are not process output. Alternatively logs may be written to the standard output. The standard output may be the same file description as the standard error. The standard input should not be used and will be /dev/null. The log entries should be formatted as plain line; or if the program wants to supply additional meta data, one of the log formats described in init(5) or the syslog format. syslog(3) is discouraged but may be used if the program has additional meta data. On this operating system, syslog(3) will write the log entry to the standard error instead of sending it to a centralized log service, which is unreliable on other operating systems. Daemons should prefer letting the init system manage the log files but may provide their own logging as appropriate. The process may be executed as root per the init system configuration. Privileges should be dropped after acquiring the needed protected resources. The main loop should run with the least privileges required, ideally as another user, potentially in a chroot(2) or sandboxed environment. Continuous daemons providing a service should signal their readiness once the main loop is serving requests, such that the init system will start dependent daemons. Unfortunately there is no portable convention and this operating system uses theREADYFD
environment
variable containing a file descriptor pointing to a writing pipe, where the
daemon must write a newline upon readiness. Alternatively closing the pipe is
considered readiness as a discouraged fallback.
The process must exit 0 if the daemon has concluded its work and exit non-zero
in the case of errors. The daemon may be restarted by the init system upon
error per the configuration.
The process must exit unconditionally when sent
SIGTERM
and should gracefully conclude its
work immediately and recursively terminate any child processes. In this case,
dying by the SIGTERM
signal is considered a
successful exit. The process is killed with
SIGKILL
if it does not gracefully terminate
within a high system-specific timeout.
EXAMPLES
A daemon can signal readiness using this utility function:static void ready(void) { const char *readyfd_env = getenv("READYFD"); if ( !readyfd_env ) return; int readyfd = atoi(readyfd_env); char c = '\n'; write(readyfd, &c, 1); close(readyfd); unsetenv("READYFD"); }
SEE ALSO
init(5), init(8)September 19, 2022 | Debian |