2 * Copyright (C) 2012 Tobias Brunner
3 * Copyright (C) 2012 Reto Buerki
4 * Copyright (C) 2012 Adrian-Ken Rueegsegger
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24 #include <sys/types.h>
31 #include <utils/backtrace.h>
32 #include <threading/thread.h>
33 #include <sa/keymat.h>
34 #include <credentials/credential_manager.h>
37 #include "tkm_nonceg.h"
38 #include "tkm_diffie_hellman.h"
39 #include "tkm_keymat.h"
40 #include "tkm_listener.h"
41 #include "tkm_kernel_ipsec.h"
42 #include "tkm_public_key.h"
44 #include "tkm_encoder.h"
45 #include "tkm_spi_generator.h"
48 * TKM bus listener for IKE authorize events.
50 static tkm_listener_t
*listener
;
53 * PID file, in which charon-tkm stores its process id
55 static char *pidfile_name
= NULL
;
58 * Global reference to PID file (required to truncate, if undeletable)
60 static FILE *pidfile
= NULL
;
63 * Hook in library for debugging messages
65 extern void (*dbg
) (debug_t group
, level_t level
, char *fmt
, ...);
68 * Simple logging hook for library logs, using syslog output
70 static void dbg_syslog(debug_t group
, level_t level
, char *fmt
, ...)
78 /* write in memory buffer first */
79 vsnprintf(buffer
, sizeof(buffer
), fmt
, args
);
80 syslog(LOG_DAEMON
|LOG_INFO
, "00[%s] %s", debug_names
->names
[group
],
87 * Run the daemon and handle unix signals
93 /* handle SIGINT and SIGTERM in this handler */
95 sigaddset(&set
, SIGINT
);
96 sigaddset(&set
, SIGTERM
);
97 sigprocmask(SIG_BLOCK
, &set
, NULL
);
103 sig
= sigwaitinfo(&set
, NULL
);
107 { /* ignore signals we didn't wait for */
110 DBG1(DBG_DMN
, "waiting for signal failed: %s", strerror(errno
));
117 DBG1(DBG_DMN
, "signal of type SIGINT received. Shutting down");
118 charon
->bus
->alert(charon
->bus
, ALERT_SHUTDOWN_SIGNAL
, sig
);
123 DBG1(DBG_DMN
, "signal of type SIGTERM received. Shutting down");
124 charon
->bus
->alert(charon
->bus
, ALERT_SHUTDOWN_SIGNAL
, sig
);
132 * Handle SIGSEGV/SIGILL signals raised by threads
134 static void segv_handler(int signal
)
136 backtrace_t
*backtrace
;
138 DBG1(DBG_DMN
, "thread %u received %d", thread_current_id(), signal
);
139 backtrace
= backtrace_create(2);
140 backtrace
->log(backtrace
, stderr
, TRUE
);
141 backtrace
->destroy(backtrace
);
143 DBG1(DBG_DMN
, "killing ourself, received critical signal");
150 static bool lookup_uid_gid()
153 if (!lib
->caps
->resolve_uid(lib
->caps
, IPSEC_USER
))
159 if (!lib
->caps
->resolve_gid(lib
->caps
, IPSEC_GROUP
))
168 * Check/create PID file, return TRUE if already running
170 static bool check_pidfile()
174 if (stat(pidfile_name
, &stb
) == 0)
176 pidfile
= fopen(pidfile_name
, "r");
182 memset(buf
, 0, sizeof(buf
));
183 if (fread(buf
, 1, sizeof(buf
), pidfile
))
185 buf
[sizeof(buf
) - 1] = '\0';
189 if (pid
&& kill(pid
, 0) == 0)
190 { /* such a process is running */
194 DBG1(DBG_DMN
, "removing pidfile '%s', process not running", pidfile_name
);
195 unlink(pidfile_name
);
198 /* create new pidfile */
199 pidfile
= fopen(pidfile_name
, "w");
202 ignore_result(fchown(fileno(pidfile
),
203 lib
->caps
->get_uid(lib
->caps
),
204 lib
->caps
->get_gid(lib
->caps
)));
205 fprintf(pidfile
, "%d\n", getpid());
212 * Delete/truncate the PID file
214 static void unlink_pidfile()
216 /* because unlinking the PID file may fail, we truncate it to ensure the
217 * daemon can be properly restarted. one probable cause for this is the
218 * combination of not running as root and the effective user lacking
219 * permissions on the parent dir(s) of the PID file */
222 ignore_result(ftruncate(fileno(pidfile
), 0));
225 unlink(pidfile_name
);
228 * Main function, starts TKM backend.
230 int main(int argc
, char *argv
[])
233 if (argc
> 0 && strlen(argv
[0]) > 0)
235 dmn_name
= basename(argv
[0]);
239 dmn_name
= "charon-tkm";
242 /* TKM credential set */
245 struct sigaction action
;
246 int status
= SS_RC_INITIALIZATION_FAILED
;
248 /* logging for library during initialization, as we have no bus yet */
251 /* initialize library */
252 if (!library_init(NULL
, dmn_name
))
258 if (!libcharon_init())
260 dbg_syslog(DBG_DMN
, 1, "initialization failed - aborting %s", dmn_name
);
264 if (!lookup_uid_gid())
266 dbg_syslog(DBG_DMN
, 1, "invalid uid/gid - aborting %s", dmn_name
);
270 /* the authorize hook currently does not support RFC 7427 signature auth */
271 lib
->settings
->set_bool(lib
->settings
, "%s.signature_authentication", FALSE
,
274 /* make sure we log to the DAEMON facility by default */
275 lib
->settings
->set_int(lib
->settings
, "%s.syslog.daemon.default",
276 lib
->settings
->get_int(lib
->settings
, "%s.syslog.daemon.default", 1,
277 dmn_name
), dmn_name
);
278 charon
->load_loggers(charon
, NULL
, FALSE
);
280 DBG1(DBG_DMN
, "Starting charon with TKM backend (strongSwan "VERSION
")");
282 /* register TKM specific plugins */
283 static plugin_feature_t features
[] = {
284 PLUGIN_REGISTER(NONCE_GEN
, tkm_nonceg_create
),
285 PLUGIN_PROVIDE(NONCE_GEN
),
286 PLUGIN_REGISTER(PUBKEY
, tkm_public_key_load
, TRUE
),
287 PLUGIN_PROVIDE(PUBKEY
, KEY_RSA
),
288 PLUGIN_PROVIDE(PUBKEY_VERIFY
, SIGN_RSA_EMSA_PKCS1_SHA1
),
289 PLUGIN_PROVIDE(PUBKEY_VERIFY
, SIGN_RSA_EMSA_PKCS1_SHA256
),
290 PLUGIN_CALLBACK(kernel_ipsec_register
, tkm_kernel_ipsec_create
),
291 PLUGIN_PROVIDE(CUSTOM
, "kernel-ipsec"),
292 PLUGIN_CALLBACK(tkm_spi_generator_register
, NULL
),
293 PLUGIN_PROVIDE(CUSTOM
, "tkm-spi-generator"),
294 PLUGIN_DEPENDS(CUSTOM
, "libcharon-sa-managers"),
296 lib
->plugins
->add_static_features(lib
->plugins
, "tkm-backend", features
,
297 countof(features
), TRUE
, NULL
, NULL
);
299 if (!register_dh_mapping())
301 DBG1(DBG_DMN
, "no DH group mapping defined - aborting %s", dmn_name
);
305 /* register TKM keymat variant */
306 keymat_register_constructor(IKEV2
, (keymat_constructor_t
)tkm_keymat_create
);
308 /* initialize daemon */
309 if (!charon
->initialize(charon
, PLUGINS
))
311 DBG1(DBG_DMN
, "initialization failed - aborting %s", dmn_name
);
314 lib
->plugins
->status(lib
->plugins
, LEVEL_CTRL
);
316 /* set global pidfile name depending on daemon name */
317 if (asprintf(&pidfile_name
, IPSEC_PIDDIR
"/%s.pid", dmn_name
) < 0)
319 DBG1(DBG_DMN
, "unable to set pidfile name - aborting %s", dmn_name
);
325 DBG1(DBG_DMN
, "%s already running (\"%s\" exists)", dmn_name
,
330 if (!lib
->caps
->drop(lib
->caps
))
332 DBG1(DBG_DMN
, "capability dropping failed - aborting %s", dmn_name
);
336 /* initialize TKM client */
339 DBG1(DBG_DMN
, "init of TKM client failed - aborting %s", dmn_name
);
343 /* register TKM authorization hook */
344 listener
= tkm_listener_create();
345 charon
->bus
->add_listener(charon
->bus
, &listener
->listener
);
347 /* register TKM credential set */
348 creds
= tkm_cred_create();
349 lib
->credmgr
->add_set(lib
->credmgr
, (credential_set_t
*)creds
);
351 /* register TKM credential encoder */
352 lib
->encoding
->add_encoder(lib
->encoding
, tkm_encoder_encode
);
354 /* add handler for SEGV and ILL,
355 * INT and TERM are handled by sigwaitinfo() in run() */
356 action
.sa_handler
= segv_handler
;
358 sigemptyset(&action
.sa_mask
);
359 sigaddset(&action
.sa_mask
, SIGINT
);
360 sigaddset(&action
.sa_mask
, SIGTERM
);
361 sigaction(SIGSEGV
, &action
, NULL
);
362 sigaction(SIGILL
, &action
, NULL
);
363 sigaction(SIGBUS
, &action
, NULL
);
364 action
.sa_handler
= SIG_IGN
;
365 sigaction(SIGPIPE
, &action
, NULL
);
367 pthread_sigmask(SIG_SETMASK
, &action
.sa_mask
, NULL
);
369 /* start daemon (i.e. the threads in the thread-pool) */
370 charon
->start(charon
);
372 /* main thread goes to run loop */
377 charon
->bus
->remove_listener(charon
->bus
, &listener
->listener
);
378 listener
->destroy(listener
);
379 creds
->destroy(creds
);
380 lib
->encoding
->remove_encoder(lib
->encoding
, tkm_encoder_encode
);
383 destroy_dh_mapping();