2 * Copyright (c) 2006-2012 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 // requirement - Code Requirement Blob description
27 #ifndef _H_REQUIREMENT
28 #define _H_REQUIREMENT
30 #include <security_utilities/blob.h>
31 #include <security_utilities/superblob.h>
32 #include <security_utilities/hashing.h>
33 #include <security_utilities/debugging_internal.h>
34 #include <Security/CodeSigning.h>
35 #include "codedirectory.h"
39 namespace CodeSigning
{
43 // Single requirement.
44 // This is a contiguous binary blob, starting with this header
45 // and followed by binary expr-code. All links within the blob
46 // are offset-relative to the start of the header.
47 // This is designed to be a binary stable format. Note that we restrict
48 // outselves to 4GB maximum size (4 byte size/offset), and we expect real
49 // Requirement blobs to be fairly small (a few kilobytes at most).
51 // The "kind" field allows for adding different kinds of Requirements altogether
52 // in the future. We expect to stay within the framework of "opExpr" requirements,
53 // but it never hurts to have a way out.
55 class Requirement
: public Blob
<Requirement
, 0xfade0c00> {
57 class Maker
; // makes Requirement blobs
58 class Context
; // evaluation context
59 class Reader
; // structured reader
60 class Interpreter
; // evaluation engine
62 // different forms of Requirements. Right now, we only support exprForm ("opExprs")
64 exprForm
= 1 // prefix expr form
67 void kind(Kind k
) { mKind
= k
; }
68 Kind
kind() const { return Kind(uint32_t(mKind
)); }
70 // validate this requirement against a code context
71 void validate(const Context
&ctx
, OSStatus failure
= errSecCSReqFailed
) const; // throws on all failures
72 bool validates(const Context
&ctx
, OSStatus failure
= errSecCSReqFailed
) const; // returns on clean miss
74 // certificate positions (within a standard certificate chain)
75 static const int leafCert
= 0; // index for leaf (first in chain)
76 static const int anchorCert
= -1; // index for anchor (last in chain)
78 #if defined(TEST_APPLE_ANCHOR)
79 static const char testAppleAnchorEnv
[];
80 static const SHA1::Digest
&testAppleAnchorHash();
81 #endif //TEST_APPLE_ANCHOR
83 // common alignment rule for all requirement forms
84 static const size_t baseAlignment
= sizeof(uint32_t); // (we might as well say "four")
86 // canonical (source) names of Requirement types (matched to SecRequirementType in CSCommon.h)
87 static const char *const typeNames
[];
89 IFDUMP(void dump() const);
93 Endian
<uint32_t> mKind
; // expression kind
98 // An interpretation context
100 class Requirement::Context
{
103 : certs(NULL
), info(NULL
), entitlements(NULL
), identifier(""), directory(NULL
), packageChecksum(NULL
), packageAlgorithm(kSecCodeSignatureNoHash
), forcePlatform(false) { }
106 Context(CFArrayRef certChain
, CFDictionaryRef infoDict
, CFDictionaryRef entitlementDict
, const std::string
&ident
,
107 const CodeDirectory
*dir
, CFDataRef packageChecksum
, SecCSDigestAlgorithm packageAlgorithm
, bool force_platform
)
108 : certs(certChain
), info(infoDict
), entitlements(entitlementDict
), identifier(ident
), directory(dir
),
109 packageChecksum(packageChecksum
), packageAlgorithm(packageAlgorithm
), forcePlatform(force_platform
) { }
111 CFArrayRef certs
; // certificate chain
112 CFDictionaryRef info
; // Info.plist
113 CFDictionaryRef entitlements
; // entitlement plist
114 std::string identifier
; // signing identifier
115 const CodeDirectory
*directory
; // CodeDirectory
116 CFDataRef packageChecksum
; // package checksum
117 SecCSDigestAlgorithm packageAlgorithm
; // package checksum algorithm
120 SecCertificateRef
cert(int ix
) const; // get a cert from the cert chain (NULL if not found)
121 unsigned int certCount() const; // length of cert chain (including root)
128 // Opcodes are broken into flags in the (HBO) high byte, and an opcode value
129 // in the remaining 24 bits. Note that opcodes will remain fairly small
130 // (almost certainly <60000), so we have the third byte to play around with
131 // in the future, if needed. For now, small opcodes effective reserve this byte
133 // The flag byte allows for limited understanding of unknown opcodes. It allows
134 // the interpreter to use the known opcode parts of the program while semi-creatively
135 // disregarding the parts it doesn't know about. An unrecognized opcode with zero
136 // flag byte causes evaluation to categorically fail, since the semantics of such
137 // an opcode cannot safely be predicted.
140 // semantic bits or'ed into the opcode
141 opFlagMask
= 0xFF000000, // high bit flags
142 opGenericFalse
= 0x80000000, // has size field; okay to default to false
143 opGenericSkip
= 0x40000000, // has size field; skip and continue
147 opFalse
, // unconditionally false
148 opTrue
, // unconditionally true
149 opIdent
, // match canonical code [string]
150 opAppleAnchor
, // signed by Apple as Apple's product
151 opAnchorHash
, // match anchor [cert hash]
152 opInfoKeyValue
, // *legacy* - use opInfoKeyField [key; value]
153 opAnd
, // binary prefix expr AND expr [expr; expr]
154 opOr
, // binary prefix expr OR expr [expr; expr]
155 opCDHash
, // match hash of CodeDirectory directly [cd hash]
156 opNot
, // logical inverse [expr]
157 opInfoKeyField
, // Info.plist key field [string; match suffix]
158 opCertField
, // Certificate field, existence only [cert index; field name; match suffix]
159 opTrustedCert
, // require trust settings to approve one particular cert [cert index]
160 opTrustedCerts
, // require trust settings to approve the cert chain
161 opCertGeneric
, // Certificate component by OID [cert index; oid; match suffix]
162 opAppleGenericAnchor
, // signed by Apple in any capacity
163 opEntitlementField
, // entitlement dictionary field [string; match suffix]
164 opCertPolicy
, // Certificate policy by OID [cert index; oid; match suffix]
165 opNamedAnchor
, // named anchor type
166 opNamedCode
, // named subroutine
167 opPlatform
, // platform constraint [integer]
168 opNotarized
, // has a developer id+ ticket
169 opCertFieldDate
, // extension value as timestamp [cert index; field name; match suffix]
170 exprOpCount
// (total opcode count in use)
173 // match suffix opcodes
174 enum MatchOperation
{
175 matchExists
, // anything but explicit "false" - no value stored
176 matchEqual
, // equal (CFEqual)
177 matchContains
, // partial match (substring)
178 matchBeginsWith
, // partial match (initial substring)
179 matchEndsWith
, // partial match (terminal substring)
180 matchLessThan
, // less than (string with numeric comparison)
181 matchGreaterThan
, // greater than (string with numeric comparison)
182 matchLessEqual
, // less or equal (string with numeric comparison)
183 matchGreaterEqual
, // greater or equal (string with numeric comparison)
184 matchOn
, // on (timestamp comparison)
185 matchBefore
, // before (timestamp comparison)
186 matchAfter
, // after (timestamp comparison)
187 matchOnOrBefore
, // on or before (timestamp comparison)
188 matchOnOrAfter
, // on or after (timestamp comparison)
189 matchAbsent
, // not present (kCFNull)
194 // We keep Requirement groups in SuperBlobs, indexed by SecRequirementType
196 typedef SuperBlob
<0xfade0c01> Requirements
;
200 // Byte order flippers
202 inline CodeSigning::ExprOp
h2n(CodeSigning::ExprOp op
)
204 uint32_t intOp
= (uint32_t) op
;
205 return (CodeSigning::ExprOp
) ::h2n(intOp
);
208 inline CodeSigning::ExprOp
n2h(CodeSigning::ExprOp op
)
210 uint32_t intOp
= (uint32_t) op
;
211 return (CodeSigning::ExprOp
) ::n2h(intOp
);
215 inline CodeSigning::MatchOperation
h2n(CodeSigning::MatchOperation op
)
217 return CodeSigning::MatchOperation(::h2n((uint32_t) op
));
220 inline CodeSigning::MatchOperation
n2h(CodeSigning::MatchOperation op
)
222 return CodeSigning::MatchOperation(::n2h((uint32_t) op
));
229 #endif //_H_REQUIREMENT