| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111 |
- /** 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
- #include "acl.h"
- static void acl__done_aclpb(struct acl_pblock *aclpb);
- #ifdef FOR_DEBUGGING
- static void acl__dump_stats(struct acl_pblock *aclpb, const char *block_type);
- static char *acl__get_aclpb_type(Acl_PBlock *aclpb);
- #endif
- static Acl_PBlock *acl__get_aclpb_from_pool(void);
- static int acl__put_aclpb_back_to_pool(Acl_PBlock *aclpb);
- static Acl_PBlock *acl__malloc_aclpb(void);
- static void acl__free_aclpb(Acl_PBlock **aclpb_ptr);
- int aclpb_max_selected_acls = DEFAULT_ACLPB_MAX_SELECTED_ACLS;
- int aclpb_max_cache_results = DEFAULT_ACLPB_MAX_SELECTED_ACLS;
- struct acl_pbqueue
- {
- Acl_PBlock *aclq_free;
- Acl_PBlock *aclq_busy;
- short aclq_nfree;
- short aclq_nbusy;
- PRLock *aclq_lock;
- };
- typedef struct acl_pbqueue Acl_PBqueue;
- static Acl_PBqueue *aclQueue = NULL;
- /* structure with information for each extension */
- typedef struct acl_ext
- {
- char *object_name; /* name of the object extended */
- int object_type; /* handle to the extended object */
- int handle; /* extension handle */
- } acl_ext;
- static acl_ext acl_ext_list[ACL_EXT_ALL];
- /*
- * EXTENSION INITIALIZATION, CONSTRUCTION, & DESTRUCTION
- *
- */
- int
- acl_init_ext()
- {
- int rc;
- acl_ext_list[ACL_EXT_OPERATION].object_name = SLAPI_EXT_OPERATION;
- rc = slapi_register_object_extension(plugin_name, SLAPI_EXT_OPERATION,
- acl_operation_ext_constructor,
- acl_operation_ext_destructor,
- &acl_ext_list[ACL_EXT_OPERATION].object_type,
- &acl_ext_list[ACL_EXT_OPERATION].handle);
- if (rc != 0)
- return rc;
- acl_ext_list[ACL_EXT_CONNECTION].object_name = SLAPI_EXT_CONNECTION;
- rc = slapi_register_object_extension(plugin_name, SLAPI_EXT_CONNECTION,
- acl_conn_ext_constructor,
- acl_conn_ext_destructor,
- &acl_ext_list[ACL_EXT_CONNECTION].object_type,
- &acl_ext_list[ACL_EXT_CONNECTION].handle);
- return rc;
- }
- void
- acl_remove_ext()
- {
- slapi_unregister_object_extension(plugin_name,
- SLAPI_EXT_OPERATION,
- &acl_ext_list[ACL_EXT_OPERATION].object_type,
- &acl_ext_list[ACL_EXT_OPERATION].handle);
- slapi_unregister_object_extension(plugin_name,
- SLAPI_EXT_CONNECTION,
- &acl_ext_list[ACL_EXT_CONNECTION].object_type,
- &acl_ext_list[ACL_EXT_CONNECTION].handle);
- }
- /* Interface to get the extensions */
- void *
- acl_get_ext(ext_type type, void *object)
- {
- struct acl_ext ext;
- void *data;
- if (type >= ACL_EXT_ALL) {
- slapi_log_err(SLAPI_LOG_ACL, plugin_name,
- "acl_get_ext - Invalid extension type:%d\n", type);
- return NULL;
- }
- /* find the requested extension */
- ext = acl_ext_list[type];
- data = slapi_get_object_extension(ext.object_type, object, ext.handle);
- return data;
- }
- void
- acl_set_ext(ext_type type, void *object, void *data)
- {
- if (type < ACL_EXT_ALL) {
- struct acl_ext ext = acl_ext_list[type];
- slapi_set_object_extension(ext.object_type, object, ext.handle, data);
- }
- }
- /****************************************************************************/
- /* CONNECTION EXTENSION SPECIFIC */
- /****************************************************************************/
- void *
- acl_conn_ext_constructor(void *object __attribute__((unused)), void *parent __attribute__((unused)))
- {
- struct acl_cblock *ext = NULL;
- ext = (struct acl_cblock *)slapi_ch_calloc(1, sizeof(struct acl_cblock));
- if ((ext->aclcb_lock = PR_NewLock()) == NULL) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_conn_ext_constructor - Unable to get Read/Write lock for CONNECTION extension\n");
- slapi_ch_free((void **)&ext);
- return NULL;
- }
- ext->aclcb_sdn = slapi_sdn_new();
- /* store the signatures */
- ext->aclcb_aclsignature = acl_get_aclsignature();
- /* eval_context */
- ext->aclcb_eval_context.acle_handles_matched_target = (int *)
- slapi_ch_calloc(aclpb_max_selected_acls, sizeof(int));
- ext->aclcb_state = -1;
- return ext;
- }
- void
- acl_conn_ext_destructor(void *ext, void *object __attribute__((unused)), void *parent __attribute__((unused)))
- {
- struct acl_cblock *aclcb = ext;
- PRLock *shared_lock;
- if (NULL == aclcb)
- return;
- PR_Lock(aclcb->aclcb_lock);
- shared_lock = aclcb->aclcb_lock;
- acl_clean_aclEval_context(&aclcb->aclcb_eval_context, 0 /* clean*/);
- slapi_sdn_free(&aclcb->aclcb_sdn);
- slapi_ch_free((void **)&(aclcb->aclcb_eval_context.acle_handles_matched_target));
- aclcb->aclcb_lock = NULL;
- slapi_ch_free((void **)&aclcb);
- PR_Unlock(shared_lock);
- PR_DestroyLock(shared_lock);
- }
- /****************************************************************************/
- /* OPERATION EXTENSION SPECIFIC */
- /****************************************************************************/
- void *
- acl_operation_ext_constructor(void *object __attribute__((unused)), void *parent __attribute__((unused)))
- {
- Acl_PBlock *aclpb = NULL;
- TNF_PROBE_0_DEBUG(acl_operation_ext_constructor_start, "ACL", "");
- /* This means internal operations */
- if (NULL == parent) {
- TNF_PROBE_1_DEBUG(acl_operation_ext_constructor_end, "ACL", "",
- tnf_string, internal_op, "");
- return NULL;
- }
- aclpb = acl__get_aclpb_from_pool();
- if (NULL == aclpb) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_operation_ext_constructor - Operation extension allocation Failed\n");
- }
- TNF_PROBE_0_DEBUG(acl_operation_ext_constructor_end, "ACL", "");
- return aclpb;
- }
- void
- acl_operation_ext_destructor(void *ext, void *object __attribute__((unused)), void *parent __attribute__((unused)))
- {
- struct acl_cblock *aclcb = NULL;
- struct acl_pblock *aclpb = NULL;
- TNF_PROBE_0_DEBUG(acl_operation_ext_destructor_start, "ACL", "");
- if ((NULL == parent) || (NULL == ext)) {
- TNF_PROBE_1_DEBUG(acl_operation_ext_destructor_end, "ACL", "",
- tnf_string, internal_op, "");
- return;
- }
- aclpb = (Acl_PBlock *)ext;
- if ((NULL == aclpb) ||
- (NULL == aclpb->aclpb_pblock) ||
- (!(aclpb->aclpb_state & ACLPB_INITIALIZED)))
- goto clean_aclpb;
- if (NULL == aclpb->aclpb_authorization_sdn) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name, "acl_operation_ext_destructor - NULL aclcb_autorization_sdn\n");
- goto clean_aclpb;
- }
- /* get the connection extension */
- aclcb = (struct acl_cblock *)acl_get_ext(ACL_EXT_CONNECTION, parent);
- /* We are about to get out of this connection. Move all the
- ** cached information to the acl private block which hangs
- ** from the connection struct.
- */
- if (aclcb && aclcb->aclcb_lock &&
- ((aclpb->aclpb_state & ACLPB_UPD_ACLCB_CACHE) ||
- (aclpb->aclpb_state & ACLPB_INCR_ACLCB_CACHE))) {
- aclEvalContext *c_evalContext;
- int attr_only = 0;
- PRLock *shared_lock = aclcb->aclcb_lock;
- if (aclcb->aclcb_lock)
- PR_Lock(shared_lock);
- else {
- goto clean_aclpb;
- }
- if (!aclcb->aclcb_lock) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_operation_ext_destructor - aclcb lock released! aclcb cache can't be refreshed\n");
- PR_Unlock(shared_lock);
- goto clean_aclpb;
- }
- /* We need to refresh the aclcb cache */
- if (aclpb->aclpb_state & ACLPB_UPD_ACLCB_CACHE)
- acl_clean_aclEval_context(&aclcb->aclcb_eval_context, 0 /* clean*/);
- if (aclpb->aclpb_prev_entryEval_context.acle_numof_attrs) {
- c_evalContext = &aclpb->aclpb_prev_entryEval_context;
- } else {
- c_evalContext = &aclpb->aclpb_curr_entryEval_context;
- }
- if ((aclpb->aclpb_state & ACLPB_INCR_ACLCB_CACHE) &&
- !(aclpb->aclpb_state & ACLPB_UPD_ACLCB_CACHE))
- attr_only = 1;
- acl_copyEval_context(NULL, c_evalContext, &aclcb->aclcb_eval_context, attr_only);
- aclcb->aclcb_aclsignature = aclpb->aclpb_signature;
- if (aclcb->aclcb_sdn &&
- (0 != slapi_sdn_compare(aclcb->aclcb_sdn, aclpb->aclpb_authorization_sdn))) {
- slapi_sdn_set_ndn_byval(aclcb->aclcb_sdn,
- slapi_sdn_get_ndn(aclpb->aclpb_authorization_sdn));
- }
- aclcb->aclcb_state = 0;
- aclcb->aclcb_state |= ACLCB_HAS_CACHED_EVALCONTEXT;
- PR_Unlock(shared_lock);
- }
- clean_aclpb:
- if (aclpb) {
- if (aclpb->aclpb_proxy) {
- TNF_PROBE_0_DEBUG(acl_proxy_aclpbdoneback_start, "ACL", "");
- acl__done_aclpb(aclpb->aclpb_proxy);
- /* Put back to the Pool */
- acl__put_aclpb_back_to_pool(aclpb->aclpb_proxy);
- aclpb->aclpb_proxy = NULL;
- TNF_PROBE_0_DEBUG(acl_proxy_aclpbdoneback_end, "ACL", "");
- }
- TNF_PROBE_0_DEBUG(acl_aclpbdoneback_start, "ACL", "");
- acl__done_aclpb(aclpb);
- acl__put_aclpb_back_to_pool(aclpb);
- TNF_PROBE_0_DEBUG(acl_aclpbdoneback_end, "ACL", "");
- }
- TNF_PROBE_0_DEBUG(acl_operation_ext_destructor_end, "ACL", "");
- }
- /****************************************************************************/
- /* FUNCTIONS TO MANAGE THE ACLPB POOL */
- /****************************************************************************/
- /*
- * Get the right acl pblock
- */
- struct acl_pblock *
- acl_get_aclpb(Slapi_PBlock *pb, int type)
- {
- Acl_PBlock *aclpb = NULL;
- void *op = NULL;
- slapi_pblock_get(pb, SLAPI_OPERATION, &op);
- aclpb = (Acl_PBlock *)acl_get_ext(ACL_EXT_OPERATION, op);
- if (NULL == aclpb)
- return NULL;
- if (type == ACLPB_BINDDN_PBLOCK)
- return aclpb;
- else if (type == ACLPB_PROXYDN_PBLOCK)
- return aclpb->aclpb_proxy;
- else
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_get_aclpb - Invalid aclpb type %d\n", type);
- return NULL;
- }
- /*
- * Create a new proxy acl pblock
- *
- */
- struct acl_pblock *
- acl_new_proxy_aclpb(Slapi_PBlock *pb)
- {
- void *op;
- Acl_PBlock *aclpb = NULL;
- Acl_PBlock *proxy_aclpb = NULL;
- slapi_pblock_get(pb, SLAPI_OPERATION, &op);
- aclpb = (Acl_PBlock *)acl_get_ext(ACL_EXT_OPERATION, op);
- if (NULL == aclpb)
- return NULL;
- proxy_aclpb = acl__get_aclpb_from_pool();
- if (NULL == proxy_aclpb)
- return NULL;
- proxy_aclpb->aclpb_type = ACLPB_TYPE_PROXY;
- aclpb->aclpb_proxy = proxy_aclpb;
- return proxy_aclpb;
- }
- static int
- acl__handle_config_entry(Slapi_Entry *e, void *callback_data)
- {
- *(int *)callback_data = slapi_entry_attr_get_int(e, "nsslapd-threadnumber");
- return 0;
- }
- static int
- acl__handle_plugin_config_entry(Slapi_Entry *e, void *callback_data __attribute__((unused)))
- {
- int value = slapi_entry_attr_get_int(e, ATTR_ACLPB_MAX_SELECTED_ACLS);
- if (value) {
- aclpb_max_selected_acls = value;
- aclpb_max_cache_results = value;
- } else {
- aclpb_max_selected_acls = DEFAULT_ACLPB_MAX_SELECTED_ACLS;
- aclpb_max_cache_results = DEFAULT_ACLPB_MAX_SELECTED_ACLS;
- }
- return 0;
- }
- /*
- * Create a pool of acl pblock. Created during the ACL plugin
- * initialization.
- */
- int
- acl_create_aclpb_pool()
- {
- Acl_PBlock *aclpb;
- Acl_PBlock *prev_aclpb;
- Acl_PBlock *first_aclpb;
- int i;
- int maxThreads = 0;
- int callbackData = 0;
- slapi_search_internal_callback("cn=config", LDAP_SCOPE_BASE, "(objectclass=*)",
- NULL, 0 /* attrsonly */,
- &maxThreads /* callback_data */,
- NULL /* controls */,
- NULL /* result_callback */,
- acl__handle_config_entry,
- NULL /* referral_callback */);
- slapi_search_internal_callback(ACL_PLUGIN_CONFIG_ENTRY_DN, LDAP_SCOPE_BASE, "(objectclass=*)",
- NULL, 0 /* attrsonly */,
- &callbackData /* callback_data, not used in this case */,
- NULL /* controls */,
- NULL /* result_callback */,
- acl__handle_plugin_config_entry,
- NULL /* referral_callback */);
- /* Create a pool pf aclpb */
- maxThreads = 2 * maxThreads;
- aclQueue = (Acl_PBqueue *)slapi_ch_calloc(1, sizeof(Acl_PBqueue));
- aclQueue->aclq_lock = PR_NewLock();
- if (NULL == aclQueue->aclq_lock) {
- /* ERROR */
- return 1;
- }
- prev_aclpb = NULL;
- first_aclpb = NULL;
- for (i = 0; i < maxThreads; i++) {
- aclpb = acl__malloc_aclpb();
- if (0 == i)
- first_aclpb = aclpb;
- aclpb->aclpb_prev = prev_aclpb;
- if (prev_aclpb)
- prev_aclpb->aclpb_next = aclpb;
- prev_aclpb = aclpb;
- }
- /* Since this is the begining, everybody is in free list */
- aclQueue->aclq_free = first_aclpb;
- aclQueue->aclq_nfree = maxThreads;
- return 0;
- }
- /*
- * Destroys the Acl_PBlock pool. To be called at shutdown,
- * from function registered as SLAPI_PLUGIN_CLOSE_FN
- */
- void
- acl_destroy_aclpb_pool()
- {
- Acl_PBlock *currentPbBlock;
- Acl_PBlock *nextPbBlock;
- if (!aclQueue) {
- /* Nothing to do */
- return;
- }
- /* Free all busy pbBlocks in queue */
- currentPbBlock = aclQueue->aclq_busy;
- while (currentPbBlock) {
- nextPbBlock = currentPbBlock->aclpb_next;
- acl__free_aclpb(¤tPbBlock);
- currentPbBlock = nextPbBlock;
- }
- /* Free all free pbBlocks in queue */
- currentPbBlock = aclQueue->aclq_free;
- while (currentPbBlock) {
- nextPbBlock = currentPbBlock->aclpb_next;
- acl__free_aclpb(¤tPbBlock);
- currentPbBlock = nextPbBlock;
- }
- PR_DestroyLock(aclQueue->aclq_lock);
- slapi_ch_free((void **)&aclQueue);
- }
- /*
- * Get a FREE acl pblock from the pool.
- *
- */
- static Acl_PBlock *
- acl__get_aclpb_from_pool(void)
- {
- Acl_PBlock *aclpb = NULL;
- Acl_PBlock *t_aclpb = NULL;
- PR_Lock(aclQueue->aclq_lock);
- /* Get the first aclpb from the FREE List */
- aclpb = aclQueue->aclq_free;
- if (aclpb) {
- t_aclpb = aclpb->aclpb_next;
- if (t_aclpb)
- t_aclpb->aclpb_prev = NULL;
- aclQueue->aclq_free = t_aclpb;
- /* make the this an orphon */
- aclpb->aclpb_prev = aclpb->aclpb_next = NULL;
- aclQueue->aclq_nfree--;
- } else {
- slapi_log_err(SLAPI_LOG_ACL, plugin_name,
- "Unable to find a free aclpb\n");
- aclpb = acl__malloc_aclpb();
- }
- /* Now move it to the FRONT of busy list */
- t_aclpb = aclQueue->aclq_busy;
- aclpb->aclpb_next = t_aclpb;
- if (t_aclpb)
- t_aclpb->aclpb_prev = aclpb;
- aclQueue->aclq_busy = aclpb;
- aclQueue->aclq_nbusy++;
- PR_Unlock(aclQueue->aclq_lock);
- return aclpb;
- }
- /*
- * Put the acl pblock into the FREE pool.
- *
- */
- static int
- acl__put_aclpb_back_to_pool(Acl_PBlock *aclpb)
- {
- Acl_PBlock *p_aclpb, *n_aclpb;
- PR_Lock(aclQueue->aclq_lock);
- /* Remove it from the busy list */
- n_aclpb = aclpb->aclpb_next;
- p_aclpb = aclpb->aclpb_prev;
- if (p_aclpb) {
- p_aclpb->aclpb_next = n_aclpb;
- if (n_aclpb)
- n_aclpb->aclpb_prev = p_aclpb;
- } else {
- aclQueue->aclq_busy = n_aclpb;
- if (n_aclpb)
- n_aclpb->aclpb_prev = NULL;
- }
- aclQueue->aclq_nbusy--;
- /* Put back to the FREE list */
- aclpb->aclpb_prev = NULL;
- n_aclpb = aclQueue->aclq_free;
- aclpb->aclpb_next = n_aclpb;
- if (n_aclpb)
- n_aclpb->aclpb_prev = aclpb;
- aclQueue->aclq_free = aclpb;
- aclQueue->aclq_nfree++;
- PR_Unlock(aclQueue->aclq_lock);
- return 0;
- }
- /*
- * Allocate the basic acl pb
- *
- */
- static Acl_PBlock *
- acl__malloc_aclpb(void)
- {
- Acl_PBlock *aclpb = NULL;
- aclpb = (Acl_PBlock *)slapi_ch_calloc(1, sizeof(Acl_PBlock));
- /* Now set the propert we need for ACL evaluations */
- if ((aclpb->aclpb_proplist = PListNew(NULL)) == NULL) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "Unable to allocate the aclprop PList\n");
- goto error;
- }
- if (PListInitProp(aclpb->aclpb_proplist, 0, DS_PROP_ACLPB, aclpb, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to set the ACL PBLOCK in the Plist\n");
- goto error;
- }
- if (PListInitProp(aclpb->aclpb_proplist, 0, DS_ATTR_USERDN, aclpb, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to set the USER DN in the Plist\n");
- goto error;
- }
- if (PListInitProp(aclpb->aclpb_proplist, 0, DS_ATTR_AUTHTYPE, aclpb, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to set the AUTH TYPE in the Plist\n");
- goto error;
- }
- if (PListInitProp(aclpb->aclpb_proplist, 0, DS_ATTR_LDAPI, aclpb, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to set the AUTH TYPE in the Plist\n");
- goto error;
- }
- if (PListInitProp(aclpb->aclpb_proplist, 0, DS_ATTR_ENTRY, aclpb, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to set the ENTRY TYPE in the Plist\n");
- goto error;
- }
- if (PListInitProp(aclpb->aclpb_proplist, 0, DS_ATTR_SSF, aclpb, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to set the SSF in the Plist\n");
- goto error;
- }
- /*
- * ACL_ATTR_IP and ACL_ATTR_DNS are initialized lazily in the
- * IpGetter and DnsGetter functions.
- * They are removed from the aclpb property list at acl__aclpb_done()
- * time.
- */
- /* allocate the acleval struct */
- aclpb->aclpb_acleval = (ACLEvalHandle_t *)ACL_EvalNew(NULL, NULL);
- if (aclpb->aclpb_acleval == NULL) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__malloc_aclpb - Unable to allocate the acleval block\n");
- goto error;
- }
- /*
- * This is a libaccess routine.
- * Need to setup subject and resource property information
- */
- ACL_EvalSetSubject(NULL, aclpb->aclpb_acleval, aclpb->aclpb_proplist);
- /* allocate some space for attr name */
- aclpb->aclpb_Evalattr = (char *)slapi_ch_malloc(ACLPB_MAX_ATTR_LEN);
- aclpb->aclpb_deny_handles = (aci_t **)slapi_ch_calloc(1,
- ACLPB_INCR_LIST_HANDLES * sizeof(aci_t *));
- aclpb->aclpb_allow_handles = (aci_t **)slapi_ch_calloc(1,
- ACLPB_INCR_LIST_HANDLES * sizeof(aci_t *));
- aclpb->aclpb_deny_handles_size = ACLPB_INCR_LIST_HANDLES;
- aclpb->aclpb_allow_handles_size = ACLPB_INCR_LIST_HANDLES;
- /* allocate the array for bases */
- aclpb->aclpb_grpsearchbase = (char **)
- slapi_ch_calloc(ACLPB_INCR_BASES, sizeof(char *));
- aclpb->aclpb_grpsearchbase_size = ACLPB_INCR_BASES;
- aclpb->aclpb_numof_bases = 0;
- /* Make sure aclpb_search_base is initialized to NULL..tested elsewhere! */
- aclpb->aclpb_search_base = NULL;
- aclpb->aclpb_authorization_sdn = slapi_sdn_new();
- aclpb->aclpb_curr_entry_sdn = slapi_sdn_new();
- aclpb->aclpb_aclContainer = acllist_get_aciContainer_new();
- /* hash table to store macro matched values from targets */
- aclpb->aclpb_macro_ht = acl_ht_new();
- /* allocate arrays for handles */
- aclpb->aclpb_handles_index = (int *)
- slapi_ch_calloc(aclpb_max_selected_acls, sizeof(int));
- aclpb->aclpb_base_handles_index = (int *)
- slapi_ch_calloc(aclpb_max_selected_acls, sizeof(int));
- /* allocate arrays for result cache */
- aclpb->aclpb_cache_result = (r_cache_t *)
- slapi_ch_calloc(aclpb_max_cache_results + 1 /* 1 for cache overflow warning */,
- sizeof(r_cache_t));
- /* allocate arrays for target handles in eval_context */
- aclpb->aclpb_curr_entryEval_context.acle_handles_matched_target = (int *)
- slapi_ch_calloc(aclpb_max_selected_acls, sizeof(int));
- aclpb->aclpb_prev_entryEval_context.acle_handles_matched_target = (int *)
- slapi_ch_calloc(aclpb_max_selected_acls, sizeof(int));
- aclpb->aclpb_prev_opEval_context.acle_handles_matched_target = (int *)
- slapi_ch_calloc(aclpb_max_selected_acls, sizeof(int));
- return aclpb;
- error:
- acl__free_aclpb(&aclpb);
- return NULL;
- }
- /*
- * Free the acl pb. To be used at shutdown (SLAPI_PLUGIN_CLOSE_FN)
- * when we free the aclQueue
- */
- static void
- acl__free_aclpb(Acl_PBlock **aclpb_ptr)
- {
- Acl_PBlock *aclpb = NULL;
- if (aclpb_ptr == NULL || *aclpb_ptr == NULL)
- return; // Nothing to do
- aclpb = *aclpb_ptr;
- if (aclpb->aclpb_acleval) {
- ACL_EvalDestroyNoDecrement(NULL, NULL, aclpb->aclpb_acleval);
- }
- if (aclpb->aclpb_proplist)
- PListDestroy(aclpb->aclpb_proplist);
- slapi_ch_free((void **)&(aclpb->aclpb_handles_index));
- slapi_ch_free((void **)&(aclpb->aclpb_base_handles_index));
- slapi_ch_free((void **)&(aclpb->aclpb_cache_result));
- slapi_ch_free((void **)&(aclpb->aclpb_curr_entryEval_context.acle_handles_matched_target));
- slapi_ch_free((void **)&(aclpb->aclpb_prev_entryEval_context.acle_handles_matched_target));
- slapi_ch_free((void **)&(aclpb->aclpb_prev_opEval_context.acle_handles_matched_target));
- slapi_sdn_free(&aclpb->aclpb_authorization_sdn);
- slapi_sdn_free(&aclpb->aclpb_curr_entry_sdn);
- if (aclpb->aclpb_macro_ht) {
- acl_ht_free_all_entries_and_values(aclpb->aclpb_macro_ht);
- PR_HashTableDestroy(aclpb->aclpb_macro_ht);
- aclpb->aclpb_macro_ht = NULL;
- }
- slapi_ch_free((void **)&(aclpb->aclpb_allow_handles));
- slapi_ch_free((void **)&(aclpb->aclpb_deny_handles));
- acllist_free_aciContainer(&aclpb->aclpb_aclContainer);
- slapi_ch_free((void **)&(aclpb->aclpb_aclContainer));
- slapi_ch_free_string(&aclpb->aclpb_Evalattr);
- slapi_ch_array_free(aclpb->aclpb_grpsearchbase);
- slapi_ch_free((void **)aclpb_ptr);
- }
- /* Initializes the aclpb */
- void
- acl_init_aclpb(Slapi_PBlock *pb, Acl_PBlock *aclpb, const char *ndn, int copy_from_aclcb)
- {
- struct acl_cblock *aclcb = NULL;
- char *authType;
- void *conn;
- int op_type;
- intptr_t ssf = 0;
- if (NULL == aclpb) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name, "acl_init_aclpb - No ACLPB\n");
- return;
- }
- /* See if we have initialized already */
- if (aclpb->aclpb_state & ACLPB_INITIALIZED)
- return;
- slapi_pblock_get(pb, SLAPI_OPERATION_TYPE, &op_type);
- if (op_type == SLAPI_OPERATION_BIND || op_type == SLAPI_OPERATION_UNBIND)
- return;
- /* We indicate the initialize here becuase, if something goes wrong, it's cleaned up
- ** properly.
- */
- aclpb->aclpb_state = ACLPB_INITIALIZED;
- /* We make an anonymous user a non null dn which is empty */
- if (ndn && *ndn != '\0')
- slapi_sdn_set_ndn_byval(aclpb->aclpb_authorization_sdn, ndn);
- else
- slapi_sdn_set_ndn_byval(aclpb->aclpb_authorization_sdn, "");
- /* reset scoped entry cache to be empty */
- aclpb->aclpb_scoped_entry_anominfo.anom_e_nummatched = 0;
- if (PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_USERDN,
- slapi_sdn_get_ndn(aclpb->aclpb_authorization_sdn), 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_init_aclpb - Unable to set the USER DN in the Plist\n");
- return;
- }
- slapi_pblock_get(pb, SLAPI_OPERATION_AUTHTYPE, &authType);
- if (PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_AUTHTYPE, authType, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_init_aclpb - Unable to set the AUTH TYPE in the Plist\n");
- return;
- }
- if (slapi_is_ldapi_conn(pb)) {
- if (PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_LDAPI, "yes", 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_init_aclpb - Unable to set the AUTH TYPE in the Plist\n");
- return;
- }
- }
- slapi_pblock_get(pb, SLAPI_OPERATION_SSF, &ssf);
- if (PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_SSF, (const void *)ssf, 0) < 0) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl_init_aclpb - Unable to set the SSF in the Plist\n");
- return;
- }
- /* PKBxxx: We should be getting it from the OP struct */
- slapi_pblock_get(pb, SLAPI_CONN_CERT, &aclpb->aclpb_clientcert);
- /* See if the we have already a cached info about user's group */
- aclg_init_userGroup(aclpb, ndn, 0 /* get lock */);
- slapi_pblock_get(pb, SLAPI_BE_MAXNESTLEVEL, &aclpb->aclpb_max_nesting_level);
- slapi_pblock_get(pb, SLAPI_OPERATION_TYPE, &aclpb->aclpb_optype);
- aclpb->aclpb_signature = acl_get_aclsignature();
- aclpb->aclpb_last_cache_result = 0;
- aclpb->aclpb_pblock = pb;
- PR_ASSERT(aclpb->aclpb_pblock != NULL);
- /* get the connection */
- slapi_pblock_get(pb, SLAPI_CONNECTION, &conn);
- aclcb = (struct acl_cblock *)acl_get_ext(ACL_EXT_CONNECTION, conn);
- if (NULL == aclcb || NULL == aclcb->aclcb_lock) {
- /* This could happen if the client is dead and we are in
- ** process of abondoning this operation
- */
- slapi_log_err(SLAPI_LOG_ACL, plugin_name,
- "acl_init_aclpb - No CONNECTION extension\n");
- } else if (aclcb->aclcb_state == -1) {
- /* indicate that we need to update the cache */
- aclpb->aclpb_state |= ACLPB_UPD_ACLCB_CACHE;
- aclcb->aclcb_state = 0; /* Nore this is ACLCB and not ACLPB */
- } else if (copy_from_aclcb) {
- char *cdn;
- Slapi_DN *c_sdn; /* client SDN */
- /* check if the operation is abandoned or not.*/
- if (slapi_op_abandoned(pb)) {
- return;
- }
- slapi_pblock_get(pb, SLAPI_CONN_DN, &cdn); /* We *must* free cdn! */
- c_sdn = slapi_sdn_new_dn_passin(cdn);
- PR_Lock(aclcb->aclcb_lock);
- /*
- * since PR_Lock is taken,
- * we can mark the connection extension ok to be destroyed.
- */
- if ((aclcb->aclcb_aclsignature != acl_get_aclsignature()) ||
- ((NULL == cdn) && aclcb->aclcb_sdn) ||
- (cdn && (NULL == aclcb->aclcb_sdn)) ||
- (cdn && aclcb->aclcb_sdn && (0 != slapi_sdn_compare(c_sdn, aclcb->aclcb_sdn)))) {
- /* cleanup the aclcb cache */
- acl_clean_aclEval_context(&aclcb->aclcb_eval_context, 0 /*clean*/);
- aclcb->aclcb_state = 0;
- aclcb->aclcb_aclsignature = 0;
- slapi_sdn_done(aclcb->aclcb_sdn);
- }
- slapi_sdn_free(&c_sdn);
- /* COPY the cached information from ACLCB --> ACLPB */
- if (aclcb->aclcb_state & ACLCB_HAS_CACHED_EVALCONTEXT) {
- acl_copyEval_context(aclpb, &aclcb->aclcb_eval_context,
- &aclpb->aclpb_prev_opEval_context, 0);
- aclpb->aclpb_state |= ACLPB_HAS_ACLCB_EVALCONTEXT;
- }
- PR_Unlock(aclcb->aclcb_lock);
- }
- }
- /* Cleans up the aclpb */
- static void
- acl__done_aclpb(struct acl_pblock *aclpb)
- {
- int i;
- int dump_aclpb_info = 0;
- int rc = -1;
- char *tmp_ptr = NULL;
- /*
- ** First, let's do some sanity checks to see if we have everything what
- ** it should be.
- */
- /* Nothing needs to be cleaned up in this case */
- if (!(aclpb->aclpb_state & ACLPB_INITIALIZED))
- return;
- /* Check the state */
- if (aclpb->aclpb_state & ~ACLPB_STATE_ALL) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__done_aclpb - The aclpb state value (%d) is incorrect. Exceeded the limit (%d)\n",
- aclpb->aclpb_state, ACLPB_STATE_ALL);
- dump_aclpb_info = 1;
- }
- #ifdef FOR_DEBUGGING
- acl__dump_stats(aclpb, acl__get_aclpb_type(aclpb));
- #endif
- /* reset the usergroup cache */
- aclg_reset_userGroup(aclpb);
- if (aclpb->aclpb_res_type & ~ACLPB_RESTYPE_ALL) {
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "acl__done_aclpb - The aclpb res_type value (%d) has exceeded. Limit is (%d)\n",
- aclpb->aclpb_res_type, ACLPB_RESTYPE_ALL);
- dump_aclpb_info = 1;
- }
- if (dump_aclpb_info) {
- const char *ndn;
- slapi_log_err(SLAPI_LOG_ERR, plugin_name,
- "ACLPB value is:%p\n", aclpb);
- ndn = slapi_sdn_get_ndn(aclpb->aclpb_curr_entry_sdn);
- slapi_log_err(SLAPI_LOG_ERR, plugin_name, "acl__done_aclpb - curr_entry:%p num_entries:%d curr_dn:%p\n",
- aclpb->aclpb_curr_entry ? (char *)aclpb->aclpb_curr_entry : "NULL",
- aclpb->aclpb_num_entries,
- ndn ? ndn : "NULL");
- slapi_log_err(SLAPI_LOG_ERR, plugin_name, "acl__done_aclpb - Last attr:%p, Plist:%p acleval: %p\n",
- aclpb->aclpb_Evalattr ? aclpb->aclpb_Evalattr : "NULL",
- aclpb->aclpb_proplist ? (char *)aclpb->aclpb_proplist : "NULL",
- aclpb->aclpb_acleval ? (char *)aclpb->aclpb_acleval : "NULL");
- }
- /* Now Free the contents or clean it */
- slapi_sdn_done(aclpb->aclpb_curr_entry_sdn);
- if (aclpb->aclpb_Evalattr)
- aclpb->aclpb_Evalattr[0] = '\0';
- /* deallocate the contents of the base array */
- for (i = 0; i < aclpb->aclpb_numof_bases; i++) {
- if (aclpb->aclpb_grpsearchbase[i])
- slapi_ch_free((void **)&aclpb->aclpb_grpsearchbase[i]);
- }
- aclpb->aclpb_numof_bases = 0;
- acl_clean_aclEval_context(&aclpb->aclpb_prev_opEval_context, 0 /*claen*/);
- acl_clean_aclEval_context(&aclpb->aclpb_prev_entryEval_context, 0 /*clean*/);
- acl_clean_aclEval_context(&aclpb->aclpb_curr_entryEval_context, 0 /*clean*/);
- if (aclpb->aclpb_client_entry)
- slapi_entry_free(aclpb->aclpb_client_entry);
- aclpb->aclpb_client_entry = NULL;
- slapi_sdn_done(aclpb->aclpb_authorization_sdn);
- aclpb->aclpb_pblock = NULL;
- slapi_ch_free_string(&aclpb->aclpb_search_base);
- for (i = 0; i < aclpb->aclpb_num_deny_handles; i++)
- aclpb->aclpb_deny_handles[i] = NULL;
- aclpb->aclpb_num_deny_handles = 0;
- for (i = 0; i < aclpb->aclpb_num_allow_handles; i++)
- aclpb->aclpb_allow_handles[i] = NULL;
- aclpb->aclpb_num_allow_handles = 0;
- /* clear results cache */
- memset((char *)aclpb->aclpb_cache_result, 0,
- sizeof(struct result_cache) * aclpb->aclpb_last_cache_result);
- aclpb->aclpb_last_cache_result = 0;
- aclpb->aclpb_handles_index[0] = -1;
- aclpb->aclpb_base_handles_index[0] = -1;
- aclpb->aclpb_stat_acllist_scanned = 0;
- aclpb->aclpb_stat_aclres_matched = 0;
- aclpb->aclpb_stat_total_entries = 0;
- aclpb->aclpb_stat_anom_list_scanned = 0;
- aclpb->aclpb_stat_num_copycontext = 0;
- aclpb->aclpb_stat_num_copy_attrs = 0;
- aclpb->aclpb_stat_num_tmatched_acls = 0;
- aclpb->aclpb_clientcert = NULL;
- aclpb->aclpb_proxy = NULL;
- acllist_done_aciContainer(aclpb->aclpb_aclContainer);
- /*
- * Here, decide which things need to be freed/removed/whatever from the
- * aclpb_proplist.
- */
- /*
- * The DS_ATTR_DNS property contains the name of the client machine.
- *
- * The value pointed to by this property is stored in the pblock--it
- * points to the SLAPI_CLIENT_DNS object. So, that memory will
- * be freed elsewhere.
- *
- * It's removed here from the aclpb_proplist as it would be an error to
- * allow it to persist in the aclpb which is an operation time thing.
- * If we leave it here the next time this aclpb gets used, the DnsGetter
- * is not called by LASDnsEval/ACL_GetAttribute() as it thinks the
- * ACL_ATTR_DNS has already been initialized.
- *
- */
- if ((rc = PListFindValue(aclpb->aclpb_proplist, ACL_ATTR_DNS,
- (void **)&tmp_ptr, NULL)) > 0) {
- PListDeleteProp(aclpb->aclpb_proplist, rc, NULL);
- }
- /* reset the LDAPI property */
- PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_LDAPI, NULL, 0);
- /*
- * Remove the DS_ATTR_IP property from the property list.
- * The value of this property is just the property pointer
- * (an unsigned long) so that gets freed too when we delete the
- * property.
- * It's removed here from the aclpb_proplist as it would be an error to
- * allow it to persist in the aclpb which is an operation time thing.
- * If we leave it here the next time this aclpb gets used, the DnsGetter
- * is not called by LASIpEval/ACL_GetAttribute() as it thinks the
- * ACL_ATTR_IP has already been initialized.
- */
- if ((rc = PListFindValue(aclpb->aclpb_proplist, ACL_ATTR_IP,
- (void **)&tmp_ptr, NULL)) > 0) {
- PListDeleteProp(aclpb->aclpb_proplist, rc, NULL);
- }
- /*
- * The DS_ATTR_USERDN value comes from aclpb_authorization_sdn.
- * This memory
- * is freed above using aclpb_authorization_sdn so we don't need to free it here
- * before overwriting the old value.
- */
- PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_USERDN, NULL, 0);
- /*
- * The DS_ATTR_AUTHTYPE value is a pointer into the pblock, so
- * we do not need to free that memory before overwriting the value.
- */
- PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_AUTHTYPE, NULL, 0);
- /*
- * DO NOT overwrite the aclpb pointer--it is initialized at malloc_aclpb
- * time and is kept within the aclpb.
- *
- * PListAssignValue(aclpb->aclpb_proplist, DS_PROP_ACLPB, NULL, 0);
- */
- /*
- * The DS_ATTR_ENTRY value was a pointer to the entry being evaluated
- * by the ACL code. That entry comes from outside the context of
- * the acl code and so is dealt with out there. Ergo, here we can just
- * lose the pointer to that entry.
- */
- PListAssignValue(aclpb->aclpb_proplist, DS_ATTR_ENTRY, NULL, 0);
- aclpb->aclpb_signature = 0;
- /* reset scoped entry cache to be empty */
- aclpb->aclpb_scoped_entry_anominfo.anom_e_nummatched = 0;
- /* Free up any of the string values left in the macro ht and remove
- * the entries.*/
- acl_ht_free_all_entries_and_values(aclpb->aclpb_macro_ht);
- /* Finally, set it to the no use state */
- aclpb->aclpb_state = 0;
- }
- #ifdef FOR_DEBUGGING
- static char *
- acl__get_aclpb_type(Acl_PBlock *aclpb)
- {
- if (aclpb->aclpb_state & ACLPB_TYPE_PROXY)
- return ACLPB_TYPE_PROXY_STR;
- return ACLPB_TYPE_MAIN_STR;
- }
- static void
- acl__dump_stats(struct acl_pblock *aclpb, const char *block_type)
- {
- PRUint64 connid = 0;
- int opid = 0;
- Slapi_PBlock *pb = NULL;
- pb = aclpb->aclpb_pblock;
- if (pb) {
- slapi_pblock_get(pb, SLAPI_CONN_ID, &connid);
- slapi_pblock_get(pb, SLAPI_OPERATION_ID, &opid);
- }
- /* DUMP STAT INFO */
- slapi_log_err(SLAPI_LOG_ACL, plugin_name,
- "**** ACL OPERATION STAT BEGIN ( aclpb:%p Block type: %s): Conn:%" PRIu64 " Operation:%d *******\n",
- aclpb, block_type, connid, opid);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of entries scanned: %d\n",
- aclpb->aclpb_stat_total_entries);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of times ACL List scanned: %d\n",
- aclpb->aclpb_stat_acllist_scanned);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of ACLs with target matched:%d\n",
- aclpb->aclpb_stat_num_tmatched_acls);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of times acl resource matched:%d\n",
- aclpb->aclpb_stat_aclres_matched);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of times ANOM list scanned:%d\n",
- aclpb->aclpb_stat_anom_list_scanned);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of times Context was copied:%d\n",
- aclpb->aclpb_stat_num_copycontext);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, "\tNumber of times Attrs was copied:%d\n",
- aclpb->aclpb_stat_num_copy_attrs);
- slapi_log_err(SLAPI_LOG_ACL, plugin_name, " **** ACL OPERATION STAT END *******\n");
- }
- #endif
- /****************************************************************************/
- /* E N D */
- /****************************************************************************/
|