OpenDNSSEC-signer
1.3.9
Main Page
Data Structures
Files
File List
Globals
signer
src
daemon
engine.h
Go to the documentation of this file.
1
/*
2
* $Id: engine.h 6111 2012-01-30 15:11:45Z matthijs $
3
*
4
* Copyright (c) 2009 NLNet Labs. All rights reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions
8
* are met:
9
* 1. Redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer.
11
* 2. Redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution.
14
*
15
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
19
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
21
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
25
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
*
27
*/
28
34
#ifndef DAEMON_ENGINE_H
35
#define DAEMON_ENGINE_H
36
37
#include "config.h"
38
#include "
daemon/cfg.h
"
39
#include "
daemon/cmdhandler.h
"
40
#include "
daemon/worker.h
"
41
#include "
scheduler/fifoq.h
"
42
#include "
scheduler/schedule.h
"
43
#include "
scheduler/task.h
"
44
#include "
shared/allocator.h
"
45
#include "
shared/locks.h
"
46
#include "
signer/zonelist.h
"
47
48
#include <
signal.h
>
49
54
typedef
struct
engine_struct
engine_type
;
55
struct
engine_struct
{
56
allocator_type
*
allocator
;
57
engineconfig_type
*
config
;
58
worker_type
**
workers
;
59
worker_type
**
drudgers
;
60
zonelist_type
*
zonelist
;
61
schedule_type
*
taskq
;
62
fifoq_type
*
signq
;
63
cmdhandler_type
*
cmdhandler
;
64
int
cmdhandler_done
;
65
66
pid_t
pid
;
67
pid_t
zfpid
;
68
uid_t
uid
;
69
gid_t
gid
;
70
71
int
daemonize
;
72
int
need_to_exit
;
73
int
need_to_reload
;
74
75
sig_atomic_t
signal
;
76
cond_basic_type
signal_cond
;
77
lock_basic_type
signal_lock
;
78
};
79
89
void
engine_start
(
const
char
* cfgfile,
int
cmdline_verbosity,
90
int
daemonize,
int
info,
int
single_run);
91
97
void
engine_start_drudgers
(
engine_type
* engine);
98
104
void
engine_stop_drudgers
(
engine_type
* engine);
105
111
void
engine_wakeup_workers
(
engine_type
* engine);
112
118
void
engine_update_zones
(
engine_type
* engine);
119
125
void
engine_cleanup
(
engine_type
* engine);
126
127
#endif
/* DAEMON_ENGINE_H */
Generated on Tue Jan 15 2013 19:15:41 for OpenDNSSEC-signer by
1.8.2