openldap/servers/slapd/lock.c

93 lines
2.2 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 */
/* $OpenLDAP$ */
2003-11-27 09:17:14 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2004-01-02 03:15:16 +08:00
* Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-27 09:17:14 +08:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
1999-08-07 07:07:46 +08:00
*/
1998-08-09 08:43:13 +08:00
#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
1999-11-02 01:21:24 +08:00
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include <lutil.h>
1998-08-09 08:43:13 +08:00
FILE *
1999-08-21 03:00:44 +08:00
lock_fopen( const char *fname, const char *type, FILE **lfp )
1998-08-09 08:43:13 +08:00
{
FILE *fp;
char buf[MAXPATHLEN];
/* open the lock file */
2002-09-25 12:34:33 +08:00
snprintf( buf, sizeof buf, "%s.lock", fname );
1998-08-09 08:43:13 +08:00
if ( (*lfp = fopen( buf, "w" )) == NULL ) {
2001-01-16 03:17:29 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, ERR,
"lock_fopen: could not open lock file \"%s\".\n", buf, 0, 0);
2001-01-16 03:17:29 +08:00
#else
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", buf, 0, 0 );
2001-01-16 03:17:29 +08:00
#endif
1998-08-09 08:43:13 +08:00
return( NULL );
}
/* acquire the lock */
ldap_lockf( fileno(*lfp) );
1998-08-09 08:43:13 +08:00
/* open the log file */
if ( (fp = fopen( fname, type )) == NULL ) {
2001-01-16 03:17:29 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( OPERATION, ERR,
"lock_fopen: could not open log file \"%s\".\n", buf, 0, 0);
2001-01-16 03:17:29 +08:00
#else
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", fname, 0, 0 );
2001-01-16 03:17:29 +08:00
#endif
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 ) );
}