X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fslaptest.c;h=e0de63628a57fcd040247a3215a5d2e45b04d4f7;hb=324431062bff39a1bd3969bd37d4913526dd583f;hp=7a20dfdab95d6ef87d8c9449e48c845f719de507;hpb=764aa5d938ceefe2bb6fd8e4731e43dff562be84;p=openldap diff --git a/servers/slapd/slaptest.c b/servers/slapd/slaptest.c index 7a20dfdab9..e0de63628a 100644 --- a/servers/slapd/slaptest.c +++ b/servers/slapd/slaptest.c @@ -1,6 +1,6 @@ /* This work is part of OpenLDAP Software . * - * Copyright 2004 The OpenLDAP Foundation. + * Copyright 2004-2006 The OpenLDAP Foundation. * Portions Copyright 2004 Pierangelo Masarati. * All rights reserved. * @@ -26,7 +26,10 @@ #include #include #include +#include +#include #include +#include #include #include @@ -34,17 +37,72 @@ #include "slapcommon.h" +static int +test_file( const char *fname, const char *ftype ) +{ + struct stat st; + int save_errno; + + switch ( stat( fname, &st ) ) { + case 0: + if ( !( st.st_mode & S_IWUSR ) ) { + Debug( LDAP_DEBUG_ANY, "%s file " + "\"%s\" exists, but user does not have access\n", + ftype, fname, 0 ); + return -1; + } + break; + + case -1: + default: + save_errno = errno; + if ( save_errno == ENOENT ) { + FILE *fp = fopen( fname, "w" ); + + if ( fp == NULL ) { + save_errno = errno; + + Debug( LDAP_DEBUG_ANY, "unable to open file " + "\"%s\": %d (%s)\n", + fname, + save_errno, strerror( save_errno ) ); + + return -1; + } + unlink( fname ); + break; + } + + Debug( LDAP_DEBUG_ANY, "unable to stat file " + "\"%s\": %d (%s)\n", + slapd_pid_file, + save_errno, strerror( save_errno ) ); + return -1; + } + + return 0; +} + int slaptest( int argc, char **argv ) { int rc = EXIT_SUCCESS; const char *progname = "slaptest"; -#ifdef NEW_LOGGING - lutil_log_initialize( argc, argv ); -#endif slap_tool_init( progname, SLAPTEST, argc, argv ); + if ( slapd_pid_file != NULL ) { + if ( test_file( slapd_pid_file, "pid" ) ) { + return EXIT_FAILURE; + } + } + + if ( slapd_args_file != NULL ) { + if ( test_file( slapd_args_file, "args" ) ) { + return EXIT_FAILURE; + } + } + fprintf( stderr, "config file testing succeeded\n"); slap_tool_destroy();