]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/main.c
Fix backend_destroy to call bi_destroy instead of bi_close
[openldap] / servers / slapd / main.c
index de44b19691d29432f65285b0b8c70869faad0328..894f834a9fed90c966f1089c8c135e9bf28bb8ce 100644 (file)
@@ -2,6 +2,7 @@
 
 #include <stdio.h>
 
+#include <ac/signal.h>
 #include <ac/socket.h>
 #include <ac/string.h>
 #include <ac/time.h>
@@ -11,7 +12,6 @@
 #include "slap.h"
 #include "lutil.h"                     /* Get lutil_detach() */
 
-
 /*
  * when more than one slapd is running on one machine, each one might have
  * it's own LOCAL for syslogging and must have its own pid/args files
 #define DEFAULT_SYSLOG_USER  LOG_LOCAL4
 
 typedef struct _str2intDispatch {
-
-        char    *stringVal;
-        int      abbr;
-        int      intVal;
-
+       char    *stringVal;
+       int      abbr;
+       int      intVal;
 } STRDISP, *STRDISP_P;
 
 
 /* table to compute syslog-options to integer */
 static STRDISP  syslog_types[] = {
-
     { "LOCAL0",         6, LOG_LOCAL0 },
     { "LOCAL1",         6, LOG_LOCAL1 },
     { "LOCAL2",         6, LOG_LOCAL2 },
@@ -42,7 +39,6 @@ static STRDISP  syslog_types[] = {
     { "LOCAL6",         6, LOG_LOCAL6 },
     { "LOCAL7",         6, LOG_LOCAL7 },
     NULL
-
 };
 
 static int   cnvt_str2int();
@@ -65,10 +61,9 @@ main( int argc, char **argv )
 {
        int             i;
        int             inetd = 0;
+       int             rc = 0;
        int             port;
        int             udp;
-       Backend         *be = NULL;
-       FILE            *fp = NULL;
 #ifdef LOG_LOCAL4
     int     syslogUser = DEFAULT_SYSLOG_USER;
 #endif
@@ -171,28 +166,47 @@ main( int argc, char **argv )
                serverName = ch_strdup( serverName + 1 );
        }
 
-       if ( ! inetd ) {
-               /* pre-open config file before detach in case it is a relative path */
-               fp = fopen( configfile, "r" );
-#ifdef LDAP_DEBUG
-               lutil_detach( ldap_debug, 0 );
-#else
-               lutil_detach( 0, 0 );
-#endif
-       }
-
 #ifdef LOG_LOCAL4
        openlog( serverName, OPENLOG_OPTIONS, syslogUser );
 #else
        openlog( serverName, OPENLOG_OPTIONS );
 #endif
 
-       init();
-       read_config_env( configfile, &be, fp, 1 );
+#ifdef SLAPD_BDB2
+       bdb2i_do_timing = 1;
+#endif
+
+       if ( slap_init( SLAP_SERVER_MODE, serverName ) != 0 ) {
+               rc = 1;
+               goto destroy;
+       }
+
+       if ( read_config( configfile ) != 0 ) {
+               rc = 1;
+               goto destroy;
+       }
+
+       if ( slap_startup(-1)  != 0 ) {
+               rc = 1;
+               goto shutdown;
+       }
 
        if ( ! inetd ) {
                int             status;
 
+               (void) SIGNAL( SIGPIPE, SIG_IGN );
+               (void) SIGNAL( LDAP_SIGUSR1, slap_do_nothing );
+               (void) SIGNAL( LDAP_SIGUSR2, slap_set_shutdown );
+               (void) SIGNAL( SIGTERM, slap_set_shutdown );
+               (void) SIGNAL( SIGINT, slap_set_shutdown );
+               (void) SIGNAL( SIGHUP, slap_set_shutdown );
+
+#ifdef LDAP_DEBUG
+               lutil_detach( ldap_debug, 0 );
+#else
+               lutil_detach( 0, 0 );
+#endif
+
                time( &starttime );
 
                if ( status = ldap_pvt_thread_create( &listener_tid, 0,
@@ -200,13 +214,13 @@ main( int argc, char **argv )
                {
                        Debug( LDAP_DEBUG_ANY,
                            "listener ldap_pvt_thread_create failed (%d)\n", status, 0, 0 );
-                       exit( 1 );
-               }
 
-               /* wait for the listener thread to complete */
-               ldap_pvt_thread_join( listener_tid, (void *) NULL );
+                       rc = 1;
 
-               return 0;
+               } else {
+                       /* wait for the listener thread to complete */
+                       ldap_pvt_thread_join( listener_tid, (void *) NULL );
+               }
 
        } else {
                Connection              c;
@@ -288,7 +302,12 @@ main( int argc, char **argv )
                        ber_free( &ber, 1 );
                }
        }
-       return 1;
+
+shutdown:
+       slap_shutdown(-1);
+destroy:
+       slap_destroy();
+       return rc;
 }