]> git.sur5r.net Git - openldap/commitdiff
Pull in ITS#5973 code again
authorQuanah Gibson-Mount <quanah@openldap.org>
Tue, 17 Mar 2009 17:25:00 +0000 (17:25 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Tue, 17 Mar 2009 17:25:00 +0000 (17:25 +0000)
servers/slapd/overlays/syncprov.c

index f567f9d8bcc307fe0c3a65f723ddafc2bcc08852..969e3024170d2457d794d11b1e58a3a1fa8c4689 100644 (file)
@@ -1645,6 +1645,58 @@ syncprov_op_response( Operation *op, SlapReply *rs )
                maxcsn.bv_len = sizeof(cbuf);
                ldap_pvt_thread_rdwr_wlock( &si->si_csn_rwlock );
 
+#if 0
+               if ( op->o_dont_replicate &&
+                               op->orm_modlist->sml_op == LDAP_MOD_REPLACE &&
+                               op->orm_modlist->sml_desc == slap_schema.si_ad_contextCSN ) {
+                       /* Catch contextCSN updates from syncrepl. We have to look at
+                        * all the attribute values, as there may be more than one csn
+                        * that changed, and only one can be passed in the csn queue.
+                        */
+                       Modifications *mod = op->orm_modlist;
+                       int i, j, sid;
+
+                       for ( i=0; i<mod->sml_numvals; i++ ) {
+                               sid = slap_parse_csn_sid( &mod->sml_values[i] );
+
+                               for ( j=0; j<si->si_numcsns; j++ ) {
+                                       if ( sid == si->si_sids[j] ) {
+                                               if ( ber_bvcmp( &mod->sml_values[i], &si->si_ctxcsn[j] ) > 0 ) {
+                                                       ber_bvreplace( &si->si_ctxcsn[j], &mod->sml_values[i] );
+                                                       csn_changed = 1;
+                                               }
+                                               break;
+                                       }
+                               }
+
+                               if ( j == si->si_numcsns ) {
+                                       value_add_one( &si->si_ctxcsn, &mod->sml_values[i] );
+                                       si->si_numcsns++;
+                                       si->si_sids = ch_realloc( si->si_sids, si->si_numcsns *
+                                               sizeof(int));
+                                       si->si_sids[j] = sid;
+                                       csn_changed = 1;
+                               }
+                       }
+                       ldap_pvt_thread_rdwr_wunlock( &si->si_csn_rwlock );
+
+                       if ( csn_changed ) {
+                               ldap_pvt_thread_mutex_lock( &si->si_ops_mutex );
+                               have_psearches = ( si->si_ops != NULL );
+                               ldap_pvt_thread_mutex_unlock( &si->si_ops_mutex );
+
+                               if ( have_psearches ) {
+                                       for ( sm = opc->smatches; sm; sm=sm->sm_next ) {
+                                               if ( sm->sm_op->s_op->o_abandon )
+                                                       continue;
+                                               syncprov_qresp( opc, sm->sm_op, LDAP_SYNC_NEW_COOKIE );
+                                       }
+                               }
+                       }
+                       return SLAP_CB_CONTINUE;
+               }
+#endif
+
                slap_get_commit_csn( op, &maxcsn, &foundit );
                if ( BER_BVISEMPTY( &maxcsn ) && SLAP_GLUE_SUBORDINATE( op->o_bd )) {
                        /* syncrepl queues the CSN values in the db where