1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
|
/**
* Licensed to the University Corporation for Advanced Internet
* Development, Inc. (UCAID) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* UCAID licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
/**
* AbstractDynamicMetadataProvider.cpp
*
* Simple base implementation of a dynamic caching MetadataProvider.
*/
#include "internal.h"
#include <binding/SAMLArtifact.h>
#include <saml2/metadata/Metadata.h>
#include <saml2/metadata/AbstractDynamicMetadataProvider.h>
#include <xercesc/framework/Wrapper4InputSource.hpp>
#include <xmltooling/logging.h>
#include <xmltooling/XMLToolingConfig.h>
#include <xmltooling/util/NDC.h>
#include <xmltooling/util/Threads.h>
#include <xmltooling/util/XMLHelper.h>
#include <xmltooling/util/ParserPool.h>
#include <xmltooling/validation/ValidatorSuite.h>
#include <xmltooling/security/SecurityHelper.h>
#if defined(XMLTOOLING_LOG4SHIB)
# include <log4shib/NDC.hh>
#elif defined(XMLTOOLING_LOG4CPP)
# include <log4cpp/NDC.hh>
#endif
using namespace opensaml::saml2md;
using namespace xmltooling::logging;
using namespace xmltooling;
using namespace std;
using boost::scoped_ptr;
#include <limits>
# ifndef min
# define min(a,b) (((a) < (b)) ? (a) : (b))
# endif
# ifdef max
# undef max
# endif
static const XMLCh id[] = UNICODE_LITERAL_2(i,d);
static const XMLCh cleanupInterval[] = UNICODE_LITERAL_15(c,l,e,a,n,u,p,I,n,t,e,r,v,a,l);
static const XMLCh cleanupTimeout[] = UNICODE_LITERAL_14(c,l,e,a,n,u,p,T,i,m,e,o,u,t);
static const XMLCh negativeCache[] = UNICODE_LITERAL_13(n,e,g,a,t,i,v,e,C,a,c,h,e);
static const XMLCh maxCacheDuration[] = UNICODE_LITERAL_16(m,a,x,C,a,c,h,e,D,u,r,a,t,i,o,n);
static const XMLCh minCacheDuration[] = UNICODE_LITERAL_16(m,i,n,C,a,c,h,e,D,u,r,a,t,i,o,n);
static const XMLCh refreshDelayFactor[] = UNICODE_LITERAL_18(r,e,f,r,e,s,h,D,e,l,a,y,F,a,c,t,o,r);
static const XMLCh validate[] = UNICODE_LITERAL_8(v,a,l,i,d,a,t,e);
AbstractDynamicMetadataProvider::AbstractDynamicMetadataProvider(bool defaultNegativeCache, const DOMElement* e, bool deprecationSupport)
: MetadataProvider(e, deprecationSupport), AbstractMetadataProvider(e, deprecationSupport),
m_validate(XMLHelper::getAttrBool(e, false, validate)),
m_id(XMLHelper::getAttrString(e, "Dynamic", id)),
m_lock(RWLock::create()),
m_refreshDelayFactor(0.75),
m_minCacheDuration(XMLHelper::getAttrInt(e, 600, minCacheDuration)),
m_maxCacheDuration(XMLHelper::getAttrInt(e, 28800, maxCacheDuration)),
m_negativeCache(XMLHelper::getAttrBool(e, defaultNegativeCache, negativeCache)),
m_shutdown(false),
m_cleanupInterval(XMLHelper::getAttrInt(e, 1800, cleanupInterval)),
m_cleanupTimeout(XMLHelper::getAttrInt(e, 1800, cleanupTimeout))
{
if (m_minCacheDuration < 30) {
Category::getInstance(SAML_LOGCAT ".MetadataProvider.Dynamic").warn(
"minCacheDuration setting must be at least 30 seconds, raising to 30"
);
m_minCacheDuration = 30;
}
if (m_maxCacheDuration < m_minCacheDuration) {
Category::getInstance(SAML_LOGCAT ".MetadataProvider.Dynamic").warn(
"maxCacheDuration setting is less than minCacheDuration setting, raising to match it"
);
m_maxCacheDuration = m_minCacheDuration;
}
const XMLCh* delay = e ? e->getAttributeNS(nullptr, refreshDelayFactor) : nullptr;
if (delay && *delay) {
auto_ptr_char temp(delay);
m_refreshDelayFactor = atof(temp.get());
if (m_refreshDelayFactor <= 0.0 || m_refreshDelayFactor >= 1.0) {
Category::getInstance(SAML_LOGCAT ".MetadataProvider.Dynamic").warn(
"invalid refreshDelayFactor setting, using default"
);
m_refreshDelayFactor = 0.75;
}
}
if (m_cleanupInterval > 0) {
if (m_cleanupTimeout < 0)
m_cleanupTimeout = 0;
m_cleanup_wait.reset(CondWait::create());
m_cleanup_thread.reset(Thread::create(&cleanup_fn, this));
}
}
AbstractDynamicMetadataProvider::~AbstractDynamicMetadataProvider()
{
// Each entity in the map is unique (no multimap semantics), so this is safe.
clearDescriptorIndex(true);
if (m_cleanup_thread) {
// Shut down the cleanup thread and let it know.
m_shutdown = true;
m_cleanup_wait->signal();
m_cleanup_thread->join(nullptr);
}
}
void* AbstractDynamicMetadataProvider::cleanup_fn(void* pv)
{
AbstractDynamicMetadataProvider* provider = reinterpret_cast<AbstractDynamicMetadataProvider*>(pv);
#ifndef WIN32
// First, let's block all signals
Thread::mask_all_signals();
#endif
if (!provider->m_id.empty()) {
string threadid("[");
threadid += provider->m_id + ']';
logging::NDC::push(threadid);
}
#ifdef _DEBUG
xmltooling::NDC ndc("cleanup");
#endif
scoped_ptr<Mutex> mutex(Mutex::create());
mutex->lock();
Category& log = Category::getInstance(SAML_LOGCAT ".MetadataProvider.Dynamic");
log.info("cleanup thread started...running every %d seconds", provider->m_cleanupInterval);
while (!provider->m_shutdown) {
provider->m_cleanup_wait->timedwait(mutex.get(), provider->m_cleanupInterval);
if (provider->m_shutdown)
break;
log.info("cleaning dynamic metadata cache...");
// Get a write lock.
provider->m_lock->wrlock();
SharedLock locker(provider->m_lock, false);
time_t now = time(nullptr);
// Dual iterator loop so we can remove entries while walking the map.
for (cachemap_t::iterator i = provider->m_cacheMap.begin(), i2 = i; i != provider->m_cacheMap.end(); i = i2) {
++i2;
if (now > i->second.first + provider->m_cleanupTimeout) {
if (log.isDebugEnabled()) {
auto_ptr_char id(i->first.c_str());
log.debug("removing cache entry for (%s)", id.get());
}
provider->unindex(i->first.c_str(), true);
provider->m_cacheMap.erase(i);
}
}
}
log.info("cleanup thread finished");
mutex->unlock();
if (!provider->m_id.empty()) {
logging::NDC::pop();
}
return nullptr;
}
const XMLObject* AbstractDynamicMetadataProvider::getMetadata() const
{
throw MetadataException("getMetadata operation not implemented on this provider.");
}
Lockable* AbstractDynamicMetadataProvider::lock()
{
m_lock->rdlock();
return this;
}
void AbstractDynamicMetadataProvider::unlock()
{
m_lock->unlock();
}
const char* AbstractDynamicMetadataProvider::getId() const
{
return m_id.c_str();
}
pair<const EntityDescriptor*,const RoleDescriptor*> AbstractDynamicMetadataProvider::getEntityDescriptor(const Criteria& criteria) const
{
Category& log = Category::getInstance(SAML_LOGCAT ".MetadataProvider.Dynamic");
bool writeLocked = false;
// First we check the underlying cache.
pair<const EntityDescriptor*,const RoleDescriptor*> entity = AbstractMetadataProvider::getEntityDescriptor(criteria);
// Check to see if we're within the caching interval for a lookup of this entity.
// This applies *even if we didn't get a hit* because the cache map tracks failed
// lookups also, to prevent constant reload attempts.
cachemap_t::iterator cit;
if (entity.first) {
cit = m_cacheMap.find(entity.first->getEntityID());
}
else if (criteria.entityID_ascii) {
auto_ptr_XMLCh widetemp(criteria.entityID_ascii);
cit = m_cacheMap.find(widetemp.get());
}
else if (criteria.entityID_unicode) {
cit = m_cacheMap.find(criteria.entityID_unicode);
}
else if (criteria.artifact) {
auto_ptr_XMLCh widetemp(criteria.artifact->getSource().c_str());
cit = m_cacheMap.find(widetemp.get());
}
else {
cit = m_cacheMap.end();
}
if (cit != m_cacheMap.end()) {
if (time(nullptr) <= cit->second.first)
return entity;
}
string name;
if (criteria.entityID_ascii) {
name = criteria.entityID_ascii;
}
else if (criteria.entityID_unicode) {
auto_ptr_char temp(criteria.entityID_unicode);
name = temp.get();
}
else if (criteria.artifact) {
name = criteria.artifact->getSource();
}
else {
return entity;
}
if (entity.first)
log.info("metadata for (%s) is beyond caching interval, attempting to refresh", name.c_str());
else
log.info("resolving metadata for (%s)", name.c_str());
string cacheTag(cit != m_cacheMap.end() ? cit->second.second : "");
try {
// Try resolving it.
auto_ptr<EntityDescriptor> entity2(resolve(criteria, cacheTag));
// A null here means we probably already have metadata in place and should reuse it.
// If we don't, then that means we did at one time, but it's now invalid (but nothing
// newer is apparently available).
if (!entity2.get()) {
if (entity.first) {
log.info("metadata for (%s) is unchanged, resetting next refresh time", name.c_str());
time_t now = time(nullptr);
time_t cacheExp = computeNextRefresh(*entity.first, now);
xstring key(entity.first->getEntityID());
pair<time_t,string> oldValues = cit != m_cacheMap.end() ? cit->second : pair<time_t,string>(0, string());
// Elevate to write lock.
m_lock->unlock();
m_lock->wrlock();
writeLocked = true;
// Update cache map if nothing got in behind us.
cit = m_cacheMap.find(key);
if (cit != m_cacheMap.end() && cit->second == oldValues) {
cit->second.first = now + cacheExp;
}
// Downgrade back to a read lock.
m_lock->unlock();
m_lock->rdlock();
// Rinse and repeat.
return getEntityDescriptor(criteria);
}
throw MetadataException("No updated metadata available to refresh invalid instance.");
}
// Verify the entityID.
if (criteria.entityID_unicode && !XMLString::equals(criteria.entityID_unicode, entity2->getEntityID())) {
throw MetadataException("Metadata instance did not match expected entityID.");
}
else if (criteria.artifact) {
auto_ptr_char temp2(entity2->getEntityID());
const string hashed(SecurityHelper::doHash("SHA1", temp2.get(), strlen(temp2.get()), true));
if (hashed != name)
throw MetadataException("Metadata instance did not match expected entityID.");
}
else {
auto_ptr_XMLCh temp2(name.c_str());
if (!XMLString::equals(temp2.get(), entity2->getEntityID()))
throw MetadataException("Metadata instance did not match expected entityID.");
}
// Preprocess the metadata (even if we schema-validated).
try {
SchemaValidators.validate(entity2.get());
}
catch (const exception& ex) {
log.error("metadata instance failed manual validation checking: %s", ex.what());
throw MetadataException("Metadata instance failed manual validation checking.");
}
// Filter it, which may throw.
doFilters(nullptr, *entity2);
time_t now = time(nullptr);
time_t cmp = now;
if (cmp < (std::numeric_limits<int>::max() - 60))
cmp += 60;
if (entity2->getValidUntil() && entity2->getValidUntilEpoch() < cmp)
throw MetadataException("Metadata was already invalid at the time of retrieval.");
log.info("caching resolved metadata for (%s)", name.c_str());
// Upgrade our lock so we can cache the new metadata.
m_lock->unlock();
m_lock->wrlock();
writeLocked = true;
// Notify observers.
emitChangeEvent(*entity2);
time_t cacheExp = cacheEntity(entity2.get(), cacheTag, true);
entity2.release();
log.info("next refresh of metadata for (%s) no sooner than %lu seconds", name.c_str(), cacheExp);
m_lastUpdate = now;
}
catch (const exception& e) {
log.error("error while resolving (%s): %s", name.c_str(), e.what());
if (m_negativeCache) {
// This will return entries that are beyond their cache period,
// but not beyond their validity unless that criteria option was set.
// Bump the cache period to prevent retries, making sure we have a write lock.
if (!writeLocked) {
m_lock->unlock();
m_lock->wrlock();
writeLocked = true;
}
if (criteria.entityID_unicode) {
m_cacheMap[criteria.entityID_unicode] = make_pair(time(nullptr) + m_minCacheDuration, cacheTag);
}
else {
auto_ptr_XMLCh widetemp(name.c_str());
m_cacheMap[widetemp.get()] = make_pair(time(nullptr) + m_minCacheDuration, cacheTag);
}
log.warn("next refresh of metadata for (%s) no sooner than %lu seconds", name.c_str(), m_minCacheDuration);
}
else {
// With no negative caching, we can viably return the search result directly
// because we don't open a lock window that could invalidate the objects.
return entity;
}
}
// Downgrade back to a read lock.
if (writeLocked) {
m_lock->unlock();
m_lock->rdlock();
}
// Rinse and repeat.
return getEntityDescriptor(criteria);
}
time_t AbstractDynamicMetadataProvider::cacheEntity(EntityDescriptor* entity, const string& cacheTag, bool writeLocked) const
{
if (!writeLocked) {
m_lock->wrlock();
}
Locker locker(writeLocked ? nullptr : const_cast<AbstractDynamicMetadataProvider*>(this), false);
time_t now = time(nullptr);
time_t cacheExp = computeNextRefresh(*entity, now);
// Record the proper refresh time and cache tag.
m_cacheMap[entity->getEntityID()] = make_pair(now + cacheExp, cacheTag);
// Make sure we clear out any existing copies, including stale metadata or if somebody snuck in.
unindex(entity->getEntityID(), true); // actually frees the old instance with this ID
time_t exp(SAMLTIME_MAX);
indexEntity(entity, exp);
return cacheExp;
}
time_t AbstractDynamicMetadataProvider::computeNextRefresh(const EntityDescriptor& entity, time_t currentTime) const
{
// Compute the smaller of the validUntil / cacheDuration constraints.
time_t cacheExp = (entity.getValidUntil() ? entity.getValidUntilEpoch() : SAMLTIME_MAX) - currentTime;
if (entity.getCacheDuration())
cacheExp = min(cacheExp, entity.getCacheDurationEpoch());
// Adjust for the delay factor.
cacheExp *= m_refreshDelayFactor;
// Bound by max and min.
if (cacheExp > m_maxCacheDuration)
cacheExp = m_maxCacheDuration;
else if (cacheExp < m_minCacheDuration)
cacheExp = m_minCacheDuration;
return cacheExp;
}
EntityDescriptor* AbstractDynamicMetadataProvider::entityFromStream(istream &stream) const
{
DOMDocument* doc=nullptr;
StreamInputSource src(stream, "DynamicMetadataProvider");
Wrapper4InputSource dsrc(&src, false);
if (m_validate)
doc=XMLToolingConfig::getConfig().getValidatingParser().parse(dsrc);
else
doc=XMLToolingConfig::getConfig().getParser().parse(dsrc);
// Wrap the document for now.
XercesJanitor<DOMDocument> docjanitor(doc);
// Check root element.
if (!doc->getDocumentElement() || !XMLHelper::isNodeNamed(doc->getDocumentElement(),
samlconstants::SAML20MD_NS, EntityDescriptor::LOCAL_NAME)) {
throw MetadataException("Root of metadata instance was not an EntityDescriptor");
}
// Unmarshall objects, binding the document.
auto_ptr<XMLObject> xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true));
docjanitor.release();
// Make sure it's metadata.
EntityDescriptor* entity = dynamic_cast<EntityDescriptor*>(xmlObject.get());
if (!entity) {
throw MetadataException(
"Root of metadata instance not recognized: $1", params(1, xmlObject->getElementQName().toString().c_str())
);
}
xmlObject.release();
return entity;
}
|