]> git.sur5r.net Git - openldap/blob - servers/slapd/ctxcsn.c
Sync with HEAD
[openldap] / servers / slapd / ctxcsn.c
1 /* ctxcsn.c -- Context CSN Management Routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2005 The OpenLDAP Foundation.
6  * Portions Copyright 2003 IBM Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/string.h>
23 #include <ac/socket.h>
24
25 #include "lutil.h"
26 #include "slap.h"
27 #include "lutil_ldap.h"
28
29 const struct berval slap_ldapsync_bv = BER_BVC("ldapsync");
30 const struct berval slap_ldapsync_cn_bv = BER_BVC("cn=ldapsync");
31
32 void
33 slap_get_commit_csn(
34         Operation *op,
35         struct berval *maxcsn,
36         struct berval *curcsn
37 )
38 {
39         struct slap_csn_entry *csne, *committed_csne = NULL;
40
41         if ( maxcsn ) {
42                 BER_BVZERO( maxcsn );
43         }
44
45         ldap_pvt_thread_mutex_lock( op->o_bd->be_pcl_mutexp );
46
47         LDAP_TAILQ_FOREACH( csne, op->o_bd->be_pending_csn_list, ce_csn_link ) {
48                 if ( csne->ce_opid == op->o_opid && csne->ce_connid == op->o_connid ) {
49                         if ( curcsn ) *curcsn = csne->ce_csn;
50                         csne->ce_state = SLAP_CSN_COMMIT;
51                         break;
52                 }
53         }
54
55         LDAP_TAILQ_FOREACH( csne, op->o_bd->be_pending_csn_list, ce_csn_link ) {
56                 if ( csne->ce_state == SLAP_CSN_COMMIT ) committed_csne = csne;
57                 if ( csne->ce_state == SLAP_CSN_PENDING ) break;
58         }
59
60         if ( committed_csne && maxcsn ) *maxcsn = committed_csne->ce_csn;
61         ldap_pvt_thread_mutex_unlock( op->o_bd->be_pcl_mutexp );
62 }
63
64 void
65 slap_rewind_commit_csn( Operation *op )
66 {
67         struct slap_csn_entry *csne;
68
69         ldap_pvt_thread_mutex_lock( op->o_bd->be_pcl_mutexp );
70
71         LDAP_TAILQ_FOREACH( csne, op->o_bd->be_pending_csn_list, ce_csn_link ) {
72                 if ( csne->ce_opid == op->o_opid && csne->ce_connid == op->o_connid ) {
73                         csne->ce_state = SLAP_CSN_PENDING;
74                         break;
75                 }
76         }
77
78         ldap_pvt_thread_mutex_unlock( op->o_bd->be_pcl_mutexp );
79 }
80
81 void
82 slap_graduate_commit_csn( Operation *op )
83 {
84         struct slap_csn_entry *csne;
85
86         if ( op == NULL ) return;
87         if ( op->o_bd == NULL ) return;
88
89 #if 0
90         /* it is NULL when we get here from the frontendDB;
91          * alternate fix: initialize frontendDB like all other backends */
92         assert( op->o_bd->be_pcl_mutexp != NULL );
93 #endif
94         
95         if ( op->o_bd->be_pcl_mutexp == NULL ) return;
96
97         ldap_pvt_thread_mutex_lock( op->o_bd->be_pcl_mutexp );
98
99         LDAP_TAILQ_FOREACH( csne, op->o_bd->be_pending_csn_list, ce_csn_link ) {
100                 if ( csne->ce_opid == op->o_opid && csne->ce_connid == op->o_connid ) {
101                         LDAP_TAILQ_REMOVE( op->o_bd->be_pending_csn_list,
102                                 csne, ce_csn_link );
103                         ch_free( csne->ce_csn.bv_val );
104                         ch_free( csne );
105                         break;
106                 }
107         }
108
109         ldap_pvt_thread_mutex_unlock( op->o_bd->be_pcl_mutexp );
110
111         return;
112 }
113
114 static struct berval ocbva[] = {
115         BER_BVC("top"),
116         BER_BVC("subentry"),
117         BER_BVC("syncProviderSubentry"),
118         BER_BVNULL
119 };
120
121 Entry *
122 slap_create_context_csn_entry(
123         Backend *be,
124         struct berval *context_csn )
125 {
126         Entry* e;
127
128         struct berval bv;
129
130         e = (Entry *) ch_calloc( 1, sizeof( Entry ));
131
132         attr_merge( e, slap_schema.si_ad_objectClass,
133                 ocbva, NULL );
134         attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
135                 &ocbva[1], NULL );
136         attr_merge_one( e, slap_schema.si_ad_cn,
137                 (struct berval *)&slap_ldapsync_bv, NULL );
138
139         if ( context_csn ) {
140                 attr_merge_one( e, slap_schema.si_ad_contextCSN,
141                         context_csn, NULL );
142         }
143
144         BER_BVSTR( &bv, "{}" );
145         attr_merge_one( e, slap_schema.si_ad_subtreeSpecification, &bv, NULL );
146
147         build_new_dn( &e->e_name, &be->be_nsuffix[0],
148                 (struct berval *)&slap_ldapsync_cn_bv, NULL );
149         ber_dupbv( &e->e_nname, &e->e_name );
150
151         return e;
152 }
153
154 void
155 slap_queue_csn(
156         Operation *op,
157         struct berval *csn )
158 {
159         struct slap_csn_entry *pending;
160
161         pending = (struct slap_csn_entry *) ch_calloc( 1,
162                         sizeof( struct slap_csn_entry ));
163         ldap_pvt_thread_mutex_lock( op->o_bd->be_pcl_mutexp );
164
165         ber_dupbv( &pending->ce_csn, csn );
166         pending->ce_connid = op->o_connid;
167         pending->ce_opid = op->o_opid;
168         pending->ce_state = SLAP_CSN_PENDING;
169         LDAP_TAILQ_INSERT_TAIL( op->o_bd->be_pending_csn_list,
170                 pending, ce_csn_link );
171         ldap_pvt_thread_mutex_unlock( op->o_bd->be_pcl_mutexp );
172 }
173
174 int
175 slap_get_csn(
176         Operation *op,
177         char *csnbuf,
178         int     len,
179         struct berval *csn,
180         int manage_ctxcsn )
181 {
182         if ( csn == NULL ) return LDAP_OTHER;
183
184 #ifndef HAVE_GMTIME_R
185         ldap_pvt_thread_mutex_lock( &gmtime_mutex );
186 #endif
187         csn->bv_len = lutil_csnstr( csnbuf, len, 0, 0 );
188 #ifndef HAVE_GMTIME_R
189         ldap_pvt_thread_mutex_unlock( &gmtime_mutex );
190 #endif
191         csn->bv_val = csnbuf;
192
193         if ( manage_ctxcsn )
194                 slap_queue_csn( op, csn );
195
196         return LDAP_SUCCESS;
197 }