2 * Copyright (c) 2000-2004 Apple Computer, Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
26 // authority - authorization manager
31 #include <security_utilities/osxcode.h>
32 #include <security_utilities/ccaudit.h>
34 #include "credential.h"
35 #include <security_cdsa_utilities/AuthorizationData.h>
37 using Authorization::AuthItemSet
;
38 using Authorization::Credential
;
39 using Authorization::CredentialSet
;
40 using Security::CommonCriteria::AuditToken
;
45 class AuthorizationToken
: public PerSession
{
47 AuthorizationToken(Session
&ssn
, const CredentialSet
&base
, const audit_token_t
&auditToken
, bool operateAsLeastPrivileged
= false);
48 ~AuthorizationToken();
50 Session
&session() const;
52 const AuthorizationBlob
&handle() const { return mHandle
; }
53 const CredentialSet
&baseCreds() const { return mBaseCreds
; }
54 CredentialSet
effectiveCreds() const;
56 typedef CredentialSet::iterator iterator
;
57 iterator
begin() { return mBaseCreds
.begin(); }
58 iterator
end() { return mBaseCreds
.end(); }
60 // add more credential dependencies
61 void mergeCredentials(const CredentialSet
&more
);
63 // maintain process-owning links
64 void addProcess(Process
&proc
);
65 bool endProcess(Process
&proc
);
67 // access control for external representations
68 bool mayExternalize(Process
&proc
) const;
69 bool mayInternalize(Process
&proc
, bool countIt
= true);
71 uid_t
creatorUid() const { return mCreatorUid
; }
72 gid_t
creatorGid() const { return mCreatorGid
; }
73 SecStaticCodeRef
creatorCode() const { return mCreatorCode
; }
74 pid_t
creatorPid() const { return mCreatorPid
; }
75 bool creatorSandboxed() const { return mCreatorSandboxed
; }
77 const AuditToken
&creatorAuditToken() const { return mCreatorAuditToken
; }
79 AuthItemSet
infoSet(AuthorizationString tag
= NULL
);
80 void setInfoSet(AuthItemSet
&newInfoSet
, bool savePassword
);
81 void setCredentialInfo(const Credential
&inCred
, bool savePassword
);
83 void scrubInfoSet(bool savePassword
);
84 bool operatesAsLeastPrivileged() const { return mOperatesAsLeastPrivileged
; }
87 static AuthorizationToken
&find(const AuthorizationBlob
&blob
);
91 Deleter(const AuthorizationBlob
&blob
);
94 operator AuthorizationToken
&() const { return *mAuth
; }
97 AuthorizationToken
*mAuth
;
102 Mutex mLock
; // object lock
103 AuthorizationBlob mHandle
; // official randomized blob marker
104 CredentialSet mBaseCreds
; // credentials we're based on
106 unsigned int mTransferCount
; // number of internalizations remaining
108 typedef set
<Process
*> ProcessSet
;
109 ProcessSet mUsingProcesses
; // set of process objects using this token
111 uid_t mCreatorUid
; // Uid of process that created this authorization
112 gid_t mCreatorGid
; // Gid of process that created this authorization
113 CFCopyRef
<SecStaticCodeRef
> mCreatorCode
; // code reference to creator
114 pid_t mCreatorPid
; // Pid of processs that created this authorization
115 bool mCreatorSandboxed
; // A record of whether or not the creator was Sandboxed
117 AuditToken mCreatorAuditToken
; // Audit token of the process that created this authorization
119 AuthItemSet mInfoSet
; // Side band info gathered from evaluations in this session
121 bool mOperatesAsLeastPrivileged
;
123 AuthItemSet mSavedPassword
;
126 typedef map
<AuthorizationBlob
, RefPointer
<AuthorizationToken
> > AuthMap
;
127 static AuthMap
&authMap
; // set of extant authorizations
128 static Mutex authMapLock
; // lock for mAuthorizations (only)
131 #endif //_H_AUTHORITY