]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/main.c
Fix ITS#4119, option char left over after rev 1.185
[openldap] / servers / slapd / main.c
index 6a7ebec0ffd20434644936205fa1c0965eba7666..b32e60e4d26383194db389118be898394d22d1ad 100644 (file)
@@ -332,7 +332,7 @@ int main( int argc, char **argv )
 #endif
 
        while ( (i = getopt( argc, argv,
-                            "c:d:f:F:h:n:o:s:StT:V"
+                            "c:d:f:F:h:n:o:s:tT:V"
 #if LDAP_PF_INET6
                                "46"
 #endif
@@ -669,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 );
@@ -677,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
 
@@ -720,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;
@@ -728,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