1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
/* $Id: RTCrStoreCreateSnapshotById-darwin.cpp $ */
/** @file
* IPRT - RTCrStoreCreateSnapshotById, Darwin.
*/
/*
* Copyright (C) 2006-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
#include <iprt/crypto/store.h>
#include "internal/iprt.h"
#include <iprt/assert.h>
#include <iprt/err.h>
#include <iprt/file.h>
/* HACK ALERT! Shut up those deprecated messages on SecKeychainSearchCreateFromAttributes and SecKeychainSearchCopyNext. */
#include <CoreFoundation/CoreFoundation.h>
#undef DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER
#define DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER
#include <Security/Security.h>
/**
* Checks the trust settings of the certificate.
*
* @returns true if not out-right distructed, otherwise false.
* @param hCert The certificate.
* @param enmTrustDomain The trust settings domain to check relative to.
*/
static bool rtCrStoreIsDarwinCertTrustworthy(SecCertificateRef hCert, SecTrustSettingsDomain enmTrustDomain)
{
bool fResult = true;
CFArrayRef hTrustSettings;
OSStatus orc = SecTrustSettingsCopyTrustSettings(hCert, enmTrustDomain, &hTrustSettings);
if (orc == noErr)
{
CFIndex const cTrustSettings = CFArrayGetCount(hTrustSettings);
for (CFIndex i = 0; i < cTrustSettings; i++)
{
CFDictionaryRef hDict = (CFDictionaryRef)CFArrayGetValueAtIndex(hTrustSettings, i);
AssertContinue(CFGetTypeID(hDict) == CFDictionaryGetTypeID());
CFNumberRef hNum = (CFNumberRef)CFDictionaryGetValue(hDict, kSecTrustSettingsResult);
if (hNum)
{
AssertContinue(CFGetTypeID(hNum) == CFNumberGetTypeID());
SInt32 iNum;
if (CFNumberGetValue(hNum, kCFNumberSInt32Type, &iNum))
{
if (iNum == kSecTrustSettingsResultDeny)
{
fResult = false;
break;
}
}
/* No need to release hNum (get rule). */
}
/* No need to release hDict (get rule). */
}
CFRelease(hTrustSettings);
}
else if (orc != errSecItemNotFound)
{
AssertFailed();
fResult = false;
}
return fResult;
}
static int rtCrStoreAddCertsFromNativeKeychain(RTCRSTORE hStore, SecKeychainRef hKeychain, SecTrustSettingsDomain enmTrustDomain,
int rc, PRTERRINFO pErrInfo)
{
/*
* Enumerate the certificates in the keychain.
*/
SecKeychainSearchRef hSearch;
OSStatus orc = SecKeychainSearchCreateFromAttributes(hKeychain, kSecCertificateItemClass, NULL, &hSearch);
if (orc == noErr)
{
SecKeychainItemRef hItem;
while ((orc = SecKeychainSearchCopyNext(hSearch, &hItem)) == noErr)
{
Assert(CFGetTypeID(hItem) == SecCertificateGetTypeID());
SecCertificateRef hCert = (SecCertificateRef)hItem;
/*
* Check if the current certificate is at all trusted, skip it if it's isn't.
*/
if (rtCrStoreIsDarwinCertTrustworthy(hCert, enmTrustDomain))
{
/*
* Get the certificate data.
*/
CFDataRef hEncodedCert = SecCertificateCopyData(hCert);
Assert(hEncodedCert);
if (hEncodedCert)
{
CFIndex cbEncoded = CFDataGetLength(hEncodedCert);
const uint8_t *pbEncoded = CFDataGetBytePtr(hEncodedCert);
RTERRINFOSTATIC StaticErrInfo;
int rc2 = RTCrStoreCertAddEncoded(hStore, RTCRCERTCTX_F_ENC_X509_DER | RTCRCERTCTX_F_ADD_IF_NOT_FOUND,
pbEncoded, cbEncoded, RTErrInfoInitStatic(&StaticErrInfo));
if (RT_FAILURE(rc2))
{
if (RTErrInfoIsSet(&StaticErrInfo.Core))
RTErrInfoAddF(pErrInfo, -rc2, " %s", StaticErrInfo.Core.pszMsg);
else
RTErrInfoAddF(pErrInfo, -rc2, " %Rrc adding cert", rc2);
rc = -rc2;
}
CFRelease(hEncodedCert);
}
}
CFRelease(hItem);
}
if (orc != errSecItemNotFound)
rc = RTErrInfoAddF(pErrInfo, -VERR_SEARCH_ERROR,
" SecKeychainSearchCopyNext failed with %#x", orc);
CFRelease(hSearch);
}
else
rc = RTErrInfoAddF(pErrInfo, -VERR_SEARCH_ERROR,
" SecKeychainSearchCreateFromAttributes failed with %#x", orc);
return rc;
}
static int rtCrStoreAddCertsFromNativeKeychainFile(RTCRSTORE hStore, const char *pszKeychain,
SecTrustSettingsDomain enmTrustDomain,
int rc, PRTERRINFO pErrInfo)
{
/*
* Open the keychain and call common worker to do the job.
*/
SecKeychainRef hKeychain;
OSStatus orc = SecKeychainOpen(pszKeychain, &hKeychain);
if (orc == noErr)
{
rc = rtCrStoreAddCertsFromNativeKeychain(hStore, hKeychain, enmTrustDomain, rc, pErrInfo);
CFRelease(hKeychain);
}
else if (RTFileExists(pszKeychain))
rc = RTErrInfoAddF(pErrInfo, -VERR_OPEN_FAILED, " SecKeychainOpen failed with %#x on '%s'", orc, pszKeychain);
return rc;
}
static int rtCrStoreAddCertsFromNativeKeystoreDomain(RTCRSTORE hStore, SecPreferencesDomain enmDomain,
SecTrustSettingsDomain enmTrustDomain,
int rc, PRTERRINFO pErrInfo)
{
/*
* Get a list of keystores for this domain and call common worker on each.
*/
CFArrayRef hKeychains;
OSStatus orc = SecKeychainCopyDomainSearchList(enmDomain, &hKeychains);
if (orc == noErr)
{
CFIndex const cEntries = CFArrayGetCount(hKeychains);
for (CFIndex i = 0; i < cEntries; i++)
{
SecKeychainRef hKeychain = (SecKeychainRef)CFArrayGetValueAtIndex(hKeychains, i);
Assert(CFGetTypeID(hKeychain) == SecKeychainGetTypeID());
CFRetain(hKeychain);
rc = rtCrStoreAddCertsFromNativeKeychain(hStore, hKeychain, enmTrustDomain, rc, pErrInfo);
CFRelease(hKeychain);
}
CFRelease(hKeychains);
}
else
rc = RTErrInfoAddF(pErrInfo, -VERR_SEARCH_ERROR,
" SecKeychainCopyDomainSearchList failed with %#x on %d", orc, enmDomain);
return rc;
}
RTDECL(int) RTCrStoreCreateSnapshotById(PRTCRSTORE phStore, RTCRSTOREID enmStoreId, PRTERRINFO pErrInfo)
{
AssertReturn(enmStoreId > RTCRSTOREID_INVALID && enmStoreId < RTCRSTOREID_END, VERR_INVALID_PARAMETER);
/*
* Create an empty in-memory store.
*/
RTCRSTORE hStore;
int rc = RTCrStoreCreateInMem(&hStore, 128);
if (RT_SUCCESS(rc))
{
*phStore = hStore;
/*
* Load the certificates corresponding to the given virtual store ID.
*/
switch (enmStoreId)
{
case RTCRSTOREID_USER_TRUSTED_CAS_AND_CERTIFICATES:
rc = rtCrStoreAddCertsFromNativeKeystoreDomain(hStore, kSecPreferencesDomainUser,
kSecTrustSettingsDomainUser, rc, pErrInfo);
break;
case RTCRSTOREID_SYSTEM_TRUSTED_CAS_AND_CERTIFICATES:
rc = rtCrStoreAddCertsFromNativeKeystoreDomain(hStore, kSecPreferencesDomainSystem,
kSecTrustSettingsDomainSystem, rc, pErrInfo);
rc = rtCrStoreAddCertsFromNativeKeychainFile(hStore,
"/System/Library/Keychains/SystemRootCertificates.keychain",
kSecTrustSettingsDomainSystem, rc, pErrInfo);
break;
default:
AssertFailed(); /* implement me */
}
}
else
RTErrInfoSet(pErrInfo, rc, "RTCrStoreCreateInMem failed");
return rc;
}
RT_EXPORT_SYMBOL(RTCrStoreCreateSnapshotById);
|