Files
resiprocate/repro/UserAuthGrabber.cxx

132 lines
5.2 KiB
C++

#include "repro/UserAuthGrabber.hxx"
#include "repro/AbstractDb.hxx"
#include "repro/UserInfoMessage.hxx"
#include "repro/TlsPeerIdentityInfo.hxx"
#include "resip/dum/TlsPeerIdentityInfoMessage.hxx"
#include "resip/dum/UserAuthInfo.hxx"
#include "repro/stateAgents/PresenceSubscriptionHandler.hxx"
#include "rutil/Logger.hxx"
#include "rutil/WinLeakCheck.hxx"
#define RESIPROCATE_SUBSYSTEM resip::Subsystem::REPRO
using namespace repro;
using namespace resip;
UserAuthGrabber::UserAuthGrabber(repro::Store& dataStore) :
mDataStore(dataStore)
{
}
UserAuthGrabber::~UserAuthGrabber()
{
}
bool
UserAuthGrabber::process(resip::ApplicationMessage* msg)
{
repro::UserInfoMessage* uinf = dynamic_cast<UserInfoMessage*>(msg); // auth for repro's DigestAuthenticator
if (uinf)
{
uinf->mRec.passwordHash = mDataStore.mUserStore.getUserAuthInfo(uinf->user(), uinf->realm());
uinf->setMode(resip::UserAuthInfo::RetrievedA1);
DebugLog(<< "Grabbed user info for " << uinf->user() << "@" << uinf->realm() << " : " << uinf->A1());
return true;
}
resip::UserAuthInfo* uainf = dynamic_cast<resip::UserAuthInfo*>(msg); // auth for DUM's ServerAuthManager
if (uainf)
{
uainf->setA1(mDataStore.mUserStore.getUserAuthInfo(uainf->getUser(), uainf->getRealm()));
if (uainf->getA1().empty())
{
uainf->setMode(resip::UserAuthInfo::UserUnknown);
}
DebugLog(<< "Grabbed user info for " << uainf->getUser() << "@" << uainf->getRealm() << " : " << uainf->getA1());
return true;
}
repro::TlsPeerIdentityInfo* tpaInfo = dynamic_cast<repro::TlsPeerIdentityInfo*>(msg);
if (tpaInfo)
{
tpaInfo->authorized() = mDataStore.mTlsPeerIdentityStore.isAuthorized(tpaInfo->peerNames(), tpaInfo->identities());
DebugLog(<< "Looked up authorization for " << tpaInfo << " result = " << tpaInfo->authorized());
return true;
}
resip::TlsPeerIdentityInfoMessage* tpaInfoMessage = dynamic_cast<resip::TlsPeerIdentityInfoMessage*>(msg);
if (tpaInfoMessage)
{
tpaInfoMessage->authorized() = mDataStore.mTlsPeerIdentityStore.isAuthorized(tpaInfoMessage->peerNames(), tpaInfoMessage->identities());
DebugLog(<< "Looked up authorization for " << tpaInfoMessage << " result = " << tpaInfoMessage->authorized());
return true;
}
repro::PresenceUserExists* pue = dynamic_cast<repro::PresenceUserExists*>(msg); // user exists query for Presence server
if (pue)
{
pue->setUserExists(!mDataStore.mUserStore.getUserInfo(UserStore::buildKey(pue->getUser(), pue->getDomain())).user.empty());
DebugLog(<< "Checking existence for " << pue->getUser() << "@" << pue->getDomain() << " : user " << (pue->getUserExists() ? "exists" : "does not exist"));
return true;
}
WarningLog(<< "Did not recognize message type...");
return false;
}
UserAuthGrabber*
UserAuthGrabber::clone() const
{
return new UserAuthGrabber(mDataStore);
}
/* ====================================================================
* The Vovida Software License, Version 1.0
*
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The names "VOCAL", "Vovida Open Communication Application Library",
* and "Vovida Open Communication Application Library (VOCAL)" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact vocal@vovida.org.
*
* 4. Products derived from this software may not be called "VOCAL", nor
* may "VOCAL" appear in their name, without prior written
* permission of Vovida Networks, Inc.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
* ====================================================================
*
* This software consists of voluntary contributions made by Vovida
* Networks, Inc. and many individuals on behalf of Vovida Networks,
* Inc. For more information on Vovida Networks, Inc., please see
* <http://www.vovida.org/>.
*
*/