]> git.saurik.com Git - apple/libsecurity_codesigning.git/blob - lib/SecStaticCode.cpp
3669928ecbf9364056f626be540395d5a0e1dd62
[apple/libsecurity_codesigning.git] / lib / SecStaticCode.cpp
1 /*
2 * Copyright (c) 2006-2007 Apple Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
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
11 * file.
12 *
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.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 //
25 // SecStaticCode - API frame for SecStaticCode objects
26 //
27 #include "cs.h"
28 #include "StaticCode.h"
29 #include <security_utilities/cfmunge.h>
30 #include <fcntl.h>
31 #include <dirent.h>
32
33 using namespace CodeSigning;
34
35
36 //
37 // CF-standard type code function
38 //
39 CFTypeID SecStaticCodeGetTypeID(void)
40 {
41 BEGIN_CSAPI
42 return gCFObjects().StaticCode.typeID;
43 END_CSAPI1(_kCFRuntimeNotATypeID)
44 }
45
46
47 //
48 // Create an StaticCode directly from disk path.
49 //
50 OSStatus SecStaticCodeCreateWithPath(CFURLRef path, SecCSFlags flags, SecStaticCodeRef *staticCodeRef)
51 {
52 BEGIN_CSAPI
53
54 checkFlags(flags);
55 CodeSigning::Required(staticCodeRef) = (new SecStaticCode(DiskRep::bestGuess(cfString(path).c_str())))->handle();
56
57 END_CSAPI
58 }
59
60 const CFStringRef kSecCodeAttributeArchitecture = CFSTR("architecture");
61 const CFStringRef kSecCodeAttributeSubarchitecture =CFSTR("subarchitecture");
62 const CFStringRef kSecCodeAttributeBundleVersion = CFSTR("bundleversion");
63
64 OSStatus SecStaticCodeCreateWithPathAndAttributes(CFURLRef path, SecCSFlags flags, CFDictionaryRef attributes,
65 SecStaticCodeRef *staticCodeRef)
66 {
67 BEGIN_CSAPI
68
69 checkFlags(flags);
70 DiskRep::Context ctx;
71 std::string version; // holds memory placed into ctx
72 if (attributes) {
73 std::string archName;
74 int archNumber, subarchNumber;
75 if (cfscan(attributes, "{%O=%s}", kSecCodeAttributeArchitecture, &archName)) {
76 ctx.arch = Architecture(archName.c_str());
77 } else if (cfscan(attributes, "{%O=%d,%O=%d}",
78 kSecCodeAttributeArchitecture, &archNumber, kSecCodeAttributeSubarchitecture, &subarchNumber))
79 ctx.arch = Architecture(archNumber, subarchNumber);
80 else if (cfscan(attributes, "{%O=%d}", kSecCodeAttributeArchitecture, &archNumber))
81 ctx.arch = Architecture(archNumber);
82 if (cfscan(attributes, "{%O=%s}", kSecCodeAttributeBundleVersion, &version))
83 ctx.version = version.c_str();
84 }
85
86 CodeSigning::Required(staticCodeRef) = (new SecStaticCode(DiskRep::bestGuess(cfString(path).c_str(), &ctx)))->handle();
87
88 END_CSAPI
89 }
90
91
92 //
93 // Check static validity of a StaticCode
94 //
95 static void validate(SecStaticCode *code, const SecRequirement *req, SecCSFlags flags);
96 static void validateNested(string location, const SecRequirement *req, SecCSFlags flags, string exclude = "/");
97
98 static void validate(SecStaticCode *code, const SecRequirement *req, SecCSFlags flags)
99 {
100 try {
101 code->validateDirectory();
102 if (!(flags & kSecCSDoNotValidateExecutable))
103 code->validateExecutable();
104 if (!(flags & kSecCSDoNotValidateResources))
105 code->validateResources();
106 if (req)
107 code->validateRequirement(req->requirement(), errSecCSReqFailed);
108 if (flags & kSecCSCheckNestedCode)
109 if (CFURLRef baseUrl = code->resourceBase()) {
110 // CFBundle has no orderly enumerator of these things, so this is somewhat ad-hoc.
111 // (It should be augmented by information in ResourceDirectory.)
112 string base = cfString(baseUrl) + "/";
113 validateNested(base + "Frameworks", req, flags);
114 validateNested(base + "SharedFrameworks", req, flags);
115 validateNested(base + "PlugIns", req, flags);
116 validateNested(base + "Plug-ins", req, flags);
117 validateNested(base + "XPCServices", req, flags);
118 validateNested(base + "MacOS", req, flags, code->mainExecutablePath()); // helpers
119 }
120 } catch (CSError &err) {
121 if (Universal *fat = code->diskRep()->mainExecutableImage()) // Mach-O
122 if (MachO *mach = fat->architecture()) {
123 err.augment(kSecCFErrorArchitecture, CFTempString(mach->architecture().displayName()));
124 delete mach;
125 }
126 throw;
127 } catch (const MacOSError &err) {
128 // add architecture information if we can get it
129 if (Universal *fat = code->diskRep()->mainExecutableImage())
130 if (MachO *mach = fat->architecture()) {
131 CFTempString arch(mach->architecture().displayName());
132 delete mach;
133 CSError::throwMe(err.error, kSecCFErrorArchitecture, arch);
134 }
135 // else just pass it on
136 throw;
137 }
138 }
139
140 static void validateNested(string location, const SecRequirement *req, SecCSFlags flags, string exclude)
141 {
142 DIR *dir = opendir(location.c_str());
143 if (dir == 0) {
144 if (errno == ENOENT) // nothing there (okay)
145 return;
146 UnixError::throwMe();
147 }
148 while (struct dirent *dp = readdir(dir)) {
149 switch (dp->d_type) {
150 case DT_REG:
151 case DT_LNK:
152 case DT_DIR:
153 break;
154 default:
155 continue;
156 }
157 if (dp->d_name[0] == '.')
158 continue;
159 string path = location + "/" + dp->d_name;
160 if (path == exclude) // main executable; skip
161 continue;
162 try {
163 SecPointer<SecStaticCode> code = new SecStaticCode(DiskRep::bestGuess(path));
164 validate(code, req, flags);
165 } catch (CSError &err) {
166 err.augment(kSecCFErrorPath, CFTempURL(path));
167 throw;
168 }
169 }
170 closedir(dir);
171 }
172
173
174 OSStatus SecStaticCodeCheckValidity(SecStaticCodeRef staticCodeRef, SecCSFlags flags,
175 SecRequirementRef requirementRef)
176 {
177 return SecStaticCodeCheckValidityWithErrors(staticCodeRef, flags, requirementRef, NULL);
178 }
179
180 OSStatus SecStaticCodeCheckValidityWithErrors(SecStaticCodeRef staticCodeRef, SecCSFlags flags,
181 SecRequirementRef requirementRef, CFErrorRef *errors)
182 {
183 BEGIN_CSAPI
184
185 checkFlags(flags,
186 kSecCSCheckAllArchitectures
187 | kSecCSDoNotValidateExecutable
188 | kSecCSDoNotValidateResources
189 | kSecCSConsiderExpiration
190 | kSecCSCheckNestedCode);
191
192 SecPointer<SecStaticCode> code = SecStaticCode::requiredStatic(staticCodeRef);
193 const SecRequirement *req = SecRequirement::optional(requirementRef);
194 DTRACK(CODESIGN_EVAL_STATIC, code, (char*)code->mainExecutablePath().c_str());
195 if (flags & kSecCSCheckAllArchitectures) {
196 SecStaticCode::AllArchitectures archs(code);
197 while (SecPointer<SecStaticCode> scode = archs())
198 validate(scode, req, flags);
199 } else
200 validate(code, req, flags);
201
202 END_CSAPI_ERRORS
203 }
204
205
206 //
207 // ====================================================================================
208 //
209 // The following API functions are called SecCode* but accept both SecCodeRef and
210 // SecStaticCodeRef arguments, operating on the implied SecStaticCodeRef as appropriate.
211 // Hence they're here, rather than in SecCode.cpp.
212 //
213
214
215 //
216 // Retrieve location information for an StaticCode.
217 //
218 OSStatus SecCodeCopyPath(SecStaticCodeRef staticCodeRef, SecCSFlags flags, CFURLRef *path)
219 {
220 BEGIN_CSAPI
221
222 checkFlags(flags);
223 SecPointer<SecStaticCode> staticCode = SecStaticCode::requiredStatic(staticCodeRef);
224 CodeSigning::Required(path) = staticCode->canonicalPath();
225
226 END_CSAPI
227 }
228
229
230 //
231 // Fetch or make up a designated requirement
232 //
233 OSStatus SecCodeCopyDesignatedRequirement(SecStaticCodeRef staticCodeRef, SecCSFlags flags,
234 SecRequirementRef *requirementRef)
235 {
236 BEGIN_CSAPI
237
238 checkFlags(flags);
239 const Requirement *req =
240 SecStaticCode::requiredStatic(staticCodeRef)->designatedRequirement();
241 CodeSigning::Required(requirementRef) = (new SecRequirement(req))->handle();
242
243 END_CSAPI
244 }
245
246
247 //
248 // Fetch a particular internal requirement, if present
249 //
250 OSStatus SecCodeCopyInternalRequirement(SecStaticCodeRef staticCodeRef, SecRequirementType type,
251 SecCSFlags flags, SecRequirementRef *requirementRef)
252 {
253 BEGIN_CSAPI
254
255 checkFlags(flags);
256 const Requirement *req =
257 SecStaticCode::requiredStatic(staticCodeRef)->internalRequirement(type);
258 CodeSigning::Required(requirementRef) = req ? (new SecRequirement(req))->handle() : NULL;
259
260 END_CSAPI
261 }
262
263
264 //
265 // Record for future use a detached code signature.
266 //
267 OSStatus SecCodeSetDetachedSignature(SecStaticCodeRef codeRef, CFDataRef signature,
268 SecCSFlags flags)
269 {
270 BEGIN_CSAPI
271
272 checkFlags(flags);
273 SecPointer<SecStaticCode> code = SecStaticCode::requiredStatic(codeRef);
274
275 if (signature)
276 CFRetain(signature); // own a reference...
277 code->detachedSignature(signature); // ... and pass it to the code
278 code->resetValidity();
279
280 END_CSAPI
281 }
282
283
284 //
285 // Attach a code signature to a kernel memory mapping for page-in validation.
286 //
287 OSStatus SecCodeMapMemory(SecStaticCodeRef codeRef, SecCSFlags flags)
288 {
289 BEGIN_CSAPI
290
291 checkFlags(flags);
292 SecPointer<SecStaticCode> code = SecStaticCode::requiredStatic(codeRef);
293 if (const CodeDirectory *cd = code->codeDirectory(false)) {
294 fsignatures args = { code->diskRep()->signingBase(), (void *)cd, cd->length() };
295 UnixError::check(::fcntl(code->diskRep()->fd(), F_ADDSIGS, &args));
296 } else
297 MacOSError::throwMe(errSecCSUnsigned);
298
299 END_CSAPI
300 }