| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- /** BEGIN COPYRIGHT BLOCK
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- *
- * License: GPL (version 3 or any later version).
- * See LICENSE for details.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
-
- /*
- * urp_tombstone.c - Update Resolution Procedures - Tombstones
- */
- #include "slapi-plugin.h"
- #include "repl5.h"
- #include "urp.h"
- extern int slapi_log_urp;
- /*
- * Check if the entry is a tombstone.
- */
- int
- is_tombstone_entry(const Slapi_Entry* entry)
- {
- int flag;
- /* LP: This doesn't work very well with entries that we tombstone ourself */
- flag = slapi_entry_flag_is_set (entry, SLAPI_ENTRY_FLAG_TOMBSTONE);
- if (flag == 0)
- {
- /* This is slow */
- flag = slapi_entry_attr_hasvalue(entry, SLAPI_ATTR_OBJECTCLASS, SLAPI_ATTR_VALUE_TOMBSTONE);
- }
- return flag;
- }
- PRBool
- get_tombstone_csn(const Slapi_Entry *entry, const CSN **delcsn)
- {
- PRBool ists = PR_FALSE;
- if (is_tombstone_entry(entry)) {
- ists = PR_TRUE;
- *delcsn = entry_get_deletion_csn((Slapi_Entry *)entry); /* cast away const */
- }
- return ists;
- }
- static int
- tombstone_to_glue_resolve_parent (
- Slapi_PBlock *pb,
- char *sessionid,
- const Slapi_DN *parentdn,
- const char *parentuniqueid,
- CSN *opcsn,
- Slapi_DN **newparentdn)
- {
- /* Let's have a look at the parent of this entry... */
- if(!slapi_sdn_isempty(parentdn) && parentuniqueid!=NULL)
- {
- int op_result;
- Slapi_PBlock *newpb= slapi_pblock_new();
- slapi_search_internal_set_pb(
- newpb,
- slapi_sdn_get_dn(parentdn), /* JCM - This DN just identifies the backend to be searched. */
- LDAP_SCOPE_BASE,
- "objectclass=*",
- NULL, /*attrs*/
- 0, /*attrsonly*/
- NULL, /*Controls*/
- parentuniqueid, /*uniqueid*/
- repl_get_plugin_identity(PLUGIN_MULTIMASTER_REPLICATION),
- 0);
- slapi_search_internal_pb(newpb);
- slapi_pblock_get(newpb, SLAPI_PLUGIN_INTOP_RESULT, &op_result);
- switch(op_result)
- {
- case LDAP_SUCCESS:
- {
- Slapi_Entry **entries= NULL;
- /* OK, the tombstone entry parent exists. Is it also a tombstone? */
- slapi_pblock_get(newpb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries);
- if(entries!=NULL && entries[0]!=NULL)
- {
- if(is_tombstone_entry(entries[0]))
- {
- tombstone_to_glue(pb, sessionid, entries[0], parentdn,
- REASON_RESURRECT_ENTRY, opcsn, newparentdn);
- }
- }
- else
- {
- /* JCM - Couldn't find the entry! */
- }
- }
- break;
- default:
- /* So, the tombstone entry had a parent... but it's gone. */
- /* That's probably a bad thing. */
- break;
- }
- slapi_free_search_results_internal (newpb);
- slapi_pblock_destroy(newpb);
- }
- return 0;
- }
- /*
- * Convert a tombstone into a glue entry.
- */
- int
- tombstone_to_glue (
- Slapi_PBlock *pb,
- char *sessionid,
- Slapi_Entry *tombstoneentry,
- const Slapi_DN *gluedn, /* does not start with uniqueid= */
- const char *reason,
- CSN *opcsn,
- Slapi_DN **newparentdn)
- {
- Slapi_DN *parentdn;
- char *parentuniqueid;
- const char *tombstoneuniqueid;
- Slapi_Entry *addingentry = NULL;
- Slapi_Entry *addingentry_bakup = NULL;
- const char *addingdn;
- int op_result;
- int rdn_is_conflict = 0;
- /* JCMREPL
- * Nothing logged to the 5.0 Change Log
- * Add is logged to the 4.0 Change Log - Core server Add code
- * must attach the entry to the Operation
- */
- /* Resurrect the parent entry first */
- /* JCM - This DN calculation is odd. It could resolve to NULL
- * which won't help us identify the correct backend to search.
- */
- is_suffix_dn_ext (pb, gluedn, &parentdn, 1 /* is_tombstone */);
- parentuniqueid = slapi_entry_attr_get_charptr (tombstoneentry, SLAPI_ATTR_VALUE_PARENT_UNIQUEID); /* Allocated */
- tombstone_to_glue_resolve_parent (pb, sessionid, parentdn, parentuniqueid, opcsn, newparentdn);
- /* Submit an Add operation to turn the tombstone entry into glue. */
- /*
- * The tombstone is stored with an invalid DN, we must fix this.
- */
- addingentry = slapi_entry_dup(tombstoneentry);
- if (newparentdn && *newparentdn && slapi_sdn_compare(parentdn, *newparentdn)) {
- /* If the parents are resolved, the tombstone's DN is going to be different... */
- /* Update DN in addingentry */
- Slapi_RDN *rdn = slapi_rdn_new();
- slapi_rdn_set_dn_ext(rdn, slapi_sdn_get_dn(gluedn), SLAPI_RDN_SET_DN_INCLUDE_UNIQUEID);
- addingdn = slapi_moddn_get_newdn(slapi_entry_get_sdn(addingentry), slapi_rdn_get_rdn(rdn),
- slapi_sdn_get_dn(*newparentdn));
- slapi_rdn_free(&rdn);
- slapi_sdn_init_normdn_passin(*newparentdn, addingdn); /* to return the new parentdn to the caller */
- } else {
- slapi_sdn_free(newparentdn); /* no change in parentdn; returning NULL */
- addingdn = slapi_sdn_get_dn(gluedn);
- }
- slapi_sdn_set_normdn_byval(slapi_entry_get_sdn(addingentry), addingdn);
- /* not just e_sdn, e_rsdn needs to be updated. */
- slapi_rdn_set_all_dn(slapi_entry_get_srdn(addingentry), slapi_entry_get_dn_const(addingentry));
- rdn_is_conflict = slapi_rdn_is_conflict(slapi_entry_get_srdn(addingentry));
- if (!slapi_entry_attr_hasvalue(addingentry, ATTR_NSDS5_REPLCONFLICT, reason))
- {
- /* Add the reason of turning it to glue - The backend code will use it*/
- slapi_entry_add_string(addingentry, ATTR_NSDS5_REPLCONFLICT, reason);
- }
- tombstoneuniqueid= slapi_entry_get_uniqueid(tombstoneentry);
- /*
- * addingentry and parentuniqueid are consumed in urp_fixup_add_entry,
- * regardless of the result.
- * Note: addingentry is not really consumed in ldbm_back_add.
- * tombstoneentry from DB/entry cache is duplicated and turned to be a glue.
- * This addingentry is freed in op_shared_add.
- */
- addingentry_bakup = slapi_entry_dup(addingentry);
- op_result = urp_fixup_add_entry (addingentry, tombstoneuniqueid, slapi_ch_strdup(parentuniqueid), opcsn, OP_FLAG_RESURECT_ENTRY);
- if ((LDAP_ALREADY_EXISTS == op_result) && !rdn_is_conflict) {
- /* conflict -- there's already the same named entry added.
- * But this to-be-glued entry needs to be added since this is a parent of child entries...
- * So, rename this tombstone parententry a conflict, glue entry.
- * Instead of "fixup_add", we have to "fixup_rename"...
- * */
- char *conflictrdn = get_rdn_plus_uniqueid(sessionid, addingdn, tombstoneuniqueid);
- if (conflictrdn) {
- addingentry = addingentry_bakup;
- addingentry_bakup = NULL;
- if (!slapi_entry_attr_hasvalue(addingentry, ATTR_NSDS5_REPLCONFLICT, reason)) {
- /* Add the reason of turning it to glue - The backend code will use it*/
- slapi_entry_add_string(addingentry, ATTR_NSDS5_REPLCONFLICT, reason);
- }
- slapi_log_error (SLAPI_LOG_FATAL, repl_plugin_name,
- "%s: Can't resurrect tombstone to glue reason '%s'. "
- "Try with conflict dn %s, error=%d\n",
- sessionid, reason, addingdn, op_result);
- op_result = urp_fixup_rename_entry(addingentry, (const char *)conflictrdn, parentuniqueid,
- OP_FLAG_RESURECT_ENTRY|OP_FLAG_TOMBSTONE_ENTRY);
- slapi_ch_free_string(&conflictrdn);
- slapi_entry_free(addingentry);
- addingentry = NULL;
- }
- }
- slapi_entry_free(addingentry_bakup);
- slapi_ch_free_string(&parentuniqueid);
- if (op_result == LDAP_SUCCESS)
- {
- slapi_log_error (/*slapi_log_urp*/SLAPI_LOG_FATAL, repl_plugin_name,
- "%s: Resurrected tombstone %s to glue reason '%s'\n", sessionid, addingdn, reason);
- }
- else if (LDAP_ALREADY_EXISTS == op_result)
- {
- slapi_log_error(/*slapi_log_urp*/SLAPI_LOG_FATAL, repl_plugin_name,
- "%s: No need to turn tombstone %s to glue; it was already resurrected.\n",
- sessionid, addingdn);
- op_result = LDAP_SUCCESS;
- }
- else
- {
- slapi_log_error (SLAPI_LOG_FATAL, repl_plugin_name,
- "%s: Can't resurrect tombstone %s to glue reason '%s', error=%d\n",
- sessionid, addingdn, reason, op_result);
- }
- slapi_sdn_free(&parentdn);
- return op_result;
- }
- int
- entry_to_tombstone ( Slapi_PBlock *pb, Slapi_Entry *entry )
- {
- Slapi_Operation *op;
- Slapi_Mods smods;
- CSN *opcsn;
- const char *uniqueid;
- int op_result = LDAP_SUCCESS;
- slapi_pblock_get ( pb, SLAPI_OPERATION, &op );
- opcsn = operation_get_csn ( op );
- uniqueid = slapi_entry_get_uniqueid ( entry );
- slapi_mods_init ( &smods, 2 );
- /* Remove objectclass=glue */
- slapi_mods_add ( &smods, LDAP_MOD_DELETE, SLAPI_ATTR_OBJECTCLASS, strlen("glue"), "glue");
- /* Remove any URP conflict since a tombstone shouldn't
- * be retrieved later for conflict removal.
- */
- slapi_mods_add ( &smods, LDAP_MOD_DELETE, ATTR_NSDS5_REPLCONFLICT, 0, NULL );
- op_result = urp_fixup_modify_entry (uniqueid,
- slapi_entry_get_sdn_const (entry),
- opcsn, &smods, 0);
- slapi_mods_done ( &smods );
- /*
- * Delete the entry.
- */
- if ( op_result == LDAP_SUCCESS )
- {
- /*
- * Using internal delete operation since it would go
- * through the urp operations and trigger the recursive
- * fixup if applicable.
- */
- op_result = urp_fixup_delete_entry (uniqueid, slapi_entry_get_dn_const (entry), opcsn, 0);
- }
- return op_result;
- }
|