This file contains functions to integrate with the windows services API. More...
#include "config.h"
#include "winrc/win_svc.h"
#include "winrc/w_inst.h"
#include "daemon/daemon.h"
#include "daemon/worker.h"
#include "daemon/remote.h"
#include "util/config_file.h"
#include "util/netevent.h"
#include "util/ub_event.h"
#include "util/net_help.h"
Macros | |
#define | ATTR_UNUSED(x) x |
Functions | |
static void | report_status (DWORD state, DWORD exitcode, DWORD wait) |
Report current service status to service control manager. More... | |
static void | hdlr (DWORD ctrl) |
Service control handler. More... | |
static void | reportev (const char *str) |
report event to system event log For use during startup and shutdown. More... | |
static char * | lookup_reg_str (const char *key, const char *name) |
Obtain registry string (if it exists). More... | |
static int | lookup_reg_int (const char *key, const char *name) |
Obtain registry integer (if it exists). More... | |
static void | waitforubanchor (PROCESS_INFORMATION *pinfo) |
wait for unbound-anchor process to finish | |
static void | call_root_update (void) |
Perform root anchor update if so configured, by calling that process. | |
static int | service_init (int r, struct daemon **d, struct config_file **c) |
Init service. More... | |
static void | service_deinit (struct daemon *daemon, struct config_file *cfg) |
Deinit the service. | |
static void | service_main (DWORD argc, LPTSTR *argv) |
The main function for the service. More... | |
static void | service_start (const char *cfgfile, int v, int c) |
start the service | |
void | wsvc_command_option (const char *wopt, const char *cfgfile, int v, int c) |
Handle commandline service for windows. More... | |
void | worker_win_stop_cb (int fd, short ev, void *arg) |
windows worker stop event callback handler | |
static void | waitforit (PROCESS_INFORMATION *pinfo) |
wait for cron process to finish | |
static void * | win_do_cron (void *arg) |
Do the cron action and wait for result exit value. | |
static void | set_cron_timer (void) |
Set the timer for cron for the next wake up. | |
void | wsvc_cron_cb (void *arg) |
windows cron timer callback handler | |
void | wsvc_setup_worker (struct worker *worker) |
Setup lead worker events. More... | |
void | wsvc_desetup_worker (struct worker *worker) |
Desetup lead worker events. More... | |
Variables | |
static SERVICE_STATUS | service_status |
global service status | |
static SERVICE_STATUS_HANDLE | service_status_handle |
global service status handle | |
static WSAEVENT | service_stop_event = NULL |
global service stop event | |
static struct ub_event * | service_stop_ev = NULL |
event struct for stop callbacks | |
static int | service_stop_shutdown = 0 |
if stop even means shutdown or restart | |
static char * | service_cfgfile = CONFIGFILE |
config file to open. More... | |
static int | service_cmdline_verbose = 0 |
commandline verbosity. More... | |
static struct comm_timer * | service_cron = NULL |
the cron callback | |
static ub_thread_type | cron_thread = NULL |
the cron thread | |
static int | cron_was_quick = 0 |
if cron has already done its quick check | |
This file contains functions to integrate with the windows services API.
This means it handles the commandline switches to install and remove the service (via CreateService and DeleteService), it handles the ServiceMain() main service entry point when started as a service, and it handles the Handler[_ex]() to process requests to the service (such as start and stop and status).
|
static |
Report current service status to service control manager.
state | current state |
exitcode | error code (when stopped) |
wait | pending operation estimated time in milliseconds. |
References service_status, and service_status_handle.
Referenced by call_root_update(), hdlr(), and waitforubanchor().
|
static |
Service control handler.
Called by serviceControlManager when a control code is sent to the service (with ControlService).
ctrl | control code |
References log_err(), report_status(), service_status, service_stop_event, and service_stop_shutdown.
|
static |
report event to system event log For use during startup and shutdown.
str | the error |
Referenced by lookup_reg_int(), and lookup_reg_str().
|
static |
Obtain registry string (if it exists).
key | key string |
name | name of value to fetch. |
References reportev().
Referenced by call_root_update(), and service_init().
|
static |
Obtain registry integer (if it exists).
key | key string |
name | name of value to fetch. |
References reportev().
Referenced by set_cron_timer().
|
static |
Init service.
Keeps calling status pending to tell service control manager that this process is not hanging.
r | restart, true on restart |
d | daemon returned here. |
c | config file returned here. |
References lookup_reg_str(), and service_cfgfile.
|
static |
The main function for the service.
Called by the services API when starting unbound on windows in background. Arguments could have been present in the string 'path'.
argc | nr args |
argv | arg text. |
Referenced by service_start().
void wsvc_command_option | ( | const char * | wopt, |
const char * | cfgfile, | ||
int | v, | ||
int | c | ||
) |
Handle commandline service for windows.
wopt | windows option string (install, remove, service). |
cfgfile | configfile to open (default or passed with -c). |
v | amount of commandline verbosity added with -v. |
c | true if cfgfile was set by commandline -c option. |
References service_start(), wsvc_install(), wsvc_rc_start(), wsvc_rc_stop(), and wsvc_remove().
Referenced by main().
void wsvc_setup_worker | ( | struct worker * | worker | ) |
Setup lead worker events.
worker | the worker |
References service_stop_ev, service_stop_event, and ub_winsock_register_wsaevent().
void wsvc_desetup_worker | ( | struct worker * | worker | ) |
|
static |
config file to open.
global communication to service_main()
Referenced by service_init(), and service_start().
|
static |
commandline verbosity.
global communication to service_main()