1 /* $NetBSD: main.c,v 1.1.1.3 2009/10/25 00:01:32 christos Exp $ */
4 * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 1999-2003 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: main.c,v 1.175 2009/10/05 17:30:49 fdupont Exp */
31 #include <isc/backtrace.h>
32 #include <isc/commandline.h>
34 #include <isc/entropy.h>
38 #include <isc/platform.h>
39 #include <isc/print.h>
40 #include <isc/resource.h>
41 #include <isc/stdio.h>
42 #include <isc/string.h>
44 #include <isc/timer.h>
47 #include <isccc/result.h>
49 #include <dns/dispatch.h>
51 #include <dns/result.h>
54 #include <dst/result.h>
57 * Defining NS_MAIN provides storage declarations (rather than extern)
58 * for variables in named/globals.h.
62 #include <named/builtin.h>
63 #include <named/control.h>
64 #include <named/globals.h> /* Explicit, though named/log.h includes it. */
65 #include <named/interfacemgr.h>
66 #include <named/log.h>
68 #include <named/server.h>
69 #include <named/lwresd.h>
70 #include <named/main.h>
72 #include <named/ns_smf_globals.h>
76 * Include header files for database drivers here.
78 /* #include "xxdb.h" */
81 * Include DLZ drivers if appropriate.
84 #include <dlz/dlz_drivers.h>
88 * The maximum number of stack frames to dump on assertion failure.
90 #ifndef BACKTRACE_MAXFRAME
91 #define BACKTRACE_MAXFRAME 128
94 static isc_boolean_t want_stats
= ISC_FALSE
;
95 static char program_name
[ISC_DIR_NAMEMAX
] = "named";
96 static char absolute_conffile
[ISC_DIR_PATHMAX
];
97 static char saved_command_line
[512];
98 static char version
[512];
99 static unsigned int maxsocks
= 0;
100 static int maxudp
= 0;
103 ns_main_earlywarning(const char *format
, ...) {
106 va_start(args
, format
);
107 if (ns_g_lctx
!= NULL
) {
108 isc_log_vwrite(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
109 NS_LOGMODULE_MAIN
, ISC_LOG_WARNING
,
112 fprintf(stderr
, "%s: ", program_name
);
113 vfprintf(stderr
, format
, args
);
114 fprintf(stderr
, "\n");
121 ns_main_earlyfatal(const char *format
, ...) {
124 va_start(args
, format
);
125 if (ns_g_lctx
!= NULL
) {
126 isc_log_vwrite(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
127 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
129 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
130 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
131 "exiting (due to early fatal error)");
133 fprintf(stderr
, "%s: ", program_name
);
134 vfprintf(stderr
, format
, args
);
135 fprintf(stderr
, "\n");
143 ISC_PLATFORM_NORETURN_PRE
static void
144 assertion_failed(const char *file
, int line
, isc_assertiontype_t type
,
145 const char *cond
) ISC_PLATFORM_NORETURN_POST
;
148 assertion_failed(const char *file
, int line
, isc_assertiontype_t type
,
151 void *tracebuf
[BACKTRACE_MAXFRAME
];
154 const char *logsuffix
= "";
158 * Handle assertion failures.
161 if (ns_g_lctx
!= NULL
) {
163 * Reset the assertion callback in case it is the log
164 * routines causing the assertion.
166 isc_assertion_setcallback(NULL
);
168 result
= isc_backtrace_gettrace(tracebuf
, BACKTRACE_MAXFRAME
,
170 if (result
== ISC_R_SUCCESS
&& nframes
> 0)
171 logsuffix
= ", back trace";
172 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
173 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
174 "%s:%d: %s(%s) failed%s", file
, line
,
175 isc_assertion_typetotext(type
), cond
, logsuffix
);
176 if (result
== ISC_R_SUCCESS
) {
177 for (i
= 0; i
< nframes
; i
++) {
178 unsigned long offset
;
181 result
= isc_backtrace_getsymbol(tracebuf
[i
],
184 if (result
== ISC_R_SUCCESS
) {
185 isc_log_write(ns_g_lctx
,
186 NS_LOGCATEGORY_GENERAL
,
189 "#%d %p in %s()+0x%lx", i
,
193 isc_log_write(ns_g_lctx
,
194 NS_LOGCATEGORY_GENERAL
,
202 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
203 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
204 "exiting (due to assertion failure)");
206 fprintf(stderr
, "%s:%d: %s(%s) failed\n",
207 file
, line
, isc_assertion_typetotext(type
), cond
);
216 ISC_PLATFORM_NORETURN_PRE
static void
217 library_fatal_error(const char *file
, int line
, const char *format
,
219 ISC_FORMAT_PRINTF(3, 0) ISC_PLATFORM_NORETURN_POST
;
222 library_fatal_error(const char *file
, int line
, const char *format
,
226 * Handle isc_error_fatal() calls from our libraries.
229 if (ns_g_lctx
!= NULL
) {
231 * Reset the error callback in case it is the log
232 * routines causing the assertion.
234 isc_error_setfatal(NULL
);
236 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
237 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
238 "%s:%d: fatal error:", file
, line
);
239 isc_log_vwrite(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
240 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
242 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
243 NS_LOGMODULE_MAIN
, ISC_LOG_CRITICAL
,
244 "exiting (due to fatal error in library)");
246 fprintf(stderr
, "%s:%d: fatal error: ", file
, line
);
247 vfprintf(stderr
, format
, args
);
248 fprintf(stderr
, "\n");
258 library_unexpected_error(const char *file
, int line
, const char *format
,
259 va_list args
) ISC_FORMAT_PRINTF(3, 0);
262 library_unexpected_error(const char *file
, int line
, const char *format
,
266 * Handle isc_error_unexpected() calls from our libraries.
269 if (ns_g_lctx
!= NULL
) {
270 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
271 NS_LOGMODULE_MAIN
, ISC_LOG_ERROR
,
272 "%s:%d: unexpected error:", file
, line
);
273 isc_log_vwrite(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
274 NS_LOGMODULE_MAIN
, ISC_LOG_ERROR
,
277 fprintf(stderr
, "%s:%d: fatal error: ", file
, line
);
278 vfprintf(stderr
, format
, args
);
279 fprintf(stderr
, "\n");
287 "usage: lwresd [-4|-6] [-c conffile | -C resolvconffile] "
289 " [-f|-g] [-n number_of_cpus] [-p port] "
290 "[-P listen-port] [-s]\n"
291 " [-t chrootdir] [-u username] [-i pidfile]\n"
292 " [-m {usage|trace|record|size|mctx}]\n");
297 if (ns_g_lwresdonly
) {
302 "usage: named [-4|-6] [-c conffile] [-d debuglevel] "
303 "[-E engine] [-f|-g]\n"
304 " [-n number_of_cpus] [-p port] [-s] "
305 "[-t chrootdir] [-u username]\n"
306 " [-m {usage|trace|record|size|mctx}]\n");
310 save_command_line(int argc
, char *argv
[]) {
315 const char truncated
[] = "...";
316 isc_boolean_t quoted
= ISC_FALSE
;
318 dst
= saved_command_line
;
319 eob
= saved_command_line
+ sizeof(saved_command_line
);
321 for (i
= 1; i
< argc
&& dst
< eob
; i
++) {
325 while (*src
!= '\0' && dst
< eob
) {
327 * This won't perfectly produce a shell-independent
328 * pastable command line in all circumstances, but
329 * comes close, and for practical purposes will
330 * nearly always be fine.
332 if (quoted
|| isalnum(*src
& 0xff) ||
333 *src
== '-' || *src
== '_' ||
334 *src
== '.' || *src
== '/') {
344 INSIST(sizeof(saved_command_line
) >= sizeof(truncated
));
347 strcpy(eob
- sizeof(truncated
), truncated
);
353 parse_int(char *arg
, const char *desc
) {
358 ltmp
= strtol(arg
, &endp
, 10);
361 ns_main_earlyfatal("%s '%s' must be numeric", desc
, arg
);
362 if (tmp
< 0 || tmp
!= ltmp
)
363 ns_main_earlyfatal("%s '%s' out of range", desc
, arg
);
367 static struct flag_def
{
370 } mem_debug_flags
[] = {
371 { "trace", ISC_MEM_DEBUGTRACE
},
372 { "record", ISC_MEM_DEBUGRECORD
},
373 { "usage", ISC_MEM_DEBUGUSAGE
},
374 { "size", ISC_MEM_DEBUGSIZE
},
375 { "mctx", ISC_MEM_DEBUGCTX
},
380 set_flags(const char *arg
, struct flag_def
*defs
, unsigned int *ret
) {
382 const struct flag_def
*def
;
383 const char *end
= strchr(arg
, ',');
386 end
= arg
+ strlen(arg
);
388 for (def
= defs
; def
->name
!= NULL
; def
++) {
389 if (arglen
== (int)strlen(def
->name
) &&
390 memcmp(arg
, def
->name
, arglen
) == 0) {
395 ns_main_earlyfatal("unrecognized flag '%.*s'", arglen
, arg
);
404 parse_command_line(int argc
, char *argv
[]) {
407 isc_boolean_t disable6
= ISC_FALSE
;
408 isc_boolean_t disable4
= ISC_FALSE
;
410 save_command_line(argc
, argv
);
412 isc_commandline_errprint
= ISC_FALSE
;
413 while ((ch
= isc_commandline_parse(argc
, argv
,
414 "46c:C:d:E:fFgi:lm:n:N:p:P:"
415 "sS:t:T:u:vVx:")) != -1) {
419 ns_main_earlyfatal("cannot specify -4 and -6");
420 if (isc_net_probeipv4() != ISC_R_SUCCESS
)
421 ns_main_earlyfatal("IPv4 not supported by OS");
422 isc_net_disableipv6();
427 ns_main_earlyfatal("cannot specify -4 and -6");
428 if (isc_net_probeipv6() != ISC_R_SUCCESS
)
429 ns_main_earlyfatal("IPv6 not supported by OS");
430 isc_net_disableipv4();
434 ns_g_conffile
= isc_commandline_argument
;
435 lwresd_g_conffile
= isc_commandline_argument
;
436 if (lwresd_g_useresolvconf
)
437 ns_main_earlyfatal("cannot specify -c and -C");
438 ns_g_conffileset
= ISC_TRUE
;
441 lwresd_g_resolvconffile
= isc_commandline_argument
;
442 if (ns_g_conffileset
)
443 ns_main_earlyfatal("cannot specify -c and -C");
444 lwresd_g_useresolvconf
= ISC_TRUE
;
447 ns_g_debuglevel
= parse_int(isc_commandline_argument
,
451 ns_g_engine
= isc_commandline_argument
;
454 ns_g_foreground
= ISC_TRUE
;
457 ns_g_foreground
= ISC_TRUE
;
458 ns_g_logstderr
= ISC_TRUE
;
460 /* XXXBEW -i should be removed */
462 lwresd_g_defaultpidfile
= isc_commandline_argument
;
465 ns_g_lwresdonly
= ISC_TRUE
;
468 set_flags(isc_commandline_argument
, mem_debug_flags
,
471 case 'N': /* Deprecated. */
473 ns_g_cpus
= parse_int(isc_commandline_argument
,
479 port
= parse_int(isc_commandline_argument
, "port");
480 if (port
< 1 || port
> 65535)
481 ns_main_earlyfatal("port '%s' out of range",
482 isc_commandline_argument
);
485 /* XXXBEW Should -P be removed? */
487 port
= parse_int(isc_commandline_argument
, "port");
488 if (port
< 1 || port
> 65535)
489 ns_main_earlyfatal("port '%s' out of range",
490 isc_commandline_argument
);
491 lwresd_g_listenport
= port
;
494 /* XXXRTH temporary syntax */
495 want_stats
= ISC_TRUE
;
498 maxsocks
= parse_int(isc_commandline_argument
,
499 "max number of sockets");
502 /* XXXJAB should we make a copy? */
503 ns_g_chrootdir
= isc_commandline_argument
;
507 * clienttest: make clients single shot with their
508 * own memory context.
510 if (!strcmp(isc_commandline_argument
, "clienttest"))
511 ns_g_clienttest
= ISC_TRUE
;
512 else if (!strcmp(isc_commandline_argument
, "maxudp512"))
514 else if (!strcmp(isc_commandline_argument
, "maxudp1460"))
517 fprintf(stderr
, "unknown -T flag '%s\n",
518 isc_commandline_argument
);
521 ns_g_username
= isc_commandline_argument
;
524 printf("BIND %s\n", ns_g_version
);
527 printf("BIND %s built with %s\n", ns_g_version
,
531 /* Reserved for FIPS mode */
535 if (isc_commandline_option
== '?')
537 ns_main_earlyfatal("unknown option '-%c'",
538 isc_commandline_option
);
541 ns_main_earlyfatal("parsing options returned %d", ch
);
545 argc
-= isc_commandline_index
;
546 argv
+= isc_commandline_index
;
550 ns_main_earlyfatal("extra command line arguments");
555 create_managers(void) {
559 #ifdef ISC_PLATFORM_USETHREADS
561 ns_g_cpus
= ns_g_cpus_detected
;
562 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
, NS_LOGMODULE_SERVER
,
563 ISC_LOG_INFO
, "found %u CPU%s, using %u worker thread%s",
564 ns_g_cpus_detected
, ns_g_cpus_detected
== 1 ? "" : "s",
565 ns_g_cpus
, ns_g_cpus
== 1 ? "" : "s");
569 result
= isc_taskmgr_create(ns_g_mctx
, ns_g_cpus
, 0, &ns_g_taskmgr
);
570 if (result
!= ISC_R_SUCCESS
) {
571 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
572 "isc_taskmgr_create() failed: %s",
573 isc_result_totext(result
));
574 return (ISC_R_UNEXPECTED
);
577 result
= isc_timermgr_create(ns_g_mctx
, &ns_g_timermgr
);
578 if (result
!= ISC_R_SUCCESS
) {
579 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
580 "isc_timermgr_create() failed: %s",
581 isc_result_totext(result
));
582 return (ISC_R_UNEXPECTED
);
585 result
= isc_socketmgr_create2(ns_g_mctx
, &ns_g_socketmgr
, maxsocks
);
586 if (result
!= ISC_R_SUCCESS
) {
587 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
588 "isc_socketmgr_create() failed: %s",
589 isc_result_totext(result
));
590 return (ISC_R_UNEXPECTED
);
592 isc__socketmgr_maxudp(ns_g_socketmgr
, maxudp
);
593 result
= isc_socketmgr_getmaxsockets(ns_g_socketmgr
, &socks
);
594 if (result
== ISC_R_SUCCESS
) {
595 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
597 ISC_LOG_INFO
, "using up to %u sockets", socks
);
600 result
= isc_entropy_create(ns_g_mctx
, &ns_g_entropy
);
601 if (result
!= ISC_R_SUCCESS
) {
602 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
603 "isc_entropy_create() failed: %s",
604 isc_result_totext(result
));
605 return (ISC_R_UNEXPECTED
);
608 result
= isc_hash_create(ns_g_mctx
, ns_g_entropy
, DNS_NAME_MAXWIRE
);
609 if (result
!= ISC_R_SUCCESS
) {
610 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
611 "isc_hash_create() failed: %s",
612 isc_result_totext(result
));
613 return (ISC_R_UNEXPECTED
);
616 return (ISC_R_SUCCESS
);
620 destroy_managers(void) {
621 ns_lwresd_shutdown();
623 isc_entropy_detach(&ns_g_entropy
);
624 if (ns_g_fallbackentropy
!= NULL
)
625 isc_entropy_detach(&ns_g_fallbackentropy
);
628 * isc_taskmgr_destroy() will block until all tasks have exited,
630 isc_taskmgr_destroy(&ns_g_taskmgr
);
631 isc_timermgr_destroy(&ns_g_timermgr
);
632 isc_socketmgr_destroy(&ns_g_socketmgr
);
635 * isc_hash_destroy() cannot be called as long as a resolver may be
636 * running. Calling this after isc_taskmgr_destroy() ensures the
643 dump_symboltable(void) {
649 if (isc__backtrace_nsymbols
== 0)
652 if (!isc_log_wouldlog(ns_g_lctx
, ISC_LOG_DEBUG(99)))
655 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
, NS_LOGMODULE_MAIN
,
656 ISC_LOG_DEBUG(99), "Symbol table:");
658 for (i
= 0, result
= ISC_R_SUCCESS
; result
== ISC_R_SUCCESS
; i
++) {
661 result
= isc_backtrace_getsymbolfromindex(i
, &addr
, &fname
);
662 if (result
== ISC_R_SUCCESS
) {
663 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
664 NS_LOGMODULE_MAIN
, ISC_LOG_DEBUG(99),
665 "[%d] %p %s", i
, addr
, fname
);
673 isc_resourcevalue_t old_openfiles
;
675 char *instance
= NULL
;
679 * Get the user and group information before changing the root
680 * directory, so the administrator does not need to keep a copy
681 * of the user and group databases in the chroot'ed environment.
683 ns_os_inituserinfo(ns_g_username
);
686 * Initialize time conversion information
693 /* Check if named is under smf control, before chroot. */
694 result
= ns_smf_get_instance(&instance
, 0, ns_g_mctx
);
695 /* We don't care about instance, just check if we got one. */
696 if (result
== ISC_R_SUCCESS
)
697 ns_smf_got_instance
= 1;
699 ns_smf_got_instance
= 0;
700 if (instance
!= NULL
)
701 isc_mem_free(ns_g_mctx
, instance
);
702 #endif /* HAVE_LIBSCF */
704 #ifdef PATH_RANDOMDEV
706 * Initialize system's random device as fallback entropy source
707 * if running chroot'ed.
709 if (ns_g_chrootdir
!= NULL
) {
710 result
= isc_entropy_create(ns_g_mctx
, &ns_g_fallbackentropy
);
711 if (result
!= ISC_R_SUCCESS
)
712 ns_main_earlyfatal("isc_entropy_create() failed: %s",
713 isc_result_totext(result
));
715 result
= isc_entropy_createfilesource(ns_g_fallbackentropy
,
717 if (result
!= ISC_R_SUCCESS
) {
718 ns_main_earlywarning("could not open pre-chroot "
719 "entropy source %s: %s",
721 isc_result_totext(result
));
722 isc_entropy_detach(&ns_g_fallbackentropy
);
727 #ifdef ISC_PLATFORM_USETHREADS
729 * Check for the number of cpu's before ns_os_chroot().
731 ns_g_cpus_detected
= isc_os_ncpus();
734 ns_os_chroot(ns_g_chrootdir
);
737 * For operating systems which have a capability mechanism, now
738 * is the time to switch to minimal privs and change our user id.
739 * On traditional UNIX systems, this call will be a no-op, and we
740 * will change the user ID after reading the config file the first
741 * time. (We need to read the config file to know which possibly
742 * privileged ports to bind() to.)
746 result
= ns_log_init(ISC_TF(ns_g_username
!= NULL
));
747 if (result
!= ISC_R_SUCCESS
)
748 ns_main_earlyfatal("ns_log_init() failed: %s",
749 isc_result_totext(result
));
752 * Now is the time to daemonize (if we're not running in the
753 * foreground). We waited until now because we wanted to get
754 * a valid logging context setup. We cannot daemonize any later,
755 * because calling create_managers() will create threads, which
756 * would be lost after fork().
758 if (!ns_g_foreground
)
762 * We call isc_app_start() here as some versions of FreeBSD's fork()
763 * destroys all the signal handling it sets up.
765 result
= isc_app_start();
766 if (result
!= ISC_R_SUCCESS
)
767 ns_main_earlyfatal("isc_app_start() failed: %s",
768 isc_result_totext(result
));
770 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
, NS_LOGMODULE_MAIN
,
771 ISC_LOG_NOTICE
, "starting BIND %s%s", ns_g_version
,
774 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
, NS_LOGMODULE_MAIN
,
775 ISC_LOG_NOTICE
, "built with %s", ns_g_configargs
);
780 * Get the initial resource limits.
782 (void)isc_resource_getlimit(isc_resource_stacksize
,
783 &ns_g_initstacksize
);
784 (void)isc_resource_getlimit(isc_resource_datasize
,
786 (void)isc_resource_getlimit(isc_resource_coresize
,
788 (void)isc_resource_getlimit(isc_resource_openfiles
,
789 &ns_g_initopenfiles
);
792 * System resources cannot effectively be tuned on some systems.
793 * Raise the limit in such cases for safety.
795 old_openfiles
= ns_g_initopenfiles
;
796 ns_os_adjustnofile();
797 (void)isc_resource_getlimit(isc_resource_openfiles
,
798 &ns_g_initopenfiles
);
799 if (old_openfiles
!= ns_g_initopenfiles
) {
800 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
,
801 NS_LOGMODULE_MAIN
, ISC_LOG_NOTICE
,
802 "adjusted limit on open files from "
803 "%" ISC_PRINT_QUADFORMAT
"u to "
804 "%" ISC_PRINT_QUADFORMAT
"u",
805 old_openfiles
, ns_g_initopenfiles
);
809 * If the named configuration filename is relative, prepend the current
810 * directory's name before possibly changing to another directory.
812 if (! isc_file_isabsolute(ns_g_conffile
)) {
813 result
= isc_file_absolutepath(ns_g_conffile
,
815 sizeof(absolute_conffile
));
816 if (result
!= ISC_R_SUCCESS
)
817 ns_main_earlyfatal("could not construct absolute path "
818 "of configuration file: %s",
819 isc_result_totext(result
));
820 ns_g_conffile
= absolute_conffile
;
824 * Record the server's startup time.
826 result
= isc_time_now(&ns_g_boottime
);
827 if (result
!= ISC_R_SUCCESS
)
828 ns_main_earlyfatal("isc_time_now() failed: %s",
829 isc_result_totext(result
));
831 result
= create_managers();
832 if (result
!= ISC_R_SUCCESS
)
833 ns_main_earlyfatal("create_managers() failed: %s",
834 isc_result_totext(result
));
839 * Add calls to register sdb drivers here.
845 * Register any DLZ drivers.
847 result
= dlz_drivers_init();
848 if (result
!= ISC_R_SUCCESS
)
849 ns_main_earlyfatal("dlz_drivers_init() failed: %s",
850 isc_result_totext(result
));
853 ns_server_create(ns_g_mctx
, &ns_g_server
);
860 ns_server_destroy(&ns_g_server
);
865 * Add calls to unregister sdb drivers here.
871 * Unregister any DLZ drivers.
878 isc_log_write(ns_g_lctx
, NS_LOGCATEGORY_GENERAL
, NS_LOGMODULE_MAIN
,
879 ISC_LOG_NOTICE
, "exiting");
883 static char *memstats
= NULL
;
886 ns_main_setmemstats(const char *filename
) {
888 * Caller has to ensure locking.
891 if (memstats
!= NULL
) {
895 if (filename
== NULL
)
897 memstats
= malloc(strlen(filename
) + 1);
899 strcpy(memstats
, filename
);
904 * Get FMRI for the named process.
907 ns_smf_get_instance(char **ins_name
, int debug
, isc_mem_t
*mctx
) {
908 scf_handle_t
*h
= NULL
;
912 REQUIRE(ins_name
!= NULL
&& *ins_name
== NULL
);
914 if ((h
= scf_handle_create(SCF_VERSION
)) == NULL
) {
916 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
917 "scf_handle_create() failed: %s",
918 scf_strerror(scf_error()));
919 return (ISC_R_FAILURE
);
922 if (scf_handle_bind(h
) == -1) {
924 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
925 "scf_handle_bind() failed: %s",
926 scf_strerror(scf_error()));
927 scf_handle_destroy(h
);
928 return (ISC_R_FAILURE
);
931 if ((namelen
= scf_myname(h
, NULL
, 0)) == -1) {
933 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
934 "scf_myname() failed: %s",
935 scf_strerror(scf_error()));
936 scf_handle_destroy(h
);
937 return (ISC_R_FAILURE
);
940 if ((instance
= isc_mem_allocate(mctx
, namelen
+ 1)) == NULL
) {
941 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
942 "ns_smf_get_instance memory "
943 "allocation failed: %s",
944 isc_result_totext(ISC_R_NOMEMORY
));
945 scf_handle_destroy(h
);
946 return (ISC_R_FAILURE
);
949 if (scf_myname(h
, instance
, namelen
+ 1) == -1) {
951 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
952 "scf_myname() failed: %s",
953 scf_strerror(scf_error()));
954 scf_handle_destroy(h
);
955 isc_mem_free(mctx
, instance
);
956 return (ISC_R_FAILURE
);
959 scf_handle_destroy(h
);
960 *ins_name
= instance
;
961 return (ISC_R_SUCCESS
);
963 #endif /* HAVE_LIBSCF */
966 main(int argc
, char *argv
[]) {
969 char *instance
= NULL
;
973 * Record version in core image.
974 * strings named.core | grep "named version:"
977 #if defined(NO_VERSION_DATE) || !defined(__DATE__)
978 "named version: BIND " VERSION
,
980 "named version: BIND " VERSION
" (" __DATE__
")",
983 result
= isc_file_progname(*argv
, program_name
, sizeof(program_name
));
984 if (result
!= ISC_R_SUCCESS
)
985 ns_main_earlyfatal("program name too long");
987 if (strcmp(program_name
, "lwresd") == 0)
988 ns_g_lwresdonly
= ISC_TRUE
;
990 if (result
!= ISC_R_SUCCESS
)
991 ns_main_earlyfatal("failed to build internal symbol table");
993 isc_assertion_setcallback(assertion_failed
);
994 isc_error_setfatal(library_fatal_error
);
995 isc_error_setunexpected(library_unexpected_error
);
997 ns_os_init(program_name
);
999 dns_result_register();
1000 dst_result_register();
1001 isccc_result_register();
1003 parse_command_line(argc
, argv
);
1006 * Warn about common configuration error.
1008 if (ns_g_chrootdir
!= NULL
) {
1009 int len
= strlen(ns_g_chrootdir
);
1010 if (strncmp(ns_g_chrootdir
, ns_g_conffile
, len
) == 0 &&
1011 (ns_g_conffile
[len
] == '/' || ns_g_conffile
[len
] == '\\'))
1012 ns_main_earlywarning("config filename (-c %s) contains "
1013 "chroot path (-t %s)",
1014 ns_g_conffile
, ns_g_chrootdir
);
1017 result
= isc_mem_create(0, 0, &ns_g_mctx
);
1018 if (result
!= ISC_R_SUCCESS
)
1019 ns_main_earlyfatal("isc_mem_create() failed: %s",
1020 isc_result_totext(result
));
1021 isc_mem_setname(ns_g_mctx
, "main", NULL
);
1026 * Start things running and then wait for a shutdown request
1030 result
= isc_app_run();
1032 if (result
== ISC_R_RELOAD
) {
1033 ns_server_reloadwanted(ns_g_server
);
1034 } else if (result
!= ISC_R_SUCCESS
) {
1035 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
1036 "isc_app_run(): %s",
1037 isc_result_totext(result
));
1041 result
= ISC_R_SUCCESS
;
1043 } while (result
!= ISC_R_SUCCESS
);
1046 if (ns_smf_want_disable
== 1) {
1047 result
= ns_smf_get_instance(&instance
, 1, ns_g_mctx
);
1048 if (result
== ISC_R_SUCCESS
&& instance
!= NULL
) {
1049 if (smf_disable_instance(instance
, 0) != 0)
1050 UNEXPECTED_ERROR(__FILE__
, __LINE__
,
1051 "smf_disable_instance() "
1052 "failed for %s : %s",
1054 scf_strerror(scf_error()));
1056 if (instance
!= NULL
)
1057 isc_mem_free(ns_g_mctx
, instance
);
1059 #endif /* HAVE_LIBSCF */
1064 isc_mem_stats(ns_g_mctx
, stdout
);
1065 isc_mutex_stats(stdout
);
1068 if (ns_g_memstatistics
&& memstats
!= NULL
) {
1070 result
= isc_stdio_open(memstats
, "w", &fp
);
1071 if (result
== ISC_R_SUCCESS
) {
1072 isc_mem_stats(ns_g_mctx
, fp
);
1073 isc_mutex_stats(fp
);
1074 isc_stdio_close(fp
);
1077 isc_mem_destroy(&ns_g_mctx
);
1078 isc_mem_checkdestroyed(stderr
);
1080 ns_main_setmemstats(NULL
);
1084 ns_os_closedevnull();