]>
git.saurik.com Git - apple/libsecurity_codesigning.git/blob - lib/resources.h
834d8945740bcf07e284bd0ab5e9f598f85fcc2a
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 // resource directory construction and verification
31 #include <security_utilities/utilities.h>
32 #include <security_utilities/cfutilities.h>
33 #include <security_utilities/hashing.h>
35 #include <CoreFoundation/CoreFoundation.h>
39 namespace CodeSigning
{
43 // The builder of ResourceDirectories.
45 // Note that this *is* a ResourceEnumerate, which can enumerate
46 // its source directory once (only).
48 class ResourceBuilder
: public ResourceEnumerator
{
50 ResourceBuilder(const std::string
&root
, CFDictionaryRef rules
);
53 CFDictionaryRef
build();
56 optional
= 0x01, // may be absent at runtime
57 omitted
= 0x02, // do not seal even if present
58 exclusion
= 0x04, // overriding exclusion (stop looking)
61 typedef unsigned int Weight
;
64 class Rule
: private regex_t
{
66 Rule(const std::string
&pattern
, Weight weight
, uint32_t flags
);
69 bool match(const char *s
) const;
74 void addRule(Rule
*rule
) { mRules
.push_back(rule
); }
75 void addExclusion(const std::string
&pattern
) { mRules
.insert(mRules
.begin(), new Rule(pattern
, 0, exclusion
)); }
77 FTSENT
*next(std::string
&path
, Rule
* &rule
); // enumerate next file and match rule
80 void addRule(CFTypeRef key
, CFTypeRef value
);
81 CFDataRef
hashFile(const char *path
);
84 CFCopyRef
<CFDictionaryRef
> mRawRules
;
85 typedef std::vector
<Rule
*> Rules
;
91 // The "seal" on a single resource.
95 ResourceSeal(CFTypeRef ref
);
98 operator bool () const { return mHash
; }
99 bool operator ! () const { return mHash
== NULL
; }
101 const SHA1::Byte
*hash() const { return CFDataGetBytePtr(mHash
); }
102 bool optional() const { return mOptional
; }
110 } // end namespace CodeSigning
111 } // end namespace Security