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
20 #include <linux/capability.h>
21 #include <sys/prctl.h>
25 #include <sys/types.h>
32 # include <execinfo.h>
33 #endif /* HAVE_BACKTRACE */
38 #include <config/traffic_selector.h>
40 /* on some distros, a capset definition is missing */
41 #ifdef NO_CAPSET_DEFINED
42 extern int capset(cap_user_header_t hdrp
, const cap_user_data_t datap
);
43 #endif /* NO_CAPSET_DEFINED */
46 #include <fips/fips.h>
47 #include <fips_signature.h>
48 #endif /* INTEGRITY_TEST */
50 typedef struct private_daemon_t private_daemon_t
;
53 * Private additions to daemon_t, contains threads and internal functions.
55 struct private_daemon_t
{
57 * Public members of daemon_t.
62 * Signal set used for signal handling.
67 * The thread_id of main-thread.
69 pthread_t main_thread_id
;
73 * One and only instance of the daemon.
78 * hook in library for debugging messages
80 extern void (*dbg
) (int level
, char *fmt
, ...);
83 * Logging hook for library logs, spreads debug message over bus
85 static void dbg_bus(int level
, char *fmt
, ...)
90 charon
->bus
->vsignal(charon
->bus
, DBG_LIB
, level
, fmt
, args
);
94 * Logging hook for library logs before logging facility initiated
96 static void dbg_silent(int level
, char *fmt
, ...)
101 * Logging hook for library logs, using stderr output
103 static void dbg_stderr(int level
, char *fmt
, ...)
108 fprintf(stderr
, "00[LIB] ");
109 vfprintf(stderr
, fmt
, args
);
110 fprintf(stderr
, "\n");
115 * Run the daemon and handle unix signals
117 static void run(private_daemon_t
*this)
121 /* handle SIGINT, SIGHUP ans SIGTERM in this handler */
123 sigaddset(&set
, SIGINT
);
124 sigaddset(&set
, SIGHUP
);
125 sigaddset(&set
, SIGTERM
);
132 error
= sigwait(&set
, &sig
);
135 DBG1(DBG_DMN
, "error %d while waiting for a signal", error
);
142 DBG1(DBG_DMN
, "signal of type SIGHUP received. Ignored");
147 DBG1(DBG_DMN
, "signal of type SIGINT received. Shutting down");
152 DBG1(DBG_DMN
, "signal of type SIGTERM received. Shutting down");
157 DBG1(DBG_DMN
, "unknown signal %d received. Ignored", sig
);
165 * Clean up all daemon resources
167 static void destroy(private_daemon_t
*this)
169 /* terminate all idle threads */
170 if (this->public.processor
)
172 this->public.processor
->set_threads(this->public.processor
, 0);
174 /* close all IKE_SAs */
175 DESTROY_IF(this->public.plugins
);
176 DESTROY_IF(this->public.ike_sa_manager
);
177 DESTROY_IF(this->public.kernel_interface
);
178 DESTROY_IF(this->public.scheduler
);
179 DESTROY_IF(this->public.controller
);
180 DESTROY_IF(this->public.eap
);
182 DESTROY_IF(this->public.connect_manager
);
183 DESTROY_IF(this->public.mediation_manager
);
185 DESTROY_IF(this->public.backends
);
186 DESTROY_IF(this->public.attributes
);
187 DESTROY_IF(this->public.credentials
);
188 DESTROY_IF(this->public.sender
);
189 DESTROY_IF(this->public.receiver
);
190 DESTROY_IF(this->public.socket
);
191 /* wait until all threads are gone */
192 DESTROY_IF(this->public.processor
);
194 /* rehook library logging, shutdown logging */
196 DESTROY_IF(this->public.bus
);
197 DESTROY_IF(this->public.outlog
);
198 DESTROY_IF(this->public.syslog
);
199 DESTROY_IF(this->public.authlog
);
204 * Enforce daemon shutdown, with a given reason to do so.
206 static void kill_daemon(private_daemon_t
*this, char *reason
)
208 /* we send SIGTERM, so the daemon can cleanly shut down */
209 DBG1(DBG_DMN
, "killing daemon: %s", reason
);
210 if (this->main_thread_id
== pthread_self())
212 /* initialization failed, terminate daemon */
219 DBG1(DBG_DMN
, "sending SIGTERM to ourself");
221 /* thread must die, since he produced a ciritcal failure and can't continue */
227 * drop daemon capabilities
229 static void drop_capabilities(private_daemon_t
*this, bool full
)
231 struct __user_cap_header_struct hdr
;
232 struct __user_cap_data_struct data
;
234 /* CAP_NET_ADMIN is needed to use netlink */
235 u_int32_t keep
= (1<<CAP_NET_ADMIN
) | (1<<CAP_SYS_NICE
);
240 if (setgid(IPSEC_GID
) != 0)
242 kill_daemon(this, "changing GID to unprivileged group failed");
246 if (setuid(IPSEC_UID
) != 0)
248 kill_daemon(this, "changing UID to unprivileged user failed");
254 /* CAP_NET_BIND_SERVICE to bind services below port 1024 */
255 keep
|= (1<<CAP_NET_BIND_SERVICE
);
256 /* CAP_NET_RAW to create RAW sockets */
257 keep
|= (1<<CAP_NET_RAW
);
258 /* CAP_DAC_READ_SEARCH to read ipsec.secrets */
259 keep
|= (1<<CAP_DAC_READ_SEARCH
);
260 /* CAP_CHOWN to change file permissions (socket permissions) */
261 keep
|= (1<<CAP_CHOWN
);
262 /* CAP_SETUID to call setuid() */
263 keep
|= (1<<CAP_SETUID
);
264 /* CAP_SETGID to call setgid() */
265 keep
|= (1<<CAP_SETGID
);
268 hdr
.version
= _LINUX_CAPABILITY_VERSION
;
270 data
.inheritable
= data
.effective
= data
.permitted
= keep
;
272 if (capset(&hdr
, &data
))
274 kill_daemon(this, "unable to drop daemon capabilities");
279 * Initialize the daemon
281 static bool initialize(private_daemon_t
*this, bool syslog
, level_t levels
[])
285 /* for uncritical pseudo random numbers */
286 srandom(time(NULL
) + getpid());
288 /* setup bus and it's listeners first to enable log output */
289 this->public.bus
= bus_create();
290 this->public.outlog
= file_logger_create(stdout
);
291 this->public.syslog
= sys_logger_create(LOG_DAEMON
);
292 this->public.authlog
= sys_logger_create(LOG_AUTHPRIV
);
293 this->public.bus
->add_listener(this->public.bus
, &this->public.syslog
->listener
);
294 this->public.bus
->add_listener(this->public.bus
, &this->public.outlog
->listener
);
295 this->public.bus
->add_listener(this->public.bus
, &this->public.authlog
->listener
);
296 this->public.authlog
->set_level(this->public.authlog
, SIG_ANY
, LEVEL_AUDIT
);
297 /* set up hook to log dbg message in library via charons message bus */
300 /* apply loglevels */
301 for (signal
= 0; signal
< DBG_MAX
; signal
++)
303 this->public.syslog
->set_level(this->public.syslog
,
304 signal
, levels
[signal
]);
307 this->public.outlog
->set_level(this->public.outlog
,
308 signal
, levels
[signal
]);
312 DBG1(DBG_DMN
, "starting charon (strongSwan Version %s)", VERSION
);
314 #ifdef INTEGRITY_TEST
315 DBG1(DBG_DMN
, "integrity test of libstrongswan code");
316 if (fips_verify_hmac_signature(hmac_key
, hmac_signature
))
318 DBG1(DBG_DMN
, " integrity test passed");
322 DBG1(DBG_DMN
, " integrity test failed");
325 #endif /* INTEGRITY_TEST */
327 this->public.ike_sa_manager
= ike_sa_manager_create();
328 if (this->public.ike_sa_manager
== NULL
)
332 this->public.processor
= processor_create();
333 this->public.scheduler
= scheduler_create();
335 /* load secrets, ca certificates and crls */
336 this->public.credentials
= credential_manager_create();
337 this->public.controller
= controller_create();
338 this->public.eap
= eap_manager_create();
339 this->public.backends
= backend_manager_create();
340 this->public.attributes
= attribute_manager_create();
341 this->public.plugins
= plugin_loader_create();
342 this->public.kernel_interface
= kernel_interface_create();
343 this->public.socket
= socket_create();
344 this->public.sender
= sender_create();
345 this->public.receiver
= receiver_create();
346 if (this->public.receiver
== NULL
)
352 this->public.connect_manager
= connect_manager_create();
353 if (this->public.connect_manager
== NULL
)
357 this->public.mediation_manager
= mediation_manager_create();
360 this->public.plugins
->load(this->public.plugins
, IPSEC_PLUGINDIR
, "libcharon-");
366 * Handle SIGSEGV/SIGILL signals raised by threads
368 static void segv_handler(int signal
)
370 #ifdef HAVE_BACKTRACE
376 size
= backtrace(array
, 20);
377 strings
= backtrace_symbols(array
, size
);
379 DBG1(DBG_JOB
, "thread %u received %s. Dumping %d frames from stack:",
380 pthread_self(), signal
== SIGSEGV ?
"SIGSEGV" : "SIGILL", size
);
382 for (i
= 0; i
< size
; i
++)
384 DBG1(DBG_DMN
, " %s", strings
[i
]);
387 #else /* !HAVE_BACKTRACE */
388 DBG1(DBG_DMN
, "thread %u received %s",
389 pthread_self(), signal
== SIGSEGV ?
"SIGSEGV" : "SIGILL");
390 #endif /* HAVE_BACKTRACE */
391 DBG1(DBG_DMN
, "killing ourself, received critical signal");
398 private_daemon_t
*daemon_create(void)
400 struct sigaction action
;
401 private_daemon_t
*this = malloc_thing(private_daemon_t
);
404 this->public.kill
= (void (*) (daemon_t
*,char*))kill_daemon
;
406 /* NULL members for clean destruction */
407 this->public.socket
= NULL
;
408 this->public.ike_sa_manager
= NULL
;
409 this->public.credentials
= NULL
;
410 this->public.backends
= NULL
;
411 this->public.attributes
= NULL
;
412 this->public.sender
= NULL
;
413 this->public.receiver
= NULL
;
414 this->public.scheduler
= NULL
;
415 this->public.kernel_interface
= NULL
;
416 this->public.processor
= NULL
;
417 this->public.controller
= NULL
;
418 this->public.eap
= NULL
;
419 this->public.plugins
= NULL
;
420 this->public.bus
= NULL
;
421 this->public.outlog
= NULL
;
422 this->public.syslog
= NULL
;
423 this->public.authlog
= NULL
;
425 this->main_thread_id
= pthread_self();
427 /* add handler for SEGV and ILL,
428 * add handler for USR1 (cancellation).
429 * INT, TERM and HUP are handled by sigwait() in run() */
430 action
.sa_handler
= segv_handler
;
432 sigemptyset(&action
.sa_mask
);
433 sigaddset(&action
.sa_mask
, SIGINT
);
434 sigaddset(&action
.sa_mask
, SIGTERM
);
435 sigaddset(&action
.sa_mask
, SIGHUP
);
436 sigaction(SIGSEGV
, &action
, NULL
);
437 sigaction(SIGILL
, &action
, NULL
);
438 action
.sa_handler
= SIG_IGN
;
439 sigaction(SIGPIPE
, &action
, NULL
);
441 pthread_sigmask(SIG_SETMASK
, &action
.sa_mask
, 0);
447 * print command line usage and exit
449 static void usage(const char *msg
)
451 if (msg
!= NULL
&& *msg
!= '\0')
453 fprintf(stderr
, "%s\n", msg
);
455 fprintf(stderr
, "Usage: charon\n"
458 " [--strictcrlpolicy]\n"
460 " [--crlcheckinterval <interval>]\n"
462 " [--debug-<type> <level>]\n"
463 " <type>: log context type (dmn|mgr|ike|chd|job|cfg|knl|net|enc|lib)\n"
464 " <level>: log verbosity (-1 = silent, 0 = audit, 1 = control,\n"
465 " 2 = controlmore, 3 = raw, 4 = private)\n"
468 exit(msg
== NULL?
0 : 1);
472 * Main function, manages the daemon.
474 int main(int argc
, char *argv
[])
476 u_int crl_check_interval
= 0;
477 bool cache_crls
= FALSE
;
478 bool use_syslog
= FALSE
;
480 private_daemon_t
*private_charon
;
483 level_t levels
[DBG_MAX
];
486 /* silence the library during initialization, as we have no bus yet */
489 /* initialize library */
490 library_init(STRONGSWAN_CONF
);
491 lib
->plugins
->load(lib
->plugins
, IPSEC_PLUGINDIR
, "libstrongswan-");
492 lib
->printf_hook
->add_handler(lib
->printf_hook
, 'R',
493 traffic_selector_get_printf_hooks());
494 private_charon
= daemon_create();
495 charon
= (daemon_t
*)private_charon
;
497 /* drop the capabilities we won't need for initialization */
498 prctl(PR_SET_KEEPCAPS
, 1);
499 drop_capabilities(private_charon
, FALSE
);
501 /* use CTRL loglevel for default */
502 for (signal
= 0; signal
< DBG_MAX
; signal
++)
504 levels
[signal
] = LEVEL_CTRL
;
507 /* handle arguments */
510 struct option long_opts
[] = {
511 { "help", no_argument
, NULL
, 'h' },
512 { "version", no_argument
, NULL
, 'v' },
513 { "use-syslog", no_argument
, NULL
, 'l' },
514 { "cachecrls", no_argument
, NULL
, 'C' },
515 { "crlcheckinterval", required_argument
, NULL
, 'x' },
516 /* TODO: handle "debug-all" */
517 { "debug-dmn", required_argument
, &signal
, DBG_DMN
},
518 { "debug-mgr", required_argument
, &signal
, DBG_MGR
},
519 { "debug-ike", required_argument
, &signal
, DBG_IKE
},
520 { "debug-chd", required_argument
, &signal
, DBG_CHD
},
521 { "debug-job", required_argument
, &signal
, DBG_JOB
},
522 { "debug-cfg", required_argument
, &signal
, DBG_CFG
},
523 { "debug-knl", required_argument
, &signal
, DBG_KNL
},
524 { "debug-net", required_argument
, &signal
, DBG_NET
},
525 { "debug-enc", required_argument
, &signal
, DBG_ENC
},
526 { "debug-lib", required_argument
, &signal
, DBG_LIB
},
530 int c
= getopt_long(argc
, argv
, "", long_opts
, NULL
);
539 printf("Linux strongSwan %s\n", VERSION
);
548 crl_check_interval
= atoi(optarg
);
551 /* option is in signal */
552 levels
[signal
] = atoi(optarg
);
561 /* initialize daemon */
562 if (!initialize(private_charon
, use_syslog
, levels
))
564 DBG1(DBG_DMN
, "initialization failed - aborting charon");
565 destroy(private_charon
);
569 /* check/setup PID file */
570 if (stat(PID_FILE
, &stb
) == 0)
572 DBG1(DBG_DMN
, "charon already running (\""PID_FILE
"\" exists)");
573 destroy(private_charon
);
576 pid_file
= fopen(PID_FILE
, "w");
579 fprintf(pid_file
, "%d\n", getpid());
580 fchown(fileno(pid_file
), IPSEC_UID
, IPSEC_GID
);
584 /* drop additional capabilites (bind & root) */
585 drop_capabilities(private_charon
, TRUE
);
587 /* start the engine, go multithreaded */
588 charon
->processor
->set_threads(charon
->processor
,
589 lib
->settings
->get_int(lib
->settings
, "charon.threads",
595 /* normal termination, cleanup and exit */
596 destroy(private_charon
);