AuthorizationMechEval.cpp [plain text]
#include "AuthorizationMechEval.h"
#include <security_utilities/logging.h>
#include <bsm/audit_uevents.h>
#include <security_utilities/ccaudit.h>
namespace Authorization {
AgentMechanismRef::AgentMechanismRef(const AuthHostType type, Session &session) :
RefPointer<QueryInvokeMechanism>(new QueryInvokeMechanism(type, session)) {}
AgentMechanismEvaluator::AgentMechanismEvaluator(uid_t uid, Session& session, const vector<string>& inMechanisms) :
mMechanisms(inMechanisms), mClientUid(uid), mSession(session)
{
}
OSStatus
AgentMechanismEvaluator::run(const AuthValueVector &inArguments, const AuthItemSet &inHints, const AuthorizationToken &auth)
{
const AuthItemSet &inContext = const_cast<AuthorizationToken &>(auth).infoSet();
vector<std::string>::const_iterator currentMechanism = mMechanisms.begin();
AuthorizationResult result = kAuthorizationResultAllow;
AuthItemSet hints = inHints;
AuthItemSet context = inContext;
while ( (result == kAuthorizationResultAllow) &&
(currentMechanism != mMechanisms.end()) ) {
ClientMap::iterator iter = mClients.find(*currentMechanism);
if (iter == mClients.end())
{
string::size_type extPlugin = currentMechanism->find(':');
if (extPlugin != string::npos)
{
string pluginIn(currentMechanism->substr(0, extPlugin));
string mechanismIn, authhostIn;
string::size_type extMechanism = currentMechanism->rfind(',');
AuthHostType hostType = securityAgent;
if (extMechanism != string::npos)
{
if (extMechanism < extPlugin)
return errAuthorizationInternal;
mechanismIn = currentMechanism->substr(extPlugin + 1, extMechanism - extPlugin - 1);
authhostIn = currentMechanism->substr(extMechanism + 1);
if (authhostIn == "privileged")
hostType = privilegedAuthHost;
}
else
mechanismIn = currentMechanism->substr(extPlugin + 1);
secdebug("AuthEvalMech", "external mechanism %s:%s", pluginIn.c_str(), mechanismIn.c_str());
AgentMechanismRef client(hostType, mSession);
client->initialize(pluginIn, mechanismIn, inArguments);
mClients.insert(ClientMap::value_type(*currentMechanism, client));
}
else if (*currentMechanism == "authinternal")
{
secdebug("AuthEvalMech", "performing authentication");
result = authinternal(context);
AuthItem *rightItem = hints.find(AGENT_HINT_AUTHORIZE_RIGHT);
string right = (rightItem == NULL) ? string("<unknown right>") : rightItem->stringValue();
CommonCriteria::AuditRecord auditrec(auth.creatorAuditToken());
if (kAuthorizationResultAllow == result)
auditrec.submit(AUE_ssauthint, CommonCriteria::errNone, right.c_str());
else auditrec.submit(AUE_ssauthint, CommonCriteria::errInvalidCredential, right.c_str());
}
else if (*currentMechanism == "push_hints_to_context")
{
secdebug("AuthEvalMech", "evaluate push_hints_to_context");
result = kAuthorizationResultAllow;
context = hints;
}
else
return errAuthorizationInternal;
}
iter = mClients.find(*currentMechanism);
if (iter != mClients.end())
{
try
{
AgentMechanismRef &client = iter->second;
client->run(inArguments, hints, context, &result);
bool interrupted = false;
while (client->state() == client->current)
{
vector<std::string>::const_iterator checkMechanism = mMechanisms.begin();
while (*checkMechanism != *currentMechanism) {
ClientMap::iterator iter2 = mClients.find(*checkMechanism);
if (iter2->second->state() == iter2->second->interrupting)
{
client->deactivate();
while (client->state() == client->deactivating)
client->receive();
secdebug("AuthEvalMech", "evaluate(%s) interrupted by %s.", (iter->first).c_str(), (iter2->first).c_str());
interrupted = true;
hints = iter2->second->inHints();
context = iter2->second->inContext();
currentMechanism = checkMechanism;
break;
}
else
checkMechanism++;
}
if (client->state() == client->current)
client->receive();
}
if (interrupted)
{
uint32_t reason = SecurityAgent::worldChanged;
AuthItemRef retryHint(AGENT_HINT_RETRY_REASON, AuthValueOverlay(sizeof(reason), &reason));
hints.erase(retryHint); hints.insert(retryHint);
result = kAuthorizationResultAllow;
continue;
}
else
secdebug("AuthEvalMech", "evaluate(%s) with result: %lu.", (iter->first).c_str(), result);
}
catch (...) {
secdebug("AuthEvalMech", "exception during evaluate(%s).", (iter->first).c_str());
result = kAuthorizationResultUndefined;
}
}
if (result == kAuthorizationResultAllow)
currentMechanism++;
}
if ((result == kAuthorizationResultUserCanceled) ||
(result == kAuthorizationResultAllow))
{
mHints = hints;
mContext = context;
}
switch(result)
{
case kAuthorizationResultDeny:
return errAuthorizationDenied;
case kAuthorizationResultUserCanceled:
return errAuthorizationCanceled;
case kAuthorizationResultAllow:
return errAuthorizationSuccess;
default:
return errAuthorizationInternal;
}
}
AuthorizationResult AgentMechanismEvaluator::authinternal(AuthItemSet &context)
{
secdebug("AuthEvalMech", "evaluate authinternal");
do {
AuthItemSet::iterator found = find_if(context.begin(), context.end(), FindAuthItemByRightName(kAuthorizationEnvironmentUsername) );
if (found == context.end())
break;
string username(static_cast<const char *>((*found)->value().data), (*found)->value().length);
secdebug("AuthEvalMech", "found username");
found = find_if(context.begin(), context.end(), FindAuthItemByRightName(kAuthorizationEnvironmentPassword) );
if (found == context.end())
break;
string password(static_cast<const char *>((*found)->value().data), (*found)->value().length);
secdebug("AuthEvalMech", "found password");
Server::active().longTermActivity();
Credential newCredential(username, password, true);
if (newCredential->isValid())
{
Syslog::info("authinternal authenticated user %s (uid %lu).", newCredential->username().c_str(), newCredential->uid());
return kAuthorizationResultAllow;
}
Syslog::error("authinternal failed to authenticate user %s.", newCredential->username().c_str());
} while (0);
return kAuthorizationResultDeny;
}
}