The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
radiusd.c
Go to the documentation of this file.
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17/**
18 * $Id: e1503f75c5114f80c31a1cc2a054eaf08c4e1bc3 $
19 *
20 * @file radiusd.c
21 * @brief Main loop of the radius server.
22 *
23 * @copyright 2000-2018 The FreeRADIUS server project
24 * @copyright 1999,2000 Miquel van Smoorenburg (miquels@cistron.nl)
25 * @copyright 2000 Alan DeKok (aland@freeradius.org)
26 * @copyright 2000 Alan Curry (pacman-radius@cqc.com)
27 * @copyright 2000 Jeff Carneal (jeff@apex.net)
28 * @copyright 2000 Chad Miller (cmiller@surfsouth.com)
29 */
30RCSID("$Id: e1503f75c5114f80c31a1cc2a054eaf08c4e1bc3 $")
31
32#include <freeradius-devel/server/base.h>
33#include <freeradius-devel/server/radmin.h>
34#include <freeradius-devel/server/snmp.h>
35#include <freeradius-devel/util/size.h>
36
37#include <freeradius-devel/io/thread.h>
38
39#include <freeradius-devel/tls/base.h>
40#include <freeradius-devel/tls/log.h>
41
42#include <freeradius-devel/unlang/base.h>
43
44#include <freeradius-devel/util/misc.h>
45#include <freeradius-devel/util/syserror.h>
46
47#ifdef HAVE_CAPABILITY_H
48#include <freeradius-devel/util/cap.h>
49#endif
50
51#include <fcntl.h>
52#include <sys/file.h>
53#include <sys/mman.h>
54
55#ifdef HAVE_GETOPT_H
56# include <getopt.h>
57#endif
58
59#ifdef HAVE_SYS_WAIT_H
60# include <sys/wait.h>
61#endif
62#ifndef WEXITSTATUS
63# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
64#endif
65#ifndef WIFEXITED
66# define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
67#endif
68
69#ifdef HAVE_SYSTEMD
70# include <systemd/sd-daemon.h>
71#endif
72
73#ifdef WITH_TLS
74# include <freeradius-devel/tls/version.h>
75#endif
76
77char const *radiusd_version = RADIUSD_VERSION_BUILD("FreeRADIUS");
78static pid_t radius_pid;
79static char const *program = NULL;
80
81/*
82 * Configuration items.
83 */
84
85/*
86 * Static functions.
87 */
88static void usage(int status);
89
90static void sig_fatal (int);
91#ifdef SIGHUP
92static void sig_hup (int);
93#endif
94
95/** Configure talloc debugging features
96 *
97 * @param[in] config The main config.
98 * @return
99 * - 1 on config conflict.
100 * - 0 on success.
101 * - -1 on error.
102 */
104{
105 if (config->spawn_workers) {
106 if (config->talloc_memory_report) {
107 fr_strerror_printf("talloc_memory_report requires single threaded mode (-s | -X)");
108 return 1;
109 }
110 return 0;
111 }
112
113 if (!config->talloc_memory_report) {
114 talloc_disable_null_tracking();
115 return 0;
116 }
117
118 talloc_enable_null_tracking();
119
120 return 0;
121}
122
123
124/** Create module and xlat per-thread instances
125 *
126 */
127static int thread_instantiate(TALLOC_CTX *ctx, fr_event_list_t *el, UNUSED void *uctx)
128{
129 if (fr_thread_instantiate(ctx, el) < 0) return -1;
130
131 if (modules_rlm_coord_attach(el) < 0) return -1;
132
133 return 0;
134}
135
136/** Explicitly cleanup module/xlat resources
137 *
138 */
139static void thread_detach(UNUSED void *uctx)
140{
142}
143
144#define EXIT_WITH_FAILURE \
145do { \
146 ret = EXIT_FAILURE; \
147 goto cleanup; \
148} while (0)
149
150#define EXIT_WITH_SUCCESS \
151do { \
152 ret = EXIT_SUCCESS; \
153 goto cleanup; \
154} while (0)
155
156#define EXIT_WITH_PERROR \
157do { \
158 fr_perror("%s", program); \
159 EXIT_WITH_FAILURE; \
160} while (0)
161
163
165{
167
168 (void) fr_timer_in(tl, tl, &fr_time_sync_ev, when, false, fr_time_sync_event, NULL);
169 (void) fr_time_sync();
170}
171
172#ifndef NDEBUG
173/** Encourage the server to exit after a period of time
174 *
175 * @param[in] tl The main loop.
176 * @param[in] now Current time. Should be 0, when adding the event.
177 * @param[in] uctx Pointer to a fr_time_delta_t indicating how long
178 * the server should run before exit.
179 */
180static void fr_exit_after(fr_timer_list_t *tl, fr_time_t now, void *uctx)
181{
182 static fr_timer_t *ev;
183
184 fr_time_delta_t exit_after = *(fr_time_delta_t *)uctx;
185
186 if (fr_time_eq(now, fr_time_wrap(0))) {
187 if (fr_timer_in(tl, tl, &ev, exit_after, false, fr_exit_after, uctx) < 0) {
188 PERROR("%s: Failed inserting exit event", program);
189 }
190 return;
191 }
192
194}
195#endif
196
197#ifdef HAVE_CAPABILITY_H
198#define DUMP_CAPABILITIES(_phase) \
199{ \
200 char *cap_str; \
201 if (fr_cap_set_to_str(talloc_autofree_context(), &cap_str) < 0) { \
202 PWARN("Failed retrieving %s capabilities", _phase); \
203 } else { \
204 INFO("%s capabilities: %s", _phase, cap_str); \
205 talloc_free(cap_str); \
206 } \
207}
208#else
209#define DUMP_CAPABILITIES(_phase)
210#endif
211
212/** Entry point for the daemon
213 *
214 * @hidecallgraph
215 */
216int main(int argc, char *argv[])
217{
218 int status;
219 int c;
220 bool display_version = false;
221 bool radmin = false;
222 int from_child[2] = {-1, -1};
223 fr_schedule_t *sc = NULL;
224 int ret = EXIT_SUCCESS;
225
226 TALLOC_CTX *global_ctx = NULL;
227 main_config_t *config = NULL;
228 bool talloc_memory_report = false;
229
230 bool confdir_set = false;
231
232 size_t pool_size = 0;
233 void *pool_page_start = NULL;
234 size_t pool_page_len = 0;
235 bool do_mprotect;
236 int std_fd[3];
237
238#ifndef NDEBUG
239 fr_time_delta_t exit_after = fr_time_delta_wrap(0);
240#endif
241 /*
242 * Must be called first, so the handler is called last
243 */
245
246 /*
247 * Setup talloc callbacks so we get useful errors
248 */
249 (void) fr_talloc_fault_setup();
250
251 /*
252 * Set some default values
253 */
254 program = strrchr(argv[0], FR_DIR_SEP);
255 if (!program) {
256 program = argv[0];
257 } else {
258 program++;
259 }
260
261 /*
262 * We probably don't want to free the talloc global_ctx context
263 * directly, so we'll allocate a new context beneath it, and
264 * free that before any leak reports.
265 */
266 {
267 char *env;
268
269 /*
270 * If a FR_GLOBAL_POOL value is provided and
271 * is of a valid size, we pre-allocate a global
272 * memory pool, and mprotect() it once we're done
273 * parsing the global config.
274 *
275 * This lets us catch stray writes into global
276 * memory.
277 */
278 env = getenv("FR_GLOBAL_POOL");
279 if (env) {
280 if (fr_size_from_str(&pool_size, &FR_SBUFF_IN_STR(env)) < 0) {
281 fr_perror("%s: Invalid pool size string \"%s\"", program, env);
283 }
284
285 /*
286 * Pre-allocate a global memory pool for the static
287 * config to exist in. We mprotect() this later to
288 * catch any stray writes.
289 */
291 &pool_page_start, &pool_page_len, 0, pool_size);
292 do_mprotect = true;
293 } else {
294 global_ctx = talloc_new(talloc_autofree_context());
295 do_mprotect = false;
296 }
297
298 if (!global_ctx) {
299 fprintf(stderr, "Failed allocating global context\n");
301 }
302 }
303
304 /*
305 * Allocate the main config structure.
306 * It's allocated so we can hang talloced buffers off it.
307 */
309 if (!config) {
310 fprintf(stderr, "Failed allocating main config");
312 }
313
315
316 config->daemonize = true;
317 config->spawn_workers = true;
318
319 fr_debug_lvl = 0;
321
322 /*
323 * Don't put output anywhere until we get told a little
324 * more.
325 */
327 default_log.fd = -1;
330
331 /*
332 * Set the panic action and enable other debugging facilities
333 */
334 if (fr_fault_setup(global_ctx, getenv("PANIC_ACTION"), argv[0]) < 0) {
335 fr_perror("%s: Failed installing fault handlers... continuing", program);
336 }
337
338 /* Process the options. */
339 while ((c = getopt(argc, argv, "Cd:D:e:fhl:Mmn:PrsS:tTvxX")) != -1) switch (c) {
340 case 'C':
341 check_config = true;
342 config->spawn_workers = false;
343 config->daemonize = false;
344 break;
345
346 case 'd':
348 confdir_set = true;
349 break;
350
351 case 'D':
353 break;
354
355 case 'e':
356 /*
357 * For non-debug builds, accept '-e', but ignore it.
358 */
359#ifndef NDEBUG
360 exit_after = fr_time_delta_from_sec(atoi(optarg));
361#endif
362 break;
363
364 case 'f':
365 config->daemonize = false;
366 break;
367
368 case 'h':
369 usage(EXIT_SUCCESS);
370 break;
371
372 case 'l':
373 if (strcmp(optarg, "stdout") == 0) goto do_stdout;
374
375 config->log_file = talloc_strdup(global_ctx, optarg);
378 default_log.fd = open(config->log_file, O_WRONLY | O_APPEND | O_CREAT, 0640);
379 if (default_log.fd < 0) {
380 fprintf(stderr, "%s: Failed to open log file %s: %s\n",
381 program, config->log_file, fr_syserror(errno));
383 }
384 break;
385
386 case 'm':
387 config->allow_multiple_procs = true;
388 break;
389
390 case 'M':
391 config->talloc_memory_report = true;
392 break;
393
394 case 'n':
396 break;
397
398 case 'P': /* Force the PID to be written, even in -f mode */
399 config->write_pid = true;
400 break;
401
402 case 'r': /* internal radmin-style control interface */
403 config->spawn_workers = false;
404 config->daemonize = false;
405 radmin = true;
406 break;
407
408 case 's': /* Single process mode */
409 config->spawn_workers = false;
410 config->daemonize = false;
411 break;
412
413 case 'S': /* Migration support */
414#if 0
415 if (main_config_parse_option(optarg) < 0) {
416 fprintf(stderr, "%s: Unknown configuration option '%s'\n",
417 program, optarg);
419 }
420#endif
421 break;
422
423 case 't': /* no child threads */
424 config->spawn_workers = false;
425 break;
426
427 case 'T': /* enable timestamps */
429 break;
430
431 case 'v':
432 display_version = true;
433 break;
434
435 case 'X':
436 config->spawn_workers = false;
437 config->daemonize = false;
438 fr_debug_lvl += 2;
439
440 do_stdout:
442 default_log.fd = STDOUT_FILENO;
443 break;
444
445 case 'x':
446 fr_debug_lvl++;
447 break;
448
449 default:
450 usage(EXIT_FAILURE);
451 break;
452 }
453
455
456 /*
457 * Allow the configuration directory to be set from an
458 * environment variable. This allows tests to change the
459 * configuration directory without changing the scripts
460 * being executed.
461 */
462 if (!confdir_set) {
463 char const *confdir = getenv("FREERADIUS_CONFIG_DIR");
464
465 if (confdir) main_config_confdir_set(config, confdir);
466 }
467
468 /*
469 * We've now got enough information to check to see
470 * if another process is running with the same config.
471 */
472 config->debug_level = fr_debug_lvl;
473
474 /*
475 * Mismatch between the binary and the libraries it depends on.
476 */
479 }
480
482
483#ifdef WITH_TLS
484 /*
485 * Mismatch between build time OpenSSL and linked SSL, better to die
486 * here than segfault later.
487 */
489
490 /*
491 * Initialising OpenSSL once, here, is safer than having individual modules do it.
492 * Must be called before display_version to ensure relevant engines are loaded.
493 *
494 * fr_openssl_init() must be called before *ANY* OpenSSL functions are used, which is why
495 * it's called so early.
496 */
497 if (fr_openssl_init() < 0) EXIT_WITH_FAILURE;
498#endif
499
500 /*
501 * According to the talloc peeps, no two threads may modify any part of
502 * a ctx tree with a common root without synchronisation.
503 *
504 * So we can't run with a null context and threads.
505 */
506 if (talloc_config_set(config) != 0) {
508 }
509
510 /*
511 * Better here, so it doesn't matter whether we get passed -xv or -vx.
512 */
513 if (display_version) {
514 if (fr_debug_lvl == 0) fr_debug_lvl = 1;
516 default_log.fd = STDOUT_FILENO;
517
518 INFO("%s - %s", program, radiusd_version);
521 }
522
524
525 /*
526 * Under linux CAP_SYS_PTRACE is usually only available before setuid/setguid,
527 * so we need to check whether we can attach before calling those functions
528 * (in main_config_init()).
529 */
531
532 /*
533 * Write the PID always if we're running as a daemon.
534 */
535 if (config->daemonize) config->write_pid = true;
536
537 /*
538 * Initialize the DL infrastructure, which is used by the
539 * config file parser. Note that we pass an empty path
540 * here, as we haven't yet read the configuration file.
541 */
542 modules_init(NULL);
543
544 /*
545 * Initialise the top level dictionary hashes which hold
546 * the protocols.
547 */
548 if (!fr_dict_global_ctx_init(NULL, true, config->dict_dir)) {
550 }
551
552#ifdef WITH_TLS
553 if (fr_tls_dict_init() < 0) {
555 }
556#endif
557
558 /*
559 * Setup the global structures for module lists
560 */
561 if (modules_rlm_init() < 0) {
563 }
564
565 if (virtual_servers_init() < 0) {
567 }
568
569 /*
570 * Load dictionary attributes used
571 * for requests.
572 */
573 if (request_global_init() < 0) {
575 }
576
577 /*
578 * The radmin functions need to write somewhere.
579 *
580 * The log functions redirect stdin and stdout to /dev/null, so that exec'd programs can't mangle
581 * them. But radmin needs to be able to use them.
582 */
583#define RDUP(_x) \
584do { \
585 if ((std_fd[_x] = dup(_x)) < 0) EXIT_WITH_PERROR; \
586 if (fr_cloexec(std_fd[_x]) < 0) EXIT_WITH_PERROR; \
587} while (0)
588
589 if (radmin) {
590 RDUP(STDIN_FILENO);
591 RDUP(STDOUT_FILENO);
592 RDUP(STDERR_FILENO);
593 }
594
595 /*
596 * Read the configuration files, BEFORE doing anything else.
597 */
599
600 /*
601 * Suppress secrets if asked, and if at a low debug level.
602 */
603 default_log.suppress_secrets = config->suppress_secrets && (fr_debug_lvl <= 2);
604
605 /*
606 * Check we're the only process using this config.
607 */
608 if (!config->allow_multiple_procs && !check_config) {
610 case 0: /* No other processes running */
611 break;
612
613 case -1: /* Permissions error - fail open */
614 PWARN("%s: Process concurrency checks disabled", program);
615 break;
616
617 case 1:
618 default: /* All other errors */
620 }
621 }
622
623 /*
624 * Set panic_action from the main config if one wasn't specified in the
625 * environment.
626 */
627 if (config->panic_action && !getenv("PANIC_ACTION") &&
628 (fr_fault_setup(global_ctx, config->panic_action, argv[0]) < 0)) {
629 fr_perror("%s: Failed configuring panic action", program);
631 }
632
633 /*
634 * This is very useful in figuring out why the panic_action didn't fire.
635 */
637
638 /*
639 * Track configuration versions. This lets us know if the configuration changed.
640 */
641 if (fr_debug_lvl) {
642 uint8_t digest[16];
643
644 cf_md5_final(digest);
645
646 digest[6] &= 0x0f; /* ver is 0b0100 at bits 48:51 */
647 digest[6] |= 0x40;
648 digest[8] &= ~0xc0; /* var is 0b10 at bits 64:65 */
649 digest[8] |= 0x80;
650
651 /*
652 * UUIDv4 format: 4-2-2-2-6
653 */
654 INFO("Configuration version: %02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
655 digest[0], digest[1], digest[2], digest[3], digest[4], digest[5], digest[6], digest[7],
656 digest[8], digest[9], digest[10], digest[11], digest[12], digest[13], digest[14], digest[15]);
657 }
658
659 /*
660 * Call this again now we've loaded the configuration. Yes I know...
661 */
662 if (talloc_config_set(config) != 0) {
664 }
665
666 /*
667 * Check for vulnerabilities in the version of libssl were linked against.
668 */
669#ifdef WITH_TLS
670# ifdef ENABLE_OPENSSL_VERSION_CHECK
671 if (fr_openssl_version_check(config->allow_vulnerable_openssl) < 0) EXIT_WITH_FAILURE;
672# endif
673
674 /*
675 * Toggle FIPS mode
676 */
677 if (config->openssl_fips_mode_is_set &&
678 (fr_openssl_fips_mode(config->openssl_fips_mode) < 0)) EXIT_WITH_FAILURE;
679#endif
680
681 /*
682 * The systemd watchdog enablement must be checked before we
683 * daemonize, but the watchdog notifications can come from any
684 * process.
685 */
686#ifdef HAVE_SYSTEMD_WATCHDOG
687 if (!check_config) main_loop_set_sd_watchdog_interval();
688#else
689 /*
690 * If the default systemd unit file is used, but the server wasn't
691 * built with support for systemd, the status returned by systemctl
692 * will stay permanently as "activating".
693 *
694 * We detect this condition and warn about it here, using the
695 * presence of the NOTIFY_SOCKET environmental variable to determine
696 * whether we're running under systemd.
697 */
698 if (getenv("NOTIFY_SOCKET")) INFO("Built without support for systemd watchdog, but running under systemd");
699#endif
700
701 /*
702 * Don't allow radmin when checking the config.
703 */
704 if (check_config) radmin = false;
705
706 if (fr_radmin_start(config, radmin, std_fd) < 0) EXIT_WITH_FAILURE;
707
708 /*
709 * Disconnect from session
710 */
711 if (config->daemonize) {
712 pid_t pid;
713 int devnull;
714
715 DUMP_CAPABILITIES("pre-fork");
716
717 /*
718 * Really weird things happen if we leave stdin open and call things like
719 * system() later.
720 *
721 * main_config_init() already calls fr_log_init_legacy(), which closes stdout/stderr.
722 */
723 devnull = open("/dev/null", O_RDWR);
724 if (devnull < 0) {
725 ERROR("Failed opening /dev/null: %s", fr_syserror(errno));
727 }
728 dup2(devnull, STDIN_FILENO);
729
730 close(devnull);
731
732 if (pipe(from_child) != 0) {
733 ERROR("Couldn't open pipe for child status: %s", fr_syserror(errno));
735 }
736
737 pid = fork();
738 if (pid < 0) {
739 ERROR("Couldn't fork: %s", fr_syserror(errno));
741 }
742
743 /*
744 * The parent exits, so the child can run in the background.
745 *
746 * As the child can still encounter an error during initialisation
747 * we do a blocking read on a pipe between it and the parent.
748 *
749 * Just before entering the event loop the child will send a success
750 * or failure message to the parent, via the pipe.
751 */
752 if (pid > 0) {
753 uint8_t child_ret;
754 int stat_loc;
755
756 /* So the pipe is correctly widowed if the child exits */
757 close(from_child[1]);
758
759 /*
760 * The child writes a 0x01 byte on success, and closes
761 * the pipe on error.
762 */
763 if ((read(from_child[0], &child_ret, 1) <= 0)) child_ret = 0;
764
765 /* For cleanliness... */
766 close(from_child[0]);
767
768 /* Don't turn children into zombies */
769 if (child_ret == 0) {
770 waitpid(pid, &stat_loc, WNOHANG);
772 }
773
774#ifdef HAVE_SYSTEMD
775 /*
776 * Update the systemd MAINPID to be our child,
777 * as the parent is about to exit.
778 */
779 sd_notifyf(0, "MAINPID=%lu", (unsigned long)pid);
780#endif
781
782 goto cleanup;
783 /*
784 * The child needs to increment the semaphore as the parent
785 * is going to exit, and it will decrement the semaphore.
786 */
787 } else if (pid == 0) {
789 PWARN("%s: Failed incrementing exclusive proc semaphore in child", program);
790 }
791 }
792
793 /* so the pipe is correctly widowed if the parent exits?! */
794 close(from_child[0]);
795#ifdef HAVE_SETSID
796 setsid();
797#endif
798
799 DUMP_CAPABILITIES("post-fork");
800 } else {
801 DUMP_CAPABILITIES("pre-suid-down");
802 }
803
804 /*
805 * Ensure that we're using the CORRECT pid after forking, NOT the one
806 * we started with.
807 */
808 radius_pid = getpid();
809
810 /*
811 * Initialise the interpreter, registering operations.
812 */
814
816
817 /*
818 * Everything seems to have loaded OK, exit gracefully.
819 */
820 if (check_config) {
821 DEBUG("Configuration appears to be OK");
822 goto cleanup;
823 }
824
825 /*
826 * Initialise the SNMP stats structures
827 */
828 if (fr_snmp_init() < 0) {
829 PERROR("Failed initialising SNMP");
831 }
832
833 /*
834 * Initialize the global event loop which handles things like
835 * systemd.
836 *
837 * This has to be done post-fork in case we're using kqueue, where the
838 * queue isn't inherited by the child process.
839 */
840 if (main_loop_init() < 0) {
841 PERROR("Failed initialising main event loop");
843 }
844
845 /*
846 * Start the network / worker threads.
847 */
848 {
849 fr_schedule_config_t *schedule;
850
851 MEM(schedule = talloc_zero(global_ctx, fr_schedule_config_t));
852 schedule->max_workers = config->max_workers;
853 schedule->max_networks = config->max_networks;
854 schedule->stats_interval = config->stats_interval;
855
856 schedule->network.max_outstanding = config->worker.max_requests;
857 schedule->worker = config->worker;
858 schedule->cs = cf_section_find(config->root_cs, "thread", CF_IDENT_ANY);
859
860 /*
861 * Fix spurious messages
862 */
864 sc = fr_schedule_create(NULL, !config->spawn_workers, main_loop_event_list(),
867 if (!sc) {
868 PERROR("Failed starting the scheduler");
870 }
871
872 /*
873 * Tell the virtual servers to open their sockets.
874 */
876 }
877
878 /*
879 * At this point, no one has any business *ever* going
880 * back to root uid.
881 */
883
884 /*
885 * Move the current working directory to a place where it
886 * can't hurt anything.
887 */
889 if (chdir(main_config->chdir) < 0) {
890 ERROR("Failed changing working to %s: %s", main_config->chdir, fr_syserror(errno));
892 }
893 }
894
895 DUMP_CAPABILITIES("post-suid-down");
896
897 /*
898 * Dropping down may change the RLIMIT_CORE value, so
899 * reset it back to what to should be here.
900 */
902
903 /*
904 * If we're debugging, then a CTRL-C will cause the server to die
905 * immediately. Use SIGTERM to shut down the server cleanly in
906 * that case.
907 */
908 if (fr_set_signal(SIGINT, sig_fatal) < 0) {
909 set_signal_error:
910 PERROR("Failed installing signal handler");
912 }
913
914#ifdef SIGQUIT
915 if (fr_set_signal(SIGQUIT, sig_fatal) < 0) goto set_signal_error;
916#endif
917
918 /*
919 * Now that we've set everything up, we can install the signal
920 * handlers. Before this, if we get any signal, we don't know
921 * what to do, so we might as well do the default, and die.
922 */
923#ifdef SIGPIPE
924 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
925 ERROR("Failed ignoring SIGPIPE: %s", fr_syserror(errno));
926 goto cleanup;
927 }
928#endif
929
930 if (fr_set_signal(SIGHUP, sig_hup) < 0) goto set_signal_error;
931 if (fr_set_signal(SIGTERM, sig_fatal) < 0) goto set_signal_error;
932
933 /*
934 * Write the PID after we've forked, so that we write the correct one.
935 */
936 if (config->write_pid) {
937 FILE *fp;
938
939 fp = fopen(config->pid_file, "w");
940 if (fp != NULL) {
941 /*
942 * @fixme What about following symlinks,
943 * and having it over-write a normal file?
944 */
945 fprintf(fp, "%d\n", (int) radius_pid);
946 fclose(fp);
947 } else {
948 ERROR("Failed creating PID file %s: %s", config->pid_file, fr_syserror(errno));
950 }
951 }
952
953 trigger(NULL, NULL, NULL, "server.start", false, NULL);
954
955 /*
956 * Inform the parent (who should still be waiting) that the rest of
957 * initialisation went OK, and that it should exit with a 0 status.
958 * If we don't get this far, then we just close the pipe on exit, and the
959 * parent gets a read failure.
960 */
961 if (config->daemonize) {
962 if (write(from_child[1], "\001", 1) < 0) {
963 WARN("Failed informing parent of successful start: %s",
964 fr_syserror(errno));
965 }
966 close(from_child[1]);
967 }
968
969 /*
970 * Clear the libfreeradius error buffer.
971 */
973
974 /*
975 * Prevent anything from modifying the dictionaries
976 * they're now immutable.
977 */
979
980 /*
981 * Protect global memory - If something attempts
982 * to write to this memory we get a SIGBUS.
983 */
984 if (do_mprotect) {
985 if (mprotect(pool_page_start, pool_page_len, PROT_READ) < 0) {
986 ERROR("Protecting global memory failed: %s", fr_syserror(errno));
988 }
989 DEBUG("Global memory protected");
990 }
991
993#ifndef NDEBUG
994 if (fr_time_delta_ispos(exit_after)) fr_exit_after(main_loop_event_list()->tl, fr_time_wrap(0), &exit_after);
995#endif
996 /*
997 * Process requests until HUP or exit.
998 */
999 INFO("Ready to process requests"); /* we were actually ready a while ago, but oh well */
1000 while ((status = main_loop_start()) == 0x80) {
1002 }
1003
1004 /*
1005 * Ignore the TERM signal: we're about to die.
1006 */
1007 if (unlikely(signal(SIGTERM, SIG_IGN) == SIG_ERR)) {
1008 ERROR("Failed blocking SIGTERM, we may receive spurious signals: %s",
1009 fr_syserror(errno));
1010 }
1011
1012 /*
1013 * Unprotect global memory
1014 */
1015 if (do_mprotect) {
1016 if (mprotect(pool_page_start, pool_page_len,
1017 PROT_READ | PROT_WRITE) < 0) {
1018 ERROR("Unprotecting global memory failed: %s", fr_syserror(errno));
1020 }
1021 DEBUG("Global memory unprotected");
1022 }
1023
1024 if (status < 0) {
1025 PERROR("Exiting due to internal error");
1026 ret = EXIT_FAILURE;
1027 } else {
1028 INFO("Exiting normally");
1029 ret = EXIT_SUCCESS;
1030 }
1031
1033
1034 /*
1035 * Fire signal and stop triggers after ignoring SIGTERM, so handlers are
1036 * not killed with the rest of the process group, below.
1037 */
1038 if (status == 2) trigger(NULL, NULL, NULL, "server.signal.term", true, NULL);
1039 trigger(NULL, NULL, NULL, "server.stop", false, NULL);
1040
1041 /*
1042 * Stop the scheduler, this signals the network and worker threads
1043 * to exit gracefully. fr_schedule_destroy only returns once all
1044 * threads have been joined.
1045 */
1046 if (unlikely(fr_schedule_destroy(&sc) < 0)) {
1048 }
1049
1050 /*
1051 * We're exiting, so we can delete the PID file.
1052 * (If it doesn't exist, we can ignore the error returned by unlink)
1053 */
1054 if (config->daemonize) {
1055 DEBUG3("Unlinking PID file %s", config->pid_file);
1056 unlink(config->pid_file);
1057 }
1058
1059 /*
1060 * Free memory in an explicit and consistent order
1061 *
1062 * We could let everything be freed by the global_ctx
1063 * context, but in some cases there are odd interactions
1064 * with destructors that may cause double frees and
1065 * SEGVs.
1066 */
1067 if (!config->spawn_workers) {
1069
1072 }
1073
1075
1076 /*
1077 * Send a TERM signal to all associated processes
1078 * (including us, which gets ignored.)
1079 *
1080 * This _shouldn't_ be needed, but may help with
1081 * processes created by the exec code or triggers.
1082 */
1083 if (config->spawn_workers) {
1084 INFO("All threads have exited, sending SIGTERM to remaining children");
1085
1086 /*
1087 * If pid is negative, but not -1, sig
1088 * shall be sent to all processes
1089 * (excluding an unspecified set of system processes)
1090 * whose process group ID is equal to the absolute value
1091 * of pid, and for which the process has permission
1092 * to send a signal.
1093 */
1094 kill(-getpgid(radius_pid), SIGTERM);
1095 }
1096
1097 /*
1098 * Remove the semaphore, allowing other processes
1099 * to start. We do this before the cleanup label
1100 * as the parent process MUST NOT call this
1101 * function as it exits, otherwise the semaphore
1102 * is removed and there's no exclusivity.
1103 */
1105
1106cleanup:
1107 /*
1108 * This may not have been done earlier if we're
1109 * exiting due to a startup error.
1110 */
1111 (void) fr_schedule_destroy(&sc);
1112
1113 /*
1114 * Ensure all thread local memory is cleaned up
1115 * before we start cleaning up global resources.
1116 * This is necessary for single threaded mode
1117 * to ensure that thread local resources that
1118 * depend on global resources are freed at the
1119 * appropriate time.
1120 */
1122
1123 server_free();
1124
1125#ifdef WITH_TLS
1126 fr_openssl_free(); /* Cleanup any memory alloced by OpenSSL and placed into globals */
1127#endif
1128
1129 if (config) talloc_memory_report = config->talloc_memory_report; /* Grab this before we free the config */
1130
1131 /*
1132 * Virtual servers need to be freed before modules
1133 * as state entries containing data with module-specific
1134 * destructors may exist.
1135 */
1137
1138 /*
1139 * Free modules, this needs to be done explicitly
1140 * because some libraries used by modules use atexit
1141 * handlers registered after ours, and they may deinit
1142 * themselves before we free the modules and cause
1143 * crashes on exit.
1144 */
1146
1147#ifdef WITH_TLS
1148 fr_tls_dict_free();
1149#endif
1150
1151 /*
1152 * And now nothing should be left anywhere except the
1153 * parsed configuration items.
1154 */
1156
1157 /*
1158 * Cleanup everything else
1159 */
1160 if (talloc_free(global_ctx) < 0) {
1161#ifndef NDEBUG
1162 fr_perror("program");
1163 ret = EXIT_FAILURE;
1164#endif
1165 }
1166
1167 /*
1168 * Anything not cleaned up by the above is allocated in
1169 * the NULL top level context, and is likely leaked memory.
1170 */
1171 if (talloc_memory_report) fr_log_talloc_report(NULL);
1172
1173 /*
1174 * If we're running under LSAN, try and SUID back up so
1175 * we don't inteferere with the onexit() handler.
1176 */
1178 fr_strerror_clear(); /* clear error buffer */
1179
1180 /*
1181 * Ensure our atexit handlers run before any other
1182 * atexit handlers registered by third party libraries.
1183 */
1185
1186 return ret;
1187}
1188
1189/*
1190 * Display the syntax for starting this program.
1191 */
1192static NEVER_RETURNS void usage(int status)
1193{
1194 FILE *output = status ? stderr : stdout;
1195
1196 fprintf(output, "Usage: %s [options]\n", program);
1197 fprintf(output, "Options:\n");
1198 fprintf(output, " -C Check configuration and exit.\n");
1199 fprintf(output, " -d <confdir> Configuration file directory (defaults to " CONFDIR ").\n");
1200 fprintf(output, " -D <dictdir> Set main dictionary directory (defaults to " DICTDIR ").\n");
1201#ifndef NDEBUG
1202 fprintf(output, " -e <seconds> Exit after the specified number of seconds. Useful for diagnosing \"crash-on-exit\" issues.\n");
1203#endif
1204 fprintf(output, " -f Run as a foreground process, not a daemon.\n");
1205 fprintf(output, " -h Print this help message.\n");
1206 fprintf(output, " -l <log_file> Logging output will be written to this file.\n");
1207#ifndef NDEBUG
1208 fprintf(output, " -L <size> When running in memory debug mode, set a hard limit on talloced memory\n");
1209#endif
1210 fprintf(output, " -n <name> Read ${confdir}/name.conf instead of ${confdir}/%s.conf.\n", program);
1211 fprintf(output, " -m Allow multiple processes reading the same %s.conf to exist simultaneously.\n", program);
1212#ifndef NDEBUG
1213 fprintf(output, " -M Enable talloc memory debugging, and issue a memory report when the server terminates\n");
1214#endif
1215 fprintf(output, " -P Always write out PID, even with -f.\n");
1216 fprintf(output, " -s Do not spawn child processes to handle requests (same as -ft).\n");
1217
1218 /*
1219 * Place-holder in case we need it. Should be removed before the release.
1220 */
1221// fprintf(output, " -S <flag> Set migration flags to assist with upgrades from version 3.\n");
1222 fprintf(output, " -t Disable threads.\n");
1223 fprintf(output, " -T Prepend timestamps to log messages.\n");
1224 fprintf(output, " -v Print server version information.\n");
1225 fprintf(output, " -X Turn on full debugging (similar to -tfxxl stdout).\n");
1226 fprintf(output, " -x Turn on additional debugging (-xx gives more debugging).\n");
1227 fr_exit(status);
1228}
1229
1230
1231/*
1232 * We got a fatal signal.
1233 */
1234static void sig_fatal(int sig)
1235{
1236 static volatile sig_atomic_t last_sig;
1237
1238 if (getpid() != radius_pid) _exit(sig);
1239
1240 /*
1241 * Suppress duplicate signals.
1242 *
1243 * For some reason on macOS we get multiple signals
1244 * for the same event (SIGINT).
1245 *
1246 * ...this also fixes the problem of the user hammering
1247 * Ctrl-C and causing ungraceful exits as we try and
1248 * write out signals to a pipe that's already closed.
1249 */
1250 if (sig == last_sig) return;
1251 last_sig = sig;
1252
1253 switch (sig) {
1254 case SIGTERM:
1256 break;
1257
1258 case SIGINT:
1259#ifdef SIGQUIT
1260 case SIGQUIT:
1261#endif
1263 break;
1264
1265 default:
1266 fr_exit(sig);
1267 }
1268}
1269
1270#ifdef SIGHUP
1271/*
1272 * We got the hangup signal.
1273 * Re-read the configuration files.
1274 */
1275static void sig_hup(UNUSED int sig)
1276{
1277 reset_signal(SIGHUP, sig_hup);
1278
1280}
1281#endif
int fr_atexit_global_setup(void)
Setup the atexit handler, should be called at the start of a program's execution.
Definition atexit.c:159
int fr_atexit_global_trigger_all(void)
Cause all global free triggers to fire.
Definition atexit.c:285
#define fr_atexit_thread_trigger_all(...)
Definition atexit.h:232
void fr_radmin_stop(void)
Definition radmin.c:1147
int fr_radmin_start(main_config_t *config, bool cli, int std_fd[static 3])
Definition radmin.c:1079
#define RCSID(id)
Definition build.h:506
#define NEVER_RETURNS
Should be placed before the function return type.
Definition build.h:334
#define unlikely(_x)
Definition build.h:402
#define UNUSED
Definition build.h:336
bool check_config
Definition cf_file.c:61
void cf_md5_final(uint8_t *digest)
Definition cf_file.c:3364
CONF_SECTION * cf_section_find(CONF_SECTION const *cs, char const *name1, char const *name2)
Find a CONF_SECTION with name1 and optionally name2.
Definition cf_util.c:1029
#define CF_IDENT_ANY
Definition cf_util.h:75
char const * fr_debug_state_to_msg(fr_debug_state_t state)
Return current value of debug_state.
Definition debug.c:512
int fr_log_talloc_report(TALLOC_CTX const *ctx)
Generate a talloc memory report for a context and print to stderr/stdout.
Definition debug.c:962
int fr_reset_dumpable(void)
Reset dumpable state to previously configured value.
Definition debug.c:743
int fr_fault_setup(TALLOC_CTX *ctx, char const *cmd, char const *program)
Registers signal handlers to execute panic_action on fatal signal.
Definition debug.c:1056
int fr_get_lsan_state(void)
Definition debug.c:232
void fr_debug_state_store(void)
Should be run before using setuid or setgid to get useful results.
Definition debug.c:492
void fr_talloc_fault_setup(void)
Register talloc fault handlers.
Definition debug.c:1037
fr_debug_state_t fr_debug_state
Whether we're attached to by a debugger.
Definition debug.c:74
#define fr_exit(_x)
Exit, producing a log message in debug builds.
Definition debug.h:230
#define MEM(x)
Definition debug.h:46
void dependency_version_print(void)
Definition dependency.c:365
int rad_check_lib_magic(uint64_t magic)
Check if the application linking to the library has the correct magic number.
Definition dependency.c:70
#define ERROR(fmt,...)
Definition dhcpclient.c:40
#define DEBUG(fmt,...)
Definition dhcpclient.c:38
static NEVER_RETURNS void usage(void)
Definition dhcpclient.c:113
fr_dict_t * fr_dict_unconst(fr_dict_t const *dict)
Coerce to non-const.
Definition dict_util.c:4903
void fr_dict_global_ctx_read_only(void)
Mark all dictionaries and the global dictionary ctx as read only.
Definition dict_util.c:4819
fr_dict_t const * fr_dict_internal(void)
Definition dict_util.c:4928
fr_dict_gctx_t * fr_dict_global_ctx_init(TALLOC_CTX *ctx, bool free_at_exit, char const *dict_dir))
Initialise the global protocol hashes.
Definition dict_util.c:4713
talloc_free(hp)
uint32_t max_outstanding
Definition network.h:46
int server_init(CONF_SECTION *cs, char const *conf_dir, fr_dict_t *dict)
Initialize src/lib/server/.
Definition base.c:42
void server_free(void)
Free src/lib/server/.
Definition base.c:137
#define PERROR(_fmt,...)
Definition log.h:228
#define DEBUG3(_fmt,...)
Definition log.h:266
#define PWARN(_fmt,...)
Definition log.h:227
void rad_suid_up(void)
Definition util.c:767
bool rad_suid_is_down_permanent(void)
Return whether we've permanently dropped root privileges.
Definition util.c:788
void(*)(int) reset_signal(int signo, void(*func)(int))
Definition util.c:49
void rad_suid_down_permanent(void)
Definition util.c:776
int unlang_global_init(void)
Definition base.c:158
#define fr_time()
Definition event.c:60
void fr_event_loop_exit(fr_event_list_t *el, int code)
Signal an event loop exit with the specified code.
Definition event.c:2355
Stores all information relating to an event list.
Definition event.c:377
int fr_debug_lvl
Definition log.c:40
static FILE * devnull
File handle for /dev/null.
Definition log.c:56
fr_log_t default_log
Definition log.c:288
@ L_DST_NULL
Discard log messages.
Definition log.h:80
@ L_DST_FILES
Log to a file on disk.
Definition log.h:76
@ L_DST_STDOUT
Log to stdout.
Definition log.h:75
@ L_TIMESTAMP_ON
Always log timestamps.
Definition log.h:87
int main_config_free(main_config_t **config)
main_config_t * main_config_alloc(TALLOC_CTX *ctx)
Allocate a main_config_t struct, setting defaults.
void main_config_exclusive_proc_done(UNUSED main_config_t const *config)
Clean up the semaphore when the main config is freed.
void main_config_hup(main_config_t *config)
int main_config_exclusive_proc(main_config_t *config)
Check to see if we're the only process using this configuration file (or PID file if specified)
void main_config_name_set_default(main_config_t *config, char const *name, bool overwrite_config)
Set the server name.
int main_config_init(main_config_t *config)
void main_config_confdir_set(main_config_t *config, char const *name)
Set the global radius config directory.
main_config_t const * main_config
Main server configuration.
Definition main_config.c:58
int main_config_exclusive_proc_child(UNUSED main_config_t const *config)
Increment the semaphore in the child process so that it's not released when the parent exits.
void main_config_dict_dir_set(main_config_t *config, char const *name)
Set the global dictionary directory.
int main_config_parse_option(char const *value)
char const * chdir
where to chdir() to when we start.
Main server configuration.
Definition main_config.h:51
int main_loop_start(void)
Definition main_loop.c:196
fr_event_list_t * main_loop_event_list(void)
Return the main loop event list.
Definition main_loop.c:166
void main_loop_signal_raise(int flag)
Definition main_loop.c:78
int main_loop_init(void)
Initialise the main event loop, setting up signal handlers.
Definition main_loop.c:255
void main_loop_free(void)
Definition main_loop.c:191
@ RADIUS_SIGNAL_SELF_HUP
Definition main_loop.h:36
@ RADIUS_SIGNAL_SELF_TERM
Definition main_loop.h:37
unsigned char uint8_t
int fr_set_signal(int sig, sig_t func)
Sets a signal handler using sigaction if available, else signal.
Definition misc.c:47
int modules_rlm_coord_attach(fr_event_list_t *el)
Runs the coord_attach method of all registered backend modules.
Definition module_rlm.c:970
int modules_rlm_free(void)
Cleanup all global structures.
int modules_rlm_init(void)
Initialise the module list structure.
static const conf_parser_t config[]
Definition base.c:163
#define WARN(fmt,...)
#define INFO(fmt,...)
Definition radict.c:63
int main(int argc, char *argv[])
Entry point for the daemon.
Definition radiusd.c:216
static void thread_detach(UNUSED void *uctx)
Explicitly cleanup module/xlat resources.
Definition radiusd.c:139
#define EXIT_WITH_PERROR
Definition radiusd.c:156
static void fr_exit_after(fr_timer_list_t *tl, fr_time_t now, void *uctx)
Encourage the server to exit after a period of time.
Definition radiusd.c:180
static void fr_time_sync_event(fr_timer_list_t *tl, UNUSED fr_time_t now, UNUSED void *uctx)
Definition radiusd.c:164
#define DUMP_CAPABILITIES(_phase)
Definition radiusd.c:209
#define RDUP(_x)
#define EXIT_WITH_SUCCESS
Definition radiusd.c:150
char const * radiusd_version
Definition radiusd.c:77
static int thread_instantiate(TALLOC_CTX *ctx, fr_event_list_t *el, UNUSED void *uctx)
Create module and xlat per-thread instances.
Definition radiusd.c:127
static int talloc_config_set(main_config_t *config)
Configure talloc debugging features.
Definition radiusd.c:103
static void sig_fatal(int)
Definition radiusd.c:1234
static pid_t radius_pid
Definition radiusd.c:78
#define EXIT_WITH_FAILURE
Definition radiusd.c:144
static fr_timer_t * fr_time_sync_ev
Definition radiusd.c:162
static char const * program
Definition radiusd.c:79
static bool cleanup
Definition radsniff.c:59
int request_global_init(void)
Definition request.c:596
#define FR_SBUFF_IN_STR(_start)
fr_schedule_t * fr_schedule_create(TALLOC_CTX *ctx, bool single_threaded, fr_event_list_t *el, fr_log_t *logger, fr_log_lvl_t lvl, fr_schedule_thread_instantiate_t worker_thread_instantiate, fr_schedule_thread_detach_t worker_thread_detach, fr_schedule_config_t *config)
Create a scheduler and spawn the child threads.
Definition schedule.c:266
int fr_schedule_destroy(fr_schedule_t **sc_to_free)
Destroy a scheduler, and tell its child threads to exit.
Definition schedule.c:571
The scheduler.
Definition schedule.c:76
fr_network_config_t network
configuration for each network;
Definition schedule.h:69
uint32_t max_workers
number of worker threads
Definition schedule.h:66
CONF_SECTION * cs
root config section
Definition schedule.h:73
fr_worker_config_t worker
configuration for each worker
Definition schedule.h:68
fr_time_delta_t stats_interval
print channel statistics
Definition schedule.h:71
uint32_t max_networks
number of network threads
Definition schedule.h:65
fr_slen_t fr_size_from_str(size_t *out, fr_sbuff_t *in)
Parse a size string with optional unit.
Definition size.c:40
static const uchar sc[16]
Definition smbdes.c:115
int fr_snmp_init(void)
Initialise the tree of SNMP map structures used to attach callbacks to OIDs.
Definition snmp.c:1130
void modules_init(char const *lib_dir)
Perform global initialisation for modules.
Definition module.c:1939
fr_log_dst_t dst
Log destination.
Definition log.h:94
int fd
File descriptor to write messages to.
Definition log.h:109
fr_log_timestamp_t timestamp
Prefix log messages with timestamps.
Definition log.h:107
bool suppress_secrets
suppress secrets when printing to this destination
Definition log.h:105
char const * file
Path to log file.
Definition log.h:110
bool print_level
sometimes we don't want log levels printed
Definition log.h:103
char const * fr_syserror(int num)
Guaranteed to be thread-safe version of strerror.
Definition syserror.c:243
static TALLOC_CTX * global_ctx
Definition talloc.c:32
TALLOC_CTX * talloc_page_aligned_pool(TALLOC_CTX *ctx, void **start, size_t *end_len, unsigned int headers, size_t size)
Return a page aligned talloc memory pool.
Definition talloc.c:308
#define talloc_autofree_context
The original function is deprecated, so replace it with our version.
Definition talloc.h:48
#define talloc_strdup(_ctx, _str)
Definition talloc.h:142
int fr_thread_instantiate(TALLOC_CTX *ctx, fr_event_list_t *el)
Instantiate thread-specific data for modules, virtual servers, xlats, unlang, and TLS.
Definition thread.c:165
void fr_thread_detach(void)
Detach thread-specific data for modules, virtual servers, xlats.
Definition thread.c:190
int fr_time_sync(void)
Get a new fr_time_monotonic_to_realtime value.
Definition time.c:102
int fr_time_start(void)
Initialize the local time.
Definition time.c:150
static fr_time_delta_t fr_time_delta_from_sec(int64_t sec)
Definition time.h:590
#define fr_time_delta_wrap(_time)
Definition time.h:152
#define fr_time_wrap(_time)
Definition time.h:145
#define fr_time_delta_ispos(_a)
Definition time.h:290
#define fr_time_eq(_a, _b)
Definition time.h:241
A time delta, a difference in time measured in nanoseconds.
Definition time.h:80
"server local" time.
Definition time.h:69
An event timer list.
Definition timer.c:49
A timer event.
Definition timer.c:83
#define fr_timer_in(...)
Definition timer.h:87
int fr_openssl_version_consistent(void)
Definition version.c:246
int trigger(unlang_interpret_t *intp, CONF_SECTION const *cs, CONF_PAIR **trigger_cp, char const *name, bool rate_limit, fr_pair_list_t *args)
Execute a trigger - call an executable to process an event.
Definition trigger.c:155
static fr_event_list_t * el
void fr_perror(char const *fmt,...)
Print the current error to stderr with a prefix.
Definition strerror.c:732
void fr_strerror_clear(void)
Clears all pending messages from the talloc pools.
Definition strerror.c:576
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
int fr_check_lib_magic(uint64_t magic)
Check if the application linking to the library has the correct magic number.
Definition version.c:40
#define RADIUSD_VERSION_BUILD(_x)
Create a version string for a utility in the suite of FreeRADIUS utilities.
Definition version.h:58
#define RADIUSD_MAGIC_NUMBER
Definition version.h:81
int virtual_servers_open(fr_schedule_t *sc)
Open all the listen sockets.
int virtual_servers_init(void)
Performs global initialisation for the virtual server code.
int virtual_servers_free(void)