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 <threads/sender.h>
31 #include <threads/receiver.h>
32 #include <threads/scheduler.h>
33 #include <threads/kernel_interface.h>
34 #include <threads/thread_pool.h>
35 #include <threads/stroke_interface.h>
36 #include <network/socket.h>
38 #include <bus/listeners/file_logger.h>
39 #include <bus/listeners/sys_logger.h>
40 #include <sa/ike_sa_manager.h>
41 #include <queues/send_queue.h>
42 #include <queues/job_queue.h>
43 #include <queues/event_queue.h>
44 #include <config/configuration.h>
45 #include <config/connections/connection_store.h>
46 #include <config/policies/policy_store.h>
47 #include <config/credentials/credential_store.h>
50 * @defgroup charon charon
52 * @brief IKEv2 keying daemon.
54 * @section Architecture
56 * All IKEv2 stuff is handled in charon. It uses a newer and more flexible
57 * architecture than pluto. Charon uses a thread-pool, which allows parallel
58 * execution SA-management. Beside the thread-pool, there are some special purpose
59 * threads which do their job for the common health of the daemon.
63 | v u |---+ +------+ +------+
64 | e e | | | | | IKE- |
65 | n u | +-----------+ | |--| SA |
66 | t e | | | | I M | +------+
67 +------------+ | - | | Scheduler | | K a |
68 | receiver | +------+ | | | E n | +------+
69 +----+-------+ +-----------+ | - a | | IKE- |
70 | | +------+ | | S g |--| SA |
71 +-------+--+ +-----| J Q |---+ +------------+ | A e | +------+
72 -| socket | | o u | | | | - r |
73 +-------+--+ | b e | | Thread- | | |
74 | | - u | | Pool | | |
75 +----+-------+ | e |------| |---| |
76 | sender | +------+ +------------+ +------+
86 * The thread-pool is the heart of the architecture. It processes jobs from a
87 * (fully synchronized) job-queue. Mostly, a job is associated with a specific
88 * IKE SA. These IKE SAs are synchronized, only one thread can work one an IKE SA.
89 * This makes it unnecesary to use further synchronisation methods once a IKE SA
90 * is checked out. The (rather complex) synchronization of IKE SAs is completely
91 * done in the IKE SA manager.
92 * The sceduler is responsible for event firing. It waits until a event in the
93 * (fully synchronized) event-queue is ready for processing and pushes the event
94 * down to the job-queue. A thread form the pool will pick it up as quick as
95 * possible. Every thread can queue events or jobs. Furter, an event can place a
96 * packet in the send-queue. The sender thread waits for those packets and sends
97 * them over the wire, via the socket. The receiver does exactly the opposite of
98 * the sender. It waits on the socket, reads in packets an places them on the
99 * job-queue for further processing by a thread from the pool.
100 * There are even more threads, not drawn in the upper scheme. The stroke thread
101 * is responsible for reading and processessing commands from another process. The
102 * kernel interface thread handles communication from and to the kernel via a
103 * netlink socket. It waits for kernel events and processes them appropriately.
107 * @defgroup config config
109 * Classes implementing configuration related things.
115 * @defgroup encoding encoding
117 * Classes used to encode and decode IKEv2 messages.
123 * @defgroup payloads payloads
125 * Classes representing specific IKEv2 payloads.
131 * @defgroup network network
133 * Classes for network relevant stuff.
139 * @defgroup queues queues
141 * Different kind of queues
142 * (thread save lists).
148 * @defgroup jobs jobs
150 * Jobs used in job queue and event queue.
158 * Security associations for IKE and IPSec,
159 * and some helper classes.
165 * @defgroup transactions transactions
167 * Transactions represent a request/response
168 * message exchange to implement the IKEv2
169 * protocol exchange scenarios.
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 CRLs
284 #define CRL_DIR IPSEC_D_DIR "/crls"
291 #define SECRETS_FILE CONFIG_DIR "/ipsec.secrets"
294 * @brief Main class of daemon, contains some globals.
300 * A socket_t instance.
305 * A send_queue_t instance.
307 send_queue_t
*send_queue
;
310 * A job_queue_t instance.
312 job_queue_t
*job_queue
;
315 * A event_queue_t instance.
317 event_queue_t
*event_queue
;
320 * A ike_sa_manager_t instance.
322 ike_sa_manager_t
*ike_sa_manager
;
325 * A configuration_t instance.
327 configuration_t
*configuration
;
330 * A connection_store_t instance.
332 connection_store_t
*connections
;
335 * A policy_store_t instance.
337 policy_store_t
*policies
;
340 * A credential_store_t instance.
342 credential_store_t
*credentials
;
350 * The Receiver-Thread.
352 receiver_t
*receiver
;
355 * The Scheduler-Thread.
357 scheduler_t
*scheduler
;
360 * The Thread pool managing the worker threads.
362 thread_pool_t
*thread_pool
;
370 * A bus listener logging to stdout
372 file_logger_t
*outlog
;
375 * A bus listener logging to syslog
377 sys_logger_t
*syslog
;
380 * A bus listener logging most important events
382 sys_logger_t
*authlog
;
385 * Kernel Interface to communicate with kernel
387 kernel_interface_t
*kernel_interface
;
390 * IPC interface, as whack in pluto
395 * @brief Shut down the daemon.
397 * @param this the daemon to kill
398 * @param reason describtion why it will be killed
400 void (*kill
) (daemon_t
*this, char *reason
);
404 * The one and only instance of the daemon.
406 extern daemon_t
*charon
;