2 * Copyright (c) 2006-2008 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 // Requirements Language Grammar
27 // This file describes two distinct (related) grammars:
28 // Requirement => single requirement (Requirement *)
29 // RequirementSet => set of labeled requirements (Requirements *)
30 // The grammar can "autosense" - i.e. recognize which one it's fed and
31 // return appropriate semantic data.
33 // The semantic data compiled is a malloc'ed BlobCore * - a Requirement
34 // object or a SuperBlob containing multiple Requirements.
36 // Errors are indicated to the caller by accumulating error message strings
37 // in the errors member variable. Any non-empty error value indicates failure.
38 // Presence of semantic data is not a reliable indication of success.
40 header "post_include_hpp" {
41 #include "requirement.h"
42 using namespace CodeSigning;
43 typedef Requirement::Maker Maker;
46 header "post_include_cpp" {
47 #include "requirement.h"
49 #include "csutilities.h"
50 #include <security_utilities/cfutilities.h>
51 #include <security_utilities/hashing.h>
52 #include <security_cdsa_utilities/cssmdata.h> // OID coding
53 using namespace CodeSigning;
54 typedef Requirement::Maker Maker;
59 namespace="Security_CodeSigning";
61 namespaceAntlr="antlr";
68 // Collect error messages.
69 // Note that the immediate caller takes the absence of collected error messages
70 // to indicate compilation success.
72 void RequirementParser::reportError(const antlr::RecognitionException &ex)
74 errors += ex.toString() + "\n";
77 void RequirementParser::reportError(const std::string &s)
84 // Parser helper functions
86 string RequirementParser::hexString(const string &s)
89 throw antlr::SemanticException("odd number of digits");
90 const char *p = s.data();
92 for (unsigned n = 0; n < s.length(); n += 2) {
94 sscanf(p+n, "%2hhx", &c);
100 void RequirementParser::hashString(const string &s, SHA1::Digest hash)
102 if (s.size() != 2 * SHA1::digestLength)
103 throw antlr::SemanticException("invalid hash length");
104 memcpy(hash, hexString(s).data(), SHA1::digestLength);
107 static const char *matchPrefix(const string &key, const char *prefix)
109 size_t pLength = strlen(prefix);
110 if (!key.compare(0, pLength, prefix, 0, pLength))
111 return key.c_str() + pLength;
116 void RequirementParser::certMatchOperation(Maker &maker, int32_t slot, string key)
118 if (matchPrefix(key, "subject.")) {
119 maker.put(opCertField);
122 } else if (const char *oids = matchPrefix(key, "field.")) {
123 maker.put(opCertGeneric);
125 CssmAutoData oid(Allocator::standard()); oid.fromOid(oids);
126 maker.putData(oid.data(), oid.length());
127 } else if (const char *oids = matchPrefix(key, "extension.")) {
128 maker.put(opCertGeneric);
130 CssmAutoData oid(Allocator::standard()); oid.fromOid(oids);
131 maker.putData(oid.data(), oid.length());
132 } else if (const char *oids = matchPrefix(key, "policy.")) {
133 maker.put(opCertPolicy);
135 CssmAutoData oid(Allocator::standard()); oid.fromOid(oids);
136 maker.putData(oid.data(), oid.length());
138 throw antlr::SemanticException(key + ": unrecognized certificate field");
144 class RequirementParser extends Parser;
153 void reportError(const antlr::RecognitionException &ex);
154 void reportError(const std::string &s);
157 static string hexString(const string &s);
158 static void hashString(const string &s, SHA1::Digest hash);
159 void certMatchOperation(Maker &maker, int32_t slot, string key);
164 // Compound target; compiles single requirements or requirement sets
165 // and returns them as a BlobCore.
167 autosense returns [BlobCore *result = NULL]
169 | result=requirementSet
174 // A Requirements Set.
176 requirementSet returns [Requirements *result = NULL]
177 { Requirements::Maker maker; }
178 : ( { uint32_t t; Requirement *req; }
179 t=requirementType ARROW req=requirementElement
180 { maker.add(t, req); }
182 { result = errors.empty() ? maker() : NULL; }
186 requirementType returns [uint32_t type = kSecInvalidRequirementType]
188 { type = kSecGuestRequirementType; }
190 { type = kSecHostRequirementType; }
192 { type = kSecDesignatedRequirementType; }
194 { type = kSecLibraryRequirementType; }
196 { type = kSecPluginRequirementType; }
202 // A single Requirement (untyped)
204 requirement returns [Requirement *result = NULL]
205 : result = requirementElement
209 requirementElement returns [Requirement *result = NULL]
210 { Requirement::Maker maker; }
212 { result = maker(); }
218 // Classic recursive expressions
221 { Maker::Label label(maker); }
222 : term[maker] ( "or" { maker.insert<ExprOp>(label) = opOr; } term[maker] )*
226 { Maker::Label label(maker); }
227 : primary[maker] ( "and" { maker.insert<ExprOp>(label) = opAnd; } primary[maker] )*
230 primary[Maker &maker]
231 : LPAREN expr[maker] RPAREN
232 | NOT { maker.put(opNot); } primary[maker]
233 | ( "always" | "true" )
234 { maker.put(opTrue); }
235 | ( "never" | "false" )
236 { maker.put(opFalse); }
239 | entitlementspec[maker]
240 | "identifier" { string code; } eql code=identifierString
241 { maker.ident(code); }
242 | "cdhash" { SHA1::Digest digest; } eql hash[digest]
243 { maker.cdhash(digest); }
244 | "platform" { int32_t ident; } eql ident=integer
245 { maker.platform(ident); }
247 { maker.put(opNotarized); }
248 | LPAREN { string name; } name=identifierString RPAREN
249 { maker.put(opNamedCode); maker.put(name); }
254 // Certificate specifications restrict certificates in the signing chain
256 certspec[Maker &maker]
257 : "anchor" "apple" appleanchor[maker]
258 | "anchor" "generic" "apple" // alternate form
259 { maker.put(opAppleGenericAnchor); }
260 | ( "certificate" | "cert" | "anchor" ) "trusted"
261 { maker.trustedAnchor(); }
262 | ( "certificate" | "cert" ) { int32_t slot; } slot=certSlot
263 ( certslotspec[maker, slot] | "trusted" { maker.trustedAnchor(slot); } )
264 | "anchor" certslotspec[maker, Requirement::anchorCert]
267 appleanchor[Maker &maker]
269 { maker.put(opAppleAnchor); }
271 { maker.put(opAppleGenericAnchor); }
272 | { string name; } name=identifierString
273 { maker.put(opNamedAnchor); maker.put(name); }
276 certslotspec[Maker &maker, int32_t slot] { string key; }
277 : eql { SHA1::Digest digest; } certificateDigest[digest]
278 { maker.anchor(slot, digest); }
280 { certMatchOperation(maker, slot, key); }
286 // Info specifications place conditions on entries in the Info.plist
288 infospec[Maker &maker] { string key; }
289 : "info" key=bracketKey
290 { maker.put(opInfoKeyField); maker.put(key); }
296 // Entitlement specifications place conditions on embedded entitlement entries
298 entitlementspec[Maker &maker] { string key; }
299 : "entitlement" key=bracketKey
300 { maker.put(opEntitlementField); maker.put(key); }
306 // Common match operations, written as a syntactic suffix (the operand precedes this)
308 match_suffix[Maker &maker]
309 : empty ( "exists" ) ?
310 { maker.put(matchExists); }
312 { MatchOperation mop = matchEqual; string value; }
313 ( STAR { mop = matchEndsWith; } ) ?
315 ( STAR { mop = (mop == matchEndsWith) ? matchContains : matchBeginsWith; } ) ?
316 { maker.put(mop); maker.put(value); }
317 | SUBS { string value; } value=datavalue
318 { maker.put(matchContains); maker.put(value); }
319 | LESS { string value; } value=datavalue
320 { maker.put(matchLessThan); maker.put(value); }
321 | GT { string value; } value=datavalue
322 { maker.put(matchGreaterThan); maker.put(value); }
323 | LE { string value; } value=datavalue
324 { maker.put(matchLessEqual); maker.put(value); }
325 | GE { string value; } value=datavalue
326 { maker.put(matchGreaterEqual); maker.put(value); }
329 bracketKey returns [string key]
330 : LBRACK key=stringvalue RBRACK
334 // A certSlot identifies one certificate from the certificate chain
336 certSlot returns [int32_t slot = 0]
337 : slot=integer // counting from the anchor up
338 | NEG slot=integer // counting from the leaf down
340 | "leaf" // the leaf ( == -1)
341 { slot = Requirement::leafCert; }
342 | "root" // the root ( == 0)
343 { slot = Requirement::anchorCert; }
346 // an arbitrary digest value
347 hash[SHA1::Digest digest]
349 { hashString(hash->getText(), digest); }
352 // various forms to specify a certificate hash
353 certificateDigest[SHA1::Digest digest]
355 | { string path; } path=pathstring
356 { if (CFRef<CFDataRef> certData = cfLoadFile(path))
357 hashOfCertificate(CFDataGetBytePtr(certData), CFDataGetLength(certData), digest);
359 throw antlr::SemanticException(path + ": not found");
363 // generic data - can be simple string, quoted string, or 0x-style hex
364 datavalue returns [string result]
366 | hex:HEXCONSTANT { result = hexString(hex->getText()); }
369 // strings can always be quoted, but DOTKEYs don't need to be
370 stringvalue returns [string result]
371 : dk:DOTKEY { result = dk->getText(); }
372 | s:STRING { result = s->getText(); }
375 // pathstrings are like strings, but PATHNAMEs don't need to be quoted either
376 pathstring returns [string result]
377 : dk:DOTKEY { result = dk->getText(); }
378 | s:STRING { result = s->getText(); }
379 | pn:PATHNAME { result = pn->getText(); }
382 // unique identifier value
383 identifierString returns [string result]
384 : dk:DOTKEY { result = dk->getText(); }
385 | s:STRING { result = s->getText(); }
389 integer returns [int32_t result]
390 : s:INTEGER { result = int32_t(atol(s->getText().c_str())); }
393 // syntactic cavity generators
408 // The lexer for the Requirement language.
409 // Really straightforward and conventional.
410 // A subset of strings don't need to be quoted (DOTKEYs). Neither do some simple
411 // pathnames starting with "/".
412 // Hash values have a special syntax H"abcd" (abcd in straight hex).
413 // Hex constants of the form 0xabcd can have any length; they are carried
414 // around as strings (which are in turn stored as data in the language binary).
416 class RequirementLexer extends Lexer;
424 IDENT options { testLiterals=true; }
425 : ( 'A' .. 'Z' | 'a' .. 'z' ) ( 'A' .. 'Z' | 'a' .. 'z' | '0' .. '9' )*
428 DOTKEY options { testLiterals=true; }
429 : IDENT ( "." ( IDENT | INTEGER ) )*
433 : "/" IDENT ( "/" IDENT )+
437 : 'H'! '"'! ( HEX )+ '"'!
445 : '"'! ( ( '\\'! '"' ) | ( ~ ( '"' | '\\' ) ) )* '"'!
453 HEX : '0' .. '9' | 'a' .. 'f' | 'A' .. 'F' ;
478 WS : ( ' ' | '\n' { newline(); } | '\t' )+
479 { $setType(antlr::Token::SKIP); }
484 { $setType(antlr::Token::SKIP); }
488 : "/*" ( (~'*')|('*'(~'/')) )* "*/"
489 { $setType(antlr::Token::SKIP); }
494 { $setType(antlr::Token::SKIP); }