b0b191b6ca4082182d4fe2c5b82550556f797890
4 * @brief Interface of daemon_t.
9 * Copyright (C) 2006 Tobias Brunner, Daniel Roethlisberger
10 * Copyright (C) 2005-2006 Martin Willi
11 * Copyright (C) 2005 Jan Hutter
12 * Hochschule fuer Technik Rapperswil
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
28 typedef struct daemon_t daemon_t
;
30 #include <credential_store.h>
32 #include <threads/sender.h>
33 #include <threads/receiver.h>
34 #include <threads/scheduler.h>
35 #include <threads/kernel_interface.h>
36 #include <threads/thread_pool.h>
37 #include <threads/stroke_interface.h>
38 #include <network/socket.h>
40 #include <bus/listeners/file_logger.h>
41 #include <bus/listeners/sys_logger.h>
42 #include <sa/ike_sa_manager.h>
43 #include <queues/send_queue.h>
44 #include <queues/job_queue.h>
45 #include <queues/event_queue.h>
46 #include <config/configuration.h>
47 #include <config/connections/connection_store.h>
48 #include <config/policies/policy_store.h>
51 * @defgroup charon charon
53 * @brief IKEv2 keying daemon.
55 * @section Architecture
57 * All IKEv2 stuff is handled in charon. It uses a newer and more flexible
58 * architecture than pluto. Charon uses a thread-pool, which allows parallel
59 * execution SA-management. Beside the thread-pool, there are some special purpose
60 * threads which do their job for the common health of the daemon.
64 | v u |---+ +------+ +------+
65 | e e | | | | | IKE- |
66 | n u | +-----------+ | |--| SA |
67 | t e | | | | I M | +------+
68 +------------+ | - | | Scheduler | | K a |
69 | receiver | +------+ | | | E n | +------+
70 +----+-------+ +-----------+ | - a | | IKE- |
71 | | +------+ | | S g |--| SA |
72 +-------+--+ +-----| J Q |---+ +------------+ | A e | +------+
73 -| socket | | o u | | | | - r |
74 +-------+--+ | b e | | Thread- | | |
75 | | - u | | Pool | | |
76 +----+-------+ | e |------| |---| |
77 | sender | +------+ +------------+ +------+
87 * The thread-pool is the heart of the architecture. It processes jobs from a
88 * (fully synchronized) job-queue. Mostly, a job is associated with a specific
89 * IKE SA. These IKE SAs are synchronized, only one thread can work one an IKE SA.
90 * This makes it unnecesary to use further synchronisation methods once a IKE SA
91 * is checked out. The (rather complex) synchronization of IKE SAs is completely
92 * done in the IKE SA manager.
93 * The sceduler is responsible for event firing. It waits until a event in the
94 * (fully synchronized) event-queue is ready for processing and pushes the event
95 * down to the job-queue. A thread form the pool will pick it up as quick as
96 * possible. Every thread can queue events or jobs. Furter, an event can place a
97 * packet in the send-queue. The sender thread waits for those packets and sends
98 * them over the wire, via the socket. The receiver does exactly the opposite of
99 * the sender. It waits on the socket, reads in packets an places them on the
100 * job-queue for further processing by a thread from the pool.
101 * There are even more threads, not drawn in the upper scheme. The stroke thread
102 * is responsible for reading and processessing commands from another process. The
103 * kernel interface thread handles communication from and to the kernel via a
104 * netlink socket. It waits for kernel events and processes them appropriately.
108 * @defgroup config config
110 * Classes implementing configuration related things.
116 * @defgroup encoding encoding
118 * Classes used to encode and decode IKEv2 messages.
124 * @defgroup payloads payloads
126 * Classes representing specific IKEv2 payloads.
132 * @defgroup network network
134 * Classes for network relevant stuff.
140 * @defgroup queues queues
142 * Different kind of queues
143 * (thread save lists).
149 * @defgroup jobs jobs
151 * Jobs used in job queue and event queue.
159 * Security associations for IKE and IPSec,
160 * and some helper classes.
166 * @defgroup tasks tasks
168 * Tasks process and build message payloads. They are used to create
169 * and process multiple exchanges.
175 * @defgroup authenticators authenticators
177 * Authenticator classes to prove identity of peer.
185 * EAP authentication module interface and it's implementations.
187 * @ingroup authenticators
191 * @defgroup threads threads
193 * Threaded classes, which will do their job alone.
201 * Signaling bus and its listeners.
207 * Name of the daemon.
211 #define DAEMON_NAME "charon"
214 * @brief Number of threads in the thread pool.
216 * There are several other threads, this defines
217 * only the number of threads in thread_pool_t.
221 #define NUMBER_OF_WORKING_THREADS 4
224 * UDP Port on which the daemon will listen for incoming traffic.
228 #define IKEV2_UDP_PORT 500
231 * UDP Port to which the daemon will float to if NAT is detected.
235 #define IKEV2_NATT_PORT 4500
238 * PID file, in which charon stores its process id
242 #define PID_FILE IPSEC_PIDDIR "/charon.pid"
245 * Configuration directory
249 #define CONFIG_DIR IPSEC_CONFDIR
252 * Directory of IPsec relevant files
256 #define IPSEC_D_DIR CONFIG_DIR "/ipsec.d"
259 * Default directory for private keys
263 #define PRIVATE_KEY_DIR IPSEC_D_DIR "/private"
266 * Default directory for end entity certificates
270 #define CERTIFICATE_DIR IPSEC_D_DIR "/certs"
273 * Default directory for trusted CA certificates
277 #define CA_CERTIFICATE_DIR IPSEC_D_DIR "/cacerts"
280 * Default directory for OCSP signing certificates
284 #define OCSP_CERTIFICATE_DIR IPSEC_D_DIR "/ocspcerts"
287 * Default directory for CRLs
291 #define CRL_DIR IPSEC_D_DIR "/crls"
298 #define SECRETS_FILE CONFIG_DIR "/ipsec.secrets"
301 * @brief Main class of daemon, contains some globals.
307 * A socket_t instance.
312 * A send_queue_t instance.
314 send_queue_t
*send_queue
;
317 * A job_queue_t instance.
319 job_queue_t
*job_queue
;
322 * A event_queue_t instance.
324 event_queue_t
*event_queue
;
327 * A ike_sa_manager_t instance.
329 ike_sa_manager_t
*ike_sa_manager
;
332 * A configuration_t instance.
334 configuration_t
*configuration
;
337 * A connection_store_t instance.
339 connection_store_t
*connections
;
342 * A policy_store_t instance.
344 policy_store_t
*policies
;
347 * A credential_store_t instance.
349 credential_store_t
*credentials
;
357 * The Receiver-Thread.
359 receiver_t
*receiver
;
362 * The Scheduler-Thread.
364 scheduler_t
*scheduler
;
367 * The Thread pool managing the worker threads.
369 thread_pool_t
*thread_pool
;
377 * A bus listener logging to stdout
379 file_logger_t
*outlog
;
382 * A bus listener logging to syslog
384 sys_logger_t
*syslog
;
387 * A bus listener logging most important events
389 sys_logger_t
*authlog
;
392 * Kernel Interface to communicate with kernel
394 kernel_interface_t
*kernel_interface
;
397 * IPC interface, as whack in pluto
402 * @brief Shut down the daemon.
404 * @param this the daemon to kill
405 * @param reason describtion why it will be killed
407 void (*kill
) (daemon_t
*this, char *reason
);
411 * The one and only instance of the daemon.
413 extern daemon_t
*charon
;