| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486 |
- /** BEGIN COPYRIGHT BLOCK
- * This Program is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation; version 2 of the License.
- *
- * This Program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- /* windows_tot_protocol.c */
- /*
- The tot_protocol object implements the DS 5.0 multi-master total update
- replication protocol, used to (re)populate a replica.
- */
- #include "repl.h"
- #include "repl5.h"
- #include "windowsrepl.h"
- #include "windows_prot_private.h"
- #include "slap.h"
- /* Private data structures */
- typedef struct windows_tot_private
- {
- Repl_Protocol *rp;
- Repl_Agmt *ra;
- PRLock *lock;
- PRUint32 eventbits;
- } windows_tot_private;
- typedef struct callback_data
- {
- Private_Repl_Protocol *prp;
- int rc;
- unsigned long num_entries;
- time_t sleep_on_busy; /* not used ??? */
- time_t last_busy; /* not used ??? */
- } callback_data;
- /*
- * Number of window seconds to wait until we programmatically decide
- * that the replica has got out of BUSY state
- */
- #define SLEEP_ON_BUSY_WINDOW (10)
- /* Helper functions */
- static void get_result (int rc, void *cb_data);
- static int send_entry (Slapi_Entry *e, void *callback_data);
- static void windows_tot_delete(Private_Repl_Protocol **prp);
- static void
- _windows_tot_send_entry(const Repl_Agmt *ra, callback_data *cbp, const Slapi_DN *local_sdn)
- {
- Slapi_PBlock *pb = NULL;
- char* dn = NULL;
- int scope = LDAP_SCOPE_SUBTREE;
- char *filter = NULL;
- const char *userfilter = NULL;
- char **attrs = NULL;
- LDAPControl **server_controls = NULL;
- if ((NULL == ra) || (NULL == cbp) || (NULL == local_sdn)) {
- return;
- }
- dn = slapi_ch_strdup(slapi_sdn_get_dn(local_sdn));
- userfilter = windows_private_get_directory_userfilter(ra);
- if (userfilter) {
- if ('(' == *userfilter) {
- filter = slapi_ch_smprintf("(&(|(objectclass=ntuser)(objectclass=ntgroup))%s)",
- userfilter);
- } else {
- filter = slapi_ch_smprintf("(&(|(objectclass=ntuser)(objectclass=ntgroup))(%s))",
- userfilter);
- }
- } else {
- filter = slapi_ch_strdup("(|(objectclass=ntuser)(objectclass=ntgroup))");
- }
- winsync_plugin_call_pre_ds_search_all_cb(ra, NULL, &dn, &scope, &filter,
- &attrs, &server_controls);
- pb = slapi_pblock_new ();
- /* Perform a subtree search for any ntuser or ntgroup entries underneath the
- * suffix defined in the sync agreement. */
- slapi_search_internal_set_pb(pb, dn, scope, filter, attrs, 0, server_controls, NULL,
- repl_get_plugin_identity(PLUGIN_MULTIMASTER_REPLICATION), 0);
- slapi_search_internal_callback_pb(pb, cbp /* callback data */,
- get_result /* result callback */,
- send_entry /* entry callback */,
- NULL /* referral callback */);
- slapi_ch_free_string(&dn);
- slapi_ch_free_string(&filter);
- slapi_ch_array_free(attrs);
- attrs = NULL;
- ldap_controls_free(server_controls);
- server_controls = NULL;
- slapi_pblock_destroy (pb);
- }
- /*
- * Completely refresh a replica. The basic protocol interaction goes
- * like this:
- * - Acquire Replica by sending a StartReplicationRequest extop, with the
- * total update protocol OID and supplier's ruv.
- * - Send a series of extended operations containing entries.
- * - send an EndReplicationRequest extended operation
- */
- static void
- windows_tot_run(Private_Repl_Protocol *prp)
- {
- int rc;
- callback_data cb_data;
- RUV *ruv = NULL;
- RUV *starting_ruv = NULL;
- Replica *replica = NULL;
- Object *local_ruv_obj = NULL;
- int one_way;
-
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_tot_run\n" );
-
- PR_ASSERT(NULL != prp);
- prp->stopped = 0;
- if (prp->terminate)
- {
- prp->stopped = 1;
- goto done;
- }
- one_way = windows_private_get_one_way(prp->agmt);
- windows_conn_set_timeout(prp->conn, agmt_get_timeout(prp->agmt));
- /* acquire remote replica */
- agmt_set_last_init_start(prp->agmt, current_time());
-
- rc = windows_acquire_replica (prp, &ruv, 0 /* don't check RUV for total protocol */);
- /* We never retry total protocol, even in case a transient error.
- * This is because if somebody already updated the replica we don't
- * want to do it again */
- if (rc != ACQUIRE_SUCCESS)
- {
- int optype, ldaprc;
- windows_conn_get_error(prp->conn, &optype, &ldaprc);
- agmt_set_last_init_status(prp->agmt, ldaprc,
- prp->last_acquire_response_code, NULL);
- goto done;
- }
- else if (prp->terminate)
- {
- windows_conn_disconnect(prp->conn);
- prp->stopped = 1;
- goto done;
- }
- agmt_set_last_init_status(prp->agmt, 0, 0, "Total schema update in progress");
- agmt_set_last_init_status(prp->agmt, 0, 0, "Total update in progress");
- agmt_set_update_in_progress(prp->agmt, PR_TRUE);
- slapi_log_error(SLAPI_LOG_FATAL, windows_repl_plugin_name, "Beginning total update of replica "
- "\"%s\".\n", agmt_get_long_name(prp->agmt));
-
- windows_private_null_dirsync_cookie(prp->agmt);
- /* call begin total update callback */
- winsync_plugin_call_begin_update_cb(prp->agmt,
- windows_private_get_directory_treetop(prp->agmt),
- windows_private_get_windows_treetop(prp->agmt),
- 1 /* is_total == TRUE */);
- if ((one_way == ONE_WAY_SYNC_DISABLED) || (one_way == ONE_WAY_SYNC_FROM_AD)) {
- /* get everything */
- windows_dirsync_inc_run(prp);
- }
-
- windows_private_save_dirsync_cookie(prp->agmt);
- /* If we got a change from dirsync, we should have a good RUV
- * that has a min & max value. If no change was generated,
- * the RUV will have NULL min and max csns. We deal with
- * updating these values when we process the first change in
- * the incremental sync protocol ( send_updates() ). We will
- * use this value for setting the consumer RUV if the total
- * update succeeds. */
- replica = object_get_data(prp->replica_object);
- local_ruv_obj = replica_get_ruv (replica);
- starting_ruv = ruv_dup((RUV*)object_get_data ( local_ruv_obj ));
- object_release (local_ruv_obj);
-
- /* Set up the callback data. */
- cb_data.prp = prp;
- cb_data.rc = 0;
- cb_data.num_entries = 0UL;
- cb_data.sleep_on_busy = 0UL;
- cb_data.last_busy = current_time ();
- /* Don't send anything if one-way (ONE_WAY_SYNC_FROM_AD) is set. */
- if ((one_way == ONE_WAY_SYNC_DISABLED) || (one_way == ONE_WAY_SYNC_TO_AD)) {
- /* send everything */
- const subtreePair* subtree_pairs = NULL;
- const subtreePair* sp = NULL;
- subtree_pairs = windows_private_get_subtreepairs(prp->agmt);
- if (subtree_pairs) {
- for (sp = subtree_pairs; sp && sp->DSsubtree; sp++) {
- _windows_tot_send_entry(prp->agmt, &cb_data, sp->DSsubtree);
- }
- } else {
- _windows_tot_send_entry(prp->agmt, &cb_data, windows_private_get_directory_subtree(prp->agmt));
- }
- }
- rc = cb_data.rc;
- windows_release_replica(prp);
-
- if (rc != LDAP_SUCCESS) {
- slapi_log_error(SLAPI_LOG_REPL, windows_repl_plugin_name, "%s: windows_tot_run: "
- "failed to obtain data to send to the consumer; LDAP error - %d\n",
- agmt_get_long_name(prp->agmt), rc);
- agmt_set_last_init_status(prp->agmt, rc, 0, "Total update aborted");
- } else {
- slapi_log_error(SLAPI_LOG_FATAL, windows_repl_plugin_name, "Finished total update of replica "
- "\"%s\". Sent %lu entries.\n", agmt_get_long_name(prp->agmt), cb_data.num_entries);
- agmt_set_last_init_status(prp->agmt, 0, 0, "Total update succeeded");
- /* Now update our consumer RUV for this agreement.
- * This ensures that future incrememental updates work.
- */
- if (slapi_is_loglevel_set(SLAPI_LOG_REPL))
- {
- slapi_log_error(SLAPI_LOG_REPL, NULL, "total update setting consumer RUV:\n");
- ruv_dump (starting_ruv, "consumer", NULL);
- }
- agmt_set_consumer_ruv(prp->agmt, starting_ruv );
- }
- /* Do another dirsync to ensure we get GUIDs for newly added entries. */
- if ((one_way == ONE_WAY_SYNC_DISABLED) || (one_way == ONE_WAY_SYNC_FROM_AD)) {
- windows_dirsync_inc_run(prp);
- }
- /* Save the dirsync cookie. */
- windows_private_save_dirsync_cookie(prp->agmt);
- agmt_set_last_init_end(prp->agmt, current_time());
- agmt_set_update_in_progress(prp->agmt, PR_FALSE);
- agmt_update_done(prp->agmt, 1);
- /* call end total update callback */
- winsync_plugin_call_end_update_cb(prp->agmt,
- windows_private_get_directory_treetop(prp->agmt),
- windows_private_get_windows_treetop(prp->agmt),
- 1 /* is_total == TRUE */);
- done:
- if (starting_ruv)
- {
- ruv_destroy(&starting_ruv);
- }
-
- prp->stopped = 1;
- ruv_destroy(&ruv);
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_tot_run\n" );
- }
- static int
- windows_tot_stop(Private_Repl_Protocol *prp)
- {
- int return_value;
- int seconds = 600;
- PRIntervalTime start, maxwait, now;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_tot_stop\n" );
- prp->terminate = 1;
- maxwait = PR_SecondsToInterval(seconds);
- start = PR_IntervalNow();
- now = start;
- while (!prp->stopped && ((now - start) < maxwait))
- {
- DS_Sleep(PR_SecondsToInterval(1));
- now = PR_IntervalNow();
- }
- if (!prp->stopped)
- {
- /* Isn't listening. Disconnect from the replica. */
- slapi_log_error (SLAPI_LOG_REPL, windows_repl_plugin_name, "windows_tot_run: "
- "protocol not stopped after waiting for %d seconds "
- "for agreement %s\n", PR_IntervalToSeconds(now-start),
- agmt_get_long_name(prp->agmt));
- windows_conn_disconnect(prp->conn);
- return_value = -1;
- }
- else
- {
- return_value = 0;
- }
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_tot_stop\n" );
- return return_value;
- }
- static int
- windows_tot_status(Private_Repl_Protocol *prp)
- {
- int return_value = 0;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_tot_status\n" );
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_tot_status\n" );
- return return_value;
- }
- static void
- windows_tot_noop(Private_Repl_Protocol *prp)
- {
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_tot_noop\n" );
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_tot_noop\n" );
- /* noop */
- }
- Private_Repl_Protocol *
- Windows_Tot_Protocol_new(Repl_Protocol *rp)
- {
- windows_tot_private *rip = NULL;
- Private_Repl_Protocol *prp = (Private_Repl_Protocol *)slapi_ch_calloc(1, sizeof(Private_Repl_Protocol));
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> Windows_Tot_Protocol_new\n" );
- prp->delete = windows_tot_delete;
- prp->run = windows_tot_run;
- prp->stop = windows_tot_stop;
- prp->status = windows_tot_status;
- prp->notify_update = windows_tot_noop;
- prp->notify_agmt_changed = windows_tot_noop;
- prp->notify_window_opened = windows_tot_noop;
- prp->notify_window_closed = windows_tot_noop;
- prp->replica_object = prot_get_replica_object(rp);
- prp->update_now = windows_tot_noop;
- if ((prp->lock = PR_NewLock()) == NULL)
- {
- goto loser;
- }
- if ((prp->cvar = PR_NewCondVar(prp->lock)) == NULL)
- {
- goto loser;
- }
- prp->stopped = 1;
- prp->terminate = 0;
- prp->eventbits = 0;
- prp->conn = prot_get_connection(rp);
- prp->agmt = prot_get_agreement(rp);
- rip = (void *)slapi_ch_malloc(sizeof(windows_tot_private));
- rip->rp = rp;
- prp->private = (void *)rip;
- prp->replica_acquired = PR_FALSE;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= Windows_Tot_Protocol_new\n" );
- return prp;
- loser:
- windows_tot_delete(&prp);
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= Windows_Tot_Protocol_new - loser\n" );
- return NULL;
- }
- static void
- windows_tot_delete(Private_Repl_Protocol **prpp)
- {
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> windows_tot_delete\n" );
- /* First, stop the protocol if it isn't already stopped */
- if (!(*prpp)->stopped) {
- (*prpp)->stopped = 1;
- (*prpp)->stop(*prpp);
- }
- /* Then, delete all resources used by the protocol */
- if ((*prpp)->lock) {
- PR_DestroyLock((*prpp)->lock);
- (*prpp)->lock = NULL;
- }
- if ((*prpp)->cvar) {
- PR_DestroyCondVar((*prpp)->cvar);
- (*prpp)->cvar = NULL;
- }
- slapi_ch_free((void **)&(*prpp)->private);
- slapi_ch_free((void **)prpp);
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= windows_tot_delete\n" );
- }
- static
- void get_result (int rc, void *cb_data)
- {
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> get_result\n" );
- PR_ASSERT (cb_data);
- ((callback_data*)cb_data)->rc = rc;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= get_result\n" );
- }
- static
- int send_entry (Slapi_Entry *e, void *cb_data)
- {
- int rc;
- Private_Repl_Protocol *prp;
- unsigned long *num_entriesp;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "=> send_entry\n" );
- PR_ASSERT (cb_data);
- prp = ((callback_data*)cb_data)->prp;
- num_entriesp = &((callback_data *)cb_data)->num_entries;
- PR_ASSERT (prp);
- if (prp->terminate)
- {
- windows_conn_disconnect(prp->conn);
- prp->stopped = 1;
- ((callback_data*)cb_data)->rc = -1;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= send_entry\n" );
- return -1;
- }
- /* skip ruv tombstone - not relvant to Active Directory */
- if (is_ruv_tombstone_entry (e)) {
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= send_entry\n" );
- return 0;
- }
- /* push the entry to the consumer */
- rc = windows_process_total_entry(prp,e);
-
- (*num_entriesp)++;
- LDAPDebug0Args( LDAP_DEBUG_TRACE, "<= send_entry\n" );
- if (CONN_OPERATION_SUCCESS == rc) {
- return 0;
- } else {
- ((callback_data*)cb_data)->rc = rc;
- return -1;
- }
- }
|