ITS#9720 Import missing minCSNs from inside DB

We might also ignore them, but if minCSN/contextCSN were not managed
properly, might as well make the effort to approach the actual value at
some point.
This commit is contained in:
Ondřej Kuzník 2021-10-21 12:10:26 +01:00
parent 8f35dc45f2
commit 6ca85aa3a8

View File

@ -662,14 +662,16 @@ log_old_lookup( Operation *op, SlapReply *rs )
Debug( LDAP_DEBUG_ANY, "log_old_lookup: "
"csn=%s with sid not in minCSN set!\n",
a->a_nvals[0].bv_val );
}
/* Paranoid len check, normalized CSNs are always the same length */
if ( len > li->li_mincsn[i].bv_len )
len = li->li_mincsn[i].bv_len;
if ( ber_bvcmp( &li->li_mincsn[i], &a->a_nvals[0] ) < 0 ) {
pd->mincsn_updated = 1;
AC_MEMCPY( li->li_mincsn[i].bv_val, a->a_nvals[0].bv_val, len );
slap_insert_csn_sids( (struct sync_cookie *)&li->li_mincsn, i,
sid, &a->a_nvals[0] );
} else {
/* Paranoid len check, normalized CSNs are always the same length */
if ( len > li->li_mincsn[i].bv_len )
len = li->li_mincsn[i].bv_len;
if ( ber_bvcmp( &li->li_mincsn[i], &a->a_nvals[0] ) < 0 ) {
pd->mincsn_updated = 1;
AC_MEMCPY( li->li_mincsn[i].bv_val, a->a_nvals[0].bv_val, len );
}
}
ldap_pvt_thread_mutex_unlock( &li->li_log_mutex );
}