openldap/servers/slapd/lock.c

56 lines
1 KiB
C
Raw Normal View History

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