1 /* $OpenLDAP: pkg/ldap/servers/slapd/main.c,v 1.239.2.13 2008/05/20 00:10:40 quanah Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2008 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16 * All rights reserved.
18 * Redistribution and use in source and binary forms are permitted
19 * provided that this notice is preserved and that due credit is given
20 * to the University of Michigan at Ann Arbor. The name of the University
21 * may not be used to endorse or promote products derived from this
22 * software without specific prior written permission. This software
23 * is provided ``as is'' without express or implied warranty.
31 #include <ac/socket.h>
32 #include <ac/string.h>
34 #include <ac/unistd.h>
43 #include "slapi/slapi.h"
47 static RETSIGTYPE
wait4child( int sig
);
50 #ifdef HAVE_NT_SERVICE_MANAGER
51 #define MAIN_RETURN(x) return
52 static struct sockaddr_in bind_addr
;
54 #define SERVICE_EXIT( e, n ) do { \
55 if ( is_NT_Service ) { \
56 lutil_ServiceStatus.dwWin32ExitCode = (e); \
57 lutil_ServiceStatus.dwServiceSpecificExitCode = (n); \
62 #define SERVICE_EXIT( e, n )
63 #define MAIN_RETURN(x) return(x)
66 typedef int (MainFunc
) LDAP_P(( int argc
, char *argv
[] ));
67 extern MainFunc slapadd
, slapcat
, slapdn
, slapindex
, slappasswd
,
68 slaptest
, slapauth
, slapacl
;
77 {"slapindex", slapindex
},
78 {"slappasswd", slappasswd
},
79 {"slaptest", slaptest
},
80 {"slapauth", slapauth
},
82 /* NOTE: new tools must be added in chronological order,
83 * not in alphabetical order, because for backwards
84 * compatibility name[4] is used to identify the
85 * tools; so name[4]=='a' must refer to "slapadd" and
86 * not to "slapauth". Alphabetical order can be used
87 * for tools whose name[4] is not used yet */
92 * when more than one slapd is running on one machine, each one might have
93 * it's own LOCAL for syslogging and must have its own pid/args files
96 #ifndef HAVE_MKVERSION
97 const char Versionstr
[] =
98 OPENLDAP_PACKAGE
" " OPENLDAP_VERSION
" Standalone LDAP Server (slapd)";
101 #define CHECK_NONE 0x00
102 #define CHECK_CONFIG 0x01
103 #define CHECK_LOGLEVEL 0x02
104 static int check
= CHECK_NONE
;
105 static int version
= 0;
111 slapd_opt_slp( const char *val
, void *arg
)
114 /* NULL is default */
115 if ( val
== NULL
|| *val
== '(' || strcasecmp( val
, "on" ) == 0 ) {
116 slapd_register_slp
= 1;
117 slapd_slp_attrs
= (val
!= NULL
&& *val
== '(') ? val
: NULL
;
119 } else if ( strcasecmp( val
, "off" ) == 0 ) {
120 slapd_register_slp
= 0;
122 /* NOTE: add support for URL specification? */
125 fprintf(stderr
, "unrecognized value \"%s\" for SLP option\n", val
);
132 fputs( "slapd: SLP support is not available\n", stderr
);
138 * Option helper structure:
140 * oh_nam is left-hand part of <option>[=<value>]
141 * oh_fnc is handler function
142 * oh_arg is an optional arg to oh_fnc
143 * oh_usage is the one-line usage string related to the option,
144 * which is assumed to start with <option>[=<value>]
146 * please leave valid options in the structure, and optionally #ifdef
147 * their processing inside the helper, so that reasonable and helpful
148 * error messages can be generated if a disabled option is requested.
150 struct option_helper
{
151 struct berval oh_name
;
152 int (*oh_fnc
)(const char *val
, void *arg
);
154 const char *oh_usage
;
155 } option_helpers
[] = {
156 { BER_BVC("slp"), slapd_opt_slp
, NULL
, "slp[={on|off|(attrs)}] enable/disable SLP using (attrs)" },
157 { BER_BVNULL
, 0, NULL
, NULL
}
160 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
163 parse_syslog_user( const char *arg
, int *syslogUser
)
165 static slap_verbmasks syslogUsers
[] = {
166 { BER_BVC( "LOCAL0" ), LOG_LOCAL0
},
167 { BER_BVC( "LOCAL1" ), LOG_LOCAL1
},
168 { BER_BVC( "LOCAL2" ), LOG_LOCAL2
},
169 { BER_BVC( "LOCAL3" ), LOG_LOCAL3
},
170 { BER_BVC( "LOCAL4" ), LOG_LOCAL4
},
171 { BER_BVC( "LOCAL5" ), LOG_LOCAL5
},
172 { BER_BVC( "LOCAL6" ), LOG_LOCAL6
},
173 { BER_BVC( "LOCAL7" ), LOG_LOCAL7
},
175 { BER_BVC( "USER" ), LOG_USER
},
176 #endif /* LOG_USER */
178 { BER_BVC( "DAEMON" ), LOG_DAEMON
},
179 #endif /* LOG_DAEMON */
182 int i
= verb_to_mask( arg
, syslogUsers
);
184 if ( BER_BVISNULL( &syslogUsers
[ i
].word
) ) {
185 Debug( LDAP_DEBUG_ANY
,
186 "unrecognized syslog user \"%s\".\n",
191 *syslogUser
= syslogUsers
[ i
].mask
;
195 #endif /* LOG_LOCAL4 */
198 parse_syslog_level( const char *arg
, int *levelp
)
200 static slap_verbmasks str2syslog_level
[] = {
201 { BER_BVC( "EMERG" ), LOG_EMERG
},
202 { BER_BVC( "ALERT" ), LOG_ALERT
},
203 { BER_BVC( "CRIT" ), LOG_CRIT
},
204 { BER_BVC( "ERR" ), LOG_ERR
},
205 { BER_BVC( "WARNING" ), LOG_WARNING
},
206 { BER_BVC( "NOTICE" ), LOG_NOTICE
},
207 { BER_BVC( "INFO" ), LOG_INFO
},
208 { BER_BVC( "DEBUG" ), LOG_DEBUG
},
211 int i
= verb_to_mask( arg
, str2syslog_level
);
212 if ( BER_BVISNULL( &str2syslog_level
[ i
].word
) ) {
213 Debug( LDAP_DEBUG_ANY
,
214 "unknown syslog level \"%s\".\n",
219 *levelp
= str2syslog_level
[ i
].mask
;
223 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
226 parse_debug_unknowns( char **unknowns
, int *levelp
)
228 int i
, level
, rc
= 0;
230 for ( i
= 0; unknowns
[ i
] != NULL
; i
++ ) {
232 if ( str2loglevel( unknowns
[ i
], &level
)) {
234 "unrecognized log level \"%s\"\n", unknowns
[ i
] );
244 parse_debug_level( const char *arg
, int *levelp
, char ***unknowns
)
248 if ( arg
&& arg
[ 0 ] != '-' && !isdigit( (unsigned char) arg
[ 0 ] ) )
253 levels
= ldap_str2charray( arg
, "," );
255 for ( i
= 0; levels
[ i
] != NULL
; i
++ ) {
258 if ( str2loglevel( levels
[ i
], &level
) ) {
259 /* remember this for later */
260 ldap_charray_add( unknowns
, levels
[ i
] );
262 "unrecognized log level \"%s\" (deferred)\n",
269 ldap_charray_free( levels
);
272 if ( lutil_atoix( &level
, arg
, 0 ) != 0 ) {
274 "unrecognized log level "
294 "usage: %s options\n", name
);
296 "\t-4\t\tIPv4 only\n"
297 "\t-6\t\tIPv6 only\n"
298 "\t-T {acl|add|auth|cat|dn|index|passwd|test}\n"
299 "\t\t\tRun in Tool mode\n"
300 "\t-c cookie\tSync cookie of consumer\n"
301 "\t-d level\tDebug level" "\n"
302 "\t-f filename\tConfiguration file\n"
303 "\t-F dir\tConfiguration directory\n"
304 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
305 "\t-g group\tGroup (id or name) to run as\n"
307 "\t-h URLs\t\tList of URLs to serve\n"
308 #ifdef SLAP_DEFAULT_SYSLOG_USER
309 "\t-l facility\tSyslog facility (default: LOCAL4)\n"
311 "\t-n serverName\tService name\n"
312 "\t-o <opt>[=val] generic means to specify options" );
313 if ( !BER_BVISNULL( &option_helpers
[0].oh_name
) ) {
316 fprintf( stderr
, "; supported options:\n" );
317 for ( i
= 0; !BER_BVISNULL( &option_helpers
[i
].oh_name
); i
++) {
318 fprintf( stderr
, "\t\t%s\n", option_helpers
[i
].oh_usage
);
321 fprintf( stderr
, "\n" );
325 "\t-r directory\tSandbox directory to chroot to\n"
327 "\t-s level\tSyslog level\n"
328 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
329 "\t-u user\t\tUser (id or name) to run as\n"
331 "\t-V\t\tprint version info (-VV only)\n"
335 #ifdef HAVE_NT_SERVICE_MANAGER
336 void WINAPI
ServiceMain( DWORD argc
, LPTSTR
*argv
)
338 int main( int argc
, char **argv
)
341 int i
, no_detach
= 0;
344 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
345 char *username
= NULL
;
346 char *groupname
= NULL
;
348 #if defined(HAVE_CHROOT)
349 char *sandbox
= NULL
;
351 #ifdef SLAP_DEFAULT_SYSLOG_USER
352 int syslogUser
= SLAP_DEFAULT_SYSLOG_USER
;
356 char **g_argv
= argv
;
358 char *configfile
= NULL
;
359 char *configdir
= NULL
;
361 int serverMode
= SLAP_SERVER_MODE
;
363 struct sync_cookie
*scp
= NULL
;
364 struct sync_cookie
*scp_entry
= NULL
;
366 char **debug_unknowns
= NULL
;
367 char **syslog_unknowns
= NULL
;
369 char *serverNamePrefix
= "";
372 int slapd_pid_file_unlink
= 0, slapd_args_file_unlink
= 0;
377 if( ( leakfile
= fopen( "slapd.leak", "w" )) == NULL
) {
384 (void) ldap_pvt_thread_initialize();
386 serverName
= lutil_progname( "slapd", argc
, argv
);
388 if ( strcmp( serverName
, "slapd" ) ) {
389 for (i
=0; tools
[i
].name
; i
++) {
390 if ( !strcmp( serverName
, tools
[i
].name
) ) {
391 rc
= tools
[i
].func(argc
, argv
);
397 #ifdef HAVE_NT_SERVICE_MANAGER
403 char *regService
= NULL
;
405 if ( is_NT_Service
) {
406 lutil_CommenceStartupProcessing( serverName
, slap_sig_shutdown
);
407 if ( strcmp(serverName
, SERVICE_NAME
) )
408 regService
= serverName
;
411 ip
= (int*)lutil_getRegParam( regService
, "DebugLevel" );
414 Debug( LDAP_DEBUG_ANY
,
415 "new debug level from registry is: %d\n", slap_debug
, 0, 0 );
418 newUrls
= (char *) lutil_getRegParam(regService
, "Urls");
423 urls
= ch_strdup(newUrls
);
424 Debug(LDAP_DEBUG_ANY
, "new urls from registry: %s\n",
428 newConfigFile
= (char*)lutil_getRegParam( regService
, "ConfigFile" );
429 if ( newConfigFile
!= NULL
) {
430 configfile
= newConfigFile
;
431 Debug ( LDAP_DEBUG_ANY
, "new config file from registry is: %s\n", configfile
, 0, 0 );
434 newConfigDir
= (char*)lutil_getRegParam( regService
, "ConfigDir" );
435 if ( newConfigDir
!= NULL
) {
436 configdir
= newConfigDir
;
437 Debug ( LDAP_DEBUG_ANY
, "new config dir from registry is: %s\n", configdir
, 0, 0 );
442 while ( (i
= getopt( argc
, argv
,
443 "c:d:f:F:h:n:o:s:tT:V"
450 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
456 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
463 slap_inet4or6
= AF_INET
;
466 slap_inet4or6
= AF_INET6
;
470 case 'h': /* listen URLs */
471 if ( urls
!= NULL
) free( urls
);
472 urls
= ch_strdup( optarg
);
475 case 'c': /* provide sync cookie, override if exist in replica */
476 scp
= (struct sync_cookie
*) ch_calloc( 1,
477 sizeof( struct sync_cookie
));
478 ber_str2bv( optarg
, 0, 1, &scp
->octet_str
);
480 /* This only parses out the rid at this point */
481 slap_parse_sync_cookie( scp
, NULL
);
483 if ( scp
->rid
== -1 ) {
484 Debug( LDAP_DEBUG_ANY
,
485 "main: invalid cookie \"%s\"\n",
487 slap_sync_cookie_free( scp
, 1 );
491 LDAP_STAILQ_FOREACH( scp_entry
, &slap_sync_cookie
, sc_next
) {
492 if ( scp
->rid
== scp_entry
->rid
) {
493 Debug( LDAP_DEBUG_ANY
,
494 "main: duplicated replica id in cookies\n",
496 slap_sync_cookie_free( scp
, 1 );
500 LDAP_STAILQ_INSERT_TAIL( &slap_sync_cookie
, scp
, sc_next
);
503 case 'd': { /* set debug level and 'do not detach' flag */
506 if ( strcmp( optarg
, "?" ) == 0 ) {
507 check
|= CHECK_LOGLEVEL
;
512 if ( parse_debug_level( optarg
, &level
, &debug_unknowns
) ) {
519 fputs( "must compile with LDAP_DEBUG for debugging\n",
524 case 'f': /* read config file */
525 configfile
= ch_strdup( optarg
);
528 case 'F': /* use config dir */
529 configdir
= ch_strdup( optarg
);
533 char *val
= strchr( optarg
, '=' );
539 opt
.bv_len
= ( val
- optarg
);
543 opt
.bv_len
= strlen( optarg
);
546 for ( i
= 0; !BER_BVISNULL( &option_helpers
[i
].oh_name
); i
++ ) {
547 if ( ber_bvstrcasecmp( &option_helpers
[i
].oh_name
, &opt
) == 0 ) {
548 assert( option_helpers
[i
].oh_fnc
!= NULL
);
549 if ( (*option_helpers
[i
].oh_fnc
)( val
, option_helpers
[i
].oh_arg
) == -1 ) {
550 /* we assume the option parsing helper
551 * issues appropriate and self-explanatory
552 * error messages... */
559 if ( BER_BVISNULL( &option_helpers
[i
].oh_name
) ) {
560 goto unhandled_option
;
565 case 's': /* set syslog level */
566 if ( strcmp( optarg
, "?" ) == 0 ) {
567 check
|= CHECK_LOGLEVEL
;
571 if ( parse_debug_level( optarg
, &ldap_syslog
, &syslog_unknowns
) ) {
576 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
578 if ( parse_syslog_level( optarg
, &ldap_syslog_level
) ) {
584 case 'l': /* set syslog local user */
585 if ( parse_syslog_user( optarg
, &syslogUser
) ) {
590 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
594 if( sandbox
) free(sandbox
);
595 sandbox
= ch_strdup( optarg
);
599 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
600 case 'u': /* user name */
601 if( username
) free(username
);
602 username
= ch_strdup( optarg
);
605 case 'g': /* group name */
606 if( groupname
) free(groupname
);
607 groupname
= ch_strdup( optarg
);
609 #endif /* SETUID && GETUID */
611 case 'n': /* NT service name */
612 serverName
= ch_strdup( optarg
);
616 /* deprecated; use slaptest instead */
617 fprintf( stderr
, "option -t deprecated; "
618 "use slaptest command instead\n" );
619 check
|= CHECK_CONFIG
;
627 if ( firstopt
== 0 ) {
628 fprintf( stderr
, "warning: \"-T %s\" "
629 "should be the first option.\n",
633 /* try full option string first */
634 for ( i
= 0; tools
[i
].name
; i
++ ) {
635 if ( strcmp( optarg
, &tools
[i
].name
[4] ) == 0 ) {
636 rc
= tools
[i
].func( argc
, argv
);
641 /* try bits of option string (backward compatibility for single char) */
642 l
= strlen( optarg
);
643 for ( i
= 0; tools
[i
].name
; i
++ ) {
644 if ( strncmp( optarg
, &tools
[i
].name
[4], l
) == 0 ) {
645 rc
= tools
[i
].func( argc
, argv
);
652 serverNamePrefix
= "slap";
653 fprintf( stderr
, "program name \"%s%s\" unrecognized; "
654 "aborting...\n", serverNamePrefix
, serverName
);
660 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 15 );
669 ber_set_option(NULL
, LBER_OPT_DEBUG_LEVEL
, &slap_debug
);
670 ldap_set_option(NULL
, LDAP_OPT_DEBUG_LEVEL
, &slap_debug
);
671 ldif_debug
= slap_debug
;
674 fprintf( stderr
, "%s\n", Versionstr
);
675 if ( version
> 1 ) goto stop
;
678 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
682 logName
= ch_strdup( serverName
);
685 logName
= serverName
;
689 openlog( logName
, OPENLOG_OPTIONS
, syslogUser
);
690 #elif defined LOG_DEBUG
691 openlog( logName
, OPENLOG_OPTIONS
);
697 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
699 Debug( LDAP_DEBUG_ANY
, "%s", Versionstr
, 0, 0 );
701 global_host
= ldap_pvt_get_fqdn( NULL
);
703 if( check
== CHECK_NONE
&& slapd_daemon_init( urls
) != 0 ) {
705 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 16 );
709 #if defined(HAVE_CHROOT)
711 if ( chdir( sandbox
) ) {
716 if ( chroot( sandbox
) ) {
724 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
725 if ( username
!= NULL
|| groupname
!= NULL
) {
726 slap_init_user( username
, groupname
);
734 rc
= ldap_create( &slap_tls_ld
);
736 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 20 );
739 /* Library defaults to full certificate checking. This is correct when
740 * a client is verifying a server because all servers should have a
741 * valid cert. But few clients have valid certs, so we want our default
742 * to be no checking. The config file can override this as usual.
744 rc
= LDAP_OPT_X_TLS_NEVER
;
745 (void) ldap_pvt_tls_set_option( slap_tls_ld
, LDAP_OPT_X_TLS_REQUIRE_CERT
, &rc
);
748 rc
= slap_init( serverMode
, serverName
);
750 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 18 );
754 if ( read_config( configfile
, configdir
) != 0 ) {
756 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 19 );
758 if ( check
& CHECK_CONFIG
) {
759 fprintf( stderr
, "config check failed\n" );
765 if ( debug_unknowns
) {
766 rc
= parse_debug_unknowns( debug_unknowns
, &slap_debug
);
767 ldap_charray_free( debug_unknowns
);
768 debug_unknowns
= NULL
;
772 if ( syslog_unknowns
) {
773 rc
= parse_debug_unknowns( syslog_unknowns
, &ldap_syslog
);
774 ldap_charray_free( syslog_unknowns
);
775 syslog_unknowns
= NULL
;
780 if ( check
& CHECK_LOGLEVEL
) {
785 if ( check
& CHECK_CONFIG
) {
786 fprintf( stderr
, "config check succeeded\n" );
788 check
&= ~CHECK_CONFIG
;
789 if ( check
== CHECK_NONE
) {
795 if ( glue_sub_attach( ) != 0 ) {
796 Debug( LDAP_DEBUG_ANY
,
797 "subordinate config error\n",
803 if ( slap_schema_check( ) != 0 ) {
804 Debug( LDAP_DEBUG_ANY
,
805 "schema prep error\n",
812 rc
= ldap_pvt_tls_init();
814 Debug( LDAP_DEBUG_ANY
,
815 "main: TLS init failed: %d\n",
818 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 20 );
825 /* Force new ctx to be created */
826 rc
= ldap_pvt_tls_set_option( slap_tls_ld
, LDAP_OPT_X_TLS_NEWCTX
, &opt
);
828 /* The ctx's refcount is bumped up here */
829 ldap_pvt_tls_get_option( slap_tls_ld
, LDAP_OPT_X_TLS_CTX
, &slap_tls_ctx
);
830 load_extop( &slap_EXOP_START_TLS
, 0, starttls_extop
);
831 } else if ( rc
!= LDAP_NOT_SUPPORTED
) {
832 Debug( LDAP_DEBUG_ANY
,
833 "main: TLS init def ctx failed: %d\n",
836 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 20 );
842 #ifdef HAVE_CYRUS_SASL
843 if( sasl_host
== NULL
) {
844 sasl_host
= ch_strdup( global_host
);
848 (void) SIGNAL( LDAP_SIGUSR1
, slap_sig_wake
);
849 (void) SIGNAL( LDAP_SIGUSR2
, slap_sig_shutdown
);
852 (void) SIGNAL( SIGPIPE
, SIG_IGN
);
855 (void) SIGNAL( SIGHUP
, slap_sig_shutdown
);
857 (void) SIGNAL( SIGINT
, slap_sig_shutdown
);
858 (void) SIGNAL( SIGTERM
, slap_sig_shutdown
);
860 (void) SIGNAL( SIGTRAP
, slap_sig_shutdown
);
863 (void) SIGNAL( LDAP_SIGCHLD
, wait4child
);
866 /* SIGBREAK is generated when Ctrl-Break is pressed. */
867 (void) SIGNAL( SIGBREAK
, slap_sig_shutdown
);
871 lutil_detach( no_detach
, 0 );
872 #endif /* HAVE_WINSOCK */
878 if ( slapd_pid_file
!= NULL
) {
879 FILE *fp
= fopen( slapd_pid_file
, "w" );
882 int save_errno
= errno
;
884 Debug( LDAP_DEBUG_ANY
, "unable to open pid file "
887 save_errno
, strerror( save_errno
) );
889 free( slapd_pid_file
);
890 slapd_pid_file
= NULL
;
895 fprintf( fp
, "%d\n", (int) getpid() );
897 slapd_pid_file_unlink
= 1;
900 if ( slapd_args_file
!= NULL
) {
901 FILE *fp
= fopen( slapd_args_file
, "w" );
904 int save_errno
= errno
;
906 Debug( LDAP_DEBUG_ANY
, "unable to open args file "
909 save_errno
, strerror( save_errno
) );
911 free( slapd_args_file
);
912 slapd_args_file
= NULL
;
918 for ( i
= 0; i
< g_argc
; i
++ ) {
919 fprintf( fp
, "%s ", g_argv
[i
] );
923 slapd_args_file_unlink
= 1;
927 * FIXME: moved here from slapd_daemon_task()
928 * because back-monitor db_open() needs it
934 if ( slap_startup( NULL
) != 0 ) {
936 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR
, 21 );
940 Debug( LDAP_DEBUG_ANY
, "slapd starting\n", 0, 0, 0 );
942 #ifdef HAVE_NT_EVENT_LOG
944 lutil_LogStartedEvent( serverName
, slap_debug
, configfile
?
945 configfile
: SLAPD_DEFAULT_CONFIGFILE
, urls
);
950 #ifdef HAVE_NT_SERVICE_MANAGER
951 /* Throw away the event that we used during the startup process. */
953 ldap_pvt_thread_cond_destroy( &started_event
);
957 /* remember an error during shutdown */
958 rc
|= slap_shutdown( NULL
);
961 if ( check
& CHECK_LOGLEVEL
) {
962 (void)loglevel_print( stdout
);
964 /* remember an error during destroy */
965 rc
|= slap_destroy();
967 while ( !LDAP_STAILQ_EMPTY( &slap_sync_cookie
)) {
968 scp
= LDAP_STAILQ_FIRST( &slap_sync_cookie
);
969 LDAP_STAILQ_REMOVE_HEAD( &slap_sync_cookie
, sc_next
);
979 supported_feature_destroy();
980 entry_info_destroy();
983 #ifdef HAVE_NT_EVENT_LOG
985 lutil_LogStoppedEvent( serverName
);
988 Debug( LDAP_DEBUG_ANY
, "slapd stopped.\n", 0, 0, 0 );
991 #ifdef HAVE_NT_SERVICE_MANAGER
992 lutil_ReportShutdownComplete();
998 slapd_daemon_destroy();
1006 lutil_passwd_destroy();
1009 if ( slap_tls_ld
) {
1010 ldap_pvt_tls_ctx_free( slap_tls_ctx
);
1011 ldap_unbind_ext( slap_tls_ld
, NULL
, NULL
);
1013 ldap_pvt_tls_destroy();
1016 slap_sasl_regexp_destroy();
1018 if ( slapd_pid_file_unlink
) {
1019 unlink( slapd_pid_file
);
1021 if ( slapd_args_file_unlink
) {
1022 unlink( slapd_args_file
);
1028 ch_free( configfile
);
1030 ch_free( configdir
);
1034 /* kludge, get symbols referenced */
1035 tavl_free( NULL
, NULL
);
1038 mal_dumpleaktrace( leakfile
);
1048 * Catch and discard terminated child processes, to avoid zombies.
1052 wait4child( int sig
)
1054 int save_errno
= errno
;
1059 while ( waitpid( (pid_t
)-1, NULL
, WNOHANG
) > 0 || errno
== EINTR
)
1062 while ( wait3( NULL
, WNOHANG
, NULL
) > 0 || errno
== EINTR
)
1066 (void) wait( NULL
);
1068 (void) SIGNAL_REINSTALL( sig
, wait4child
);
1072 #endif /* LDAP_SIGCHLD */