mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
Add support for outbound connections in main listener.
Restructure syncrepl/persist to use outbound connection manager.
This commit is contained in:
parent
645c2bcb02
commit
08676eb49d
6 changed files with 413 additions and 340 deletions
|
|
@ -2797,12 +2797,14 @@ add_syncrepl(
|
|||
si->si_attrs[0] = NULL;
|
||||
si->si_type = LDAP_SYNC_REFRESH_ONLY;
|
||||
si->si_interval = 86400;
|
||||
si->si_syncCookie = NULL;
|
||||
si->si_syncCookie.bv_val = NULL;
|
||||
si->si_syncCookie.bv_len = 0;
|
||||
si->si_manageDSAit = 0;
|
||||
si->si_tlimit = -1;
|
||||
si->si_slimit = -1;
|
||||
si->si_syncUUID = NULL;
|
||||
si->si_syncUUID_ndn = NULL;
|
||||
si->si_syncUUID_ndn.bv_val = NULL;
|
||||
si->si_syncUUID_ndn.bv_len = 0;
|
||||
si->si_sync_mode = LDAP_SYNC_STATE_MODE;
|
||||
|
||||
si->si_presentlist = NULL;
|
||||
|
|
@ -3084,7 +3086,7 @@ parse_syncrepl_line(
|
|||
COOKIESTR, sizeof( COOKIESTR ) - 1 ) )
|
||||
{
|
||||
val = cargv[ i ] + sizeof( COOKIESTR );
|
||||
si->si_syncCookie = ber_str2bv( val, strlen( val ), 1, NULL );
|
||||
ber_str2bv( val, 0, 1, &si->si_syncCookie );
|
||||
} else if ( !strncasecmp( cargv[ i ],
|
||||
MANAGEDSAITSTR, sizeof( MANAGEDSAITSTR ) - 1 ) )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -169,6 +169,12 @@ int connections_shutdown(void)
|
|||
if( connections[i].c_struct_state != SLAP_C_USED ) {
|
||||
continue;
|
||||
}
|
||||
/* give persistent clients a chance to cleanup */
|
||||
if( connections[i].c_conn_state == SLAP_C_CLIENT ) {
|
||||
ldap_pvt_thread_pool_submit( &connection_pool,
|
||||
connections[i].c_clientfunc, connections[i].c_clientarg );
|
||||
continue;
|
||||
}
|
||||
|
||||
ldap_pvt_thread_mutex_lock( &connections[i].c_mutex );
|
||||
|
||||
|
|
@ -294,6 +300,7 @@ static Connection* connection_get( ber_socket_t s )
|
|||
ldap_pvt_thread_mutex_unlock( &c->c_mutex );
|
||||
return NULL;
|
||||
}
|
||||
if( c->c_conn_state == SLAP_C_CLIENT ) sd = 0;
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( CONNECTION, RESULTS,
|
||||
|
|
@ -332,7 +339,7 @@ long connection_init(
|
|||
Listener *listener,
|
||||
const char* dnsname,
|
||||
const char* peername,
|
||||
int tls_udp_option,
|
||||
int flags,
|
||||
slap_ssf_t ssf,
|
||||
const char *authid )
|
||||
{
|
||||
|
|
@ -346,7 +353,7 @@ long connection_init(
|
|||
assert( peername != NULL );
|
||||
|
||||
#ifndef HAVE_TLS
|
||||
assert( tls_udp_option != 1 );
|
||||
assert( flags != CONN_IS_TLS );
|
||||
#endif
|
||||
|
||||
if( s == AC_SOCKET_INVALID ) {
|
||||
|
|
@ -495,6 +502,16 @@ long connection_init(
|
|||
assert( c->c_currentber == NULL );
|
||||
|
||||
c->c_listener = listener;
|
||||
|
||||
if ( flags == CONN_IS_CLIENT ) {
|
||||
c->c_conn_state = SLAP_C_CLIENT;
|
||||
c->c_struct_state = SLAP_C_USED;
|
||||
ldap_pvt_thread_mutex_unlock( &c->c_mutex );
|
||||
ldap_pvt_thread_mutex_unlock( &connections_mutex );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
ber_str2bv( dnsname, 0, 1, &c->c_peer_domain );
|
||||
ber_str2bv( peername, 0, 1, &c->c_peer_name );
|
||||
|
||||
|
|
@ -520,7 +537,7 @@ long connection_init(
|
|||
|
||||
#ifdef LDAP_CONNECTIONLESS
|
||||
c->c_is_udp = 0;
|
||||
if( tls_udp_option == 2 ) {
|
||||
if( flags == CONN_IS_UDP ) {
|
||||
c->c_is_udp = 1;
|
||||
#ifdef LDAP_DEBUG
|
||||
ber_sockbuf_add_io( c->c_sb, &ber_sockbuf_io_debug,
|
||||
|
|
@ -569,7 +586,7 @@ long connection_init(
|
|||
c->c_tls_ssf = 0;
|
||||
|
||||
#ifdef HAVE_TLS
|
||||
if ( tls_udp_option == 1 ) {
|
||||
if ( flags == CONN_IS_TLS ) {
|
||||
c->c_is_tls = 1;
|
||||
c->c_needs_tls_accept = 1;
|
||||
} else {
|
||||
|
|
@ -1118,6 +1135,51 @@ no_co_op_free:
|
|||
return NULL;
|
||||
}
|
||||
|
||||
int connection_client_setup(
|
||||
ber_socket_t s,
|
||||
Listener *l,
|
||||
ldap_pvt_thread_start_t *func,
|
||||
void *arg )
|
||||
{
|
||||
Connection *c;
|
||||
|
||||
if ( connection_init( s, l, "", "", CONN_IS_CLIENT, 0, "" ) < 0 ) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
c = connection_get( s );
|
||||
c->c_clientfunc = func;
|
||||
c->c_clientarg = arg;
|
||||
connection_return( c );
|
||||
slapd_add_internal( s );
|
||||
slapd_set_read( s, 1 );
|
||||
return 0;
|
||||
}
|
||||
|
||||
void connection_client_enable(
|
||||
ber_socket_t s
|
||||
)
|
||||
{
|
||||
slapd_set_read( s, 1 );
|
||||
}
|
||||
|
||||
void connection_client_stop(
|
||||
ber_socket_t s
|
||||
)
|
||||
{
|
||||
Connection *c;
|
||||
|
||||
/* get (locked) connection */
|
||||
c = connection_get( s );
|
||||
|
||||
assert( c->c_conn_state == SLAP_C_CLIENT );
|
||||
|
||||
c->c_listener = NULL;
|
||||
c->c_conn_state = SLAP_C_INVALID;
|
||||
c->c_struct_state = SLAP_C_UNUSED;
|
||||
connection_return( c );
|
||||
}
|
||||
|
||||
int connection_read(ber_socket_t s)
|
||||
{
|
||||
int rc = 0;
|
||||
|
|
@ -1162,6 +1224,15 @@ int connection_read(ber_socket_t s)
|
|||
return 0;
|
||||
}
|
||||
|
||||
if ( c->c_conn_state == SLAP_C_CLIENT ) {
|
||||
slapd_clr_read( s, 0 );
|
||||
ldap_pvt_thread_pool_submit( &connection_pool,
|
||||
c->c_clientfunc, c->c_clientarg );
|
||||
connection_return( c );
|
||||
ldap_pvt_thread_mutex_unlock( &connections_mutex );
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( CONNECTION, DETAIL1,
|
||||
"connection_read: conn %lu checking for input.\n",
|
||||
|
|
|
|||
|
|
@ -1503,7 +1503,7 @@ slapd_daemon_task(
|
|||
id = connection_init(
|
||||
slap_listeners[l]->sl_sd,
|
||||
slap_listeners[l], "", "",
|
||||
2, ssf, authid );
|
||||
CONN_IS_UDP, ssf, authid );
|
||||
slap_listeners[l]->sl_is_udp++;
|
||||
}
|
||||
continue;
|
||||
|
|
@ -1733,7 +1733,7 @@ slapd_daemon_task(
|
|||
dnsname != NULL ? dnsname : SLAP_STRING_UNKNOWN,
|
||||
peername,
|
||||
#ifdef HAVE_TLS
|
||||
slap_listeners[l]->sl_is_tls,
|
||||
slap_listeners[l]->sl_is_tls ? CONN_IS_TLS : 0,
|
||||
#else
|
||||
0,
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -316,6 +316,15 @@ LDAP_SLAPD_F (int) connections_shutdown LDAP_P((void));
|
|||
LDAP_SLAPD_F (int) connections_destroy LDAP_P((void));
|
||||
LDAP_SLAPD_F (int) connections_timeout_idle LDAP_P((time_t));
|
||||
|
||||
LDAP_SLAPD_F (int) connection_client_setup LDAP_P((
|
||||
ber_socket_t s,
|
||||
Listener *l,
|
||||
ldap_pvt_thread_start_t *func,
|
||||
void *arg ));
|
||||
LDAP_SLAPD_F (void) connection_client_enable LDAP_P(( ber_socket_t s ));
|
||||
LDAP_SLAPD_F (void) connection_client_stop LDAP_P(( ber_socket_t s ));
|
||||
|
||||
|
||||
LDAP_SLAPD_F (long) connection_init LDAP_P((
|
||||
ber_socket_t s,
|
||||
Listener* url,
|
||||
|
|
@ -1183,13 +1192,13 @@ LDAP_SLAPD_V (struct runqueue_s) syncrepl_rq;
|
|||
LDAP_SLAPD_F (void) init_syncrepl LDAP_P((syncinfo_t *));
|
||||
LDAP_SLAPD_F (void*) do_syncrepl LDAP_P((void *, void *));
|
||||
LDAP_SLAPD_F (Entry*) syncrepl_message_to_entry LDAP_P((
|
||||
syncinfo_t *, LDAP *, Operation *, LDAPMessage *,
|
||||
Modifications **, int*, struct berval *, struct berval * ));
|
||||
syncinfo_t *, Operation *, LDAPMessage *,
|
||||
Modifications **, int ));
|
||||
LDAP_SLAPD_F (int) syncrepl_entry LDAP_P((
|
||||
syncinfo_t *, LDAP *, Operation*, Entry*,
|
||||
Modifications*,int, struct berval*, struct berval*, int ));
|
||||
syncinfo_t *, Operation*, Entry*,
|
||||
Modifications*,int, struct berval*, int ));
|
||||
LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
|
||||
syncinfo_t *, LDAP *, Operation *, struct berval *,
|
||||
syncinfo_t *, Operation *, struct berval *,
|
||||
struct berval * ));
|
||||
LDAP_SLAPD_F (void) syncrepl_add_glue LDAP_P((
|
||||
Operation*, Entry* ));
|
||||
|
|
|
|||
|
|
@ -1293,44 +1293,41 @@ struct nonpresent_entry {
|
|||
* syncinfo structure for syncrepl
|
||||
*/
|
||||
typedef struct syncinfo_s {
|
||||
struct slap_conn *si_conn;
|
||||
struct slap_backend_db *si_be;
|
||||
struct slap_entry *si_e;
|
||||
void *si_ctx;
|
||||
unsigned int si_id;
|
||||
char *si_provideruri;
|
||||
BerVarray si_provideruri_bv;
|
||||
#define SYNCINFO_TLS_OFF 0
|
||||
#define SYNCINFO_TLS_ON 1
|
||||
#define SYNCINFO_TLS_CRITICAL 2
|
||||
int si_tls;
|
||||
struct berval si_updatedn;
|
||||
int si_bindmethod;
|
||||
char *si_binddn;
|
||||
char *si_passwd;
|
||||
char *si_saslmech;
|
||||
char *si_secprops;
|
||||
char *si_realm;
|
||||
char *si_authcId;
|
||||
char *si_authzId;
|
||||
int si_schemachecking;
|
||||
Filter *si_filter;
|
||||
struct berval si_filterstr;
|
||||
struct berval si_base;
|
||||
int si_scope;
|
||||
int si_attrsonly;
|
||||
char **si_attrs;
|
||||
int si_type;
|
||||
time_t si_interval;
|
||||
struct berval *si_syncCookie;
|
||||
int si_manageDSAit;
|
||||
int si_slimit;
|
||||
int si_tlimit;
|
||||
struct berval *si_syncUUID;
|
||||
struct berval *si_syncUUID_ndn;
|
||||
Avlnode *si_presentlist;
|
||||
int si_sync_mode;
|
||||
LDAP_LIST_HEAD(np, nonpresent_entry) si_nonpresentlist;
|
||||
struct slap_backend_db *si_be;
|
||||
unsigned int si_id;
|
||||
char *si_provideruri;
|
||||
BerVarray si_provideruri_bv;
|
||||
#define SYNCINFO_TLS_OFF 0
|
||||
#define SYNCINFO_TLS_ON 1
|
||||
#define SYNCINFO_TLS_CRITICAL 2
|
||||
int si_tls;
|
||||
struct berval si_updatedn;
|
||||
int si_bindmethod;
|
||||
char *si_binddn;
|
||||
char *si_passwd;
|
||||
char *si_saslmech;
|
||||
char *si_secprops;
|
||||
char *si_realm;
|
||||
char *si_authcId;
|
||||
char *si_authzId;
|
||||
int si_schemachecking;
|
||||
Filter *si_filter;
|
||||
struct berval si_filterstr;
|
||||
struct berval si_base;
|
||||
int si_scope;
|
||||
int si_attrsonly;
|
||||
char **si_attrs;
|
||||
int si_type;
|
||||
time_t si_interval;
|
||||
struct berval si_syncCookie;
|
||||
int si_manageDSAit;
|
||||
int si_slimit;
|
||||
int si_tlimit;
|
||||
struct berval si_syncUUID_ndn;
|
||||
Avlnode *si_presentlist;
|
||||
int si_sync_mode;
|
||||
LDAP *si_ld;
|
||||
LDAP_LIST_HEAD(np, nonpresent_entry) si_nonpresentlist;
|
||||
} syncinfo_t;
|
||||
|
||||
struct slap_backend_db {
|
||||
|
|
@ -2081,6 +2078,10 @@ typedef struct slap_conn {
|
|||
BerElement *c_currentber; /* ber we're attempting to read */
|
||||
int c_writewaiter; /* true if writer is waiting */
|
||||
|
||||
#define CONN_IS_TLS 1
|
||||
#define CONN_IS_UDP 2
|
||||
#define CONN_IS_CLIENT 3
|
||||
|
||||
#ifdef LDAP_CONNECTIONLESS
|
||||
int c_is_udp; /* true if this is (C)LDAP over UDP */
|
||||
#endif
|
||||
|
|
@ -2109,6 +2110,12 @@ typedef struct slap_conn {
|
|||
void *c_pb; /* Netscape plugin */
|
||||
void *c_extensions; /* Netscape plugin */
|
||||
|
||||
/*
|
||||
* Client connection handling
|
||||
*/
|
||||
ldap_pvt_thread_start_t *c_clientfunc;
|
||||
void *c_clientarg;
|
||||
|
||||
/*
|
||||
* These are the "callbacks" that are available for back-ends to
|
||||
* supply data back to connected clients that are connected
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ static const struct berval slap_syncrepl_bvc = BER_BVC(SYNCREPL_STR);
|
|||
static const struct berval slap_syncrepl_cn_bvc = BER_BVC(CN_STR SYNCREPL_STR);
|
||||
|
||||
static void
|
||||
syncrepl_del_nonpresent( LDAP *, Operation *, syncinfo_t * );
|
||||
syncrepl_del_nonpresent( Operation *, syncinfo_t * );
|
||||
|
||||
/* callback functions */
|
||||
static int dn_callback( struct slap_op *, struct slap_rep * );
|
||||
|
|
@ -125,22 +125,22 @@ init_syncrepl(syncinfo_t *si)
|
|||
static int
|
||||
ldap_sync_search(
|
||||
syncinfo_t *si,
|
||||
LDAP *ld,
|
||||
void *ctx,
|
||||
int *msgidp )
|
||||
struct berval *syncCookie )
|
||||
{
|
||||
BerElementBuffer berbuf;
|
||||
BerElement *ber = (BerElement *)&berbuf;
|
||||
LDAPControl c[2], *ctrls[3];
|
||||
struct timeval timeout;
|
||||
ber_int_t msgid;
|
||||
int rc;
|
||||
|
||||
/* setup LDAP SYNC control */
|
||||
ber_init2( ber, NULL, LBER_USE_DER );
|
||||
ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
|
||||
|
||||
if ( si->si_syncCookie ) {
|
||||
ber_printf( ber, "{eO}", abs(si->si_type), si->si_syncCookie );
|
||||
if ( syncCookie ) {
|
||||
ber_printf( ber, "{eO}", abs(si->si_type), syncCookie );
|
||||
} else {
|
||||
ber_printf( ber, "{e}", abs(si->si_type) );
|
||||
}
|
||||
|
|
@ -167,10 +167,10 @@ ldap_sync_search(
|
|||
timeout.tv_sec = si->si_tlimit > 0 ? si->si_tlimit : 1;
|
||||
timeout.tv_usec = 0;
|
||||
|
||||
rc = ldap_search_ext( ld, si->si_base.bv_val, si->si_scope,
|
||||
rc = ldap_search_ext( si->si_ld, si->si_base.bv_val, si->si_scope,
|
||||
si->si_filterstr.bv_val, si->si_attrs, si->si_attrsonly,
|
||||
ctrls, NULL, si->si_tlimit < 0 ? NULL : &timeout,
|
||||
si->si_slimit, msgidp );
|
||||
si->si_slimit, &msgid );
|
||||
ber_free_buf( ber );
|
||||
|
||||
return rc;
|
||||
|
|
@ -178,85 +178,22 @@ ldap_sync_search(
|
|||
|
||||
static const Listener dummy_list = { {0, ""}, {0, ""} };
|
||||
|
||||
void *
|
||||
do_syncrepl(
|
||||
void *ctx,
|
||||
void *arg )
|
||||
static int
|
||||
do_syncrep1(
|
||||
Operation *op,
|
||||
syncinfo_t *si )
|
||||
{
|
||||
struct re_s* rtask = arg;
|
||||
syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
|
||||
Backend *be;
|
||||
|
||||
LDAPControl **rctrls = NULL;
|
||||
LDAPControl *rctrlp = NULL;
|
||||
|
||||
BerElement *res_ber = NULL;
|
||||
|
||||
LDAP *ld = NULL;
|
||||
LDAPMessage *res = NULL;
|
||||
LDAPMessage *msg = NULL;
|
||||
|
||||
ber_int_t msgid;
|
||||
|
||||
char *retoid = NULL;
|
||||
struct berval *retdata = NULL;
|
||||
|
||||
int sync_info_arrived = 0;
|
||||
Entry *entry = NULL;
|
||||
|
||||
int syncstate;
|
||||
struct berval syncUUID = { 0, NULL };
|
||||
struct berval syncCookie = { 0, NULL };
|
||||
struct berval syncCookie_req = { 0, NULL };
|
||||
|
||||
int rc;
|
||||
int err;
|
||||
ber_len_t len;
|
||||
int syncinfo_arrived = 0;
|
||||
|
||||
Connection conn = {0};
|
||||
Operation op = {0};
|
||||
slap_callback cb;
|
||||
|
||||
void *memctx = NULL;
|
||||
ber_len_t memsiz;
|
||||
|
||||
int rc_efree;
|
||||
|
||||
struct berval psub = { 0, NULL };
|
||||
Modifications *modlist = NULL;
|
||||
|
||||
char syncrepl_cbuf[sizeof(CN_STR SYNCREPL_STR)];
|
||||
struct berval syncrepl_cn_bv;
|
||||
|
||||
const char *text;
|
||||
int match;
|
||||
|
||||
struct timeval *tout_p = NULL;
|
||||
struct timeval tout = { 10, 0 };
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, DETAIL1, "do_syncrepl\n", 0, 0, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl\n", 0, 0, 0 );
|
||||
#endif
|
||||
|
||||
if ( si == NULL )
|
||||
return NULL;
|
||||
|
||||
switch( abs( si->si_type )) {
|
||||
case LDAP_SYNC_REFRESH_ONLY:
|
||||
case LDAP_SYNC_REFRESH_AND_PERSIST:
|
||||
break;
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
BerVarray syncCookie;
|
||||
|
||||
si->si_sync_mode = LDAP_SYNC_STATE_MODE;
|
||||
|
||||
/* Init connection to master */
|
||||
|
||||
rc = ldap_initialize( &ld, si->si_provideruri );
|
||||
rc = ldap_initialize( &si->si_ld, si->si_provideruri );
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, ERR,
|
||||
|
|
@ -267,16 +204,16 @@ do_syncrepl(
|
|||
"do_syncrepl: ldap_initialize failed (%s)\n",
|
||||
si->si_provideruri, 0, 0 );
|
||||
#endif
|
||||
goto done;
|
||||
return rc;
|
||||
}
|
||||
|
||||
op.o_protocol = LDAP_VERSION3;
|
||||
ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &op.o_protocol );
|
||||
op->o_protocol = LDAP_VERSION3;
|
||||
ldap_set_option( si->si_ld, LDAP_OPT_PROTOCOL_VERSION, &op->o_protocol );
|
||||
|
||||
/* Bind to master */
|
||||
|
||||
if ( si->si_tls ) {
|
||||
rc = ldap_start_tls_s( ld, NULL, NULL );
|
||||
rc = ldap_start_tls_s( si->si_ld, NULL, NULL );
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR, "do_syncrepl: "
|
||||
|
|
@ -298,10 +235,10 @@ do_syncrepl(
|
|||
void *defaults;
|
||||
|
||||
if ( si->si_secprops != NULL ) {
|
||||
int err = ldap_set_option( ld,
|
||||
rc = ldap_set_option( si->si_ld,
|
||||
LDAP_OPT_X_SASL_SECPROPS, si->si_secprops);
|
||||
|
||||
if( err != LDAP_OPT_SUCCESS ) {
|
||||
if( rc != LDAP_OPT_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR, "do_bind: Error: "
|
||||
"ldap_set_option(%s,SECPROPS,\"%s\") failed!\n",
|
||||
|
|
@ -311,15 +248,15 @@ do_syncrepl(
|
|||
"(%s,SECPROPS,\"%s\") failed!\n",
|
||||
si->si_provideruri, si->si_secprops, 0 );
|
||||
#endif
|
||||
return NULL;
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
|
||||
defaults = lutil_sasl_defaults( ld,
|
||||
defaults = lutil_sasl_defaults( si->si_ld,
|
||||
si->si_saslmech, si->si_realm,
|
||||
si->si_authcId, si->si_passwd, si->si_authzId );
|
||||
|
||||
rc = ldap_sasl_interactive_bind_s( ld,
|
||||
rc = ldap_sasl_interactive_bind_s( si->si_ld,
|
||||
si->si_binddn,
|
||||
si->si_saslmech,
|
||||
NULL, NULL,
|
||||
|
|
@ -348,10 +285,11 @@ do_syncrepl(
|
|||
#else /* HAVE_CYRUS_SASL */
|
||||
/* Should never get here, we trapped this at config time */
|
||||
fprintf( stderr, "not compiled with SASL support\n" );
|
||||
return NULL;
|
||||
rc = LDAP_OTHER;
|
||||
goto done;
|
||||
#endif
|
||||
} else {
|
||||
rc = ldap_bind_s( ld, si->si_binddn, si->si_passwd, si->si_bindmethod );
|
||||
rc = ldap_bind_s( si->si_ld, si->si_binddn, si->si_passwd, si->si_bindmethod );
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR, "do_syncrepl: "
|
||||
|
|
@ -364,55 +302,21 @@ do_syncrepl(
|
|||
}
|
||||
}
|
||||
|
||||
/* set thread context in syncinfo */
|
||||
si->si_ctx = ctx;
|
||||
|
||||
be = si->si_be;
|
||||
|
||||
si->si_conn = &conn;
|
||||
conn.c_connid = -1;
|
||||
conn.c_send_ldap_result = slap_send_ldap_result;
|
||||
conn.c_send_search_entry = slap_send_search_entry;
|
||||
conn.c_send_search_reference = slap_send_search_reference;
|
||||
conn.c_listener = (Listener *)&dummy_list;
|
||||
conn.c_peer_name = slap_empty_bv;
|
||||
|
||||
/* set memory context */
|
||||
#define SLAB_SIZE 1048576
|
||||
memsiz = SLAB_SIZE;
|
||||
memctx = sl_mem_create( memsiz, ctx );
|
||||
op.o_tmpmemctx = memctx;
|
||||
op.o_tmpmfuncs = &sl_mfuncs;
|
||||
|
||||
op.o_dn = si->si_updatedn;
|
||||
op.o_ndn = si->si_updatedn;
|
||||
op.o_callback = &cb;
|
||||
op.o_time = slap_get_time();
|
||||
op.o_threadctx = si->si_ctx;
|
||||
op.o_managedsait = 1;
|
||||
op.o_bd = be;
|
||||
op.o_conn = &conn;
|
||||
op.o_connid = op.o_conn->c_connid;
|
||||
|
||||
/* get syncrepl cookie of shadow replica from subentry */
|
||||
|
||||
assert( si->si_id < 1000 );
|
||||
syncrepl_cn_bv.bv_val = syncrepl_cbuf;
|
||||
syncrepl_cn_bv.bv_len = snprintf(syncrepl_cbuf, sizeof(syncrepl_cbuf),
|
||||
CN_STR "syncrepl%d", si->si_id );
|
||||
build_new_dn( &op.o_req_ndn, &si->si_base, &syncrepl_cn_bv,
|
||||
op.o_tmpmemctx );
|
||||
op.o_req_dn = op.o_req_ndn;
|
||||
build_new_dn( &op->o_req_ndn, &si->si_base, &syncrepl_cn_bv,
|
||||
op->o_tmpmemctx );
|
||||
op->o_req_dn = op->o_req_ndn;
|
||||
|
||||
si->si_syncCookie = NULL;
|
||||
backend_attribute( &op, NULL, &op.o_req_ndn,
|
||||
slap_schema.si_ad_syncreplCookie, &si->si_syncCookie );
|
||||
syncCookie = NULL;
|
||||
backend_attribute( op, NULL, &op->o_req_ndn,
|
||||
slap_schema.si_ad_syncreplCookie, &syncCookie );
|
||||
|
||||
ber_dupbv( &syncCookie_req, &si->si_syncCookie[0] );
|
||||
|
||||
psub = be->be_nsuffix[0];
|
||||
|
||||
rc = ldap_sync_search( si, ld, memctx, &msgid );
|
||||
rc = ldap_sync_search( si, op->o_tmpmemctx, syncCookie );
|
||||
if( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR, "do_syncrepl: "
|
||||
|
|
@ -421,39 +325,121 @@ do_syncrepl(
|
|||
Debug( LDAP_DEBUG_ANY, "do_syncrepl: "
|
||||
"ldap_search_ext: %s (%d)\n", ldap_err2string( rc ), rc, 0 );
|
||||
#endif
|
||||
}
|
||||
if ( syncCookie ) {
|
||||
ber_dupbv( &si->si_syncCookie, syncCookie );
|
||||
ber_bvarray_free_x( syncCookie, op->o_tmpmemctx );
|
||||
}
|
||||
|
||||
done:
|
||||
if ( rc ) {
|
||||
if ( si->si_ld ) {
|
||||
ldap_unbind( si->si_ld );
|
||||
si->si_ld = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
static int
|
||||
do_syncrep2(
|
||||
Operation *op,
|
||||
syncinfo_t *si )
|
||||
{
|
||||
LDAPControl **rctrls = NULL;
|
||||
LDAPControl *rctrlp;
|
||||
|
||||
BerElementBuffer berbuf;
|
||||
BerElement *ber = (BerElement *)&berbuf;
|
||||
|
||||
LDAPMessage *res = NULL;
|
||||
LDAPMessage *msg = NULL;
|
||||
|
||||
char *retoid = NULL;
|
||||
struct berval *retdata = NULL;
|
||||
|
||||
int sync_info_arrived = 0;
|
||||
Entry *entry = NULL;
|
||||
|
||||
int syncstate;
|
||||
struct berval syncUUID = { 0, NULL };
|
||||
struct berval syncCookie = { 0, NULL };
|
||||
struct berval syncCookie_req;
|
||||
|
||||
int rc;
|
||||
int err;
|
||||
ber_len_t len;
|
||||
int syncinfo_arrived = 0;
|
||||
|
||||
slap_callback cb;
|
||||
|
||||
int rc_efree;
|
||||
|
||||
struct berval *psub;
|
||||
Modifications *modlist = NULL;
|
||||
|
||||
const char *text;
|
||||
int match;
|
||||
|
||||
struct timeval *tout_p = NULL;
|
||||
struct timeval tout = { 0, 0 };
|
||||
|
||||
if ( slapd_abrupt_shutdown ) {
|
||||
rc = -2;
|
||||
goto done;
|
||||
}
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, DETAIL1, "do_syncrep2\n", 0, 0, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2\n", 0, 0, 0 );
|
||||
#endif
|
||||
|
||||
op->o_callback = &cb;
|
||||
|
||||
psub = &si->si_be->be_nsuffix[0];
|
||||
|
||||
syncCookie_req = si->si_syncCookie;
|
||||
|
||||
if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ){
|
||||
tout_p = &tout;
|
||||
} else {
|
||||
tout_p = NULL;
|
||||
}
|
||||
|
||||
while (( rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ONE, tout_p, &res ))
|
||||
>= 0 )
|
||||
while (( rc = ldap_result( si->si_ld, LDAP_RES_ANY, LDAP_MSG_ONE, tout_p, &res ))
|
||||
> 0 )
|
||||
{
|
||||
if ( rc == 0 ) {
|
||||
if ( slapd_abrupt_shutdown ) {
|
||||
break;
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
if ( slapd_abrupt_shutdown ) {
|
||||
rc = -2;
|
||||
goto done;
|
||||
}
|
||||
|
||||
for( msg = ldap_first_message( ld, res );
|
||||
for( msg = ldap_first_message( si->si_ld, res );
|
||||
msg != NULL;
|
||||
msg = ldap_next_message( ld, msg ) )
|
||||
msg = ldap_next_message( si->si_ld, msg ) )
|
||||
{
|
||||
syncCookie.bv_len = 0; syncCookie.bv_val = NULL;
|
||||
switch( ldap_msgtype( msg ) ) {
|
||||
case LDAP_RES_SEARCH_ENTRY:
|
||||
entry = syncrepl_message_to_entry( si, ld, &op, msg,
|
||||
&modlist, &syncstate, &syncUUID, &syncCookie );
|
||||
rc_efree = syncrepl_entry( si, ld, &op, entry, modlist,
|
||||
syncstate, &syncUUID, &syncCookie, !syncinfo_arrived );
|
||||
ldap_get_entry_controls( si->si_ld, msg, &rctrls );
|
||||
if ( rctrls ) {
|
||||
rctrlp = *rctrls;
|
||||
ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
|
||||
ber_scanf( ber, "{em", &syncstate, &syncUUID );
|
||||
if ( ber_peek_tag( ber, &len ) == LDAP_SYNC_TAG_COOKIE ) {
|
||||
ber_scanf( ber, "m}", &syncCookie );
|
||||
}
|
||||
}
|
||||
entry = syncrepl_message_to_entry( si, op, msg,
|
||||
&modlist, syncstate );
|
||||
rc_efree = syncrepl_entry( si, op, entry, modlist,
|
||||
syncstate, &syncUUID, !syncinfo_arrived );
|
||||
if ( syncCookie.bv_len ) {
|
||||
syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie );
|
||||
syncrepl_updateCookie( si, op, psub, &syncCookie );
|
||||
}
|
||||
if ( rctrls ) {
|
||||
ldap_controls_free( rctrls );
|
||||
}
|
||||
if ( modlist ) {
|
||||
slap_mods_free( modlist );
|
||||
|
|
@ -474,65 +460,55 @@ do_syncrepl(
|
|||
break;
|
||||
|
||||
case LDAP_RES_SEARCH_RESULT:
|
||||
ldap_parse_result( ld, msg, &err, NULL, NULL, NULL,
|
||||
ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
|
||||
&rctrls, 0 );
|
||||
if ( rctrls ) {
|
||||
BerElementBuffer berbuf;
|
||||
BerElement *ctrl_ber;
|
||||
rctrlp = *rctrls;
|
||||
ctrl_ber = (BerElement *)&berbuf;
|
||||
ber_init2( ctrl_ber, &rctrlp->ldctl_value, LBER_USE_DER );
|
||||
ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
|
||||
|
||||
ber_scanf( ctrl_ber, "{" /*"}"*/);
|
||||
if ( ber_peek_tag( ctrl_ber, &len )
|
||||
== LDAP_SYNC_TAG_COOKIE )
|
||||
ber_scanf( ber, "{" /*"}"*/);
|
||||
if ( ber_peek_tag( ber, &len ) == LDAP_SYNC_TAG_COOKIE )
|
||||
{
|
||||
ber_scanf( ctrl_ber, "o", &syncCookie );
|
||||
ber_scanf( ber, "m", &syncCookie );
|
||||
}
|
||||
ldap_controls_free( rctrls );
|
||||
}
|
||||
value_match( &match, slap_schema.si_ad_entryCSN,
|
||||
slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
|
||||
SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
|
||||
&syncCookie_req, &syncCookie, &text );
|
||||
if (si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST) {
|
||||
if ( syncCookie.bv_len && match < 0) {
|
||||
syncrepl_updateCookie( si, op,
|
||||
psub, &syncCookie );
|
||||
}
|
||||
if ( rctrls ) {
|
||||
ldap_controls_free( rctrls );
|
||||
}
|
||||
if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
|
||||
/* FIXME : different error behaviors according to
|
||||
* 1) err code : LDAP_BUSY ...
|
||||
* 2) on err policy : stop service, stop sync, retry
|
||||
*/
|
||||
if ( syncCookie.bv_len && match < 0) {
|
||||
syncrepl_updateCookie( si, ld, &op,
|
||||
&psub, &syncCookie );
|
||||
}
|
||||
goto done;
|
||||
} else {
|
||||
/* FIXME : different error behaviors according to
|
||||
* 1) err code : LDAP_BUSY ...
|
||||
* 2) on err policy : stop service, stop sync, retry
|
||||
*/
|
||||
if ( syncCookie.bv_len && match < 0 ) {
|
||||
syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie);
|
||||
}
|
||||
if ( si->si_sync_mode == LDAP_SYNC_STATE_MODE && match
|
||||
< 0 )
|
||||
{
|
||||
syncrepl_del_nonpresent( ld, &op, si );
|
||||
syncrepl_del_nonpresent( op, si );
|
||||
}
|
||||
goto done;
|
||||
}
|
||||
rc = -2;
|
||||
goto done;
|
||||
break;
|
||||
|
||||
case LDAP_RES_INTERMEDIATE:
|
||||
rc = ldap_parse_intermediate( ld, msg,
|
||||
rc = ldap_parse_intermediate( si->si_ld, msg,
|
||||
&retoid, &retdata, NULL, 0 );
|
||||
if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
|
||||
sync_info_arrived = 1;
|
||||
res_ber = ber_init( retdata );
|
||||
ber_scanf( res_ber, "{e" /*"}"*/, &syncstate );
|
||||
ber_init2( ber, retdata, LBER_USE_DER );
|
||||
ber_scanf( ber, "{e" /*"}"*/, &syncstate );
|
||||
|
||||
if ( ber_peek_tag( res_ber, &len )
|
||||
if ( ber_peek_tag( ber, &len )
|
||||
== LDAP_SYNC_TAG_COOKIE ) {
|
||||
ber_scanf( res_ber, /*"{"*/ "o}", &syncCookie );
|
||||
ber_scanf( ber, /*"{"*/ "m}", &syncCookie );
|
||||
} else {
|
||||
if ( syncstate == LDAP_SYNC_NEW_COOKIE ) {
|
||||
#ifdef NEW_LOGGING
|
||||
|
|
@ -551,12 +527,12 @@ do_syncrepl(
|
|||
&syncCookie_req, &syncCookie, &text );
|
||||
|
||||
if ( syncCookie.bv_len && match < 0 ) {
|
||||
syncrepl_updateCookie( si, ld, &op, &psub, &syncCookie);
|
||||
syncrepl_updateCookie( si, op, psub, &syncCookie);
|
||||
}
|
||||
|
||||
if ( syncstate == LDAP_SYNC_STATE_MODE_DONE ) {
|
||||
if ( match < 0 ) {
|
||||
syncrepl_del_nonpresent( ld, &op, si );
|
||||
syncrepl_del_nonpresent( op, si );
|
||||
}
|
||||
si->si_sync_mode = LDAP_SYNC_LOG_MODE;
|
||||
} else if ( syncstate == LDAP_SYNC_LOG_MODE_DONE ) {
|
||||
|
|
@ -577,7 +553,6 @@ do_syncrepl(
|
|||
|
||||
ldap_memfree( retoid );
|
||||
ber_bvfree( retdata );
|
||||
ber_free( res_ber, 1 );
|
||||
break;
|
||||
} else {
|
||||
#ifdef NEW_LOGGING
|
||||
|
|
@ -605,14 +580,6 @@ do_syncrepl(
|
|||
break;
|
||||
|
||||
}
|
||||
if ( syncCookie.bv_val ) {
|
||||
ch_free( syncCookie.bv_val );
|
||||
syncCookie.bv_val = NULL;
|
||||
}
|
||||
if ( syncUUID.bv_val ) {
|
||||
ch_free( syncUUID.bv_val );
|
||||
syncUUID.bv_val = NULL;
|
||||
}
|
||||
}
|
||||
ldap_msgfree( res );
|
||||
res = NULL;
|
||||
|
|
@ -622,7 +589,7 @@ do_syncrepl(
|
|||
int errno;
|
||||
const char *errstr;
|
||||
|
||||
ldap_get_option( ld, LDAP_OPT_ERROR_NUMBER, &errno );
|
||||
ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &errno );
|
||||
errstr = ldap_err2string( errno );
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
|
|
@ -635,26 +602,111 @@ do_syncrepl(
|
|||
}
|
||||
|
||||
done:
|
||||
if ( syncCookie.bv_val )
|
||||
ch_free( syncCookie.bv_val );
|
||||
if ( syncCookie_req.bv_val )
|
||||
ch_free( syncCookie_req.bv_val );
|
||||
if ( syncUUID.bv_val )
|
||||
ch_free( syncUUID.bv_val );
|
||||
|
||||
if ( res ) ldap_msgfree( res );
|
||||
|
||||
if ( ld ) ldap_unbind( ld );
|
||||
|
||||
if ( si->si_syncCookie ) {
|
||||
ber_bvarray_free_x( si->si_syncCookie, op.o_tmpmemctx );
|
||||
si->si_syncCookie = NULL;
|
||||
if ( rc && si->si_ld ) {
|
||||
ldap_unbind( si->si_ld );
|
||||
si->si_ld = NULL;
|
||||
/* just close and report success */
|
||||
if ( rc == -2 )
|
||||
rc = 0;
|
||||
}
|
||||
|
||||
ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
|
||||
ldap_pvt_runqueue_stoptask( &syncrepl_rq, rtask );
|
||||
ldap_pvt_runqueue_resched( &syncrepl_rq, rtask );
|
||||
ldap_pvt_thread_mutex_unlock( &syncrepl_rq.rq_mutex );
|
||||
return rc;
|
||||
}
|
||||
|
||||
void *
|
||||
do_syncrepl(
|
||||
void *ctx,
|
||||
void *arg )
|
||||
{
|
||||
struct re_s* rtask = arg;
|
||||
syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
|
||||
Connection conn = {0};
|
||||
Operation op = {0};
|
||||
int rc = LDAP_SUCCESS;
|
||||
int first = 0;
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, DETAIL1, "do_syncrepl\n", 0, 0, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl\n", 0, 0, 0 );
|
||||
#endif
|
||||
|
||||
if ( si == NULL )
|
||||
return NULL;
|
||||
|
||||
switch( abs( si->si_type )) {
|
||||
case LDAP_SYNC_REFRESH_ONLY:
|
||||
case LDAP_SYNC_REFRESH_AND_PERSIST:
|
||||
break;
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
conn.c_connid = -1;
|
||||
conn.c_send_ldap_result = slap_send_ldap_result;
|
||||
conn.c_send_search_entry = slap_send_search_entry;
|
||||
conn.c_send_search_reference = slap_send_search_reference;
|
||||
conn.c_listener = (Listener *)&dummy_list;
|
||||
conn.c_peer_name = slap_empty_bv;
|
||||
|
||||
/* set memory context */
|
||||
#define SLAB_SIZE 1048576
|
||||
op.o_tmpmemctx = sl_mem_create( SLAB_SIZE, ctx );
|
||||
op.o_tmpmfuncs = &sl_mfuncs;
|
||||
|
||||
op.o_dn = si->si_updatedn;
|
||||
op.o_ndn = si->si_updatedn;
|
||||
op.o_time = slap_get_time();
|
||||
op.o_threadctx = ctx;
|
||||
op.o_managedsait = 1;
|
||||
op.o_bd = si->si_be;
|
||||
op.o_conn = &conn;
|
||||
op.o_connid = op.o_conn->c_connid;
|
||||
|
||||
/* Establish session, do search */
|
||||
if ( !si->si_ld ) {
|
||||
first = 1;
|
||||
rc = do_syncrep1( &op, si );
|
||||
}
|
||||
|
||||
/* Process results */
|
||||
if ( rc == LDAP_SUCCESS ) {
|
||||
ber_socket_t s;
|
||||
ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
|
||||
|
||||
rc = do_syncrep2( &op, si );
|
||||
|
||||
if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
|
||||
/* If we succeeded, enable the connection for further listening.
|
||||
* If we failed, tear down the connection and reschedule.
|
||||
*/
|
||||
if ( rc == LDAP_SUCCESS ) {
|
||||
if ( first ) {
|
||||
rc = connection_client_setup( s, (Listener *)&dummy_list, do_syncrepl,
|
||||
arg );
|
||||
} else {
|
||||
connection_client_enable( s );
|
||||
}
|
||||
/* Don't need to resched this task for a while */
|
||||
if ( rc == 0 ) rc = 1;
|
||||
} else {
|
||||
connection_client_stop( s );
|
||||
}
|
||||
} else {
|
||||
ch_free( si->si_syncCookie.bv_val );
|
||||
si->si_syncCookie.bv_val = NULL;
|
||||
si->si_syncCookie.bv_len = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if ( rc == LDAP_SUCCESS || rc == LDAP_SERVER_DOWN ) {
|
||||
ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
|
||||
ldap_pvt_runqueue_stoptask( &syncrepl_rq, rtask );
|
||||
ldap_pvt_runqueue_resched( &syncrepl_rq, rtask );
|
||||
ldap_pvt_thread_mutex_unlock( &syncrepl_rq.rq_mutex );
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
|
@ -662,13 +714,10 @@ done:
|
|||
Entry*
|
||||
syncrepl_message_to_entry(
|
||||
syncinfo_t *si,
|
||||
LDAP *ld,
|
||||
Operation *op,
|
||||
LDAPMessage *msg,
|
||||
Modifications **modlist,
|
||||
int *syncstate,
|
||||
struct berval *syncUUID,
|
||||
struct berval *syncCookie
|
||||
int syncstate
|
||||
)
|
||||
{
|
||||
Entry *e = NULL;
|
||||
|
|
@ -684,10 +733,6 @@ syncrepl_message_to_entry(
|
|||
struct berval bdn = {0, NULL}, dn, ndn;
|
||||
int rc;
|
||||
|
||||
ber_len_t len;
|
||||
LDAPControl* rctrlp;
|
||||
LDAPControl** rctrls = NULL;
|
||||
|
||||
*modlist = NULL;
|
||||
|
||||
if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
|
||||
|
|
@ -703,41 +748,7 @@ syncrepl_message_to_entry(
|
|||
|
||||
op->o_tag = LDAP_REQ_ADD;
|
||||
|
||||
rc = ldap_get_entry_controls( ld, msg, &rctrls );
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, ERR,
|
||||
"syncrepl_message_to_entry : control get failed (%d)", rc, 0, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"syncrepl_message_to_entry : control get failed (%d)", rc, 0, 0 );
|
||||
#endif
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if ( rctrls ) {
|
||||
BerElementBuffer berbuf;
|
||||
BerElement *ctrl_ber;
|
||||
|
||||
rctrlp = *rctrls;
|
||||
ctrl_ber = (BerElement *)&berbuf;
|
||||
ber_init2( ctrl_ber, &rctrlp->ldctl_value, LBER_USE_DER );
|
||||
ber_scanf( ctrl_ber, "{eo", syncstate, syncUUID );
|
||||
if ( ber_peek_tag( ctrl_ber, &len ) == LDAP_SYNC_TAG_COOKIE ) {
|
||||
ber_scanf( ctrl_ber, "o}", syncCookie );
|
||||
}
|
||||
ldap_controls_free( rctrls );
|
||||
} else {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, ERR,"syncrepl_message_to_entry : "
|
||||
" rctrls absent\n", 0, 0, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry :"
|
||||
" rctrls absent\n", 0, 0, 0 );
|
||||
#endif
|
||||
}
|
||||
|
||||
rc = ldap_get_dn_ber( ld, msg, &ber, &bdn );
|
||||
rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
|
||||
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
|
|
@ -756,7 +767,7 @@ syncrepl_message_to_entry(
|
|||
sl_free( ndn.bv_val, op->o_tmpmemctx );
|
||||
sl_free( dn.bv_val, op->o_tmpmemctx );
|
||||
|
||||
if ( *syncstate == LDAP_SYNC_PRESENT || *syncstate == LDAP_SYNC_DELETE ) {
|
||||
if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
@ -841,13 +852,11 @@ syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
|
|||
int
|
||||
syncrepl_entry(
|
||||
syncinfo_t* si,
|
||||
LDAP *ld,
|
||||
Operation *op,
|
||||
Entry* e,
|
||||
Modifications* modlist,
|
||||
int syncstate,
|
||||
struct berval* syncUUID,
|
||||
struct berval* syncCookie,
|
||||
int refresh
|
||||
)
|
||||
{
|
||||
|
|
@ -856,8 +865,8 @@ syncrepl_entry(
|
|||
struct berval *syncuuid_bv = NULL;
|
||||
|
||||
SlapReply rs = {REP_RESULT};
|
||||
Filter f;
|
||||
AttributeAssertion ava;
|
||||
Filter f = {0};
|
||||
AttributeAssertion ava = {0};
|
||||
int rc = LDAP_SUCCESS;
|
||||
int ret = LDAP_SUCCESS;
|
||||
|
||||
|
|
@ -881,9 +890,6 @@ syncrepl_entry(
|
|||
syncUUID->bv_val, syncUUID->bv_len );
|
||||
op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
|
||||
|
||||
si->si_e = e;
|
||||
si->si_syncUUID_ndn = NULL;
|
||||
|
||||
f.f_choice = LDAP_FILTER_EQUALITY;
|
||||
f.f_ava = &ava;
|
||||
ava.aa_desc = slap_schema.si_ad_entryUUID;
|
||||
|
|
@ -900,7 +906,7 @@ syncrepl_entry(
|
|||
cb.sc_response = dn_callback;
|
||||
cb.sc_private = si;
|
||||
|
||||
si->si_syncUUID_ndn = NULL;
|
||||
si->si_syncUUID_ndn.bv_val = NULL;
|
||||
|
||||
rc = be->be_search( op, &rs );
|
||||
|
||||
|
|
@ -911,11 +917,11 @@ syncrepl_entry(
|
|||
cb.sc_response = null_callback;
|
||||
cb.sc_private = si;
|
||||
|
||||
if ( rc == LDAP_SUCCESS && si->si_syncUUID_ndn &&
|
||||
if ( rc == LDAP_SUCCESS && si->si_syncUUID_ndn.bv_val &&
|
||||
si->si_sync_mode != LDAP_SYNC_LOG_MODE )
|
||||
{
|
||||
op->o_req_dn = *si->si_syncUUID_ndn;
|
||||
op->o_req_ndn = *si->si_syncUUID_ndn;
|
||||
op->o_req_dn = si->si_syncUUID_ndn;
|
||||
op->o_req_ndn = si->si_syncUUID_ndn;
|
||||
op->o_tag = LDAP_REQ_DELETE;
|
||||
rc = be->be_delete( op, &rs );
|
||||
}
|
||||
|
|
@ -944,7 +950,6 @@ syncrepl_entry(
|
|||
op->o_req_dn = e->e_name;
|
||||
op->o_req_ndn = e->e_nname;
|
||||
rc = be->be_modify( op, &rs );
|
||||
si->si_e = NULL;
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, ERR,
|
||||
|
|
@ -960,7 +965,6 @@ syncrepl_entry(
|
|||
goto done;
|
||||
} else if ( rc == LDAP_REFERRAL || rc == LDAP_NO_SUCH_OBJECT ) {
|
||||
syncrepl_add_glue( op, e );
|
||||
si->si_e = NULL;
|
||||
ret = 0;
|
||||
goto done;
|
||||
} else {
|
||||
|
|
@ -973,12 +977,10 @@ syncrepl_entry(
|
|||
"syncrepl_entry : be_add failed (%d)\n",
|
||||
rc, 0, 0 );
|
||||
#endif
|
||||
si->si_e = NULL;
|
||||
ret = 1;
|
||||
goto done;
|
||||
}
|
||||
} else {
|
||||
si->si_e = NULL;
|
||||
be_entry_release_w( op, e );
|
||||
ret = 0;
|
||||
goto done;
|
||||
|
|
@ -991,16 +993,15 @@ syncrepl_entry(
|
|||
Debug( LDAP_DEBUG_ANY,
|
||||
"syncrepl_entry : be_search failed (%d)\n", rc, 0, 0 );
|
||||
#endif
|
||||
si->si_e = NULL;
|
||||
ret = 1;
|
||||
goto done;
|
||||
}
|
||||
|
||||
case LDAP_SYNC_DELETE :
|
||||
if ( si->si_sync_mode == LDAP_SYNC_LOG_MODE ) {
|
||||
if ( si->si_syncUUID_ndn ) {
|
||||
op->o_req_dn = *si->si_syncUUID_ndn;
|
||||
op->o_req_ndn = *si->si_syncUUID_ndn;
|
||||
if ( si->si_syncUUID_ndn.bv_val ) {
|
||||
op->o_req_dn = si->si_syncUUID_ndn;
|
||||
op->o_req_ndn = si->si_syncUUID_ndn;
|
||||
op->o_tag = LDAP_REQ_DELETE;
|
||||
rc = be->be_delete( op, &rs );
|
||||
}
|
||||
|
|
@ -1023,15 +1024,14 @@ syncrepl_entry(
|
|||
|
||||
done :
|
||||
|
||||
if ( si->si_syncUUID_ndn ) {
|
||||
ber_bvfree( si->si_syncUUID_ndn );
|
||||
if ( si->si_syncUUID_ndn.bv_val ) {
|
||||
ber_memfree_x( si->si_syncUUID_ndn.bv_val, op->o_tmpmemctx );
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void
|
||||
syncrepl_del_nonpresent(
|
||||
LDAP *ld,
|
||||
Operation *op,
|
||||
syncinfo_t *si
|
||||
)
|
||||
|
|
@ -1250,7 +1250,6 @@ static struct berval scbva[] = {
|
|||
void
|
||||
syncrepl_updateCookie(
|
||||
syncinfo_t *si,
|
||||
LDAP *ld,
|
||||
Operation *op,
|
||||
struct berval *pdn,
|
||||
struct berval *syncCookie
|
||||
|
|
@ -1277,17 +1276,6 @@ syncrepl_updateCookie(
|
|||
slap_callback cb;
|
||||
SlapReply rs = {REP_RESULT};
|
||||
|
||||
struct berval *dup_syncCookie = NULL;
|
||||
|
||||
/* update in memory cookie */
|
||||
ber_bvarray_free_x( si->si_syncCookie, op->o_tmpmemctx );
|
||||
si->si_syncCookie = NULL;
|
||||
|
||||
/* ber_bvarray_add() doesn't have dup option */
|
||||
dup_syncCookie = ber_dupbv_x( NULL, syncCookie, op->o_tmpmemctx );
|
||||
ber_bvarray_add_x( &si->si_syncCookie, dup_syncCookie, op->o_tmpmemctx );
|
||||
op->o_tmpfree( dup_syncCookie, op->o_tmpmemctx );
|
||||
|
||||
mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
|
||||
mod->sml_op = LDAP_MOD_REPLACE;
|
||||
mod->sml_desc = slap_schema.si_ad_objectClass;
|
||||
|
|
@ -1310,7 +1298,7 @@ syncrepl_updateCookie(
|
|||
modtail = &mod->sml_next;
|
||||
|
||||
if ( scbva[0].bv_val ) ch_free( scbva[0].bv_val );
|
||||
ber_dupbv( &scbva[0], &si->si_syncCookie[0] );
|
||||
ber_dupbv( &scbva[0], syncCookie );
|
||||
mod = (Modifications *) ch_calloc( 1, sizeof( Modifications ));
|
||||
mod->sml_op = LDAP_MOD_REPLACE;
|
||||
mod->sml_desc = slap_schema.si_ad_syncreplCookie;
|
||||
|
|
@ -1486,7 +1474,7 @@ dn_callback(
|
|||
syncinfo_t *si = op->o_callback->sc_private;
|
||||
|
||||
if ( rs->sr_type == REP_SEARCH ) {
|
||||
if ( si->si_syncUUID_ndn != NULL ) {
|
||||
if ( si->si_syncUUID_ndn.bv_val != NULL ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, ERR,
|
||||
"dn_callback : multiple entries match dn\n", 0, 0, 0 );
|
||||
|
|
@ -1495,11 +1483,7 @@ dn_callback(
|
|||
"dn_callback : multiple entries match dn\n", 0, 0, 0 );
|
||||
#endif
|
||||
} else {
|
||||
if ( rs->sr_entry == NULL ) {
|
||||
si->si_syncUUID_ndn = NULL;
|
||||
} else {
|
||||
si->si_syncUUID_ndn = ber_dupbv( NULL, &rs->sr_entry->e_nname );
|
||||
}
|
||||
ber_dupbv_x( &si->si_syncUUID_ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue