X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslurpd%2Fmain.c;h=a502ea02651a23f4f308c4326e88e09fbd30939f;hb=d84ffb62a6c7528ef711547194307af629e0d082;hp=4984a6a50f8da9e4a9f34019a61fd959eb2c52d7;hpb=dc0eacd40b625258355eea866d62188e5aa7ce3b;p=openldap diff --git a/servers/slurpd/main.c b/servers/slurpd/main.c index 4984a6a50f..a502ea0265 100644 --- a/servers/slurpd/main.c +++ b/servers/slurpd/main.c @@ -155,11 +155,21 @@ int main( int argc, char **argv ) } #ifdef HAVE_TLS - if( ldap_pvt_tls_init() || ldap_pvt_tls_init_def_ctx() ) { - fprintf( stderr, "TLS Initialization failed.\n" ); - SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 ); - rc = 1; - goto stop; + if( ldap_pvt_tls_init() || ldap_pvt_tls_init_def_ctx( 0 ) ) { + rc = 0; + /* See if we actually need TLS */ + for ( i=0; i < sglob->num_replicas; i++ ) { + if ( sglob->replicas[i]->ri_tls || ( sglob->replicas[i]->ri_uri && + !strncmp( sglob->replicas[i]->ri_uri, "ldaps:", 6 ))) { + rc = 1; + break; + } + } + if ( rc ) { + fprintf( stderr, "TLS Initialization failed.\n" ); + SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 ); + goto stop; + } } #endif @@ -205,31 +215,57 @@ int main( int argc, char **argv ) } #endif - if ( slurpd_pid_file != NULL ) { - FILE *fp = fopen( slurpd_pid_file, "w" ); + /* + * don't open pid/args file in one-shot mode (ITS#4152) + * + * bail out if files were specified but cannot be opened (ITS#4074) + */ + if ( !sglob->one_shot_mode) { + if ( slurpd_pid_file != NULL ) { + FILE *fp = fopen( slurpd_pid_file, "w" ); + + if ( fp == NULL ) { + int save_errno = errno; + + fprintf( stderr, "unable to open pid file " + "\"%s\": %d (%s)\n", + slurpd_pid_file, + save_errno, strerror( save_errno ) ); + + free( slurpd_pid_file ); + slurpd_pid_file = NULL; + + rc = 1; + goto stop; + } - if( fp != NULL ) { fprintf( fp, "%d\n", (int) getpid() ); fclose( fp ); - - } else { - free(slurpd_pid_file); - slurpd_pid_file = NULL; } - } - if ( slurpd_args_file != NULL ) { - FILE *fp = fopen( slurpd_args_file, "w" ); + if ( slurpd_args_file != NULL ) { + FILE *fp = fopen( slurpd_args_file, "w" ); + + if ( fp == NULL ) { + int save_errno = errno; + + fprintf( stderr, "unable to open args file " + "\"%s\": %d (%s)\n", + slurpd_args_file, + save_errno, strerror( save_errno ) ); + + free( slurpd_args_file ); + slurpd_pid_file = NULL; + + rc = 1; + goto stop; + } - if( fp != NULL ) { for ( i = 0; i < argc; i++ ) { fprintf( fp, "%s ", argv[i] ); } fprintf( fp, "\n" ); fclose( fp ); - } else { - free(slurpd_args_file); - slurpd_args_file = NULL; } }