bfc6df28e3e6d2ee62f96bb68c2db77f6e8d85f3
[freeradius.git] / src / main / mainconfig.c
1 /*
2  * mainconf.c   Handle the server's configuration.
3  *
4  * Version:     $Id$
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  * Copyright 2002,2006-2007  The FreeRADIUS server project
21  * Copyright 2002  Alan DeKok <aland@ox.org>
22  */
23
24 #include <freeradius-devel/ident.h>
25 RCSID("$Id$")
26
27 #include <freeradius-devel/radiusd.h>
28 #include <freeradius-devel/modules.h>
29 #include <freeradius-devel/rad_assert.h>
30
31 #include <sys/stat.h>
32
33 #ifdef HAVE_SYS_RESOURCE_H
34 #include <sys/resource.h>
35 #endif
36
37 #ifdef HAVE_PWD_H
38 #include <pwd.h>
39 #endif
40
41 #ifdef HAVE_GRP_H
42 #include <grp.h>
43 #endif
44
45 #ifdef HAVE_SYS_PRCTL_H
46 #include <sys/prctl.h>
47 #endif
48
49 #ifdef HAVE_SYSLOG_H
50 #       include <syslog.h>
51 #endif
52
53 #ifdef HAVE_SYS_STAT_H
54 #include <sys/stat.h>
55 #endif
56
57 #ifdef HAVE_FCNTL_H
58 #include <fcntl.h>
59 #endif
60
61 struct main_config_t mainconfig;
62 char *request_log_file = NULL;
63 char *debug_log_file = NULL;
64 char *debug_condition = NULL;
65
66 /*
67  *      Temporary local variables for parsing the configuration
68  *      file.
69  */
70 #ifndef __MINGW32__
71 uid_t server_uid;
72 static gid_t server_gid;
73 static const char *uid_name = NULL;
74 static const char *gid_name = NULL;
75 #endif
76 static const char *chroot_dir = NULL;
77 static int allow_core_dumps = 0;
78 static const char *radlog_dest = NULL;
79
80 /*
81  *      These are not used anywhere else..
82  */
83 static const char *localstatedir = NULL;
84 static const char *prefix = NULL;
85 static char *syslog_facility = NULL;
86 static const FR_NAME_NUMBER str2fac[] = {
87 #ifdef LOG_KERN
88         { "kern", LOG_KERN },
89 #endif
90 #ifdef LOG_USER
91         { "user", LOG_USER },
92 #endif
93 #ifdef LOG_MAIL
94         { "mail", LOG_MAIL },
95 #endif
96 #ifdef LOG_DAEMON
97         { "daemon", LOG_DAEMON },
98 #endif
99 #ifdef LOG_AUTH
100         { "auth", LOG_AUTH },
101 #endif
102 #ifdef LOG_LPR
103         { "lpr", LOG_LPR },
104 #endif
105 #ifdef LOG_NEWS
106         { "news", LOG_NEWS },
107 #endif
108 #ifdef LOG_UUCP
109         { "uucp", LOG_UUCP },
110 #endif
111 #ifdef LOG_CRON
112         { "cron", LOG_CRON },
113 #endif
114 #ifdef LOG_AUTHPRIV
115         { "authpriv", LOG_AUTHPRIV },
116 #endif
117 #ifdef LOG_FTP
118         { "ftp", LOG_FTP },
119 #endif
120 #ifdef LOG_LOCAL0
121         { "local0", LOG_LOCAL0 },
122 #endif
123 #ifdef LOG_LOCAL1
124         { "local1", LOG_LOCAL1 },
125 #endif
126 #ifdef LOG_LOCAL2
127         { "local2", LOG_LOCAL2 },
128 #endif
129 #ifdef LOG_LOCAL3
130         { "local3", LOG_LOCAL3 },
131 #endif
132 #ifdef LOG_LOCAL4
133         { "local4", LOG_LOCAL4 },
134 #endif
135 #ifdef LOG_LOCAL5
136         { "local5", LOG_LOCAL5 },
137 #endif
138 #ifdef LOG_LOCAL6
139         { "local6", LOG_LOCAL6 },
140 #endif
141 #ifdef LOG_LOCAL7
142         { "local7", LOG_LOCAL7 },
143 #endif
144         { NULL, -1 }
145 };
146
147 /*
148  *  Security configuration for the server.
149  */
150 static const CONF_PARSER security_config[] = {
151         { "max_attributes",  PW_TYPE_INTEGER, 0, &fr_max_attributes, Stringify(0) },
152         { "reject_delay",  PW_TYPE_INTEGER, 0, &mainconfig.reject_delay, Stringify(0) },
153         { "status_server", PW_TYPE_BOOLEAN, 0, &mainconfig.status_server, "no"},
154         { NULL, -1, 0, NULL, NULL }
155 };
156
157
158 /*
159  *      Logging configuration for the server.
160  */
161 static const CONF_PARSER logdest_config[] = {
162         { "destination",  PW_TYPE_STRING_PTR, 0, &radlog_dest, "files" },
163         { "syslog_facility",  PW_TYPE_STRING_PTR, 0, &syslog_facility, Stringify(0) },
164
165         { "file", PW_TYPE_STRING_PTR, -1, &mainconfig.log_file, "${logdir}/radius.log" },
166         { "requests", PW_TYPE_STRING_PTR, -1, &request_log_file, NULL },
167         { "debug_file", PW_TYPE_STRING_PTR, -1, &debug_log_file, NULL },
168         { NULL, -1, 0, NULL, NULL }
169 };
170
171
172 static const CONF_PARSER serverdest_config[] = {
173         { "log", PW_TYPE_SUBSECTION, 0, NULL, (const void *) logdest_config },
174         { "log_file", PW_TYPE_STRING_PTR, -1, &mainconfig.log_file, NULL },
175         { "log_destination", PW_TYPE_STRING_PTR, -1, &radlog_dest, NULL },
176         { NULL, -1, 0, NULL, NULL }
177 };
178
179
180 static const CONF_PARSER log_config_nodest[] = {
181         { "stripped_names", PW_TYPE_BOOLEAN, 0, &log_stripped_names,"no" },
182
183         { "auth", PW_TYPE_BOOLEAN, -1, &mainconfig.log_auth, "no" },
184         { "auth_badpass", PW_TYPE_BOOLEAN, 0, &mainconfig.log_auth_badpass, "no" },
185         { "auth_goodpass", PW_TYPE_BOOLEAN, 0, &mainconfig.log_auth_goodpass, "no" },
186
187         { NULL, -1, 0, NULL, NULL }
188 };
189
190
191 /*
192  *  A mapping of configuration file names to internal variables
193  */
194 static const CONF_PARSER server_config[] = {
195         /*
196          *      FIXME: 'prefix' is the ONLY one which should be
197          *      configured at compile time.  Hard-coding it here is
198          *      bad.  It will be cleaned up once we clean up the
199          *      hard-coded defines for the locations of the various
200          *      files.
201          */
202         { "prefix",             PW_TYPE_STRING_PTR, 0, &prefix,            "/usr/local"},
203         { "localstatedir",      PW_TYPE_STRING_PTR, 0, &localstatedir,     "${prefix}/var"},
204         { "logdir",             PW_TYPE_STRING_PTR, 0, &radlog_dir,        "${localstatedir}/log"},
205         { "libdir",             PW_TYPE_STRING_PTR, 0, &radlib_dir,        "${prefix}/lib"},
206         { "radacctdir",         PW_TYPE_STRING_PTR, 0, &radacct_dir,       "${logdir}/radacct" },
207         { "hostname_lookups",   PW_TYPE_BOOLEAN,    0, &fr_dns_lookups,      "no" },
208         { "max_request_time", PW_TYPE_INTEGER, 0, &mainconfig.max_request_time, Stringify(MAX_REQUEST_TIME) },
209         { "cleanup_delay", PW_TYPE_INTEGER, 0, &mainconfig.cleanup_delay, Stringify(CLEANUP_DELAY) },
210         { "max_requests", PW_TYPE_INTEGER, 0, &mainconfig.max_requests, Stringify(MAX_REQUESTS) },
211 #ifdef DELETE_BLOCKED_REQUESTS
212         { "delete_blocked_requests", PW_TYPE_INTEGER, 0, &mainconfig.kill_unresponsive_children, Stringify(FALSE) },
213 #endif
214         { "allow_core_dumps", PW_TYPE_BOOLEAN, 0, &allow_core_dumps, "no" },
215
216         { "pidfile", PW_TYPE_STRING_PTR, 0, &mainconfig.pid_file, "${run_dir}/radiusd.pid"},
217         { "checkrad", PW_TYPE_STRING_PTR, 0, &mainconfig.checkrad, "${sbindir}/checkrad" },
218
219         { "debug_level", PW_TYPE_INTEGER, 0, &mainconfig.debug_level, "0"},
220
221 #ifdef WITH_PROXY
222         { "proxy_requests", PW_TYPE_BOOLEAN, 0, &mainconfig.proxy_requests, "yes" },
223 #endif
224         { "log", PW_TYPE_SUBSECTION, 0, NULL, (const void *) log_config_nodest },
225
226         /*
227          *      People with old configs will have these.  They are listed
228          *      AFTER the "log" section, so if they exist in radiusd.conf,
229          *      it will prefer "log_foo = bar" to "log { foo = bar }".
230          *      They're listed with default values of NULL, so that if they
231          *      DON'T exist in radiusd.conf, then the previously parsed
232          *      values for "log { foo = bar}" will be used.
233          */
234         { "log_auth", PW_TYPE_BOOLEAN, -1, &mainconfig.log_auth, NULL },
235         { "log_auth_badpass", PW_TYPE_BOOLEAN, 0, &mainconfig.log_auth_badpass, NULL },
236         { "log_auth_goodpass", PW_TYPE_BOOLEAN, 0, &mainconfig.log_auth_goodpass, NULL },
237         { "log_stripped_names", PW_TYPE_BOOLEAN, 0, &log_stripped_names, NULL },
238
239         {  "security", PW_TYPE_SUBSECTION, 0, NULL, (const void *) security_config },
240
241         { NULL, -1, 0, NULL, NULL }
242 };
243
244 #define MAX_ARGV (256)
245
246
247 static size_t config_escape_func(char *out, size_t outlen, const char *in)
248 {
249         size_t len = 0;
250         static const char *disallowed = "%{}\\'\"`";
251
252         while (in[0]) {
253                 /*
254                  *      Non-printable characters get replaced with their
255                  *      mime-encoded equivalents.
256                  */
257                 if ((in[0] < 32)) {
258                         if (outlen <= 3) break;
259
260                         snprintf(out, outlen, "=%02X", (unsigned char) in[0]);
261                         in++;
262                         out += 3;
263                         outlen -= 3;
264                         len += 3;
265                         continue;
266
267                 } else if (strchr(disallowed, *in) != NULL) {
268                         if (outlen <= 2) break;
269
270                         out[0] = '\\';
271                         out[1] = *in;
272                         in++;
273                         out += 2;
274                         outlen -= 2;
275                         len += 2;
276                         continue;
277                 }
278
279                 /*
280                  *      Only one byte left.
281                  */
282                 if (outlen <= 1) {
283                         break;
284                 }
285
286                 /*
287                  *      Allowed character.
288                  */
289                 *out = *in;
290                 out++;
291                 in++;
292                 outlen--;
293                 len++;
294         }
295         *out = '\0';
296         return len;
297 }
298
299 /*
300  *      Xlat for %{config:section.subsection.attribute}
301  */
302 static size_t xlat_config(void *instance, REQUEST *request,
303                           char *fmt, char *out,
304                           size_t outlen,
305                           RADIUS_ESCAPE_STRING func)
306 {
307         const char *value;
308         CONF_PAIR *cp;
309         CONF_ITEM *ci;
310         char buffer[1024];
311
312         request = request;      /* -Wunused */
313         instance = instance;    /* -Wunused */
314
315         /*
316          *      Expand it safely.
317          */
318         if (!radius_xlat(buffer, sizeof(buffer), fmt, request, config_escape_func)) {
319                 return 0;
320         }
321
322         ci = cf_reference_item(request->root->config,
323                                request->root->config, buffer);
324         if (!ci || !cf_item_is_pair(ci)) {
325                 *out = '\0';
326                 return 0;
327         }
328
329         cp = cf_itemtopair(ci);
330
331         /*
332          *  Ensure that we only copy what's necessary.
333          *
334          *  If 'outlen' is too small, then the output is chopped to fit.
335          */
336         value = cf_pair_value(cp);
337         if (value) {
338                 if (outlen > strlen(value)) {
339                         outlen = strlen(value) + 1;
340                 }
341         }
342
343         return func(out, outlen, value);
344 }
345
346
347 /*
348  *      Xlat for %{client:foo}
349  */
350 static size_t xlat_client(UNUSED void *instance, REQUEST *request,
351                        char *fmt, char *out,
352                        size_t outlen,
353                        UNUSED RADIUS_ESCAPE_STRING func)
354 {
355         const char *value = NULL;
356         CONF_PAIR *cp;
357
358         if (!fmt || !out || (outlen < 1)) return 0;
359
360         if (!request || !request->client) {
361                 *out = '\0';
362                 return 0;
363         }
364
365         cp = cf_pair_find(request->client->cs, fmt);
366         if (!cp || !(value = cf_pair_value(cp))) {
367                 *out = '\0';
368                 return 0;
369         }
370         
371         strlcpy(out, value, outlen);
372
373         return strlen(out);
374 }
375
376 /*
377  *      Recursively make directories.
378  */
379 static int r_mkdir(const char *part)
380 {
381         char *ptr, parentdir[500];
382         struct stat st;
383
384         if (stat(part, &st) == 0)
385                 return(0);
386
387         ptr = strrchr(part, FR_DIR_SEP);
388
389         if (ptr == part)
390                 return(0);
391
392         snprintf(parentdir, (ptr - part)+1, "%s", part);
393
394         if (r_mkdir(parentdir) != 0)
395                 return(1);
396
397         if (mkdir(part, 0770) != 0) {
398                 radlog(L_ERR, "mkdir(%s) error: %s\n", part, strerror(errno));
399                 return(1);
400         }
401
402         return(0);
403 }
404
405
406 #ifndef __MINGW32__
407 int did_setuid = FALSE;
408
409 /*
410  *  Do chroot, if requested.
411  *
412  *  Switch UID and GID to what is specified in the config file
413  */
414 static int switch_users(CONF_SECTION *cs)
415 {
416         CONF_PAIR *cp;
417
418 #ifdef HAVE_SYS_RESOURCE_H
419         struct rlimit core_limits;
420 #endif
421
422         /*
423          *      Don't do chroot/setuid/setgid if we're in debugging
424          *      as non-root.
425          */
426         if (debug_flag && (getuid() != 0)) return 1;
427
428 #ifdef HAVE_GRP_H
429         /*  Set GID.  */
430         cp = cf_pair_find(cs, "group");
431         if (cp) gid_name = cf_pair_value(cp);
432         if (gid_name) {
433                 struct group *gr;
434
435                 DEBUG2("group = %s", gid_name);
436                 gr = getgrnam(gid_name);
437                 if (gr == NULL) {
438                         fprintf(stderr, "%s: Cannot get ID for group %s: %s\n",
439                                 progname, gid_name, strerror(errno));
440                         return 0;
441                 }
442                 server_gid = gr->gr_gid;
443         } else {
444                 server_gid = getgid();
445         }
446 #endif
447
448 #ifdef HAVE_PWD_H
449         /*  Set UID.  */
450         cp = cf_pair_find(cs, "user");
451         if (cp) uid_name = cf_pair_value(cp);
452         if (uid_name) {
453                 struct passwd *pw;
454                 
455                 DEBUG2("user = %s", uid_name);
456                 pw = getpwnam(uid_name);
457                 if (pw == NULL) {
458                         fprintf(stderr, "%s: Cannot get passwd entry for user %s: %s\n",
459                                 progname, uid_name, strerror(errno));
460                         return 0;
461                 }
462                 server_uid = pw->pw_uid;
463 #ifdef HAVE_INITGROUPS
464                 if (initgroups(uid_name, server_gid) < 0) {
465                         fprintf(stderr, "%s: Cannot initialize supplementary group list for user %s: %s\n",
466                                 progname, uid_name, strerror(errno));
467                         return 0;
468                 }
469 #endif
470         } else {
471                 server_uid = getuid();
472         }
473 #endif
474
475         cp = cf_pair_find(cs, "chroot");
476         if (cp) chroot_dir = cf_pair_value(cp);
477         if (chroot_dir) {
478                 DEBUG2("chroot = %s", chroot_dir);
479                 if (chroot(chroot_dir) < 0) {
480                         fprintf(stderr, "%s: Failed to perform chroot %s: %s",
481                                 progname, chroot_dir, strerror(errno));
482                         return 0;
483                 }
484
485                 /*
486                  *      Note that we leave chdir alone.  It may be
487                  *      OUTSIDE of the root.  This allows us to read
488                  *      the configuration from "-d ./etc/raddb", with
489                  *      the chroot as "./chroot/" for example.  After
490                  *      the server has been loaded, it does a "cd
491                  *      ${logdir}" below, so that core files (if any)
492                  *      go to a logging directory.
493                  *
494                  *      This also allows the configuration of the
495                  *      server to be outside of the chroot.  If the
496                  *      server is statically linked, then the only
497                  *      things needed inside of the chroot are the
498                  *      logging directories.
499                  */
500                 radlog(L_INFO, "performing chroot to %s\n", chroot_dir);
501         }
502
503 #ifdef HAVE_GRP_H
504         /*  Set GID.  */
505         if (gid_name && (setgid(server_gid) < 0)) {
506                 fprintf(stderr, "%s: Failed setting group to %s: %s",
507                         progname, gid_name, strerror(errno));
508                 return 0;
509         }
510 #endif
511
512 #ifdef HAVE_PWD_H
513         if (uid_name) {
514
515 #ifndef HAVE_SETRESUID
516 /*
517  *      Fake out setresuid with something that's close.
518  */
519 #define setresuid(_a, _b, _c) setuid(_b)
520 #endif
521
522                 if (setresuid(-1, server_uid, geteuid()) < 0) {
523                         fprintf(stderr, "%s: Failed switching uid: %s\n",
524                                 progname, strerror(errno));
525                         return 0;
526                 }
527                 
528                 if (geteuid() != server_uid) {
529                         fprintf(stderr, "%s: Failed switching uid: UID is incorrect\n",
530                                 progname);
531                         return 0;
532                 }
533         }
534
535         /*
536          *      Now core dumps are disabled on most secure systems.
537          */
538         did_setuid = TRUE;
539 #endif
540
541         /*
542          *      Double check that we can write to the log directory.
543          *
544          *      If we can't, don't start, as we can't log any errors!
545          */
546         if ((mainconfig.radlog_dest == RADLOG_FILES) &&
547             (mainconfig.log_file != NULL)) {
548                 int fd = open(mainconfig.log_file,
549                               O_WRONLY | O_APPEND | O_CREAT, 0640);
550                 if (fd < 0) {
551                         fprintf(stderr, "%s: Cannot write to log file %s: %s\n",
552                                 progname, mainconfig.log_file, strerror(errno));
553                         return 0;
554                 }
555                 close(fd);
556
557                 /*
558                  *      After this it's safe to call radlog(), as it's going
559                  *      to the right place.
560                  */
561         }
562
563 #ifdef HAVE_SYS_RESOURCE_H
564         /*  Get the current maximum for core files.  */
565         if (getrlimit(RLIMIT_CORE, &core_limits) < 0) {
566                 radlog(L_ERR, "Failed to get current core limit:  %s", strerror(errno));
567                 return 0;
568         }
569 #endif
570
571         /*
572          *      Core dumps are allowed if we're in debug mode, OR
573          *      we've allowed them, OR we did a setuid (which turns
574          *      core dumps off).
575          *
576          *      Otherwise, disable core dumps for security.
577          *      
578          */
579         if (!(debug_flag || allow_core_dumps || did_setuid)) {
580 #ifdef HAVE_SYS_RESOURCE_H
581                 struct rlimit no_core;
582
583                 no_core.rlim_cur = 0;
584                 no_core.rlim_max = 0;
585
586                 if (setrlimit(RLIMIT_CORE, &no_core) < 0) {
587                         radlog(L_ERR, "Failed disabling core dumps: %s",
588                                strerror(errno));
589                         return 0;
590                 }
591 #endif
592
593                 /*
594                  *      Otherwise, re-enable core dumps if we're
595                  *      running as a daemon, AND core dumps are
596                  *      allowed, AND we changed UID's.
597                  */
598         } else if ((debug_flag == 0) && allow_core_dumps && did_setuid) {
599                 /*
600                  *      Set the dumpable flag.
601                  */
602 #ifdef HAVE_SYS_PRCTL_H
603 #ifdef PR_SET_DUMPABLE
604                 if (prctl(PR_SET_DUMPABLE, 1) < 0) {
605                         radlog(L_ERR,"Cannot enable core dumps: prctl(PR_SET_DUMPABLE) failed: '%s'",
606                                strerror(errno));
607                 }
608 #endif
609 #endif
610
611                 /*
612                  *      Reset the core dump limits again, just to
613                  *      double check that they haven't changed.
614                  */
615 #ifdef HAVE_SYS_RESOURCE_H
616                 if (setrlimit(RLIMIT_CORE, &core_limits) < 0) {
617                         radlog(L_ERR, "Cannot update core dump limit: %s",
618                                         strerror(errno));
619                         return 0;
620                 }
621 #endif
622
623                 radlog(L_INFO, "Core dumps are enabled.");
624         }
625         /*
626          *      Else we're debugging (so core dumps are enabled)
627          *      OR we're not debugging, AND "allow_core_dumps == FALSE",
628          *      OR we're not debugging, AND core dumps are allowed,
629          *         BUT we didn't call setuid, so we haven't changed the
630          *         core dump capabilities inherited from the parent shell.
631          */
632
633         return 1;
634 }
635 #endif
636
637
638 static const FR_NAME_NUMBER str2dest[] = {
639         { "null", RADLOG_NULL },
640         { "files", RADLOG_FILES },
641         { "syslog", RADLOG_SYSLOG },
642         { "stdout", RADLOG_STDOUT },
643         { "stderr", RADLOG_STDERR },
644         { NULL, RADLOG_NUM_DEST }
645 };
646
647
648 /*
649  *      Read config files.
650  *
651  *      This function can ONLY be called from the main server process.
652  */
653 int read_mainconfig(int reload)
654 {
655         const char *p = NULL;
656         static int old_debug_level = -1;
657         CONF_PAIR *cp;
658         CONF_SECTION *cs;
659         struct stat statbuf;
660         char buffer[1024];
661
662         if (stat(radius_dir, &statbuf) < 0) {
663                 radlog(L_ERR, "Errors reading %s: %s",
664                        radius_dir, strerror(errno));
665                 return -1;
666         }
667
668 #ifdef S_IWOTH
669         if ((statbuf.st_mode & S_IWOTH) != 0) {
670                 radlog(L_ERR, "Configuration directory %s is globally writable.  Refusing to start due to insecure configuration.",
671                        radius_dir);
672           return -1;
673         }
674 #endif
675
676 #ifdef S_IROTH
677         if (0 && (statbuf.st_mode & S_IROTH) != 0) {
678                 radlog(L_ERR, "Configuration directory %s is globally readable.  Refusing to start due to insecure configuration.",
679                        radius_dir);
680                 return -1;
681         }
682 #endif
683
684         if (!reload) {
685                 radlog(L_INFO, "Starting - reading configuration files ...");
686         } else {
687                 radlog(L_INFO, "Reloading - reading configuration files...");
688         }
689
690         /* Read the configuration file */
691         snprintf(buffer, sizeof(buffer), "%.200s/%.50s.conf",
692                  radius_dir, mainconfig.name);
693         if ((cs = cf_file_read(buffer)) == NULL) {
694                 radlog(L_ERR, "Errors reading %s", buffer);
695                 return -1;
696         }
697
698         /*
699          *      If there was no log destination set on the command line,
700          *      set it now.
701          */
702         if (mainconfig.radlog_dest == RADLOG_NULL) {
703                 if (cf_section_parse(cs, NULL, serverdest_config) < 0) {
704                         fprintf(stderr, "radiusd: Error: Failed to parse log{} section.\n");
705                         cf_section_free(&cs);
706                         return -1;
707                 }
708                 
709                 if (!radlog_dest) {
710                         fprintf(stderr, "radiusd: Error: No log destination specified.\n");
711                         cf_section_free(&cs);
712                         return -1;
713                 }
714                 
715                 mainconfig.radlog_dest = fr_str2int(str2dest, radlog_dest,
716                                                     RADLOG_NUM_DEST);
717                 if (mainconfig.radlog_dest == RADLOG_NUM_DEST) {
718                         fprintf(stderr, "radiusd: Error: Unknown log_destination %s\n",
719                                 radlog_dest);
720                         cf_section_free(&cs);
721                         return -1;
722                 }
723                 
724                 if (mainconfig.radlog_dest == RADLOG_SYSLOG) {
725                         /*
726                          *      Make sure syslog_facility isn't NULL
727                          *      before using it
728                          */
729                         if (!syslog_facility) {
730                                 fprintf(stderr, "radiusd: Error: Syslog chosen but no facility was specified\n");
731                                 cf_section_free(&cs);
732                                 return -1;
733                         }
734                         mainconfig.syslog_facility = fr_str2int(str2fac, syslog_facility, -1);
735                         if (mainconfig.syslog_facility < 0) {
736                                 fprintf(stderr, "radiusd: Error: Unknown syslog_facility %s\n",
737                                         syslog_facility);
738                                 cf_section_free(&cs);
739                                 return -1;
740                         }
741                 }
742         }
743
744 #ifndef __MINGW32__
745         /*
746          *      We should really switch users earlier in the process.
747          */
748         if (!switch_users(cs)) exit(1);
749 #endif
750
751         /* Initialize the dictionary */
752         cp = cf_pair_find(cs, "dictionary");
753         if (cp) p = cf_pair_value(cp);
754         if (!p) p = radius_dir;
755         DEBUG2("including dictionary file %s/%s", p, RADIUS_DICTIONARY);
756         if (dict_init(p, RADIUS_DICTIONARY) != 0) {
757                 radlog(L_ERR, "Errors reading dictionary: %s",
758                                 fr_strerror());
759                 return -1;
760         }
761
762         /*
763          *      This allows us to figure out where, relative to
764          *      radiusd.conf, the other configuration files exist.
765          */
766         cf_section_parse(cs, NULL, server_config);
767
768         /*
769          *      Free the old configuration items, and replace them
770          *      with the new ones.
771          *
772          *      Note that where possible, we do atomic switch-overs,
773          *      to ensure that the pointers are always valid.
774          */
775         cf_section_free(&mainconfig.config);
776         mainconfig.config = cs;
777
778         if (!clients_parse_section(cs)) {
779                 return -1;
780         }
781
782         DEBUG2("%s: #### Loading Realms and Home Servers ####", mainconfig.name);
783
784         if (!realms_init(cs)) {
785                 return -1;
786         }
787
788         /*
789          *  Register the %{config:section.subsection} xlat function.
790          */
791         xlat_register("config", xlat_config, NULL);
792         xlat_register("client", xlat_client, NULL);
793
794         /*
795          *      Reload: change debug flag if it's changed in the
796          *      configuration file.
797          */
798         if (reload) {
799                 if (mainconfig.debug_level != old_debug_level) {
800                         debug_flag = mainconfig.debug_level;
801                 }
802
803         } else if (debug_flag == 0) {
804
805                 /*
806                  *      Starting the server, WITHOUT "-x" on the
807                  *      command-line: use whatever's in the config
808                  *      file.
809                  */
810                 debug_flag = mainconfig.debug_level;
811         }
812         fr_debug_flag = debug_flag;
813         old_debug_level = mainconfig.debug_level;
814
815         /*
816          *  Go update our behaviour, based on the configuration
817          *  changes.
818          */
819
820         /*
821          *      Sanity check the configuration for internal
822          *      consistency.
823          */
824         if (mainconfig.reject_delay > mainconfig.cleanup_delay) {
825                 mainconfig.reject_delay = mainconfig.cleanup_delay;
826         }
827         if (mainconfig.reject_delay < 0) mainconfig.reject_delay = 0;
828
829         /*  Reload the modules.  */
830         if (setup_modules(reload, mainconfig.config) < 0) {
831                 radlog(L_ERR, "Errors initializing modules");
832                 return -1;
833         }
834
835         if (chroot_dir) {
836                 if (chdir(radlog_dir) < 0) {
837                         radlog(L_ERR, "Failed to 'chdir %s' after chroot: %s",
838                                radlog_dir, strerror(errno));
839                         return -1;
840                 }
841         }
842
843         return 0;
844 }
845
846 /*
847  *      Free the configuration.  Called only when the server is exiting.
848  */
849 int free_mainconfig(void)
850 {
851         /*
852          *      Clean up the configuration data
853          *      structures.
854          */
855         cf_section_free(&mainconfig.config);
856         realms_free();
857         listen_free(&mainconfig.listen);
858         dict_free();
859
860         return 0;
861 }