3bde9a25d66b924c53c175a2a777c58a0c676cbd
2 * Copyright (C) 2006-2007 Tobias Brunner
3 * Copyright (C) 2006 Daniel Roethlisberger
4 * Copyright (C) 2005-2008 Martin Willi
5 * Copyright (C) 2005 Jan Hutter
6 * Hochschule fuer Technik Rapperswil
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * @defgroup charon charon
27 * @defgroup listeners listeners
30 * @defgroup config config
33 * @defgroup attributes attributes
36 * @defgroup control control
39 * @defgroup ccredentials credentials
43 * @ingroup ccredentials
45 * @defgroup encoding encoding
48 * @defgroup payloads payloads
51 * @defgroup kernel kernel
54 * @defgroup network network
57 * @defgroup cplugins plugins
60 * @defgroup processing processing
69 * @defgroup authenticators authenticators
73 * @ingroup authenticators
75 * @defgroup tasks tasks
81 * IKEv2 keying daemon.
83 * All IKEv2 stuff is handled in charon. It uses a newer and more flexible
84 * architecture than pluto. Charon uses a thread-pool (called processor),
85 * which allows parallel execution SA-management. All threads originate
86 * from the processor. Work is delegated to the processor by queueing jobs
90 +---------------------------------+ +----------------------------+
91 | controller | | config |
92 +---------------------------------+ +----------------------------+
96 +----------+ +-----------+ +------+ +----------+ +----+
97 | receiver | | | | | +------+ | CHILD_SA | | K |
98 +---+------+ | Scheduler | | IKE- | | IKE- |--+----------+ | e |
99 | | | | SA |--| SA | | CHILD_SA | | r |
100 +------+---+ +-----------+ | | +------+ +----------+ | n |
101 <->| socket | | | Man- | | e |
102 +------+---+ +-----------+ | ager | +------+ +----------+ | l |
103 | | | | | | IKE- |--| CHILD_SA | | - |
104 +---+------+ | Processor |---| |--| SA | +----------+ | I |
105 | sender | | | | | +------+ | f |
106 +----------+ +-----------+ +------+ +----+
110 +---------------------------------+ +----------------------------+
111 | Bus | | credentials |
112 +---------------------------------+ +----------------------------+
115 * The scheduler is responsible to execute timed events. Jobs may be queued to
116 * the scheduler to get executed at a defined time (e.g. rekeying). The
117 * scheduler does not execute the jobs itself, it queues them to the processor.
119 * The IKE_SA manager managers all IKE_SA. It further handles the
121 * Each IKE_SA must be checked out strictly and checked in again after use. The
122 * manager guarantees that only one thread may check out a single IKE_SA. This
123 * allows us to write the (complex) IKE_SAs routines non-threadsave.
124 * The IKE_SA contain the state and the logic of each IKE_SA and handle the
127 * The CHILD_SA contains state about a IPsec security association and manages
128 * them. An IKE_SA may have multiple CHILD_SAs. Communication to the kernel
129 * takes place here through the kernel interface.
131 * The kernel interface installs IPsec security associations, policies, routes
132 * and virtual addresses. It further provides methods to enumerate interfaces
133 * and may notify the daemon about state changes at lower layers.
135 * The bus receives signals from the different threads and relais them to interested
136 * listeners. Debugging signals, but also important state changes or error
137 * messages are sent over the bus.
138 * It's listeners are not only for logging, but also to track the state of an
141 * The controller, credential_manager, bus and backend_manager (config) are
142 * places where a plugin ca register itself to privide information or observe
143 * and control the daemon.
149 typedef struct daemon_t daemon_t
;
151 #include <network/sender.h>
152 #include <network/receiver.h>
153 #include <network/socket.h>
154 #include <processing/scheduler.h>
155 #include <processing/processor.h>
156 #include <kernel/kernel_interface.h>
157 #include <control/controller.h>
159 #include <bus/listeners/file_logger.h>
160 #include <bus/listeners/sys_logger.h>
161 #include <sa/ike_sa_manager.h>
162 #include <config/backend_manager.h>
163 #include <config/attributes/attribute_manager.h>
164 #include <credentials/credential_manager.h>
165 #include <sa/authenticators/eap/eap_manager.h>
168 #include <sa/connect_manager.h>
169 #include <sa/mediation_manager.h>
173 * Name of the daemon.
175 #define DAEMON_NAME "charon"
178 * Number of threads in the thread pool, if not specified in config.
180 #define DEFAULT_THREADS 16
183 * UDP Port on which the daemon will listen for incoming traffic.
185 #define IKEV2_UDP_PORT 500
188 * UDP Port to which the daemon will float to if NAT is detected.
190 #define IKEV2_NATT_PORT 4500
193 * PID file, in which charon stores its process id
195 #define PID_FILE IPSEC_PIDDIR "/charon.pid"
199 * Main class of daemon, contains some globals.
204 * A socket_t instance.
209 * A ike_sa_manager_t instance.
211 ike_sa_manager_t
*ike_sa_manager
;
214 * Manager for the different configuration backends.
216 backend_manager_t
*backends
;
219 * Manager IKEv2 cfg payload attributes
221 attribute_manager_t
*attributes
;
224 * Manager for the credential backends
226 credential_manager_t
*credentials
;
234 * The Receiver-Thread.
236 receiver_t
*receiver
;
239 * The Scheduler-Thread.
241 scheduler_t
*scheduler
;
244 * Job processing using a thread pool.
246 processor_t
*processor
;
254 * A bus listener logging to stdout
256 file_logger_t
*outlog
;
259 * A bus listener logging to syslog
261 sys_logger_t
*syslog
;
264 * A bus listener logging most important events
266 sys_logger_t
*authlog
;
269 * Kernel Interface to communicate with kernel
271 kernel_interface_t
*kernel_interface
;
274 * Controller to control the daemon
276 controller_t
*controller
;
279 * EAP manager to maintain registered EAP methods
287 connect_manager_t
*connect_manager
;
292 mediation_manager_t
*mediation_manager
;
296 * User ID the daemon will user after initialization
301 * Group ID the daemon will use after initialization
306 * Do not drop a given capability after initialization.
308 * Some plugins might need additional capabilites. They tell the daemon
309 * during plugin initialization which one they need, the daemon won't
312 void (*keep_cap
)(daemon_t
*this, u_int cap
);
315 * Shut down the daemon.
317 * @param reason describtion why it will be killed
319 void (*kill
) (daemon_t
*this, char *reason
);
323 * The one and only instance of the daemon.
325 extern daemon_t
*charon
;
327 #endif /*DAEMON_H_ @} */