openldap/servers/slapd/lock.c

58 lines
1.0 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* lock.c - routines to open and apply an advisory lock to a file */
#include "portable.h"
1998-10-25 09:41:42 +08:00
#include <stdio.h>
#include <ac/string.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
#include <ac/time.h>
#include <ac/unistd.h>
1999-03-14 04:34:27 +08:00
#ifdef HAVE_SYS_FILE_H
1998-08-09 08:43:13 +08:00
#include <sys/file.h>
1999-03-14 04:34:27 +08:00
#endif
1998-08-09 08:43:13 +08:00
#include <sys/param.h>
#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 */
while ( ldap_lockf( fileno(*lfp) ) != 0 ) {
1998-08-09 08:43:13 +08:00
; /* NULL */
}
/* 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;
1998-08-09 08:43:13 +08:00
return( NULL );
}
return( fp );
}
int
lock_fclose( FILE *fp, FILE *lfp )
{
/* unlock */
ldap_unlockf( fileno(lfp) );
1998-08-09 08:43:13 +08:00
fclose( lfp );
return( fclose( fp ) );
}