openldap/servers/slapd/lock.c

73 lines
1.4 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 */
/* $OpenLDAP$ */
1999-08-06 19:07:46 -04:00
/*
2002-01-04 16:17:25 -05:00
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
1999-08-06 19:07:46 -04:00
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
1998-08-08 20:43:13 -04:00
#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
1999-11-01 12:21:24 -05:00
#include <lutil.h>
1998-08-08 20:43:13 -04:00
#include "slap.h"
FILE *
1999-08-20 15:00:44 -04:00
lock_fopen( const char *fname, const char *type, FILE **lfp )
1998-08-08 20:43:13 -04:00
{
FILE *fp;
char buf[MAXPATHLEN];
/* open the lock file */
strcpy(lutil_strcopy( buf, fname ), ".lock" );
1998-08-08 20:43:13 -04:00
if ( (*lfp = fopen( buf, "w" )) == NULL ) {
2001-01-15 14:17:29 -05:00
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, ERR,
"lock_fopen: could not open lock file \"%s\".\n", buf, 0, 0);
2001-01-15 14:17:29 -05:00
#else
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", buf, 0, 0 );
2001-01-15 14:17:29 -05:00
#endif
1998-08-08 20:43:13 -04:00
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 ) {
2001-01-15 14:17:29 -05:00
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, ERR,
"lock_fopen: could not open log file \"%s\".\n", buf, 0, 0);
2001-01-15 14:17:29 -05:00
#else
1998-08-08 20:43:13 -04:00
Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", fname, 0, 0 );
2001-01-15 14:17:29 -05:00
#endif
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 ) );
}