]> git.sur5r.net Git - openldap/blob - servers/slapd/lock.c
Clean up
[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 #ifdef NEW_LOGGING
34                 LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
35                            "lock_fopen: could not open lock file \"%s\".\n", buf ));
36 #else
37                 Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", buf, 0, 0 );
38 #endif
39
40                 return( NULL );
41         }
42
43         /* acquire the lock */
44         ldap_lockf( fileno(*lfp) );
45
46         /* open the log file */
47         if ( (fp = fopen( fname, type )) == NULL ) {
48 #ifdef NEW_LOGGING
49                 LDAP_LOG(( "operation", LDAP_LEVEL_ERR,
50                            "lock_fopen: could not open log file \"%s\".\n", buf ));
51 #else
52                 Debug( LDAP_DEBUG_ANY, "could not open \"%s\"\n", fname, 0, 0 );
53 #endif
54
55                 ldap_unlockf( fileno(*lfp) );
56                 fclose( *lfp );
57                 *lfp = NULL;
58                 return( NULL );
59         }
60
61         return( fp );
62 }
63
64 int
65 lock_fclose( FILE *fp, FILE *lfp )
66 {
67         /* unlock */
68         ldap_unlockf( fileno(lfp) );
69         fclose( lfp );
70
71         return( fclose( fp ) );
72 }