]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/main.c
Multi-threaded slapindex
[openldap] / servers / slapd / main.c
index 3f9b948f7762e7c82651037be4a27b88a7da8f72..5f0024116166fd2d0cc5a8541cfa671d32bbd62b 100644 (file)
@@ -261,14 +261,15 @@ int main( int argc, char **argv )
        struct sync_cookie *scp = NULL;
        struct sync_cookie *scp_entry = NULL;
 
+       char    *serverNamePrefix = "";
+       size_t  l;
+
 #ifdef CSRIMALLOC
        FILE *leakfile;
        if( ( leakfile = fopen( "slapd.leak", "w" )) == NULL ) {
                leakfile = stderr;
        }
 #endif
-       char    *serverNamePrefix = "";
-       size_t  l;
 
        slap_sl_mem_init();
 
@@ -668,7 +669,12 @@ unhandled_option:;
                ldap_pvt_tls_set_option( NULL, LDAP_OPT_X_TLS_CTX, NULL );
 
                rc = ldap_pvt_tls_init_def_ctx();
-               if( rc != 0) {
+               if( rc == 0 ) {
+                       ldap_pvt_tls_get_option( NULL, LDAP_OPT_X_TLS_CTX, &slap_tls_ctx );
+                       /* Restore previous ctx */
+                       ldap_pvt_tls_set_option( NULL, LDAP_OPT_X_TLS_CTX, def_ctx );
+                       load_extop( &slap_EXOP_START_TLS, 0, starttls_extop );
+               } else if ( rc != LDAP_NOT_SUPPORTED ) {
                        Debug( LDAP_DEBUG_ANY,
                            "main: TLS init def ctx failed: %d\n",
                            rc, 0, 0 );
@@ -676,10 +682,6 @@ unhandled_option:;
                        SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
                        goto destroy;
                }
-               /* Retrieve slapd's own ctx */
-               ldap_pvt_tls_get_option( NULL, LDAP_OPT_X_TLS_CTX, &slap_tls_ctx );
-               /* Restore previous ctx */
-               ldap_pvt_tls_set_option( NULL, LDAP_OPT_X_TLS_CTX, def_ctx );
        }
 #endif
 
@@ -719,7 +721,7 @@ unhandled_option:;
         */
        time( &starttime );
 
-       if ( slap_startup( NULL )  != 0 ) {
+       if ( slap_startup( NULL ) != 0 ) {
                rc = 1;
                SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
                goto shutdown;
@@ -727,33 +729,51 @@ unhandled_option:;
 
        Debug( LDAP_DEBUG_ANY, "slapd starting\n", 0, 0, 0 );
 
-
        if ( slapd_pid_file != NULL ) {
                FILE *fp = fopen( slapd_pid_file, "w" );
 
-               if( fp != NULL ) {
-                       fprintf( fp, "%d\n", (int) getpid() );
-                       fclose( fp );
+               if ( fp == NULL ) {
+                       int save_errno = errno;
+
+                       Debug( LDAP_DEBUG_ANY, "unable to open pid file "
+                               "\"%s\": %d (%s)\n",
+                               slapd_pid_file,
+                               save_errno, strerror( save_errno ) );
 
-               } else {
-                       free(slapd_pid_file);
+                       free( slapd_pid_file );
                        slapd_pid_file = NULL;
+
+                       rc = 1;
+                       goto shutdown;
                }
+
+               fprintf( fp, "%d\n", (int) getpid() );
+               fclose( fp );
        }
 
        if ( slapd_args_file != NULL ) {
                FILE *fp = fopen( slapd_args_file, "w" );
 
-               if( fp != NULL ) {
-                       for ( i = 0; i < g_argc; i++ ) {
-                               fprintf( fp, "%s ", g_argv[i] );
-                       }
-                       fprintf( fp, "\n" );
-                       fclose( fp );
-               } else {
-                       free(slapd_args_file);
+               if ( fp == NULL ) {
+                       int save_errno = errno;
+
+                       Debug( LDAP_DEBUG_ANY, "unable to open args file "
+                               "\"%s\": %d (%s)\n",
+                               slapd_args_file,
+                               save_errno, strerror( save_errno ) );
+
+                       free( slapd_args_file );
                        slapd_args_file = NULL;
+
+                       rc = 1;
+                       goto shutdown;
+               }
+
+               for ( i = 0; i < g_argc; i++ ) {
+                       fprintf( fp, "%s ", g_argv[i] );
                }
+               fprintf( fp, "\n" );
+               fclose( fp );
        }
 
 #ifdef HAVE_NT_EVENT_LOG