AuthorizationRule.cpp [plain text]
#include "AuthorizationRule.h"
#include <Security/AuthorizationTags.h>
#include <Security/AuthorizationTagsPriv.h>
#include <Security/AuthorizationDB.h>
#include <Security/AuthorizationPriv.h>
#include <security_utilities/logging.h>
#include <security_utilities/ccaudit.h>
#include <bsm/audit_uevents.h>
#include "authority.h"
#include "server.h"
#include "process.h"
#include "agentquery.h"
#include "AuthorizationMechEval.h"
#include <pwd.h>
#include <grp.h>
#include <unistd.h>
#include <membership.h>
extern "C" {
#include <membershipPriv.h>
}
namespace Authorization {
CFStringRef RuleImpl::kUserGroupID = CFSTR(kAuthorizationRuleParameterGroup);
CFStringRef RuleImpl::kTimeoutID = CFSTR(kAuthorizationRuleParameterCredentialTimeout);
CFStringRef RuleImpl::kSharedID = CFSTR(kAuthorizationRuleParameterCredentialShared);
CFStringRef RuleImpl::kAllowRootID = CFSTR(kAuthorizationRuleParameterAllowRoot);
CFStringRef RuleImpl::kMechanismsID = CFSTR(kAuthorizationRuleParameterMechanisms);
CFStringRef RuleImpl::kSessionOwnerID = CFSTR(kAuthorizationRuleParameterCredentialSessionOwner);
CFStringRef RuleImpl::kKofNID = CFSTR(kAuthorizationRuleParameterKofN);
CFStringRef RuleImpl::kPromptID = CFSTR(kAuthorizationRuleParameterDefaultPrompt);
CFStringRef RuleImpl::kTriesID = CFSTR("tries");
CFStringRef RuleImpl::kRuleClassID = CFSTR(kAuthorizationRuleClass);
CFStringRef RuleImpl::kRuleAllowID = CFSTR(kAuthorizationRuleClassAllow);
CFStringRef RuleImpl::kRuleDenyID = CFSTR(kAuthorizationRuleClassDeny);
CFStringRef RuleImpl::kRuleUserID = CFSTR(kAuthorizationRuleClassUser);
CFStringRef RuleImpl::kRuleDelegateID = CFSTR(kAuthorizationRightRule);
CFStringRef RuleImpl::kRuleMechanismsID = CFSTR(kAuthorizationRuleClassMechanisms);
CFStringRef RuleImpl::kRuleAuthenticateUserID = CFSTR(kAuthorizationRuleParameterAuthenticateUser);
string
RuleImpl::Attribute::getString(CFDictionaryRef config, CFStringRef key, bool required = false, char *defaultValue = "")
{
CFTypeRef value = CFDictionaryGetValue(config, key);
if (value && (CFGetTypeID(value) == CFStringGetTypeID()))
{
CFStringRef stringValue = reinterpret_cast<CFStringRef>(value);
char buffer[512];
const char *ptr = CFStringGetCStringPtr(stringValue, kCFStringEncodingUTF8);
if (ptr == NULL)
{
if (CFStringGetCString(stringValue, buffer, sizeof(buffer), kCFStringEncodingUTF8))
ptr = buffer;
else
MacOSError::throwMe(errAuthorizationInternal); }
return string(ptr);
}
else
if (!required)
return string(defaultValue);
else
MacOSError::throwMe(errAuthorizationInternal); }
double
RuleImpl::Attribute::getDouble(CFDictionaryRef config, CFStringRef key, bool required = false, double defaultValue = 0.0)
{
double doubleValue = 0;
CFTypeRef value = CFDictionaryGetValue(config, key);
if (value && (CFGetTypeID(value) == CFNumberGetTypeID()))
{
CFNumberGetValue(reinterpret_cast<CFNumberRef>(value), kCFNumberDoubleType, &doubleValue);
}
else
if (!required)
return defaultValue;
else
MacOSError::throwMe(errAuthorizationInternal);
return doubleValue;
}
bool
RuleImpl::Attribute::getBool(CFDictionaryRef config, CFStringRef key, bool required = false, bool defaultValue = false)
{
bool boolValue = false;
CFTypeRef value = CFDictionaryGetValue(config, key);
if (value && (CFGetTypeID(value) == CFBooleanGetTypeID()))
{
boolValue = CFBooleanGetValue(reinterpret_cast<CFBooleanRef>(value));
}
else
if (!required)
return defaultValue;
else
MacOSError::throwMe(errAuthorizationInternal);
return boolValue;
}
vector<string>
RuleImpl::Attribute::getVector(CFDictionaryRef config, CFStringRef key, bool required = false)
{
vector<string> valueArray;
CFTypeRef value = CFDictionaryGetValue(config, key);
if (value && (CFGetTypeID(value) == CFArrayGetTypeID()))
{
CFArrayRef evalArray = reinterpret_cast<CFArrayRef>(value);
for (int index=0; index < CFArrayGetCount(evalArray); index++)
{
CFTypeRef arrayValue = CFArrayGetValueAtIndex(evalArray, index);
if (arrayValue && (CFGetTypeID(arrayValue) == CFStringGetTypeID()))
{
CFStringRef stringValue = reinterpret_cast<CFStringRef>(arrayValue);
char buffer[512];
const char *ptr = CFStringGetCStringPtr(stringValue, kCFStringEncodingUTF8);
if (ptr == NULL)
{
if (CFStringGetCString(stringValue, buffer, sizeof(buffer), kCFStringEncodingUTF8))
ptr = buffer;
else
MacOSError::throwMe(errAuthorizationInternal); }
valueArray.push_back(string(ptr));
}
}
}
else
if (required)
MacOSError::throwMe(errAuthorizationInternal);
return valueArray;
}
bool RuleImpl::Attribute::getLocalizedPrompts(CFDictionaryRef config, map<string,string> &localizedPrompts)
{
CFIndex numberOfPrompts = 0;
CFDictionaryRef promptsDict;
if (CFDictionaryContainsKey(config, kPromptID))
{
promptsDict = reinterpret_cast<CFDictionaryRef>(CFDictionaryGetValue(config, kPromptID));
if (promptsDict && (CFGetTypeID(promptsDict) == CFDictionaryGetTypeID()))
numberOfPrompts = CFDictionaryGetCount(promptsDict);
}
if (numberOfPrompts == 0)
return false;
const void *keys[numberOfPrompts+1];
const void *values[numberOfPrompts+1];
CFDictionaryGetKeysAndValues(promptsDict, &keys[0], &values[0]);
while (numberOfPrompts-- > 0)
{
CFStringRef keyRef = reinterpret_cast<CFStringRef>(keys[numberOfPrompts]);
CFStringRef valueRef = reinterpret_cast<CFStringRef>(values[numberOfPrompts]);
if (!keyRef || (CFGetTypeID(keyRef) != CFStringGetTypeID()))
continue;
if (!valueRef || (CFGetTypeID(valueRef) != CFStringGetTypeID()))
continue;
string key = cfString(keyRef);
string value = cfString(valueRef);
localizedPrompts[kAuthorizationRuleParameterDescription+key] = value;
}
return true;
}
RuleImpl::RuleImpl() :
mType(kUser), mGroupName("admin"), mMaxCredentialAge(300.0), mShared(true), mAllowRoot(false), mSessionOwner(false), mTries(0), mAuthenticateUser(true)
{
}
RuleImpl::RuleImpl(const string &inRightName, CFDictionaryRef cfRight, CFDictionaryRef cfRules) : mRightName(inRightName)
{
if (CFGetTypeID(cfRight) != CFDictionaryGetTypeID())
MacOSError::throwMe(errAuthorizationInternal);
mTries = 0;
string classTag = Attribute::getString(cfRight, kRuleClassID, false, "");
if (classTag.length())
{
if (classTag == kAuthorizationRuleClassAllow)
{
secdebug("authrule", "%s : rule allow", inRightName.c_str());
mType = kAllow;
}
else if (classTag == kAuthorizationRuleClassDeny)
{
secdebug("authrule", "%s : rule deny", inRightName.c_str());
mType = kDeny;
}
else if (classTag == kAuthorizationRuleClassUser)
{
mType = kUser;
mGroupName = Attribute::getString(cfRight, kUserGroupID);
mMaxCredentialAge = Attribute::getDouble(cfRight, kTimeoutID, false, DBL_MAX);
mShared = Attribute::getBool(cfRight, kSharedID);
mAllowRoot = Attribute::getBool(cfRight, kAllowRootID);
mSessionOwner = Attribute::getBool(cfRight, kSessionOwnerID);
mEvalDef = Attribute::getVector(cfRight, kMechanismsID);
if (mEvalDef.size() == 0 && cfRules )
{
CFDictionaryRef cfRuleDef = reinterpret_cast<CFDictionaryRef>(CFDictionaryGetValue(cfRules, CFSTR("authenticate")));
if (cfRuleDef && CFGetTypeID(cfRuleDef) == CFDictionaryGetTypeID())
mEvalDef = Attribute::getVector(cfRuleDef, kMechanismsID);
}
mTries = int(Attribute::getDouble(cfRight, kTriesID, false, 3.0)); mAuthenticateUser = Attribute::getBool(cfRight, kRuleAuthenticateUserID, false, true);
secdebug("authrule", "%s : rule user in group \"%s\" timeout %g%s%s",
inRightName.c_str(),
mGroupName.c_str(), mMaxCredentialAge, mShared ? " shared" : "",
mAllowRoot ? " allow-root" : "");
}
else if (classTag == kAuthorizationRuleClassMechanisms)
{
secdebug("authrule", "%s : rule evaluate mechanisms", inRightName.c_str());
mType = kEvaluateMechanisms;
mEvalDef = Attribute::getVector(cfRight, kMechanismsID, true);
mTries = int(Attribute::getDouble(cfRight, kTriesID, false, 0.0)); mShared = Attribute::getBool(cfRight, kSharedID, false, true);
}
else if (classTag == kAuthorizationRightRule)
{
assert(cfRules); secdebug("authrule", "%s : rule delegate rule", inRightName.c_str());
mType = kRuleDelegation;
string ruleDefString = Attribute::getString(cfRight, kRuleDelegateID, false, "");
if (ruleDefString.length())
{
CFStringRef ruleDefRef = makeCFString(ruleDefString);
CFDictionaryRef cfRuleDef = reinterpret_cast<CFDictionaryRef>(CFDictionaryGetValue(cfRules, ruleDefRef));
if (ruleDefRef)
CFRelease(ruleDefRef);
if (!cfRuleDef || CFGetTypeID(cfRuleDef) != CFDictionaryGetTypeID())
MacOSError::throwMe(errAuthorizationInternal); mRuleDef.push_back(Rule(ruleDefString, cfRuleDef, cfRules));
}
else {
vector<string> ruleDef = Attribute::getVector(cfRight, kRuleDelegateID, true);
for (vector<string>::const_iterator it = ruleDef.begin(); it != ruleDef.end(); it++)
{
CFStringRef ruleNameRef = makeCFString(*it);
CFDictionaryRef cfRuleDef = reinterpret_cast<CFDictionaryRef>(CFDictionaryGetValue(cfRules, ruleNameRef));
if (ruleNameRef)
CFRelease(ruleNameRef);
if (!cfRuleDef || (CFGetTypeID(cfRuleDef) != CFDictionaryGetTypeID()))
MacOSError::throwMe(errAuthorizationInternal); mRuleDef.push_back(Rule(*it, cfRuleDef, cfRules));
}
}
mKofN = int(Attribute::getDouble(cfRight, kKofNID, false, 0.0));
if (mKofN)
mType = kKofN;
}
else
{
secdebug("authrule", "%s : rule class unknown %s.", inRightName.c_str(), classTag.c_str());
MacOSError::throwMe(errAuthorizationInternal); }
}
else
{
mType = kRuleDelegation;
string ruleName = Attribute::getString(cfRight, kRuleDelegateID, true);
secdebug("authrule", "%s : rule delegate rule (1): %s", inRightName.c_str(), ruleName.c_str());
CFStringRef ruleNameRef = makeCFString(ruleName);
CFDictionaryRef cfRuleDef = reinterpret_cast<CFDictionaryRef>(CFDictionaryGetValue(cfRules, ruleNameRef));
if (ruleNameRef)
CFRelease(ruleNameRef);
if (!cfRuleDef || CFGetTypeID(cfRuleDef) != CFDictionaryGetTypeID())
MacOSError::throwMe(errAuthorizationInternal); mRuleDef.push_back(Rule(ruleName, cfRuleDef, cfRules));
}
Attribute::getLocalizedPrompts(cfRight, mLocalizedPrompts);
}
void
RuleImpl::setAgentHints(const AuthItemRef &inRight, const Rule &inTopLevelRule, AuthItemSet &environmentToClient, AuthorizationToken &auth) const
{
string authorizeString(inRight->name());
environmentToClient.erase(AuthItemRef(AGENT_HINT_AUTHORIZE_RIGHT));
environmentToClient.insert(AuthItemRef(AGENT_HINT_AUTHORIZE_RIGHT, AuthValueOverlay(authorizeString)));
pid_t creatorPid = auth.creatorPid();
environmentToClient.erase(AuthItemRef(AGENT_HINT_CREATOR_PID));
environmentToClient.insert(AuthItemRef(AGENT_HINT_CREATOR_PID, AuthValueOverlay(sizeof(pid_t), &creatorPid)));
Process &thisProcess = Server::process();
RefPointer<OSXCode> clientCode = auth.creatorCode();
SecurityAgent::RequestorType requestorType = SecurityAgent::unknown;
string bundlePath;
if (clientCode)
{
string encodedBundle = clientCode->encode();
char bundleType = (encodedBundle.c_str())[0]; switch(bundleType)
{
case 'b': requestorType = SecurityAgent::bundle; break;
case 't': requestorType = SecurityAgent::tool; break;
}
bundlePath = clientCode->canonicalPath();
}
AuthItemSet processHints = SecurityAgent::Client::clientHints(requestorType, bundlePath, thisProcess.pid(), thisProcess.uid());
environmentToClient.erase(AuthItemRef(AGENT_HINT_CLIENT_TYPE));
environmentToClient.erase(AuthItemRef(AGENT_HINT_CLIENT_PATH));
environmentToClient.erase(AuthItemRef(AGENT_HINT_CLIENT_PID));
environmentToClient.erase(AuthItemRef(AGENT_HINT_CLIENT_UID));
environmentToClient.insert(processHints.begin(), processHints.end());
map<string,string> defaultPrompts = inTopLevelRule->localizedPrompts();
if (defaultPrompts.empty())
defaultPrompts = localizedPrompts();
if (!defaultPrompts.empty())
{
map<string,string>::const_iterator it;
for (it = defaultPrompts.begin(); it != defaultPrompts.end(); it++)
{
const string &key = it->first;
const string &value = it->second;
environmentToClient.insert(AuthItemRef(key.c_str(), AuthValueOverlay(value)));
}
}
string ruleName = name();
environmentToClient.erase(AuthItemRef(AGENT_HINT_AUTHORIZE_RULE));
environmentToClient.insert(AuthItemRef(AGENT_HINT_AUTHORIZE_RULE, AuthValueOverlay(ruleName)));
}
OSStatus
RuleImpl::evaluateAuthorization(const AuthItemRef &inRight, const Rule &inRule,
AuthItemSet &environmentToClient,
AuthorizationFlags flags, CFAbsoluteTime now,
const CredentialSet *inCredentials,
CredentialSet &credentials, AuthorizationToken &auth) const
{
OSStatus status = errAuthorizationDenied;
string usernamehint;
evaluateSessionOwner(inRight, inRule, environmentToClient, now, auth, usernamehint);
if (usernamehint.length())
environmentToClient.insert(AuthItemRef(AGENT_HINT_SUGGESTED_USER, AuthValueOverlay(usernamehint)));
if ((mType == kUser) && (mGroupName.length()))
environmentToClient.insert(AuthItemRef(AGENT_HINT_REQUIRE_USER_IN_GROUP, AuthValueOverlay(mGroupName)));
uint32 tries;
SecurityAgent::Reason reason = SecurityAgent::noReason;
Process &cltProc = Server::process();
uid_t cltUid = (cltProc.uid() != 0) ? cltProc.uid() : auth.creatorUid();
secdebug("AuthEvalMech", "Mechanism invocation by process %d (UID %d)", cltProc.pid(), cltUid);
AgentMechanismEvaluator eval(cltUid, auth.session(), mEvalDef);
for (tries = 0; tries < mTries; tries++)
{
AuthItemRef retryHint(AGENT_HINT_RETRY_REASON, AuthValueOverlay(sizeof(reason), &reason));
environmentToClient.erase(retryHint); environmentToClient.insert(retryHint); AuthItemRef triesHint(AGENT_HINT_TRIES, AuthValueOverlay(sizeof(tries), &tries));
environmentToClient.erase(triesHint); environmentToClient.insert(triesHint);
status = eval.run(AuthValueVector(), environmentToClient, auth);
if ((status == errAuthorizationSuccess) ||
(status == errAuthorizationCanceled)) {
secdebug("AuthEvalMech", "storing new context for authorization");
auth.setInfoSet(eval.context());
}
if (status == errAuthorizationSuccess)
{
status = errAuthorizationDenied;
CredentialSet newCredentials = makeCredentials(auth);
auth.scrubInfoSet();
for (CredentialSet::const_iterator it = newCredentials.begin(); it != newCredentials.end(); ++it)
{
const Credential& newCredential = *it;
if (newCredential->isValid())
Syslog::info("uid %lu succeeded authenticating as user %s (uid %lu) for right %s.", auth.creatorUid(), newCredential->username().c_str(), newCredential->uid(), inRight->name());
else
Syslog::error("uid %lu failed to authenticate as user %s for right %s.", auth.creatorUid(), newCredential->username().c_str(), inRight->name());
if (!newCredential->isValid())
{
reason = SecurityAgent::invalidPassphrase; continue;
}
status = evaluateCredentialForRight(auth, inRight, inRule, environmentToClient, now, newCredential, true);
if (status == errAuthorizationSuccess)
{
credentials.erase(newCredential); credentials.insert(newCredential);
auth.setCredentialInfo(newCredential);
secdebug("SSevalMech", "added valid credential for user %s", newCredential->username().c_str());
status = errAuthorizationSuccess;
break;
}
else
reason = SecurityAgent::userNotInGroup; }
if (status == errAuthorizationSuccess)
break;
}
else
if ((status == errAuthorizationCanceled) ||
(status == errAuthorizationInternal))
{
auth.scrubInfoSet();
break;
}
else if (status == errAuthorizationDenied)
reason = SecurityAgent::invalidPassphrase;
}
if (tries == mTries)
{
reason = SecurityAgent::tooManyTries;
AuthItemRef retryHint (AGENT_HINT_RETRY_REASON, AuthValueOverlay(sizeof(reason), &reason));
environmentToClient.erase(retryHint); environmentToClient.insert(retryHint); AuthItemRef triesHint(AGENT_HINT_TRIES, AuthValueOverlay(sizeof(tries), &tries));
environmentToClient.erase(triesHint); environmentToClient.insert(triesHint); eval.run(AuthValueVector(), environmentToClient, auth);
auth.scrubInfoSet();
CommonCriteria::AuditRecord auditrec(auth.creatorAuditToken());
auditrec.submit(AUE_ssauthorize, CommonCriteria::errTooManyTries, inRight->name());
}
return status;
}
CredentialSet
RuleImpl::makeCredentials(const AuthorizationToken &auth) const
{
const AuthItemSet &context = const_cast<AuthorizationToken &>(auth).infoSet();
CredentialSet newCredentials;
do {
AuthItemSet::const_iterator found = find_if(context.begin(), context.end(), FindAuthItemByRightName(kAuthorizationEnvironmentUsername) );
if (found == context.end())
break;
string username = (**found).stringValue();
secdebug("AuthEvalMech", "found username");
const uid_t *uid = NULL;
found = find_if(context.begin(), context.end(), FindAuthItemByRightName("uid") );
if (found != context.end())
{
uid = static_cast<const uid_t *>((**found).value().data);
secdebug("AuthEvalMech", "found uid");
}
const gid_t *gid = NULL;
found = find_if(context.begin(), context.end(), FindAuthItemByRightName("gid") );
if (found != context.end())
{
gid = static_cast<const gid_t *>((**found).value().data);
secdebug("AuthEvalMech", "found gid");
}
if (username.length() && uid && gid)
{
newCredentials.insert(Credential(username, *uid, *gid, mShared));
}
else
{
found = find_if(context.begin(), context.end(), FindAuthItemByRightName(kAuthorizationEnvironmentPassword) );
if (found != context.end())
{
secdebug("AuthEvalMech", "found password");
string password = (**found).stringValue();
secdebug("AuthEvalMech", "falling back on username/password credential if valid");
Server::active().longTermActivity();
Credential newCred(username, password, mShared);
newCredentials.insert(newCred);
CommonCriteria::AuditRecord auditrec(auth.creatorAuditToken());
if (newCred->isValid())
auditrec.submit(AUE_ssauthorize, CommonCriteria::errNone, name().c_str());
else
auditrec.submit(AUE_ssauthorize, CommonCriteria::errInvalidCredential, name().c_str());
}
}
} while(0);
return newCredentials;
}
OSStatus
RuleImpl::evaluateSessionOwner(const AuthItemRef &inRight, const Rule &inRule,
const AuthItemSet &environment,
const CFAbsoluteTime now,
const AuthorizationToken &auth,
string& usernamehint) const
{
OSStatus status = noErr;
uid_t uid;
Session &session = auth.session();
if (session.haveOriginatorUid())
uid = session.originatorUid();
else
uid = auth.creatorUid();
Server::active().longTermActivity();
struct passwd *pw = getpwuid(uid);
if (pw != NULL)
{
if ( (pw->pw_passwd == NULL) ||
strcmp(pw->pw_passwd, "*") ) {
secdebug("AuthEvalMech", "preflight credential from current user, result follows:");
status = evaluateCredentialForRight(auth, inRight, inRule, environment, now, Credential(pw->pw_name, pw->pw_uid, pw->pw_gid, mShared), true);
if (status == errAuthorizationSuccess)
usernamehint = pw->pw_name;
} endpwent();
}
return status;
}
OSStatus
RuleImpl::evaluateCredentialForRight(const AuthorizationToken &auth, const AuthItemRef &inRight, const Rule &inRule, const AuthItemSet &environment, CFAbsoluteTime now, const Credential &credential, bool ignoreShared) const
{
assert(mType == kUser);
const char *user = credential->username().c_str();
if (!credential->isValid())
{
secdebug("autheval", "credential for user %s is invalid, denying right %s", user, inRight->name());
return errAuthorizationDenied;
}
if (now - credential->creationTime() > mMaxCredentialAge)
{
secdebug("autheval", "credential for user %s has expired, denying right %s", user, inRight->name());
return errAuthorizationDenied;
}
if (!ignoreShared && !mShared && credential->isShared())
{
secdebug("autheval", "shared credential for user %s cannot be used, denying right %s", user, inRight->name());
return errAuthorizationDenied;
}
if (credential->uid() == 0)
{
secdebug("autheval", "user %s has uid 0, granting right %s", user, inRight->name());
return errAuthorizationSuccess;
}
if (mSessionOwner)
{
Session &session = auth.session();
if (session.haveOriginatorUid())
{
uid_t console_user = session.originatorUid();
if (credential->uid() == console_user)
{
secdebug("autheval", "user %s is session-owner(uid: %d), granting right %s", user, console_user, inRight->name());
return errAuthorizationSuccess;
}
}
else
secdebug("autheval", "session-owner check failed.");
}
if (mGroupName.length())
{
const char *groupname = mGroupName.c_str();
Server::active().longTermActivity();
if (!groupname)
return errAuthorizationDenied;
do
{
uuid_t group_uuid, user_uuid;
int is_member;
if (mbr_group_name_to_uuid(groupname, group_uuid))
break;
if (mbr_uid_to_uuid(credential->uid(), user_uuid))
break;
if (mbr_check_membership(user_uuid, group_uuid, &is_member))
break;
if (is_member)
{
secdebug("autheval", "user %s is a member of group %s, granting right %s",
user, groupname, inRight->name());
return errAuthorizationSuccess;
}
}
while (0);
secdebug("autheval", "user %s is not a member of group %s, denying right %s",
user, groupname, inRight->name());
}
return errAuthorizationDenied;
}
OSStatus
RuleImpl::evaluateUser(const AuthItemRef &inRight, const Rule &inRule,
AuthItemSet &environmentToClient, AuthorizationFlags flags,
CFAbsoluteTime now, const CredentialSet *inCredentials, CredentialSet &credentials,
AuthorizationToken &auth) const
{
if (mAllowRoot && auth.creatorUid() == 0)
{
secdebug("autheval", "creator of authorization has uid == 0 granting right %s",
inRight->name());
return errAuthorizationSuccess;
}
if (!mAuthenticateUser)
{
string username;
OSStatus status = evaluateSessionOwner(inRight, inRule, environmentToClient, now, auth, username);
if (!status)
return errAuthorizationSuccess;
return errAuthorizationDenied;
}
for (CredentialSet::const_iterator it = credentials.begin(); it != credentials.end(); ++it)
{
OSStatus status = evaluateCredentialForRight(auth, inRight, inRule, environmentToClient, now, *it, true);
if (status != errAuthorizationDenied)
{
auth.setCredentialInfo(*it);
return status;
}
}
if (inCredentials)
{
for (CredentialSet::const_iterator it = inCredentials->begin(); it != inCredentials->end(); ++it)
{
OSStatus status = evaluateCredentialForRight(auth, inRight, inRule, environmentToClient, now, *it, false);
if (status == errAuthorizationSuccess)
{
credentials.erase(*it); credentials.insert(*it);
auth.setCredentialInfo(*it);
return status;
}
else if (status != errAuthorizationDenied)
return status;
}
}
if (!(flags & kAuthorizationFlagExtendRights))
return errAuthorizationDenied;
if ((flags & kAuthorizationFlagPreAuthorize) &&
(mMaxCredentialAge == 0.0))
{
inRight->setFlags(inRight->flags() | kAuthorizationFlagCanNotPreAuthorize);
return errAuthorizationSuccess;
}
if (!(flags & kAuthorizationFlagInteractionAllowed))
return errAuthorizationInteractionNotAllowed;
setAgentHints(inRight, inRule, environmentToClient, auth);
return evaluateAuthorization(inRight, inRule, environmentToClient, flags, now, inCredentials, credentials, auth);
}
OSStatus
RuleImpl::evaluateMechanismOnly(const AuthItemRef &inRight, const Rule &inRule, AuthItemSet &environmentToClient, AuthorizationToken &auth, CredentialSet &outCredentials) const
{
uint32 tries = 0;
OSStatus status;
Process &cltProc = Server::process();
uid_t cltUid = (cltProc.uid() != 0) ? cltProc.uid() : auth.creatorUid();
secdebug("AuthEvalMech", "Mechanism invocation by process %d (UID %d)", cltProc.pid(), cltUid);
{
AgentMechanismEvaluator eval(cltUid, auth.session(), mEvalDef);
do
{
setAgentHints(inRight, inRule, environmentToClient, auth);
AuthItemRef triesHint(AGENT_HINT_TRIES, AuthValueOverlay(sizeof(tries), &tries));
environmentToClient.erase(triesHint); environmentToClient.insert(triesHint);
status = eval.run(AuthValueVector(), environmentToClient, auth);
if ((status == errAuthorizationSuccess) ||
(status == errAuthorizationCanceled)) {
secdebug("AuthEvalMech", "storing new context for authorization");
auth.setInfoSet(eval.context());
if (status == errAuthorizationSuccess)
{
outCredentials = makeCredentials(auth);
}
}
tries++;
}
while ((status == errAuthorizationDenied) && ((mTries == 0) || ((mTries > 0) && (tries < mTries))));
}
if (name() == "system.login.console")
{
QueryInvokeMechanism query(securityAgent, auth.session());
query.terminateAgent();
QueryInvokeMechanism query2(privilegedAuthHost, auth.session());
query2.terminateAgent();
}
return status;
}
OSStatus
RuleImpl::evaluateRules(const AuthItemRef &inRight, const Rule &inRule,
AuthItemSet &environmentToClient, AuthorizationFlags flags,
CFAbsoluteTime now, const CredentialSet *inCredentials, CredentialSet &credentials,
AuthorizationToken &auth) const
{
if (!mRuleDef.size())
return errAuthorizationSuccess;
uint32_t count = 0;
OSStatus status = errAuthorizationSuccess;
vector<Rule>::const_iterator it;
for (it = mRuleDef.begin();it != mRuleDef.end(); it++)
{
if ((mType == kKofN) && (count == mKofN))
return errAuthorizationSuccess;
status = (*it)->evaluate(inRight, inRule, environmentToClient, flags, now, inCredentials, credentials, auth);
if ((status == errAuthorizationCanceled) || (status == errAuthorizationInternal))
return status;
if (status != errAuthorizationSuccess)
{
if (mType == kKofN)
continue;
break;
}
else
count++;
}
return status; }
OSStatus
RuleImpl::evaluate(const AuthItemRef &inRight, const Rule &inRule,
AuthItemSet &environmentToClient, AuthorizationFlags flags,
CFAbsoluteTime now, const CredentialSet *inCredentials, CredentialSet &credentials,
AuthorizationToken &auth) const
{
switch (mType)
{
case kAllow:
secdebug("autheval", "rule is always allow");
return errAuthorizationSuccess;
case kDeny:
secdebug("autheval", "rule is always deny");
return errAuthorizationDenied;
case kUser:
secdebug("autheval", "rule is user");
return evaluateUser(inRight, inRule, environmentToClient, flags, now, inCredentials, credentials, auth);
case kRuleDelegation:
secdebug("autheval", "rule evaluates rules");
return evaluateRules(inRight, inRule, environmentToClient, flags, now, inCredentials, credentials, auth);
case kKofN:
secdebug("autheval", "rule evaluates k-of-n rules");
return evaluateRules(inRight, inRule, environmentToClient, flags, now, inCredentials, credentials, auth);
case kEvaluateMechanisms:
secdebug("autheval", "rule evaluates mechanisms");
return evaluateMechanismOnly(inRight, inRule, environmentToClient, auth, credentials);
default:
MacOSError::throwMe(errAuthorizationInternal); }
}
Rule::Rule() : RefPointer<RuleImpl>(new RuleImpl()) {}
Rule::Rule(const string &inRightName, CFDictionaryRef cfRight, CFDictionaryRef cfRules) : RefPointer<RuleImpl>(new RuleImpl(inRightName, cfRight, cfRules)) {}
}