| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- /** 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
- /* repl5_updatedn_list.c */
- /*
- This is the internal representation for the list of update DNs in the replica.
- The list is implemented as a hash table - the key is the normalized DN, and the
- value is the Slapi_DN representation of the DN
- */
- #include "repl5.h"
- #include "plhash.h"
- /* global data */
- /* typedef ReplicaUpdateDNList PLHashTable; */
- struct repl_enum_data
- {
- FNEnumDN fn;
- void *arg;
- };
- /* Forward declarations */
- static PRIntn replica_destroy_hash_entry (PLHashEntry *he, PRIntn index, void *arg);
- static PRIntn updatedn_list_enumerate (PLHashEntry *he, PRIntn index, void *hash_data);
- static int
- updatedn_compare_dns(const void *d1, const void *d2)
- {
- return (0 == slapi_sdn_compare((const Slapi_DN *)d1, (const Slapi_DN *)d2));
- }
- /* create a new updatedn list - if the entry is given, initialize the list from
- the replicabinddn values given in the entry */
- ReplicaUpdateDNList
- replica_updatedn_list_new(const Slapi_Entry *entry)
- {
- /* allocate table */
- PLHashTable *hash = PL_NewHashTable(4, PL_HashString, PL_CompareStrings,
- updatedn_compare_dns, NULL, NULL);
- if (hash == NULL) {
- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "replica_new_updatedn_list: "
- "failed to allocate hash table; NSPR error - %d\n",
- PR_GetError ());
- return NULL;
- }
- if (entry) {
- Slapi_Attr *attr = NULL;
- if (!slapi_entry_attr_find(entry, attr_replicaBindDn, &attr)) {
- Slapi_ValueSet *vs = NULL;
- slapi_attr_get_valueset(attr, &vs);
- replica_updatedn_list_replace(hash, vs);
- slapi_valueset_free(vs);
- }
- }
- return (ReplicaUpdateDNList)hash;
- }
- Slapi_ValueSet *
- replica_updatedn_group_new(const Slapi_Entry *entry)
- {
- Slapi_ValueSet *vs = NULL;
- if (entry) {
- Slapi_Attr *attr = NULL;
- if (!slapi_entry_attr_find(entry, attr_replicaBindDnGroup, &attr)) {
- slapi_attr_get_valueset(attr, &vs);
- }
- }
- return (vs);
- }
- ReplicaUpdateDNList
- replica_groupdn_list_new(const Slapi_ValueSet *vs)
- {
- PLHashTable *hash;
- if (vs == NULL) {
- return NULL;
- }
- /* allocate table */
- hash = PL_NewHashTable(4, PL_HashString, PL_CompareStrings,
- updatedn_compare_dns, NULL, NULL);
- if (hash == NULL) {
- slapi_log_error(SLAPI_LOG_FATAL, repl_plugin_name, "replica_new_updatedn_list: "
- "failed to allocate hash table; NSPR error - %d\n",
- PR_GetError ());
- return NULL;
- }
- replica_updatedn_list_delete(hash, NULL); /* delete all values */
- replica_updatedn_list_add_ext(hash, vs, 1);
- return (ReplicaUpdateDNList)hash;
- }
- void
- replica_updatedn_list_free(ReplicaUpdateDNList list)
- {
- /* destroy the content */
- PLHashTable *hash = list;
- PL_HashTableEnumerateEntries(hash, replica_destroy_hash_entry, NULL);
-
- if (hash)
- PL_HashTableDestroy(hash);
- }
- void
- replica_updatedn_list_replace(ReplicaUpdateDNList list, const Slapi_ValueSet *vs)
- {
- replica_updatedn_list_delete(list, NULL); /* delete all values */
- replica_updatedn_list_add_ext(list, vs, 0);
- }
- void
- replica_updatedn_list_group_replace(ReplicaUpdateDNList list, const Slapi_ValueSet *vs)
- {
- replica_updatedn_list_delete(list, NULL); /* delete all values */
- replica_updatedn_list_add_ext(list, vs, 1);
- }
- /* if vs is given, delete only those values - otherwise, delete all values */
- void
- replica_updatedn_list_delete(ReplicaUpdateDNList list, const Slapi_ValueSet *vs)
- {
- PLHashTable *hash = list;
- if (!vs || slapi_valueset_count(vs) == 0) { /* just delete everything */
- PL_HashTableEnumerateEntries(hash, replica_destroy_hash_entry, NULL);
- } else {
- Slapi_ValueSet *vs_nc = (Slapi_ValueSet *)vs; /* cast away const */
- Slapi_Value *val = NULL;
- int index = 0;
- for (index = slapi_valueset_first_value(vs_nc, &val); val;
- index = slapi_valueset_next_value(vs_nc, index, &val)) {
- Slapi_DN *dn = slapi_sdn_new_dn_byval(slapi_value_get_string(val));
- /* locate object */
- Slapi_DN *deldn = (Slapi_DN *)PL_HashTableLookup(hash, slapi_sdn_get_ndn(dn));
- if (deldn == NULL)
- {
- slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "replica_updatedn_list_delete: "
- "update DN with value (%s) is not in the update DN list.\n",
- slapi_sdn_get_ndn(dn));
- } else {
- /* remove from hash */
- PL_HashTableRemove(hash, slapi_sdn_get_ndn(dn));
- /* free the pointer */
- slapi_sdn_free(&deldn);
- }
- /* free the temp dn */
- slapi_sdn_free(&dn);
- }
- }
- return;
- }
- Slapi_ValueSet *
- replica_updatedn_list_get_members(Slapi_DN *dn)
- {
- static char* const filter_groups = "(|(objectclass=groupOfNames)(objectclass=groupOfUniqueNames)(objectclass=groupOfURLs))";
- static char* const type_member = "member";
- static char* const type_uniquemember = "uniquemember";
- static char* const type_memberURL = "memberURL";
- int rval;
- char *attrs[4];
- Slapi_PBlock *mpb = slapi_pblock_new ();
- Slapi_ValueSet *members = slapi_valueset_new();
-
- attrs[0] = type_member;
- attrs[1] = type_uniquemember;
- attrs[2] = type_memberURL;
- attrs[3] = NULL;
- slapi_search_internal_set_pb ( mpb, slapi_sdn_get_ndn(dn), LDAP_SCOPE_BASE, filter_groups,
- &attrs[0], 0, NULL /* controls */, NULL /* uniqueid */,
- repl_get_plugin_identity (PLUGIN_MULTIMASTER_REPLICATION), 0);
- slapi_search_internal_pb(mpb);
- slapi_pblock_get(mpb, SLAPI_PLUGIN_INTOP_RESULT, &rval);
- if (rval == LDAP_SUCCESS) {
- Slapi_Entry **ep;
- slapi_pblock_get(mpb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &ep);
- if ((ep != NULL) && (ep[0] != NULL)) {
- Slapi_Attr *attr = NULL;
- Slapi_Attr *nextAttr = NULL;
- Slapi_ValueSet *vs = NULL;
- char *attrType;
- slapi_entry_first_attr ( ep[0], &attr);
- while (attr) {
- slapi_attr_get_type ( attr, &attrType );
- if ((strcasecmp (attrType, type_member) == 0) ||
- (strcasecmp (attrType, type_uniquemember) == 0 )) {
- slapi_attr_get_valueset(attr, &vs);
- slapi_valueset_join_attr_valueset(attr, members, vs);
- slapi_valueset_free(vs);
- } else if (strcasecmp (attrType, type_memberURL) == 0) {
- /* not yet supported */
- }
- slapi_entry_next_attr ( ep[0], attr, &nextAttr );
- attr = nextAttr;
- }
- }
- }
- slapi_free_search_results_internal(mpb);
- slapi_pblock_destroy (mpb);
- return(members);
- }
- /*
- * add a list of dns to the ReplicaUpdateDNList.
- * The dn could be the dn of a group, so get the entry
- * and check the objectclass. If it is a static or dynamic group
- * generate the list of member dns and recursively call
- * replica_updatedn_list_add().
- * The dn of the group is added to the list, so it will detect
- * potential circular group definitions
- */
- void
- replica_updatedn_list_add_ext(ReplicaUpdateDNList list, const Slapi_ValueSet *vs, int group_update)
- {
- PLHashTable *hash = list;
- Slapi_ValueSet *vs_nc = (Slapi_ValueSet *)vs; /* cast away const */
- Slapi_Value *val = NULL;
- int index = 0;
- PR_ASSERT(list && vs);
- for (index = slapi_valueset_first_value(vs_nc, &val); val;
- index = slapi_valueset_next_value(vs_nc, index, &val)) {
- Slapi_DN *dn = slapi_sdn_new_dn_byval(slapi_value_get_string(val));
- const char *ndn = slapi_sdn_get_ndn(dn);
- /* make sure that the name is unique */
- if (PL_HashTableLookup(hash, ndn) != NULL)
- {
- slapi_log_error(SLAPI_LOG_REPL, repl_plugin_name, "replica_updatedn_list_add: "
- "update DN with value (%s) already in the update DN list\n",
- ndn);
- slapi_sdn_free(&dn);
- } else {
- Slapi_ValueSet *members = NULL;
- PL_HashTableAdd(hash, ndn, dn);
- /* add it, even if it is a group dn, this will
- * prevent problems with circular group definitions
- * then check if it has mor members to add */
- if (group_update) {
- members = replica_updatedn_list_get_members(dn);
- if (members) {
- replica_updatedn_list_add_ext(list, members, 1);
- /* free members */
- slapi_valueset_free(members);
- }
- }
- }
- }
- return;
- }
- void
- replica_updatedn_list_add(ReplicaUpdateDNList list, const Slapi_ValueSet *vs)
- {
- replica_updatedn_list_add_ext(list, vs, 0);
- }
- PRBool
- replica_updatedn_list_ismember(ReplicaUpdateDNList list, const Slapi_DN *dn)
- {
- PLHashTable *hash = list;
- PRBool ret = PR_FALSE;
- const char *ndn = slapi_sdn_get_ndn(dn);
- /* Bug 605169 - null ndn would cause core dump */
- if ( ndn ) {
- if ((uintptr_t)PL_HashTableLookupConst(hash, ndn))
- ret = PR_TRUE;
- else
- ret = PR_FALSE;
- }
- return ret;
- }
- struct list_to_string_data {
- char *string;
- const char *delimiter;
- };
- static int
- convert_to_string(Slapi_DN *dn, void *arg)
- {
- struct list_to_string_data *data = (struct list_to_string_data *)arg;
- int newlen = slapi_sdn_get_ndn_len(dn) + strlen(data->delimiter) + 1;
- if (data->string) {
- newlen += strlen(data->string);
- data->string = slapi_ch_realloc(data->string, newlen);
- } else {
- data->string = slapi_ch_calloc(1, newlen);
- }
- strcat(data->string, slapi_sdn_get_dn(dn));
- strcat(data->string, data->delimiter);
- return 1;
- }
- /* caller must slapi_ch_free_string the returned string */
- char *
- replica_updatedn_list_to_string(ReplicaUpdateDNList list, const char *delimiter)
- {
- struct list_to_string_data data;
- data.string = NULL;
- data.delimiter = delimiter;
- replica_updatedn_list_enumerate(list, convert_to_string, (void *)&data);
- return data.string;
- }
- void
- replica_updatedn_list_enumerate(ReplicaUpdateDNList list, FNEnumDN fn, void *arg)
- {
- PLHashTable *hash = list;
- struct repl_enum_data data;
- PR_ASSERT (fn);
- data.fn = fn;
- data.arg = arg;
- PL_HashTableEnumerateEntries(hash, updatedn_list_enumerate, &data);
- }
- /* Helper functions */
- /* this function called for each hash node during hash destruction */
- static PRIntn
- replica_destroy_hash_entry(PLHashEntry *he, PRIntn index, void *arg)
- {
- Slapi_DN *dn = NULL;
-
- if (he == NULL)
- return HT_ENUMERATE_NEXT;
- dn = (Slapi_DN *)he->value;
- PR_ASSERT (dn);
- slapi_sdn_free(&dn);
- return HT_ENUMERATE_REMOVE;
- }
- static PRIntn
- updatedn_list_enumerate(PLHashEntry *he, PRIntn index, void *hash_data)
- {
- Slapi_DN *dn = NULL;
- struct repl_enum_data *data = hash_data;
- dn = (Slapi_DN*)he->value;
- PR_ASSERT (dn);
- data->fn(dn, data->arg);
- return HT_ENUMERATE_NEXT;
- }
|