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>
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#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 */
|
1999-03-14 04:34:27 +08:00
|
|
|
while ( ldap_lockf( *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 );
|
1999-03-14 04:34:27 +08:00
|
|
|
ldap_unlockf( *lfp );
|
1998-11-12 03:17:25 +08:00
|
|
|
fclose( *lfp );
|
|
|
|
*lfp = NULL;
|
1998-08-09 08:43:13 +08:00
|
|
|
return( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( fp );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
lock_fclose( FILE *fp, FILE *lfp )
|
|
|
|
{
|
|
|
|
/* unlock */
|
1999-03-14 04:34:27 +08:00
|
|
|
ldap_unlockf( lfp );
|
1998-08-09 08:43:13 +08:00
|
|
|
fclose( lfp );
|
|
|
|
|
|
|
|
return( fclose( fp ) );
|
|
|
|
}
|