2 * Copyright (c) 2006-2007 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 // diskrep - disk representations of code
29 #include <CoreFoundation/CFBundlePriv.h>
31 // specific disk representations created by the bestGuess() function
32 #include "filediskrep.h"
33 #include "bundlediskrep.h"
34 #include "cfmdiskrep.h"
39 namespace CodeSigning
{
41 using namespace UnixPlusPlus
;
53 CODESIGN_DISKREP_DESTROY(this);
58 // Normal DiskReps are their own base.
60 DiskRep
*DiskRep::base()
67 // By default, DiskReps are read-only.
69 DiskRep::Writer
*DiskRep::writer()
71 MacOSError::throwMe(errSecCSBadObjectFormat
);
75 void DiskRep::Writer::addDiscretionary(CodeDirectory::Builder
&)
82 // Given a file system path, come up with the most likely correct
83 // disk representation for what's there.
84 // This is, strictly speaking, a heuristic that could be fooled - there's
85 // no fool-proof rule for figuring this out. But we'd expect this to work
86 // fine in ordinary use. If you happen to know what you're looking at
87 // (say, a bundle), then just create the suitable subclass of DiskRep directly.
88 // That's quite legal.
89 // The optional context argument can provide additional information that guides the guess.
91 DiskRep
*DiskRep::bestGuess(const char *path
, const Context
*ctx
)
94 if (!(ctx
&& ctx
->fileOnly
)) {
96 if (::stat(path
, &st
))
99 // if it's a directory, assume it's a bundle
100 if ((st
.st_mode
& S_IFMT
) == S_IFDIR
) // directory - assume bundle
101 return new BundleDiskRep(path
, ctx
);
103 // see if it's the main executable of a recognized bundle
104 if (CFRef
<CFURLRef
> pathURL
= makeCFURL(path
))
105 if (CFRef
<CFBundleRef
> bundle
= _CFBundleCreateWithExecutableURLIfMightBeBundle(NULL
, pathURL
))
106 return new BundleDiskRep(bundle
, ctx
);
109 // try the various single-file representations
110 AutoFileDesc
fd(path
, O_RDONLY
);
111 if (MachORep::candidate(fd
))
112 return new MachORep(path
, ctx
);
113 if (CFMDiskRep::candidate(fd
))
114 return new CFMDiskRep(path
);
115 if (DYLDCacheRep::candidate(fd
))
116 return new DYLDCacheRep(path
);
118 // ultimate fallback - the generic file representation
119 return new FileDiskRep(path
);
121 } catch (const CommonError
&error
) {
122 switch (error
.unixError()) {
124 MacOSError::throwMe(errSecCSStaticCodeNotFound
);
132 DiskRep
*DiskRep::bestFileGuess(const char *path
, const Context
*ctx
)
137 dctx
.fileOnly
= true;
138 return bestGuess(path
, &dctx
);
143 // Given a main executable known to be a Mach-O binary, and an offset into
144 // the file of the actual architecture desired (of a Universal file),
145 // produce a suitable MachORep.
146 // This function does not consider non-MachO binaries. It does however handle
147 // bundles with Mach-O main executables correctly.
149 DiskRep
*DiskRep::bestGuess(const char *path
, size_t archOffset
)
152 // is it the main executable of a bundle?
153 if (CFRef
<CFURLRef
> pathURL
= makeCFURL(path
))
154 if (CFRef
<CFBundleRef
> bundle
= _CFBundleCreateWithExecutableURLIfMightBeBundle(NULL
, pathURL
)) {
155 Context ctx
; ctx
.offset
= archOffset
;
156 return new BundleDiskRep(bundle
, &ctx
); // ask bundle to make bundle-with-MachO-at-offset
158 // else, must be a Mach-O binary
159 Context ctx
; ctx
.offset
= archOffset
;
160 return new MachORep(path
, &ctx
);
161 } catch (const CommonError
&error
) {
162 switch (error
.unixError()) {
164 MacOSError::throwMe(errSecCSStaticCodeNotFound
);
173 // Default behaviors of DiskRep
175 string
DiskRep::resourcesRootPath()
177 return ""; // has no resources directory
180 CFDictionaryRef
DiskRep::defaultResourceRules()
185 void DiskRep::adjustResources(ResourceBuilder
&builder
)
190 const Requirements
*DiskRep::defaultRequirements(const Architecture
*)
195 Universal
*DiskRep::mainExecutableImage()
197 return NULL
; // no Mach-O executable
200 size_t DiskRep::pageSize()
202 return monolithicPageSize
; // unpaged (monolithic)
205 size_t DiskRep::signingBase()
207 return 0; // whole file (start at beginning)
210 CFArrayRef
DiskRep::modifiedFiles()
212 // by default, claim (just) the main executable modified
213 CFRef
<CFURLRef
> mainURL
= makeCFURL(mainExecutablePath());
214 return makeCFArray(1, mainURL
.get());
217 void DiskRep::flush()
226 DiskRep::Writer::Writer(uint32_t attrs
)
227 : mArch(CPU_TYPE_ANY
), mAttributes(attrs
)
231 DiskRep::Writer::~Writer()
234 uint32_t DiskRep::Writer::attributes() const
235 { return mAttributes
; }
237 void DiskRep::Writer::flush()
240 void DiskRep::Writer::remove()
242 MacOSError::throwMe(errSecCSNotSupported
);
246 } // end namespace CodeSigning
247 } // end namespace Security