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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/ssl/client_cert_store_mac.h"
#include <CommonCrypto/CommonDigest.h>
#include <CoreFoundation/CFArray.h>
#include <CoreServices/CoreServices.h>
#include <Security/SecBase.h>
#include <Security/Security.h>
#include <algorithm>
#include <functional>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/apple/osstatus_logging.h"
#include "base/apple/scoped_cftyperef.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/strings/sys_string_conversions.h"
#include "base/synchronization/lock.h"
#include "crypto/mac_security_services_lock.h"
#include "net/base/features.h"
#include "net/base/host_port_pair.h"
#include "net/cert/x509_util.h"
#include "net/cert/x509_util_apple.h"
#include "net/ssl/client_cert_identity_mac.h"
#include "net/ssl/ssl_platform_key_util.h"
#include "third_party/boringssl/src/pki/extended_key_usage.h"
#include "third_party/boringssl/src/pki/parse_certificate.h"
using base::apple::ScopedCFTypeRef;
namespace net {
namespace {
using ClientCertIdentityMacList =
std::vector<std::unique_ptr<ClientCertIdentityMac>>;
// Gets the issuer for a given cert, starting with the cert itself and
// including the intermediate and finally root certificates (if any).
// This function calls SecTrust but doesn't actually pay attention to the trust
// result: it shouldn't be used to determine trust, just to traverse the chain.
OSStatus CopyCertChain(
SecCertificateRef cert_handle,
base::apple::ScopedCFTypeRef<CFArrayRef>* out_cert_chain) {
DCHECK(cert_handle);
DCHECK(out_cert_chain);
// Create an SSL policy ref configured for client cert evaluation.
ScopedCFTypeRef<SecPolicyRef> ssl_policy(
SecPolicyCreateSSL(/*server=*/false, /*hostname=*/nullptr));
if (!ssl_policy)
return errSecNoPolicyModule;
// Create a SecTrustRef.
ScopedCFTypeRef<CFArrayRef> input_certs(CFArrayCreate(
nullptr, const_cast<const void**>(reinterpret_cast<void**>(&cert_handle)),
1, &kCFTypeArrayCallBacks));
OSStatus result;
SecTrustRef trust_ref = nullptr;
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
result = SecTrustCreateWithCertificates(input_certs.get(), ssl_policy.get(),
&trust_ref);
}
if (result)
return result;
ScopedCFTypeRef<SecTrustRef> trust(trust_ref);
// Evaluate trust, which creates the cert chain.
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
// The return value is intentionally ignored since we only care about
// building a cert chain, not whether it is trusted (the server is the
// only one that can decide that.)
std::ignore = SecTrustEvaluateWithError(trust.get(), nullptr);
out_cert_chain->reset(SecTrustCopyCertificateChain(trust.get()));
}
return result;
}
// Returns true if |*identity| is issued by an authority in |valid_issuers|
// according to Keychain Services, rather than using |identity|'s intermediate
// certificates. If it is, |*identity| is updated to include the intermediates.
bool IsIssuedByInKeychain(const std::vector<std::string>& valid_issuers,
ClientCertIdentityMac* identity) {
DCHECK(identity);
DCHECK(identity->sec_identity_ref());
ScopedCFTypeRef<SecCertificateRef> os_cert;
int err = SecIdentityCopyCertificate(identity->sec_identity_ref(),
os_cert.InitializeInto());
if (err != noErr)
return false;
base::apple::ScopedCFTypeRef<CFArrayRef> cert_chain;
OSStatus result = CopyCertChain(os_cert.get(), &cert_chain);
if (result) {
OSSTATUS_LOG(ERROR, result) << "CopyCertChain error";
return false;
}
if (!cert_chain)
return false;
std::vector<base::apple::ScopedCFTypeRef<SecCertificateRef>> intermediates;
for (CFIndex i = 1, chain_count = CFArrayGetCount(cert_chain.get());
i < chain_count; ++i) {
SecCertificateRef sec_cert = reinterpret_cast<SecCertificateRef>(
const_cast<void*>(CFArrayGetValueAtIndex(cert_chain.get(), i)));
intermediates.emplace_back(sec_cert, base::scoped_policy::RETAIN);
}
// Allow UTF-8 inside PrintableStrings in client certificates. See
// crbug.com/770323.
X509Certificate::UnsafeCreateOptions options;
options.printable_string_is_utf8 = true;
scoped_refptr<X509Certificate> new_cert(
x509_util::CreateX509CertificateFromSecCertificate(os_cert, intermediates,
options));
if (!new_cert || !new_cert->IsIssuedByEncoded(valid_issuers))
return false;
std::vector<bssl::UniquePtr<CRYPTO_BUFFER>> intermediate_buffers;
intermediate_buffers.reserve(new_cert->intermediate_buffers().size());
for (const auto& intermediate : new_cert->intermediate_buffers()) {
intermediate_buffers.push_back(bssl::UpRef(intermediate.get()));
}
identity->SetIntermediates(std::move(intermediate_buffers));
return true;
}
// Does |cert|'s usage allow SSL client authentication?
bool SupportsSSLClientAuth(CRYPTO_BUFFER* cert) {
DCHECK(cert);
bssl::ParseCertificateOptions options;
options.allow_invalid_serial_numbers = true;
bssl::der::Input tbs_certificate_tlv;
bssl::der::Input signature_algorithm_tlv;
bssl::der::BitString signature_value;
bssl::ParsedTbsCertificate tbs;
if (!bssl::ParseCertificate(
bssl::der::Input(CRYPTO_BUFFER_data(cert), CRYPTO_BUFFER_len(cert)),
&tbs_certificate_tlv, &signature_algorithm_tlv, &signature_value,
nullptr /* errors*/) ||
!ParseTbsCertificate(tbs_certificate_tlv, options, &tbs,
nullptr /*errors*/)) {
return false;
}
if (!tbs.extensions_tlv)
return true;
std::map<bssl::der::Input, bssl::ParsedExtension> extensions;
if (!ParseExtensions(tbs.extensions_tlv.value(), &extensions))
return false;
// RFC5280 says to take the intersection of the two extensions.
//
// We only support signature-based client certificates, so we need the
// digitalSignature bit.
//
// In particular, if a key has the nonRepudiation bit and not the
// digitalSignature one, we will not offer it to the user.
if (auto it = extensions.find(bssl::der::Input(bssl::kKeyUsageOid));
it != extensions.end()) {
bssl::der::BitString key_usage;
if (!bssl::ParseKeyUsage(it->second.value, &key_usage) ||
!key_usage.AssertsBit(bssl::KEY_USAGE_BIT_DIGITAL_SIGNATURE)) {
return false;
}
}
if (auto it = extensions.find(bssl::der::Input(bssl::kExtKeyUsageOid));
it != extensions.end()) {
std::vector<bssl::der::Input> extended_key_usage;
if (!bssl::ParseEKUExtension(it->second.value, &extended_key_usage)) {
return false;
}
bool found_acceptable_eku = false;
for (const auto& oid : extended_key_usage) {
if (oid == bssl::der::Input(bssl::kAnyEKU) ||
oid == bssl::der::Input(bssl::kClientAuth)) {
found_acceptable_eku = true;
break;
}
}
if (!found_acceptable_eku)
return false;
}
return true;
}
// Examines the certificates in |preferred_identity| and |regular_identities| to
// find all certificates that match the client certificate request in |request|,
// storing the matching certificates in |selected_identities|.
// If |query_keychain| is true, Keychain Services will be queried to construct
// full certificate chains. If it is false, only the the certificates and their
// intermediates (available via X509Certificate::intermediate_buffers())
// will be considered.
void GetClientCertsImpl(
std::unique_ptr<ClientCertIdentityMac> preferred_identity,
ClientCertIdentityMacList regular_identities,
const SSLCertRequestInfo& request,
bool query_keychain,
ClientCertIdentityList* selected_identities) {
scoped_refptr<X509Certificate> preferred_cert_orig;
ClientCertIdentityMacList preliminary_list = std::move(regular_identities);
if (preferred_identity) {
preferred_cert_orig = preferred_identity->certificate();
preliminary_list.insert(preliminary_list.begin(),
std::move(preferred_identity));
}
selected_identities->clear();
for (size_t i = 0; i < preliminary_list.size(); ++i) {
std::unique_ptr<ClientCertIdentityMac>& cert = preliminary_list[i];
if (cert->certificate()->HasExpired() ||
!SupportsSSLClientAuth(cert->certificate()->cert_buffer())) {
continue;
}
// Skip duplicates (a cert may be in multiple keychains).
if (std::ranges::any_of(
*selected_identities,
[&cert](const std::unique_ptr<ClientCertIdentity>&
other_cert_identity) {
return x509_util::CryptoBufferEqual(
cert->certificate()->cert_buffer(),
other_cert_identity->certificate()->cert_buffer());
})) {
continue;
}
// Check if the certificate issuer is allowed by the server.
if (request.cert_authorities.empty() ||
cert->certificate()->IsIssuedByEncoded(request.cert_authorities) ||
(query_keychain &&
IsIssuedByInKeychain(request.cert_authorities, cert.get()))) {
selected_identities->push_back(std::move(cert));
}
}
// Preferred cert should appear first in the ui, so exclude it from the
// sorting. Compare the cert_buffer since the X509Certificate object may
// have changed if intermediates were added.
ClientCertIdentityList::iterator sort_begin = selected_identities->begin();
ClientCertIdentityList::iterator sort_end = selected_identities->end();
if (preferred_cert_orig && sort_begin != sort_end &&
x509_util::CryptoBufferEqual(
sort_begin->get()->certificate()->cert_buffer(),
preferred_cert_orig->cert_buffer())) {
++sort_begin;
}
sort(sort_begin, sort_end, ClientCertIdentitySorter());
}
// Given a |sec_identity|, identifies its corresponding certificate, and either
// adds it to |regular_identities| or assigns it to |preferred_identity|, if the
// |sec_identity| matches the |preferred_sec_identity|.
void AddIdentity(ScopedCFTypeRef<SecIdentityRef> sec_identity,
SecIdentityRef preferred_sec_identity,
ClientCertIdentityMacList* regular_identities,
std::unique_ptr<ClientCertIdentityMac>* preferred_identity) {
OSStatus err;
ScopedCFTypeRef<SecCertificateRef> cert_handle;
err = SecIdentityCopyCertificate(sec_identity.get(),
cert_handle.InitializeInto());
if (err != noErr)
return;
// Allow UTF-8 inside PrintableStrings in client certificates. See
// crbug.com/770323.
X509Certificate::UnsafeCreateOptions options;
options.printable_string_is_utf8 = true;
scoped_refptr<X509Certificate> cert(
x509_util::CreateX509CertificateFromSecCertificate(cert_handle, {},
options));
if (!cert)
return;
if (preferred_sec_identity &&
CFEqual(preferred_sec_identity, sec_identity.get())) {
*preferred_identity = std::make_unique<ClientCertIdentityMac>(
std::move(cert), std::move(sec_identity));
} else {
regular_identities->push_back(std::make_unique<ClientCertIdentityMac>(
std::move(cert), std::move(sec_identity)));
}
}
ClientCertIdentityList GetClientCertsOnBackgroundThread(
scoped_refptr<const SSLCertRequestInfo> request) {
std::string server_domain = request->host_and_port.host();
ScopedCFTypeRef<SecIdentityRef> preferred_sec_identity;
if (!server_domain.empty()) {
// See if there's an identity preference for this domain:
ScopedCFTypeRef<CFStringRef> domain_str(
base::SysUTF8ToCFStringRef("https://" + server_domain));
// While SecIdentityCopyPreferred appears to take a list of CA issuers
// to restrict the identity search to, within Security.framework the
// argument is ignored and filtering unimplemented. See SecIdentity.cpp in
// libsecurity_keychain, specifically
// _SecIdentityCopyPreferenceMatchingName().
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
preferred_sec_identity.reset(
SecIdentityCopyPreferred(domain_str.get(), nullptr, nullptr));
}
}
// Now enumerate the identities in the available keychains.
std::unique_ptr<ClientCertIdentityMac> preferred_identity;
ClientCertIdentityMacList regular_identities;
// macOS provides two ways to search for identities, SecItemCopyMatching() and
// SecIdentitySearchCreate(). SecIdentitySearchCreate() is deprecated, as it
// relies on CSSM_KEYUSE_SIGN (part of the deprecated CDSM/CSSA
// implementation). At one point, we merged the results of the old and new
// APIs, to account for any identities that were not returned by
// SecItemCopyMatching(), particularly smartcard-based identities. It is
// unclear whether such identities still exist, but the APIs have been
// deprecated since 10.7.
//
// TODO(crbug.com/40233280): The SecIdentitySearchCreate() codepath is now
// disabled by default, but can be re-enabled via field trials if there are
// still issues. This will reach stable in M137 (May 2025). Remove this branch
// sometime after August 2025.
if (base::FeatureList::IsEnabled(
features::kIncludeDeprecatedClientCertLookup)) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
SecIdentitySearchRef search = nullptr;
OSStatus err;
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
err = SecIdentitySearchCreate(nullptr, CSSM_KEYUSE_SIGN, &search);
}
if (err) {
return ClientCertIdentityList();
}
ScopedCFTypeRef<SecIdentitySearchRef> scoped_search(search);
while (!err) {
ScopedCFTypeRef<SecIdentityRef> sec_identity;
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
err = SecIdentitySearchCopyNext(search, sec_identity.InitializeInto());
}
if (err) {
break;
}
AddIdentity(std::move(sec_identity), preferred_sec_identity.get(),
®ular_identities, &preferred_identity);
}
if (err != errSecItemNotFound) {
OSSTATUS_LOG(ERROR, err) << "SecIdentitySearch error";
return ClientCertIdentityList();
}
#pragma clang diagnostic pop // "-Wdeprecated-declarations"
}
static const void* kKeys[] = {
kSecClass, kSecMatchLimit, kSecReturnRef, kSecAttrCanSign,
};
static const void* kValues[] = {
kSecClassIdentity, kSecMatchLimitAll, kCFBooleanTrue, kCFBooleanTrue,
};
ScopedCFTypeRef<CFDictionaryRef> query(CFDictionaryCreate(
kCFAllocatorDefault, kKeys, kValues, std::size(kValues),
&kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks));
ScopedCFTypeRef<CFArrayRef> result;
OSStatus err;
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
err = SecItemCopyMatching(
query.get(), reinterpret_cast<CFTypeRef*>(result.InitializeInto()));
}
if (!err) {
for (CFIndex i = 0; i < CFArrayGetCount(result.get()); i++) {
SecIdentityRef item = reinterpret_cast<SecIdentityRef>(
const_cast<void*>(CFArrayGetValueAtIndex(result.get(), i)));
AddIdentity(
ScopedCFTypeRef<SecIdentityRef>(item, base::scoped_policy::RETAIN),
preferred_sec_identity.get(), ®ular_identities,
&preferred_identity);
}
}
ClientCertIdentityList selected_identities;
GetClientCertsImpl(std::move(preferred_identity),
std::move(regular_identities), *request, true,
&selected_identities);
return selected_identities;
}
} // namespace
ClientCertStoreMac::ClientCertStoreMac() = default;
ClientCertStoreMac::~ClientCertStoreMac() = default;
void ClientCertStoreMac::GetClientCerts(
scoped_refptr<const SSLCertRequestInfo> request,
ClientCertListCallback callback) {
GetSSLPlatformKeyTaskRunner()->PostTaskAndReplyWithResult(
FROM_HERE,
base::BindOnce(&GetClientCertsOnBackgroundThread, std::move(request)),
base::BindOnce(&ClientCertStoreMac::OnClientCertsResponse,
weak_factory_.GetWeakPtr(), std::move(callback)));
}
void ClientCertStoreMac::OnClientCertsResponse(
ClientCertListCallback callback,
ClientCertIdentityList identities) {
std::move(callback).Run(std::move(identities));
}
bool ClientCertStoreMac::SelectClientCertsForTesting(
ClientCertIdentityMacList input_identities,
const SSLCertRequestInfo& request,
ClientCertIdentityList* selected_identities) {
GetClientCertsImpl(nullptr, std::move(input_identities), request, false,
selected_identities);
return true;
}
bool ClientCertStoreMac::SelectClientCertsGivenPreferredForTesting(
std::unique_ptr<ClientCertIdentityMac> preferred_identity,
ClientCertIdentityMacList regular_identities,
const SSLCertRequestInfo& request,
ClientCertIdentityList* selected_identities) {
GetClientCertsImpl(std::move(preferred_identity),
std::move(regular_identities), request, false,
selected_identities);
return true;
}
} // namespace net
|