2 * Copyright (c) 2006 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@
25 // reqinterp - Requirement language (exprOp) interpreter
27 #include "reqinterp.h"
28 #include <Security/SecTrustSettingsPriv.h>
29 #include <Security/SecCertificatePriv.h>
30 #include <security_utilities/memutils.h>
31 #include "csutilities.h"
34 namespace CodeSigning
{
37 static CFStringRef appleIntermediateCN
= CFSTR("Apple Code Signing Certification Authority");
38 static CFStringRef appleIntermediateO
= CFSTR("Apple Inc.");
42 // Construct an interpreter given a Requirement and an evaluation context.
44 Requirement::Interpreter::Interpreter(const Requirement
*req
, const Context
*ctx
)
45 : Reader(req
), mContext(ctx
)
51 // Main interpreter function.
53 // ExprOp code is in Polish Notation (operator followed by operands),
54 // and this engine uses opportunistic evaluation.
56 bool Requirement::Interpreter::evaluate()
58 ExprOp op
= ExprOp(get
<uint32_t>());
59 switch (op
& ~opFlagMask
) {
65 return getString() == mContext
->directory
->identifier();
68 case opAppleGenericAnchor
:
69 return appleAnchored();
72 SecCertificateRef cert
= mContext
->cert(get
<int32_t>());
73 return verifyAnchor(cert
, getSHA1());
75 case opInfoKeyValue
: // [legacy; use opInfoKeyField]
77 string key
= getString();
78 return infoKeyValue(key
, Match(CFTempString(getString()), matchEqual
));
81 return evaluate() & evaluate();
83 return evaluate() | evaluate();
87 hash(mContext
->directory
, mContext
->directory
->length());
88 return hash
.verify(getHash());
94 string key
= getString();
96 return infoKeyValue(key
, match
);
98 case opEntitlementField
:
100 string key
= getString();
102 return entitlementValue(key
, match
);
106 SecCertificateRef cert
= mContext
->cert(get
<int32_t>());
107 string key
= getString();
109 return certFieldValue(key
, match
, cert
);
113 SecCertificateRef cert
= mContext
->cert(get
<int32_t>());
114 string key
= getString();
116 return certFieldGeneric(key
, match
, cert
);
119 return trustedCert(get
<int32_t>());
121 return trustedCerts();
123 // opcode not recognized - handle generically if possible, fail otherwise
124 if (op
& (opGenericFalse
| opGenericSkip
)) {
125 // unknown opcode, but it has a size field and can be safely bypassed
126 skip(get
<uint32_t>());
127 if (op
& opGenericFalse
) {
128 secdebug("csinterp", "opcode 0x%x interpreted as false", op
);
131 secdebug("csinterp", "opcode 0x%x ignored; continuing", op
);
135 // unrecognized opcode and no way to interpret it
136 secdebug("csinterp", "opcode 0x%x cannot be handled; aborting", op
);
137 MacOSError::throwMe(errSecCSUnimplemented
);
143 // Evaluate an Info.plist key condition
145 bool Requirement::Interpreter::infoKeyValue(const string
&key
, const Match
&match
)
147 if (mContext
->info
) // we have an Info.plist
148 if (CFTypeRef value
= CFDictionaryGetValue(mContext
->info
, CFTempString(key
)))
155 // Evaluate an entitlement condition
157 bool Requirement::Interpreter::entitlementValue(const string
&key
, const Match
&match
)
159 if (mContext
->entitlements
) // we have an Info.plist
160 if (CFTypeRef value
= CFDictionaryGetValue(mContext
->entitlements
, CFTempString(key
)))
166 bool Requirement::Interpreter::certFieldValue(const string
&key
, const Match
&match
, SecCertificateRef cert
)
168 // no cert, no chance
172 // a table of recognized keys for the "certificate[foo]" syntax
173 static const struct CertField
{
177 { "subject.C", &CSSMOID_CountryName
},
178 { "subject.CN", &CSSMOID_CommonName
},
179 { "subject.D", &CSSMOID_Description
},
180 { "subject.L", &CSSMOID_LocalityName
},
181 { "subject.O", &CSSMOID_OrganizationName
},
182 { "subject.OU", &CSSMOID_OrganizationalUnitName
},
183 { "subject.ST", &CSSMOID_StateProvinceName
},
184 { "subject.STREET", &CSSMOID_StreetAddress
},
188 // DN-component single-value match
189 for (const CertField
*cf
= certFields
; cf
->name
; cf
++)
190 if (cf
->name
== key
) {
191 CFRef
<CFStringRef
> value
;
192 if (IFDEBUG(OSStatus rc
=) SecCertificateCopySubjectComponent(cert
, cf
->oid
, &value
.aref())) {
193 secdebug("csinterp", "cert %p lookup for DN.%s failed rc=%ld", cert
, key
.c_str(), rc
);
199 // email multi-valued match (any of...)
200 if (key
== "email") {
201 CFRef
<CFArrayRef
> value
;
202 if (OSStatus rc
= SecCertificateCopyEmailAddresses(cert
, &value
.aref())) {
203 secdebug("csinterp", "cert %p lookup for email failed rc=%ld", cert
, rc
);
209 // unrecognized key. Fail but do not abort to promote backward compatibility down the road
210 secdebug("csinterp", "cert field notation \"%s\" not understood", key
.c_str());
215 bool Requirement::Interpreter::certFieldGeneric(const string
&key
, const Match
&match
, SecCertificateRef cert
)
217 // the key is actually a (binary) OID value
218 CssmOid
oid((char *)key
.data(), key
.length());
219 return certFieldGeneric(oid
, match
, cert
);
222 bool Requirement::Interpreter::certFieldGeneric(const CssmOid
&oid
, const Match
&match
, SecCertificateRef cert
)
224 return cert
&& certificateHasField(cert
, oid
) && match(kCFBooleanTrue
);
229 // Check the Apple-signed condition
231 bool Requirement::Interpreter::appleAnchored()
233 if (SecCertificateRef cert
= mContext
->cert(anchorCert
))
234 if (verifyAnchor(cert
, appleAnchorHash())
235 #if defined(TEST_APPLE_ANCHOR)
236 || verifyAnchor(cert
, testAppleAnchorHash())
243 bool Requirement::Interpreter::appleSigned()
246 if (SecCertificateRef intermed
= mContext
->cert(-2)) // first intermediate
247 // first intermediate common name match (exact)
248 if (certFieldValue("subject.CN", Match(appleIntermediateCN
, matchEqual
), intermed
)
249 && certFieldValue("subject.O", Match(appleIntermediateO
, matchEqual
), intermed
))
256 // Verify an anchor requirement against the context
258 bool Requirement::Interpreter::verifyAnchor(SecCertificateRef cert
, const unsigned char *digest
)
260 // get certificate bytes
263 MacOSError::check(SecCertificateGetData(cert
, &certData
));
266 //@@@ should get SHA1(cert(-1).data) precalculated during chain verification
268 hasher(certData
.Data
, certData
.Length
);
269 return hasher
.verify(digest
);
276 // Check one or all certificate(s) in the cert chain against the Trust Settings database.
278 bool Requirement::Interpreter::trustedCerts()
280 int anchor
= mContext
->certCount() - 1;
281 for (int slot
= 0; slot
<= anchor
; slot
++)
282 if (SecCertificateRef cert
= mContext
->cert(slot
))
283 switch (trustSetting(cert
, slot
== anchor
)) {
284 case kSecTrustSettingsResultTrustRoot
:
285 case kSecTrustSettingsResultTrustAsRoot
:
287 case kSecTrustSettingsResultDeny
:
289 case kSecTrustSettingsResultUnspecified
:
300 bool Requirement::Interpreter::trustedCert(int slot
)
302 if (SecCertificateRef cert
= mContext
->cert(slot
)) {
303 int anchorSlot
= mContext
->certCount() - 1;
304 switch (trustSetting(cert
, slot
== anchorCert
|| slot
== anchorSlot
)) {
305 case kSecTrustSettingsResultTrustRoot
:
306 case kSecTrustSettingsResultTrustAsRoot
:
308 case kSecTrustSettingsResultDeny
:
309 case kSecTrustSettingsResultUnspecified
:
321 // Explicitly check one certificate against the Trust Settings database and report
322 // the findings. This is a helper for the various Trust Settings evaluators.
324 SecTrustSettingsResult
Requirement::Interpreter::trustSetting(SecCertificateRef cert
, bool isAnchor
)
326 // the SPI input is the uppercase hex form of the SHA-1 of the certificate...
329 hashOfCertificate(cert
, digest
);
330 string Certhex
= CssmData(digest
, sizeof(digest
)).toHex();
331 for (string::iterator it
= Certhex
.begin(); it
!= Certhex
.end(); ++it
)
335 // call Trust Settings and see what it finds
336 SecTrustSettingsDomain domain
;
337 SecTrustSettingsResult result
;
338 CSSM_RETURN
*errors
= NULL
;
339 uint32 errorCount
= 0;
340 bool foundMatch
, foundAny
;
341 switch (OSStatus rc
= SecTrustSettingsEvaluateCert(
342 CFTempString(Certhex
), // settings index
343 &CSSMOID_APPLE_TP_CODE_SIGNING
, // standard code signing policy
344 NULL
, 0, // policy string (unused)
345 kSecTrustSettingsKeyUseAny
, // no restriction on key usage @@@
346 isAnchor
, // consult system default anchor set
348 &domain
, // domain of found setting
349 &errors
, &errorCount
, // error set and maximum count
350 &result
, // the actual setting
351 &foundMatch
, &foundAny
// optimization hints (not used)
358 return kSecTrustSettingsResultUnspecified
;
361 MacOSError::throwMe(rc
);
367 // Create a Match object from the interpreter stream
369 Requirement::Interpreter::Match::Match(Interpreter
&interp
)
371 switch (mOp
= interp
.get
<MatchOperation
>()) {
376 case matchBeginsWith
:
379 case matchGreaterThan
:
381 case matchGreaterEqual
:
382 mValue
= makeCFString(interp
.getString());
385 // Assume this (unknown) match type has a single data argument.
386 // This gives us a chance to keep the instruction stream aligned.
387 interp
.getString(); // discard
394 // Execute a match against a candidate value
396 bool Requirement::Interpreter::Match::operator () (CFTypeRef candidate
) const
398 // null candidates always fail
402 // interpret an array as matching alternatives (any one succeeds)
403 if (CFGetTypeID(candidate
) == CFArrayGetTypeID()) {
404 CFArrayRef array
= CFArrayRef(candidate
);
405 CFIndex count
= CFArrayGetCount(array
);
406 for (CFIndex n
= 0; n
< count
; n
++)
407 if ((*this)(CFArrayGetValueAtIndex(array
, n
))) // yes, it's recursive
412 case matchExists
: // anything but NULL and boolean false "exists"
413 return !CFEqual(candidate
, kCFBooleanFalse
);
414 case matchEqual
: // equality works for all CF types
415 return CFEqual(candidate
, mValue
);
417 if (CFGetTypeID(candidate
) == CFStringGetTypeID()) {
418 CFStringRef value
= CFStringRef(candidate
);
419 if (CFStringFindWithOptions(value
, mValue
, CFRangeMake(0, CFStringGetLength(value
)), 0, NULL
))
423 case matchBeginsWith
:
424 if (CFGetTypeID(candidate
) == CFStringGetTypeID()) {
425 CFStringRef value
= CFStringRef(candidate
);
426 if (CFStringFindWithOptions(value
, mValue
, CFRangeMake(0, CFStringGetLength(mValue
)), 0, NULL
))
431 if (CFGetTypeID(candidate
) == CFStringGetTypeID()) {
432 CFStringRef value
= CFStringRef(candidate
);
433 CFIndex matchLength
= CFStringGetLength(mValue
);
434 CFIndex start
= CFStringGetLength(value
) - matchLength
;
436 if (CFStringFindWithOptions(value
, mValue
, CFRangeMake(start
, matchLength
), 0, NULL
))
441 return inequality(candidate
, kCFCompareNumerically
, kCFCompareLessThan
, true);
442 case matchGreaterThan
:
443 return inequality(candidate
, kCFCompareNumerically
, kCFCompareGreaterThan
, true);
445 return inequality(candidate
, kCFCompareNumerically
, kCFCompareGreaterThan
, false);
446 case matchGreaterEqual
:
447 return inequality(candidate
, kCFCompareNumerically
, kCFCompareLessThan
, false);
449 // unrecognized match types can never match
455 bool Requirement::Interpreter::Match::inequality(CFTypeRef candidate
, CFStringCompareFlags flags
,
456 CFComparisonResult outcome
, bool negate
) const
458 if (CFGetTypeID(candidate
) == CFStringGetTypeID()) {
459 CFStringRef value
= CFStringRef(candidate
);
460 if ((CFStringCompare(value
, mValue
, flags
) == outcome
) == negate
)