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 #include <threads/sender.h>
29 #include <threads/receiver.h>
30 #include <threads/scheduler.h>
31 #include <threads/kernel_interface.h>
32 #include <threads/thread_pool.h>
33 #include <threads/stroke_interface.h>
34 #include <network/socket.h>
36 #include <bus/listeners/file_logger.h>
37 #include <bus/listeners/sys_logger.h>
38 #include <sa/ike_sa_manager.h>
39 #include <queues/send_queue.h>
40 #include <queues/job_queue.h>
41 #include <queues/event_queue.h>
42 #include <utils/logger_manager.h>
43 #include <config/configuration.h>
44 #include <config/connections/connection_store.h>
45 #include <config/policies/policy_store.h>
46 #include <config/credentials/credential_store.h>
49 * @defgroup charon charon
51 * @brief IKEv2 keying daemon.
53 * @section Architecture
55 * All IKEv2 stuff is handled in charon. It uses a newer and more flexible
56 * architecture than pluto. Charon uses a thread-pool, which allows parallel
57 * execution SA-management. Beside the thread-pool, there are some special purpose
58 * threads which do their job for the common health of the daemon.
62 | v u |---+ +------+ +------+
63 | e e | | | | | IKE- |
64 | n u | +-----------+ | |--| SA |
65 | t e | | | | I M | +------+
66 +------------+ | - | | Scheduler | | K a |
67 | receiver | +------+ | | | E n | +------+
68 +----+-------+ +-----------+ | - a | | IKE- |
69 | | +------+ | | S g |--| SA |
70 +-------+--+ +-----| J Q |---+ +------------+ | A e | +------+
71 -| socket | | o u | | | | - r |
72 +-------+--+ | b e | | Thread- | | |
73 | | - u | | Pool | | |
74 +----+-------+ | e |------| |---| |
75 | sender | +------+ +------------+ +------+
85 * The thread-pool is the heart of the architecture. It processes jobs from a
86 * (fully synchronized) job-queue. Mostly, a job is associated with a specific
87 * IKE SA. These IKE SAs are synchronized, only one thread can work one an IKE SA.
88 * This makes it unnecesary to use further synchronisation methods once a IKE SA
89 * is checked out. The (rather complex) synchronization of IKE SAs is completely
90 * done in the IKE SA manager.
91 * The sceduler is responsible for event firing. It waits until a event in the
92 * (fully synchronized) event-queue is ready for processing and pushes the event
93 * down to the job-queue. A thread form the pool will pick it up as quick as
94 * possible. Every thread can queue events or jobs. Furter, an event can place a
95 * packet in the send-queue. The sender thread waits for those packets and sends
96 * them over the wire, via the socket. The receiver does exactly the opposite of
97 * the sender. It waits on the socket, reads in packets an places them on the
98 * job-queue for further processing by a thread from the pool.
99 * There are even more threads, not drawn in the upper scheme. The stroke thread
100 * is responsible for reading and processessing commands from another process. The
101 * kernel interface thread handles communication from and to the kernel via a
102 * netlink socket. It waits for kernel events and processes them appropriately.
106 * @defgroup config config
108 * Classes implementing configuration related things.
114 * @defgroup encoding encoding
116 * Classes used to encode and decode IKEv2 messages.
122 * @defgroup payloads payloads
124 * Classes representing specific IKEv2 payloads.
130 * @defgroup network network
132 * Classes for network relevant stuff.
138 * @defgroup queues queues
140 * Different kind of queues
141 * (thread save lists).
147 * @defgroup jobs jobs
149 * Jobs used in job queue and event queue.
157 * Security associations for IKE and IPSec,
158 * and some helper classes.
164 * @defgroup transactions transactions
166 * Transactions represent a request/response
167 * message exchange to implement the IKEv2
168 * protocol exchange scenarios.
174 * @defgroup threads threads
176 * Threaded classes, which will do their job alone.
184 * Signaling bus and its listeners.
190 * Name of the daemon.
194 #define DAEMON_NAME "charon"
197 * @brief Number of threads in the thread pool.
199 * There are several other threads, this defines
200 * only the number of threads in thread_pool_t.
204 #define NUMBER_OF_WORKING_THREADS 4
207 * UDP Port on which the daemon will listen for incoming traffic.
211 #define IKEV2_UDP_PORT 500
214 * UDP Port to which the daemon will float to if NAT is detected.
218 #define IKEV2_NATT_PORT 4500
221 * PID file, in which charon stores its process id
225 #define PID_FILE IPSEC_PIDDIR "/charon.pid"
228 * Configuration directory
232 #define CONFIG_DIR IPSEC_CONFDIR
235 * Directory of IPsec relevant files
239 #define IPSEC_D_DIR CONFIG_DIR "/ipsec.d"
242 * Default directory for private keys
246 #define PRIVATE_KEY_DIR IPSEC_D_DIR "/private"
249 * Default directory for end entity certificates
253 #define CERTIFICATE_DIR IPSEC_D_DIR "/certs"
256 * Default directory for trusted CA certificates
260 #define CA_CERTIFICATE_DIR IPSEC_D_DIR "/cacerts"
263 * Default directory for CRLs
267 #define CRL_DIR IPSEC_D_DIR "/crls"
274 #define SECRETS_FILE CONFIG_DIR "/ipsec.secrets"
277 typedef struct daemon_t daemon_t
;
280 * @brief Main class of daemon, contains some globals.
286 * A socket_t instance.
291 * A send_queue_t instance.
293 send_queue_t
*send_queue
;
296 * A job_queue_t instance.
298 job_queue_t
*job_queue
;
301 * A event_queue_t instance.
303 event_queue_t
*event_queue
;
306 * A ike_sa_manager_t instance.
308 ike_sa_manager_t
*ike_sa_manager
;
311 * A configuration_t instance.
313 configuration_t
*configuration
;
316 * A connection_store_t instance.
318 connection_store_t
*connections
;
321 * A policy_store_t instance.
323 policy_store_t
*policies
;
326 * A credential_store_t instance.
328 credential_store_t
*credentials
;
336 * The Receiver-Thread.
338 receiver_t
*receiver
;
341 * The Scheduler-Thread.
343 scheduler_t
*scheduler
;
346 * The Thread pool managing the worker threads.
348 thread_pool_t
*thread_pool
;
356 * A bus listener logging to stdout
358 file_logger_t
*outlog
;
361 * A bus listener logging to syslog
363 sys_logger_t
*syslog
;
366 * Kernel Interface to communicate with kernel
368 kernel_interface_t
*kernel_interface
;
371 * IPC interface, as whack in pluto
376 * @brief Shut down the daemon.
378 * @param this the daemon to kill
379 * @param reason describtion why it will be killed
381 void (*kill
) (daemon_t
*this, char *reason
);
385 * The one and only instance of the daemon.
387 extern daemon_t
*charon
;