| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- /** 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
- /*
- * Source file for the ACL_CacheFlush-related routines.
- */
- #include <prlog.h>
- #include <base/util.h>
- #include <libaccess/acl.h>
- #include "aclpriv.h"
- #include <libaccess/aclproto.h>
- #include <libaccess/aclglobal.h>
- #include <libaccess/las.h>
- #include "aclcache.h"
- extern void ACL_DatabaseDestroy(void);
- PRIntn
- deletelists(PRHashEntry *he, PRIntn i, void *arg)
- {
- ACLListHandle_t *acllist=(ACLListHandle_t *)he->value;
- NSErr_t *errp = 0;
- PR_ASSERT(he);
- PR_ASSERT(he->value);
- if (acllist->ref_count) {
- // If the list is in use, increment the counter. Then set the
- // stale flag. The other user can't delete the list since we're
- // counted as well. Finally, decrement the counter and whoever
- // sets it to zero will delete the ACL List.
- PR_ASSERT(ACL_CritHeld());
- acllist->ref_count++;
- acllist->flags |= ACL_LIST_STALE;
- if (--acllist->ref_count == 0)
- ACL_ListDestroy(errp, acllist);
- } else {
- ACL_ListDestroy(errp, acllist);
- }
- return 0;
- }
- PRIntn
- restartdeletelists(PRHashEntry *he, PRIntn i, void *arg)
- {
- NSErr_t *errp = 0;
- // Cannot be anyone left using the lists, so just free them no matter
- // what.
- ACLListHandle_t *acllist=(ACLListHandle_t *)he->value;
- PR_ASSERT(he);
- PR_ASSERT(he->value);
- ACL_ListDestroy(errp, acllist);
- return 0;
- }
- static AclCacheFlushFunc_t AclCacheFlushRoutine = NULL;
- NSAPI_PUBLIC int
- ACL_CacheFlushRegister(AclCacheFlushFunc_t flush_func)
- {
- PR_ASSERT(flush_func);
- AclCacheFlushRoutine = flush_func;
- return 0;
- }
- NSAPI_PUBLIC int
- ACL_CacheFlush(void)
- {
- ACLGlobal_p newACLGlobal;
- NSErr_t *errp = 0;
- PR_ASSERT(ACLGlobal);
- PR_ASSERT(ACLGlobal->masterlist);
- PR_ASSERT(ACLGlobal->listhash);
- PR_ASSERT(ACLGlobal->urihash);
- PR_ASSERT(ACLGlobal->urigethash);
- PR_ASSERT(ACLGlobal->pool);
- ACL_CritEnter();
- // Swap the pointers. Keep using the current database/method tables
- // until the new ones are built. This is a kludge. An in-progress
- // evaluation could conceivably get messed up, but the window seems
- // small.
- newACLGlobal = oldACLGlobal;
- oldACLGlobal = ACLGlobal;
- ACLGlobal = newACLGlobal;
- // Prepare the new ACLGlobal structure
- ACL_UriHashInit(); /* Also initializes ACLGlobal->pool */
- ACL_ListHashInit();
- ACLGlobal->evalhash = oldACLGlobal->evalhash;
- ACLGlobal->flushhash = oldACLGlobal->flushhash;
- ACLGlobal->methodhash = oldACLGlobal->methodhash;
- ACLGlobal->dbtypehash = oldACLGlobal->dbtypehash;
- ACLGlobal->dbnamehash = oldACLGlobal->dbnamehash;
- ACLGlobal->attrgetterhash = oldACLGlobal->attrgetterhash;
- ACLGlobal->databasepool = oldACLGlobal->databasepool;
- ACLGlobal->methodpool = oldACLGlobal->methodpool;
- // Mark all existing ACL Lists as stale. Delete any unreferenced ones.
- PR_HashTableEnumerateEntries(oldACLGlobal->listhash, deletelists, NULL);
- // Delete the old master list.
- ACL_ListDestroy(errp, oldACLGlobal->masterlist);
- oldACLGlobal->masterlist = NULL;
- PR_HashTableDestroy(oldACLGlobal->listhash);
- oldACLGlobal->listhash = NULL;
- PR_HashTableDestroy(oldACLGlobal->urihash);
- oldACLGlobal->urihash = NULL;
- PR_HashTableDestroy(oldACLGlobal->urigethash);
- oldACLGlobal->urigethash = NULL;
- pool_destroy(oldACLGlobal->pool);
- oldACLGlobal->pool = NULL;
- memset(oldACLGlobal, 0, sizeof(ACLGlobal_s));
- // Read in the ACLs again in lib/frame
- if (AclCacheFlushRoutine) {
- (*AclCacheFlushRoutine)();
- }
- ACL_CritExit();
- return 0;
- }
- NSAPI_PUBLIC void
- ACL_Restart(void *clntData)
- {
- NSErr_t *errp = 0;
- PR_ASSERT(ACLGlobal);
- PR_ASSERT(ACLGlobal->masterlist);
- PR_ASSERT(ACLGlobal->listhash);
- PR_ASSERT(ACLGlobal->urihash);
- PR_ASSERT(ACLGlobal->urigethash);
- PR_ASSERT(ACLGlobal->pool);
- // Unlike ACL_CacheFlush, this routine can be much more cavalier about
- // freeing up memory, since there's guaranteed to be no users about at
- // this time.
- ACL_DatabaseDestroy();
- ACL_MethodSetDefault(errp, ACL_METHOD_INVALID);
- // Mark all existing ACL Lists as stale. Delete any unreferenced ones
- // (i.e. all of them)
- PR_HashTableEnumerateEntries(ACLGlobal->listhash, restartdeletelists, NULL);
- // Delete the master list.
- ACL_ListDestroy(errp, ACLGlobal->masterlist);
- ACL_LasHashDestroy();
- PR_HashTableDestroy(ACLGlobal->listhash);
- PR_HashTableDestroy(ACLGlobal->urihash);
- PR_HashTableDestroy(ACLGlobal->urigethash);
- pool_destroy(ACLGlobal->pool);
- PERM_FREE(ACLGlobal);
- ACLGlobal = NULL;
- PERM_FREE(oldACLGlobal);
- oldACLGlobal = NULL;
- return;
- }
|