2 * Copyright (c) 2006-2012,2014 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 // cdbuilder - constructor for CodeDirectories
27 #include "cdbuilder.h"
28 #include <security_utilities/memutils.h>
31 using namespace UnixPlusPlus
;
32 using LowLevelMemoryUtilities::alignUp
;
36 namespace CodeSigning
{
40 // Create an (empty) builder
42 CodeDirectory::Builder::Builder(HashAlgorithm digestAlgorithm
)
44 mHashType(digestAlgorithm
),
51 mDigestLength
= (uint32_t)MakeHash
<Builder
>(this)->digestLength();
52 mSpecial
= (unsigned char *)calloc(cdSlotMax
, mDigestLength
);
55 CodeDirectory::Builder::~Builder()
63 // Set the source of the main executable (i.e. the code pages)
65 void CodeDirectory::Builder::executable(string path
,
66 size_t pagesize
, size_t offset
, size_t length
)
68 mExec
.close(); // any previously opened one
75 void CodeDirectory::Builder::reopen(string path
, size_t offset
, size_t length
)
77 assert(mExec
); // already called executable()
86 // Set the source for one special slot
88 void CodeDirectory::Builder::specialSlot(SpecialSlot slot
, CFDataRef data
)
90 assert(slot
<= cdSlotMax
);
91 MakeHash
<Builder
> hash(this);
92 hash
->update(CFDataGetBytePtr(data
), CFDataGetLength(data
));
93 hash
->finish(specialSlot(slot
));
94 if (slot
>= mSpecialSlots
)
100 // Allocate a Scatter vector
102 CodeDirectory::Scatter
*CodeDirectory::Builder::scatter(unsigned count
)
104 mScatterSize
= (count
+ 1) * sizeof(Scatter
);
105 if (!(mScatter
= (Scatter
*)::realloc(mScatter
, mScatterSize
)))
106 UnixError::throwMe(ENOMEM
);
107 ::memset(mScatter
, 0, mScatterSize
);
111 // This calculates the fixed size of the code directory
112 // Because of <rdar://problem/16102695>, if the team ID
113 // field is not used, we leave out the team ID offset
114 // as well, to keep cd hashes consistent between
116 const size_t CodeDirectory::Builder::fixedSize(const uint32_t version
)
118 size_t cdSize
= sizeof(CodeDirectory
);
119 if (version
< supportsTeamID
)
120 cdSize
-= sizeof(mDir
->teamIDOffset
);
126 // Calculate the size we'll need for the CodeDirectory as described so far
128 size_t CodeDirectory::Builder::size(const uint32_t version
)
130 assert(mExec
); // must have called executable()
131 if (mExecLength
== 0)
132 mExecLength
= mExec
.fileSize() - mExecOffset
;
134 // how many code pages?
135 if (mPageSize
== 0) { // indefinite - one page
136 mCodeSlots
= (mExecLength
> 0);
137 } else { // finite - calculate from file size
138 mCodeSlots
= (mExecLength
+ mPageSize
- 1) / mPageSize
; // round up
141 size_t offset
= fixedSize(version
);
143 offset
+= mScatterSize
; // scatter vector
144 offset
+= mIdentifier
.size() + 1; // size of identifier (with null byte)
146 offset
+= mTeamID
.size() + 1; // size of teamID (with null byte)
147 offset
+= (mCodeSlots
+ mSpecialSlots
) * mDigestLength
; // hash vector
154 // Take everything added to date and wrap it up in a shiny new CodeDirectory.
156 // Note that this only constructs a CodeDirectory; it does not touch any subsidiary
157 // structures (resource tables, etc.), nor does it create any signature to secure
158 // the CodeDirectory.
159 // The returned CodeDirectory object is yours, and you may modify it as desired.
160 // But the memory layout is set here, so the various sizes and counts should be good
161 // when you call build().
162 // It's up to us to order the dynamic fields as we wish; but note that we currently
163 // don't pad them, and so they should be allocated in non-increasing order of required
164 // alignment. Make sure to keep the code here in sync with the size-calculating code above.
166 CodeDirectory
*CodeDirectory::Builder::build()
168 assert(mExec
); // must have (successfully) called executable()
172 size_t identLength
= mIdentifier
.size() + 1;
173 size_t teamIDLength
= mTeamID
.size() + 1;
175 // Determine the version
176 if (mTeamID
.size()) {
177 version
= currentVersion
;
179 version
= supportsScatter
;
182 size_t total
= size(version
);
183 if (!(mDir
= (CodeDirectory
*)calloc(1, total
))) // initialize to zero
184 UnixError::throwMe(ENOMEM
);
186 if (mExecLength
> UINT32_MAX
)
187 MacOSError::throwMe(errSecCSTooBig
);
190 mDir
->initialize(total
);
191 mDir
->version
= version
;
192 mDir
->flags
= mFlags
;
193 mDir
->nSpecialSlots
= (uint32_t)mSpecialSlots
;
194 mDir
->nCodeSlots
= (uint32_t)mCodeSlots
;
195 mDir
->codeLimit
= (uint32_t)mExecLength
;
196 mDir
->hashType
= mHashType
;
197 mDir
->hashSize
= mDigestLength
;
200 assert(frexp(mPageSize
, &pglog
) == 0.5); // must be power of 2
201 frexp(mPageSize
, &pglog
);
203 mDir
->pageSize
= pglog
- 1;
205 mDir
->pageSize
= 0; // means infinite page size
207 // locate and fill flex fields
208 size_t offset
= fixedSize(mDir
->version
);
211 mDir
->scatterOffset
= (uint32_t)offset
;
212 memcpy(mDir
->scatterVector(), mScatter
, mScatterSize
);
213 offset
+= mScatterSize
;
216 mDir
->identOffset
= (uint32_t)offset
;
217 memcpy(mDir
->identifier(), mIdentifier
.c_str(), identLength
);
218 offset
+= identLength
;
220 if (mTeamID
.size()) {
221 mDir
->teamIDOffset
= (uint32_t)offset
;
222 memcpy(mDir
->teamID(), mTeamID
.c_str(), teamIDLength
);
223 offset
+= teamIDLength
;
225 // (add new flexibly-allocated fields here)
227 mDir
->hashOffset
= (uint32_t)(offset
+ mSpecialSlots
* mDigestLength
);
228 offset
+= (mSpecialSlots
+ mCodeSlots
) * mDigestLength
;
229 assert(offset
== total
); // matches allocated size
231 // fill special slots
232 memset((*mDir
)[(int)-mSpecialSlots
], 0, mDigestLength
* mSpecialSlots
);
233 for (size_t slot
= 1; slot
<= mSpecialSlots
; ++slot
)
234 memcpy((*mDir
)[(int)-slot
], specialSlot((SpecialSlot
)slot
), mDigestLength
);
237 mExec
.seek(mExecOffset
);
238 size_t remaining
= mExecLength
;
239 for (unsigned int slot
= 0; slot
< mCodeSlots
; ++slot
) {
240 size_t thisPage
= min(mPageSize
, remaining
);
241 MakeHash
<Builder
> hasher(this);
242 generateHash(hasher
, mExec
, (*mDir
)[slot
], thisPage
);
243 remaining
-= thisPage
;
246 // all done. Pass ownership to caller