]> git.sur5r.net Git - openldap/blob - servers/slapd/lock.c
s/SUBSTRINGS/SUBSTR/
[openldap] / servers / slapd / lock.c
1 /* lock.c - routines to open and apply an advisory lock to a file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/string.h>
13 #include <ac/socket.h>
14 #include <ac/time.h>
15 #include <ac/unistd.h>
16
17 #ifdef HAVE_SYS_FILE_H
18 #include <sys/file.h>
19 #endif
20
21 #include "slap.h"
22
23 FILE *
24 lock_fopen( const char *fname, const char *type, FILE **lfp )
25 {
26         FILE    *fp;
27         char    buf[MAXPATHLEN];
28
29         /* open the lock file */
30         strcpy( buf, fname );
31         strcat( buf, ".lock" );
32         if ( (*lfp = fopen( buf, "w" )) == NULL ) {
33                 Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", buf, 0, 0 );
34                 return( NULL );
35         }
36
37         /* acquire the lock */
38         ldap_lockf( fileno(*lfp) );
39
40         /* open the log file */
41         if ( (fp = fopen( fname, type )) == NULL ) {
42                 Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", fname, 0, 0 );
43                 ldap_unlockf( fileno(*lfp) );
44                 fclose( *lfp );
45                 *lfp = NULL;
46                 return( NULL );
47         }
48
49         return( fp );
50 }
51
52 int
53 lock_fclose( FILE *fp, FILE *lfp )
54 {
55         /* unlock */
56         ldap_unlockf( fileno(lfp) );
57         fclose( lfp );
58
59         return( fclose( fp ) );
60 }