2 * Copyright (c) 2006-2007,2011,2013 Apple 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@
25 // Code - SecCode API objects
28 #include "StaticCode.h"
29 #include <Security/SecCodeHost.h>
31 #include <security_utilities/cfmunge.h>
32 #include <security_utilities/debugging.h>
33 #include "SecInternalReleasePriv.h"
36 namespace CodeSigning
{
42 SecCode::SecCode(SecCode
*host
)
43 : mHost(host
), mIdentified(false)
45 CODESIGN_DYNAMIC_CREATE(this, host
);
50 // Clean up a SecCode object
52 SecCode::~SecCode() throw()
60 // CF-level comparison of SecStaticCode objects compares CodeDirectory hashes if signed,
61 // and falls back on comparing canonical paths if (both are) not.
63 bool SecCode::equal(SecCFObject
&secOther
)
65 SecCode
*other
= static_cast<SecCode
*>(&secOther
);
66 CFDataRef mine
= this->cdHash();
67 CFDataRef his
= other
->cdHash();
69 return mine
&& his
&& CFEqual(mine
, his
);
71 return this->staticCode()->equal(*other
->staticCode());
74 CFHashCode
SecCode::hash()
76 if (CFDataRef h
= this->cdHash())
79 return this->staticCode()->hash();
84 // Yield the host Code
86 SecCode
*SecCode::host() const
93 // Yield the static code. This is cached.
94 // The caller does not own the object returned; it lives (at least) as long
95 // as the SecCode it was derived from.
97 SecStaticCode
*SecCode::staticCode()
109 // Yield the CodeDirectory hash as presented by our host.
110 // This usually is the same as the hash of staticCode().codeDirectory(), but might not
111 // if files are changing on disk while code is running.
113 CFDataRef
SecCode::cdHash()
119 return mCDHash
; // can be NULL (host has no dynamic identity for guest)
124 // Retrieve current dynamic status.
126 SecCodeStatus
SecCode::status()
129 return kSecCodeStatusValid
; // root of trust, presumed valid
131 return this->host()->getGuestStatus(this);
134 void SecCode::status(SecCodeStatusOperation operation
, CFDictionaryRef arguments
)
137 MacOSError::throwMe(errSecCSHostProtocolStateError
);
139 this->host()->changeGuestStatus(this, operation
, arguments
);
144 // By default, we have no guests
146 SecCode
*SecCode::locateGuest(CFDictionaryRef
)
153 // By default, we self-identify by asking our host to identify us.
154 // (This is currently only overridden in the root-of-trust (kernel) implementation.)
156 void SecCode::identify()
158 mStaticCode
.take(host()->identifyGuest(this, &mCDHash
.aref()));
163 // The default implementation cannot map guests to disk
165 SecStaticCode
*SecCode::identifyGuest(SecCode
*, CFDataRef
*)
167 MacOSError::throwMe(errSecCSNoSuchCode
);
172 // Master validation function.
174 // This is the most important function in all of Code Signing. It performs
175 // dynamic validation on running code. Despite its simple structure, it does
176 // everything that's needed to establish whether a Code is currently valid...
177 // with a little help from StaticCode, format drivers, type drivers, and so on.
179 // This function validates internal requirements in the hosting chain. It does
180 // not validate external requirements - the caller needs to do that with a separate call.
182 void SecCode::checkValidity(SecCSFlags flags
)
184 if (this->isRoot()) {
185 // the root-of-trust is valid by definition
186 CODESIGN_EVAL_DYNAMIC_ROOT(this);
189 DTRACK(CODESIGN_EVAL_DYNAMIC
, this, (char*)this->staticCode()->mainExecutablePath().c_str());
192 // Do not reorder the operations below without thorough cogitation. There are
193 // interesting dependencies and significant performance issues. There is also
194 // client code that relies on errors being noticed in a particular order.
196 // For the most part, failure of (reliable) identity will cause exceptions to be
197 // thrown, and success is indicated by survival. If you make it to the end,
198 // you have won the validity race. (Good rat.)
201 // check my host first, recursively
202 this->host()->checkValidity(flags
);
204 SecStaticCode
*myDisk
= this->staticCode();
205 myDisk
->setValidationFlags(flags
);
206 SecStaticCode
*hostDisk
= this->host()->staticCode();
208 // check my static state
209 myDisk
->validateNonResourceComponents(); // also validates the CodeDirectory
210 if (flags
& kSecCSStrictValidate
)
211 myDisk
->diskRep()->strictValidate(myDisk
->codeDirectory(), DiskRep::ToleratedErrors(), flags
);
213 // check my own dynamic state
214 SecCodeStatus dynamic_status
= this->host()->getGuestStatus(this);
215 bool isValid
= (dynamic_status
& kSecCodeStatusValid
) != 0;
217 bool isDebugged
= (dynamic_status
& kSecCodeStatusDebugged
) != 0;
218 bool isPlatform
= (dynamic_status
& kSecCodeStatusPlatform
) != 0;
219 bool isInternal
= SecIsInternalRelease();
221 if (!isDebugged
|| (isPlatform
&& !isInternal
)) {
222 // fatal if the code is invalid and not being debugged, but
223 // never let platform code be debugged except on internal systems.
224 MacOSError::throwMe(errSecCSGuestInvalid
);
228 // check that static and dynamic views are consistent
229 if (this->cdHash() && !CFEqual(this->cdHash(), myDisk
->cdHash()))
230 MacOSError::throwMe(errSecCSStaticCodeChanged
);
232 // check host/guest constraints
233 if (!this->host()->isRoot()) { // not hosted by root of trust
234 myDisk
->validateRequirements(kSecHostRequirementType
, hostDisk
, errSecCSHostReject
);
235 hostDisk
->validateRequirements(kSecGuestRequirementType
, myDisk
);
241 // By default, we track no validity for guests (we don't have any)
243 uint32_t SecCode::getGuestStatus(SecCode
*guest
)
245 MacOSError::throwMe(errSecCSNoSuchCode
);
248 void SecCode::changeGuestStatus(SecCode
*guest
, SecCodeStatusOperation operation
, CFDictionaryRef arguments
)
250 MacOSError::throwMe(errSecCSNoSuchCode
);
255 // Given a bag of attribute values, automagically come up with a SecCode
256 // without any other information.
257 // This is meant to be the "just do what makes sense" generic call, for callers
258 // who don't want to engage in the fascinating dance of manual guest enumeration.
260 // Note that we expect the logic embedded here to change over time (in backward
261 // compatible fashion, one hopes), and that it's all right to use heuristics here
262 // as long as it's done sensibly.
264 // Be warned that the present logic is quite a bit ad-hoc, and will likely not
265 // handle arbitrary combinations of proxy hosting, dynamic hosting, and dedicated
266 // hosting all that well.
268 SecCode
*SecCode::autoLocateGuest(CFDictionaryRef attributes
, SecCSFlags flags
)
271 // special case: with no attributes at all, return the root of trust
272 if (CFDictionaryGetCount(attributes
) == 0)
273 return KernelCode::active()->retain();
275 // main logic: we need a pid or audit trailer; everything else goes to the guests
276 if (CFDictionaryGetValue(attributes
, kSecGuestAttributePid
) == NULL
277 && CFDictionaryGetValue(attributes
, kSecGuestAttributeAudit
) == NULL
)
278 CSError::throwMe(errSecCSUnsupportedGuestAttributes
, kSecCFErrorGuestAttributes
, attributes
);
279 if (SecCode
*process
=
280 KernelCode::active()->locateGuest(attributes
)) {
281 SecPointer
<SecCode
> code
;
282 code
.take(process
); // locateGuest gave us a retained object
283 if (code
->staticCode()->flag(kSecCodeSignatureHost
)) {
284 // might be a code host. Let's find out
285 CFRef
<CFMutableDictionaryRef
> rest
= makeCFMutableDictionary(attributes
);
286 CFDictionaryRemoveValue(rest
, kSecGuestAttributePid
);
287 CFDictionaryRemoveValue(rest
, kSecGuestAttributeAudit
);
288 if (SecCode
*guest
= code
->locateGuest(rest
))
291 if (!CFDictionaryGetValue(attributes
, kSecGuestAttributeCanonical
)) {
292 // only "soft" attributes, and no hosting is happening. Return the (non-)host itself
296 #endif // TARGET_OS_OSX
297 MacOSError::throwMe(errSecCSNoSuchCode
);
301 } // end namespace CodeSigning
302 } // end namespace Security