2 * Copyright (c) 2006-2011 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@
23 #include "bundlediskrep.h"
24 #include "filediskrep.h"
25 #include <CoreFoundation/CFURLAccess.h>
26 #include <CoreFoundation/CFBundlePriv.h>
27 #include <security_utilities/cfmunge.h>
32 namespace CodeSigning
{
34 using namespace UnixPlusPlus
;
38 // We make a CFBundleRef immediately, but everything else is lazy
40 BundleDiskRep::BundleDiskRep(const char *path
, const Context
*ctx
)
41 : mBundle(CFBundleCreate(NULL
, CFTempURL(path
)))
44 MacOSError::throwMe(errSecCSBadBundleFormat
);
46 CODESIGN_DISKREP_CREATE_BUNDLE_PATH(this, (char*)path
, (void*)ctx
, mExecRep
);
49 BundleDiskRep::BundleDiskRep(CFBundleRef ref
, const Context
*ctx
)
51 mBundle
= ref
; // retains
53 CODESIGN_DISKREP_CREATE_BUNDLE_REF(this, ref
, (void*)ctx
, mExecRep
);
56 // common construction code
57 void BundleDiskRep::setup(const Context
*ctx
)
59 // deal with versioned bundles (aka Frameworks)
60 string version
= resourcesRootPath()
62 + ((ctx
&& ctx
->version
) ? ctx
->version
: "Current")
64 if (::access(version
.c_str(), F_OK
) == 0) { // versioned bundle
65 if (CFBundleRef versionBundle
= CFBundleCreate(NULL
, CFTempURL(version
)))
66 mBundle
.take(versionBundle
); // replace top bundle ref
68 MacOSError::throwMe(errSecCSStaticCodeNotFound
);
70 if (ctx
&& ctx
->version
) // explicitly specified
71 MacOSError::throwMe(errSecCSStaticCodeNotFound
);
74 // conventional executable bundle: CFBundle identifies an executable for us
75 if (mMainExecutableURL
.take(CFBundleCopyExecutableURL(mBundle
))) {
76 // conventional executable bundle
77 mExecRep
= DiskRep::bestFileGuess(this->mainExecutablePath(), ctx
);
78 mFormat
= string("bundle with ") + mExecRep
->format();
82 CFDictionaryRef infoDict
= CFBundleGetInfoDictionary(mBundle
);
83 assert(infoDict
); // CFBundle will always make one up for us
85 if (CFTypeRef main
= CFDictionaryGetValue(infoDict
, CFSTR("MainHTML"))) {
87 if (CFGetTypeID(main
) != CFStringGetTypeID())
88 MacOSError::throwMe(errSecCSBadBundleFormat
);
89 mMainExecutableURL
= makeCFURL(cfString(CFStringRef(main
)), false, CFRef
<CFURLRef
>(CFBundleCopySupportFilesDirectoryURL(mBundle
)));
90 if (!mMainExecutableURL
)
91 MacOSError::throwMe(errSecCSBadBundleFormat
);
92 mExecRep
= new FileDiskRep(this->mainExecutablePath().c_str());
93 mFormat
= "widget bundle";
97 // generic bundle case - impose our own "minimal signable bundle" standard
99 // we MUST have an actual Info.plist in here
100 CFRef
<CFURLRef
> infoURL
= _CFBundleCopyInfoPlistURL(mBundle
);
102 MacOSError::throwMe(errSecCSBadBundleFormat
);
105 // focus on the Info.plist (which we know exists) as the nominal "main executable" file
106 if ((mMainExecutableURL
= _CFBundleCopyInfoPlistURL(mBundle
))) {
107 mExecRep
= new FileDiskRep(this->mainExecutablePath().c_str());
112 // this bundle cannot be signed
113 MacOSError::throwMe(errSecCSBadBundleFormat
);
118 // Create a path to a bundle signing resource, by name.
119 // If the BUNDLEDISKREP_DIRECTORY directory exists in the bundle's support directory, files
120 // will be read and written there. Otherwise, they go directly into the support directory.
122 string
BundleDiskRep::metaPath(const char *name
)
124 if (mMetaPath
.empty()) {
125 string support
= cfString(CFBundleCopySupportFilesDirectoryURL(mBundle
), true);
126 mMetaPath
= support
+ "/" BUNDLEDISKREP_DIRECTORY
;
127 if (::access(mMetaPath
.c_str(), F_OK
) == 0) {
134 return mMetaPath
+ "/" + name
;
139 // Try to create the meta-file directory in our bundle.
140 // Does nothing if the directory already exists.
141 // Throws if an error occurs.
143 void BundleDiskRep::createMeta()
145 string meta
= metaPath(BUNDLEDISKREP_DIRECTORY
);
147 if (::mkdir(meta
.c_str(), 0755) == 0) {
148 copyfile(cfString(canonicalPath(), true).c_str(), meta
.c_str(), NULL
, COPYFILE_SECURITY
);
151 } else if (errno
!= EEXIST
)
152 UnixError::throwMe();
158 // Load and return a component, by slot number.
159 // Info.plist components come from the bundle, always (we don't look
160 // for Mach-O embedded versions).
161 // Everything else comes from the embedded blobs of a Mach-O image, or from
162 // files located in the Contents directory of the bundle.
164 CFDataRef
BundleDiskRep::component(CodeDirectory::SpecialSlot slot
)
167 // the Info.plist comes from the magic CFBundle-indicated place and ONLY from there
169 if (CFRef
<CFURLRef
> info
= _CFBundleCopyInfoPlistURL(mBundle
))
170 return cfLoadFile(info
);
173 // by default, we take components from the executable image or files
175 if (CFDataRef data
= mExecRep
->component(slot
))
178 // but the following always come from files
179 case cdResourceDirSlot
:
180 if (const char *name
= CodeDirectory::canonicalSlotName(slot
))
181 return metaData(name
);
189 // The binary identifier is taken directly from the main executable.
191 CFDataRef
BundleDiskRep::identification()
193 return mExecRep
->identification();
198 // Various aspects of our DiskRep personality.
200 CFURLRef
BundleDiskRep::canonicalPath()
202 return CFBundleCopyBundleURL(mBundle
);
205 string
BundleDiskRep::mainExecutablePath()
207 return cfString(mMainExecutableURL
);
210 string
BundleDiskRep::resourcesRootPath()
212 return cfString(CFBundleCopySupportFilesDirectoryURL(mBundle
), true);
215 void BundleDiskRep::adjustResources(ResourceBuilder
&builder
)
217 // exclude entire contents of meta directory
218 builder
.addExclusion("^" BUNDLEDISKREP_DIRECTORY
"/");
220 // exclude the store manifest directory
221 builder
.addExclusion("^" STORE_RECEIPT_DIRECTORY
"/");
223 // exclude the main executable file
224 string resources
= resourcesRootPath();
225 string executable
= mainExecutablePath();
226 if (!executable
.compare(0, resources
.length(), resources
, 0, resources
.length())) // is prefix
227 builder
.addExclusion(string("^")
228 + ResourceBuilder::escapeRE(executable
.substr(resources
.length() + 1)) + "$");
233 Universal
*BundleDiskRep::mainExecutableImage()
235 return mExecRep
->mainExecutableImage();
238 size_t BundleDiskRep::signingBase()
240 return mExecRep
->signingBase();
243 size_t BundleDiskRep::signingLimit()
245 return mExecRep
->signingLimit();
248 string
BundleDiskRep::format()
253 CFArrayRef
BundleDiskRep::modifiedFiles()
255 CFMutableArrayRef files
= CFArrayCreateMutableCopy(NULL
, 0, mExecRep
->modifiedFiles());
256 checkModifiedFile(files
, cdCodeDirectorySlot
);
257 checkModifiedFile(files
, cdSignatureSlot
);
258 checkModifiedFile(files
, cdResourceDirSlot
);
259 checkModifiedFile(files
, cdEntitlementSlot
);
263 void BundleDiskRep::checkModifiedFile(CFMutableArrayRef files
, CodeDirectory::SpecialSlot slot
)
265 if (CFDataRef data
= mExecRep
->component(slot
)) // provided by executable file
267 else if (const char *resourceName
= CodeDirectory::canonicalSlotName(slot
)) {
268 string file
= metaPath(resourceName
);
269 if (::access(file
.c_str(), F_OK
) == 0)
270 CFArrayAppendValue(files
, CFTempURL(file
));
274 FileDesc
&BundleDiskRep::fd()
276 return mExecRep
->fd();
279 void BundleDiskRep::flush()
286 // Defaults for signing operations
288 string
BundleDiskRep::recommendedIdentifier(const SigningContext
&)
290 if (CFStringRef identifier
= CFBundleGetIdentifier(mBundle
))
291 return cfString(identifier
);
292 if (CFDictionaryRef infoDict
= CFBundleGetInfoDictionary(mBundle
))
293 if (CFStringRef identifier
= CFStringRef(CFDictionaryGetValue(infoDict
, kCFBundleNameKey
)))
294 return cfString(identifier
);
296 // fall back to using the canonical path
297 return canonicalIdentifier(cfString(this->canonicalPath()));
300 CFDictionaryRef
BundleDiskRep::defaultResourceRules(const SigningContext
&)
302 // consider the bundle's structure
303 string rbase
= this->resourcesRootPath();
304 if (rbase
.substr(rbase
.length()-2, 2) == "/.") // produced by versioned bundle implicit "Current" case
305 rbase
= rbase
.substr(0, rbase
.length()-2); // ... so take it off for this
306 string resources
= cfString(CFBundleCopyResourcesDirectoryURL(mBundle
), true);
307 if (resources
== rbase
)
309 else if (resources
.compare(0, rbase
.length(), rbase
, 0, rbase
.length()) != 0) // Resources not in resource root
310 MacOSError::throwMe(errSecCSBadBundleFormat
);
312 resources
= resources
.substr(rbase
.length() + 1) + "/"; // differential path segment
314 return cfmake
<CFDictionaryRef
>("{rules={"
315 "'^version.plist$' = #T"
317 "%s = {optional=#T, weight=1000}"
318 "%s = {omit=#T, weight=1100}"
320 (string("^") + resources
).c_str(),
321 (string("^") + resources
+ ".*\\.lproj/").c_str(),
322 (string("^") + resources
+ ".*\\.lproj/locversion.plist$").c_str()
326 const Requirements
*BundleDiskRep::defaultRequirements(const Architecture
*arch
, const SigningContext
&ctx
)
328 return mExecRep
->defaultRequirements(arch
, ctx
);
331 size_t BundleDiskRep::pageSize(const SigningContext
&ctx
)
333 return mExecRep
->pageSize(ctx
);
340 DiskRep::Writer
*BundleDiskRep::writer()
342 return new Writer(this);
345 BundleDiskRep::Writer::Writer(BundleDiskRep
*r
)
346 : rep(r
), mMadeMetaDirectory(false)
348 execWriter
= rep
->mExecRep
->writer();
353 // Write a component.
354 // Note that this isn't concerned with Mach-O writing; this is handled at
355 // a much higher level. If we're called, we write to a file in the Bundle's meta directory.
357 void BundleDiskRep::Writer::component(CodeDirectory::SpecialSlot slot
, CFDataRef data
)
361 if (!execWriter
->attribute(writerLastResort
)) // willing to take the data...
362 return execWriter
->component(slot
, data
); // ... so hand it through
363 // execWriter doesn't want the data; store it as a resource file (below)
364 case cdResourceDirSlot
:
365 // the resource directory always goes into a bundle file
366 if (const char *name
= CodeDirectory::canonicalSlotName(slot
)) {
368 string path
= rep
->metaPath(name
);
369 AutoFileDesc
fd(path
, O_WRONLY
| O_CREAT
| O_TRUNC
, 0644);
370 fd
.writeAll(CFDataGetBytePtr(data
), CFDataGetLength(data
));
372 MacOSError::throwMe(errSecCSBadBundleFormat
);
378 // Remove all signature data
380 void BundleDiskRep::Writer::remove()
382 // remove signature from the executable
383 execWriter
->remove();
385 // remove signature files from bundle
386 for (CodeDirectory::SpecialSlot slot
= 0; slot
< cdSlotCount
; slot
++)
388 remove(cdSignatureSlot
);
391 void BundleDiskRep::Writer::remove(CodeDirectory::SpecialSlot slot
)
393 if (const char *name
= CodeDirectory::canonicalSlotName(slot
))
394 if (::unlink(rep
->metaPath(name
).c_str()))
396 case ENOENT
: // not found - that's okay
399 UnixError::throwMe();
404 void BundleDiskRep::Writer::flush()
410 } // end namespace CodeSigning
411 } // end namespace Security