mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
58 lines
1.0 KiB
C
58 lines
1.0 KiB
C
/* lock.c - routines to open and apply an advisory lock to a file */
|
|
|
|
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/string.h>
|
|
#include <ac/socket.h>
|
|
#include <ac/time.h>
|
|
#include <ac/unistd.h>
|
|
|
|
#ifdef HAVE_SYS_FILE_H
|
|
#include <sys/file.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
#include <sys/param.h>
|
|
#endif
|
|
#include "slap.h"
|
|
|
|
FILE *
|
|
lock_fopen( char *fname, char *type, FILE **lfp )
|
|
{
|
|
FILE *fp;
|
|
char buf[MAXPATHLEN];
|
|
|
|
/* open the lock file */
|
|
strcpy( buf, fname );
|
|
strcat( buf, ".lock" );
|
|
if ( (*lfp = fopen( buf, "w" )) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", buf, 0, 0 );
|
|
return( NULL );
|
|
}
|
|
|
|
/* acquire the lock */
|
|
ldap_lockf( fileno(*lfp) );
|
|
|
|
/* open the log file */
|
|
if ( (fp = fopen( fname, type )) == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", fname, 0, 0 );
|
|
ldap_unlockf( fileno(*lfp) );
|
|
fclose( *lfp );
|
|
*lfp = NULL;
|
|
return( NULL );
|
|
}
|
|
|
|
return( fp );
|
|
}
|
|
|
|
int
|
|
lock_fclose( FILE *fp, FILE *lfp )
|
|
{
|
|
/* unlock */
|
|
ldap_unlockf( fileno(lfp) );
|
|
fclose( lfp );
|
|
|
|
return( fclose( fp ) );
|
|
}
|