Kea
1.9.9-git
|
Base class for all services. More...
#include <daemon.h>
Public Member Functions | |
Daemon () | |
Default constructor. More... | |
virtual | ~Daemon () |
Destructor. More... | |
void | checkConfigFile () const |
Checks the configuration file name. More... | |
virtual void | cleanup () |
Performs final deconfiguration. More... | |
void | createPIDFile (int pid=0) |
Creates the PID file. More... | |
std::string | getConfigFile () const |
Returns config file name. More... | |
int | getExitValue () |
Fetches the exit value. More... | |
std::string | getPIDFileDir () const |
Returns the directory used when forming default PID file name. More... | |
std::string | getPIDFileName () const |
Returns the current PID file name. More... | |
virtual std::list< std::list< std::string > > | jsonPathsToRedact () const |
Return a list of all paths that contain passwords or secrets. More... | |
isc::data::ConstElementPtr | redactConfig (isc::data::ConstElementPtr const &config) |
Redact a configuration. More... | |
void | setConfigFile (const std::string &config_file) |
Sets the configuration file name. More... | |
void | setExitValue (int value) |
Sets the exit value. More... | |
void | setPIDFileDir (const std::string &pid_file_dir) |
Sets the PID file directory. More... | |
void | setPIDFileName (const std::string &pid_file_name) |
Sets PID file name. More... | |
virtual void | shutdown () |
Initiates shutdown procedure for the whole server. More... | |
virtual size_t | writeConfigFile (const std::string &config_file, isc::data::ConstElementPtr cfg=isc::data::ConstElementPtr()) const |
Writes current configuration to specified file. More... | |
Static Public Member Functions | |
static void | configureLogger (const isc::data::ConstElementPtr &log_config, const isc::process::ConfigPtr &storage) |
Configures logger. More... | |
static std::string | getDefaultLoggerName () |
Returns default logger name. More... | |
static std::string | getProcName () |
returns the process name This value is used as when forming the default PID file name More... | |
static bool | getVerbose () |
Returns if running in verbose mode. More... | |
static std::string | getVersion (bool extended) |
returns Kea version on stdout and exits. More... | |
static void | loggerInit (const char *log_name, bool verbose) |
Initializes logger. More... | |
static void | setDefaultLoggerName (const std::string &logger) |
Sets the default logger name. More... | |
static void | setProcName (const std::string &proc_name) |
Sets the process name. More... | |
static void | setVerbose (const bool verbose) |
Sets or clears verbose mode. More... | |
Protected Member Functions | |
std::string | makePIDFileName () const |
Manufacture the pid file name. More... | |
Protected Attributes | |
isc::asiolink::IOSignalSetPtr | signal_set_ |
A pointer to the object installing custom signal handlers. More... | |
boost::posix_time::ptime | start_ |
Timestamp of the start of the daemon. More... | |
Base class for all services.
This is the base class that all daemons (DHCPv4, DHCPv6, D2 and possibly others) are derived from. It provides a standard interface for starting up, reconfiguring, shutting down and several other operations. It also covers some common operations.
This class is not expected to be instantiated directly, but rather daemon implementations should derive from it.
Methods are not pure virtual, as we need to instantiate basic daemons (e.g. Dhcpv4Srv and Dhcpv6Srv) in tests, without going through the hassles of implementing stub methods.
isc::process::Daemon::Daemon | ( | ) |
|
virtual |
void isc::process::Daemon::checkConfigFile | ( | ) | const |
Checks the configuration file name.
BadValue | when the configuration file name is bad. |
Definition at line 115 of file daemon.cc.
References isc_throw, and isc::util::Filename::name().
Referenced by isc::process::DControllerBase::launch().
|
virtual |
Performs final deconfiguration.
Performs configuration backend specific final clean-up. This is called shortly before the daemon terminates. Depending on backend, it may terminate existing msgq session, close LDAP connection or similar.
The daemon is not expected to receive any further commands or configuration updates as it is in final stages of shutdown.
Reimplemented in isc::dhcp::ControlledDhcpv4Srv, and isc::dhcp::ControlledDhcpv6Srv.
|
static |
Configures logger.
Applies configuration stored in a top-level structure in the configuration file. This structure has a "loggers" array that contains 0 or more entries, each configuring one logging source (name, severity, debuglevel), each with zero or more outputs (file, maxsize, maximum number of files).
log_config | JSON structures that describe logging |
storage | configuration will be stored here |
Definition at line 66 of file daemon.cc.
References isc::process::LogConfigParser::parseConfiguration().
Referenced by isc::process::DControllerBase::configFromFile(), and isc::process::DControllerBase::configSetHandler().
void isc::process::Daemon::createPIDFile | ( | int | pid = 0 | ) |
Creates the PID file.
If the PID file name has not been previously set, the method uses manufacturePIDFileName() to set it. If the PID file name refers to an existing file whose contents are a PID whose process is still alive, the method will throw a DaemonPIDExists exception. Otherwise, the file created (or truncated) and the given pid (if not zero) is written to the file.
pid | PID to write to the file if not zero, otherwise the PID of the current process is used. |
Definition at line 203 of file daemon.cc.
References getPIDFileName(), isc_throw, makePIDFileName(), and setPIDFileName().
Referenced by isc::process::DControllerBase::launch(), and main().
std::string isc::process::Daemon::getConfigFile | ( | ) | const |
Returns config file name.
Definition at line 105 of file daemon.cc.
Referenced by isc::process::DControllerBase::checkConfigOnly(), isc::process::DControllerBase::configFromFile(), isc::process::DControllerBase::configWriteHandler(), and isc::process::DControllerBase::processSignal().
|
inlinestatic |
Returns default logger name.
Definition at line 207 of file daemon.h.
Referenced by isc::process::LoggingInfo::LoggingInfo().
|
inline |
Fetches the exit value.
Definition at line 220 of file daemon.h.
Referenced by isc::process::DControllerBase::launch(), isc::dhcp::Dhcpv6Srv::run(), and isc::dhcp::Dhcpv4Srv::run().
std::string isc::process::Daemon::getPIDFileDir | ( | ) | const |
std::string isc::process::Daemon::getPIDFileName | ( | ) | const |
Returns the current PID file name.
Definition at line 150 of file daemon.cc.
Referenced by createPIDFile().
|
static |
|
static |
Returns if running in verbose mode.
Definition at line 84 of file daemon.cc.
Referenced by isc::process::LoggingInfo::LoggingInfo().
|
static |
returns Kea version on stdout and exits.
With extended == false, this method returns a simple string containing version number. With extended == true, it returns also additional information about sources. It is expected to return extra information about dependencies and used DB backends.
As there is no static virtual methods in C++ this class method has to be redefined in derived classes and called with the derived class name or a child name.
extended | print additional information? |
Definition at line 100 of file daemon.cc.
References isc_throw.
|
virtual |
Return a list of all paths that contain passwords or secrets.
Used in isc::process::Daemon::redactConfig to only make copies and only redact configuration subtrees that contain passwords or secrets. To be overridden by derived classes.
Reimplemented in isc::dhcp::Dhcpv4Srv, and isc::dhcp::Dhcpv6Srv.
Definition at line 251 of file daemon.cc.
Referenced by redactConfig().
|
static |
Initializes logger.
This method initializes logging system. It also sets the default output to stdout. This is used in early stages of the startup phase before config file and parsed and proper logging details are known.
log_name | name used in logger initialization |
verbose | verbose mode (true usually enables DEBUG messages) |
Definition at line 88 of file daemon.cc.
References isc::log::DEBUG, isc::log::initLogger(), isc::log::MAX_DEBUG_LEVEL, and isc::log::setDefaultLoggingOutput().
Referenced by isc::process::DControllerBase::checkConfigOnly(), and isc::process::DControllerBase::launch().
|
protected |
Manufacture the pid file name.
Definition at line 174 of file daemon.cc.
References isc_throw, and isc::util::Filename::name().
Referenced by createPIDFile().
isc::data::ConstElementPtr isc::process::Daemon::redactConfig | ( | isc::data::ConstElementPtr const & | config | ) |
Redact a configuration.
Calls isc::process::redactConfig
config | the Element tree structure that describes the configuration. |
Definition at line 257 of file daemon.cc.
References jsonPathsToRedact(), and isc::process::redactConfig().
Referenced by isc::dhcp::configureDhcp4Server(), isc::dhcp::configureDhcp6Server(), isc::dhcp::ControlledDhcpv4Srv::processConfig(), and isc::dhcp::ControlledDhcpv6Srv::processConfig().
void isc::process::Daemon::setConfigFile | ( | const std::string & | config_file | ) |
Sets the configuration file name.
config_file | pathname of the configuration file |
Definition at line 110 of file daemon.cc.
Referenced by main(), and isc::process::DControllerBase::parseArgs().
|
inlinestatic |
Sets the default logger name.
This name is used in cases when a user doesn't provide a configuration for logger in the Kea configuration file.
Definition at line 215 of file daemon.h.
References isc::asiodns::logger.
Referenced by isc::process::DControllerBase::checkConfigOnly(), and isc::process::DControllerBase::launch().
|
inline |
Sets the exit value.
value | new exit value. |
Definition at line 227 of file daemon.h.
Referenced by isc::process::DControllerBase::shutdownHandler(), isc::dhcp::ControlledDhcpv4Srv::shutdownServer(), and isc::dhcp::ControlledDhcpv6Srv::shutdownServer().
void isc::process::Daemon::setPIDFileDir | ( | const std::string & | pid_file_dir | ) |
void isc::process::Daemon::setPIDFileName | ( | const std::string & | pid_file_name | ) |
Sets PID file name.
If this method is called prior to calling createPIDFile, the value passed in will be treated as the full file name for the PID file. This provides a means to override the default file name with an explicit value.
pid_file_name | file name to be used as the PID file |
Definition at line 159 of file daemon.cc.
References isc_throw.
Referenced by createPIDFile().
|
static |
Sets the process name.
proc_name | name the process by which the process is recognized |
Definition at line 135 of file daemon.cc.
Referenced by isc::process::DControllerBase::launch(), and main().
|
static |
Sets or clears verbose mode.
Verbose mode (-v in command-line) triggers loggers to log everything (sets severity to DEBUG and debuglevel to 99). Values specified in the config file are ignored.
verbose | specifies if verbose should be set or not |
Definition at line 79 of file daemon.cc.
Referenced by isc::process::DControllerBase::checkConfigOnly(), isc::process::DControllerBase::launch(), and main().
|
virtual |
Initiates shutdown procedure for the whole server.
Reimplemented in isc::dhcp::Dhcpv4Srv, and isc::dhcp::Dhcpv6Srv.
|
virtual |
Writes current configuration to specified file.
This method writes the current configuration to specified file.
If cfg is not specified, the current config (as returned by CfgMgr::instance().getCurrentCfg() will be returned.
config_file | name of the file to write the configuration to |
cfg | configuration to write (optional) |
Unexpected | if CfgMgr can't retrieve configuration or file cannot be written |
Definition at line 229 of file daemon.cc.
References isc_throw, and isc::data::prettyPrint().
Referenced by isc::process::DControllerBase::configWriteHandler().
|
protected |
|
protected |
Timestamp of the start of the daemon.
Definition at line 263 of file daemon.h.
Referenced by isc::process::DControllerBase::launch(), and isc::process::DControllerBase::statusGetHandler().