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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
|
// Copyright 2017 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/cert/internal/trust_store_mac.h"
#include <Security/Security.h>
#include <map>
#include <string_view>
#include <vector>
#include "base/apple/foundation_util.h"
#include "base/apple/osstatus_logging.h"
#include "base/apple/scoped_cftyperef.h"
#include "base/atomicops.h"
#include "base/callback_list.h"
#include "base/containers/contains.h"
#include "base/containers/flat_map.h"
#include "base/containers/to_vector.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/metrics/histogram_functions.h"
#include "base/no_destructor.h"
#include "base/numerics/safe_conversions.h"
#include "base/strings/strcat.h"
#include "base/synchronization/lock.h"
#include "base/timer/elapsed_timer.h"
#include "crypto/hash.h"
#include "crypto/mac_security_services_lock.h"
#include "net/base/features.h"
#include "net/base/hash_value.h"
#include "net/base/network_notification_thread_mac.h"
#include "net/cert/internal/platform_trust_store.h"
#include "net/cert/test_keychain_search_list_mac.h"
#include "net/cert/x509_util.h"
#include "net/cert/x509_util_apple.h"
#include "third_party/boringssl/src/include/openssl/sha.h"
#include "third_party/boringssl/src/pki/cert_errors.h"
#include "third_party/boringssl/src/pki/cert_issuer_source_static.h"
#include "third_party/boringssl/src/pki/extended_key_usage.h"
#include "third_party/boringssl/src/pki/parse_name.h"
#include "third_party/boringssl/src/pki/parsed_certificate.h"
#include "third_party/boringssl/src/pki/trust_store.h"
namespace net {
namespace {
// The rules for interpreting trust settings are documented at:
// https://developer.apple.com/reference/security/1400261-sectrustsettingscopytrustsetting?language=objc
// Indicates the trust status of a certificate.
enum class TrustStatus {
// Trust status is unknown / uninitialized.
UNKNOWN,
// Certificate inherits trust value from its issuer. If the certificate is the
// root of the chain, this implies distrust.
UNSPECIFIED,
// Certificate is a trust anchor.
TRUSTED,
// Certificate is blocked / explicitly distrusted.
DISTRUSTED
};
bssl::CertificateTrust TrustStatusToCertificateTrust(TrustStatus trust_status) {
switch (trust_status) {
case TrustStatus::TRUSTED: {
// Mac trust settings don't distinguish between trusted anchors and
// trusted leafs, return a trust record valid for both, which will
// depend on the context the certificate is encountered in.
bssl::CertificateTrust trust =
bssl::CertificateTrust::ForTrustAnchorOrLeaf()
.WithEnforceAnchorExpiry()
.WithEnforceAnchorConstraints()
.WithRequireAnchorBasicConstraints();
return trust;
}
case TrustStatus::DISTRUSTED:
return bssl::CertificateTrust::ForDistrusted();
case TrustStatus::UNSPECIFIED:
return bssl::CertificateTrust::ForUnspecified();
case TrustStatus::UNKNOWN:
// UNKNOWN is an implementation detail of TrustImpl and should never be
// returned.
NOTREACHED();
}
return bssl::CertificateTrust::ForUnspecified();
}
// Returns trust status of usage constraints dictionary |trust_dict| for a
// certificate that |is_self_issued|.
TrustStatus IsTrustDictionaryTrustedForPolicy(
CFDictionaryRef trust_dict,
bool is_self_issued,
const CFStringRef target_policy_oid) {
crypto::GetMacSecurityServicesLock().AssertAcquired();
// An empty trust dict should be interpreted as
// kSecTrustSettingsResultTrustRoot. This is handled by falling through all
// the conditions below with the default value of |trust_settings_result|.
// Trust settings may be scoped to a single application, by checking that the
// code signing identity of the current application matches the serialized
// code signing identity in the kSecTrustSettingsApplication key.
// As this is not presently supported, skip any trust settings scoped to the
// application.
if (CFDictionaryContainsKey(trust_dict, kSecTrustSettingsApplication))
return TrustStatus::UNSPECIFIED;
// Trust settings may be scoped using policy-specific constraints. For
// example, SSL trust settings might be scoped to a single hostname, or EAP
// settings specific to a particular WiFi network.
// As this is not presently supported, skip any policy-specific trust
// settings.
if (CFDictionaryContainsKey(trust_dict, kSecTrustSettingsPolicyString))
return TrustStatus::UNSPECIFIED;
// Ignoring kSecTrustSettingsKeyUsage for now; it does not seem relevant to
// the TLS case.
// If the trust settings are scoped to a specific policy (via
// kSecTrustSettingsPolicy), ensure that the policy is the same policy as
// |target_policy_oid|. If there is no kSecTrustSettingsPolicy key, it's
// considered a match for all policies.
if (CFDictionaryContainsKey(trust_dict, kSecTrustSettingsPolicy)) {
SecPolicyRef policy_ref = base::apple::GetValueFromDictionary<SecPolicyRef>(
trust_dict, kSecTrustSettingsPolicy);
if (!policy_ref) {
return TrustStatus::UNSPECIFIED;
}
base::apple::ScopedCFTypeRef<CFDictionaryRef> policy_dict(
SecPolicyCopyProperties(policy_ref));
// kSecPolicyOid is guaranteed to be present in the policy dictionary.
CFStringRef policy_oid = base::apple::GetValueFromDictionary<CFStringRef>(
policy_dict.get(), kSecPolicyOid);
if (!CFEqual(policy_oid, target_policy_oid))
return TrustStatus::UNSPECIFIED;
}
// If kSecTrustSettingsResult is not present in the trust dict,
// kSecTrustSettingsResultTrustRoot is assumed.
int trust_settings_result = kSecTrustSettingsResultTrustRoot;
if (CFDictionaryContainsKey(trust_dict, kSecTrustSettingsResult)) {
CFNumberRef trust_settings_result_ref =
base::apple::GetValueFromDictionary<CFNumberRef>(
trust_dict, kSecTrustSettingsResult);
if (!trust_settings_result_ref ||
!CFNumberGetValue(trust_settings_result_ref, kCFNumberIntType,
&trust_settings_result)) {
return TrustStatus::UNSPECIFIED;
}
}
if (trust_settings_result == kSecTrustSettingsResultDeny)
return TrustStatus::DISTRUSTED;
// This is a bit of a hack: if the cert is self-issued allow either
// kSecTrustSettingsResultTrustRoot or kSecTrustSettingsResultTrustAsRoot on
// the basis that SecTrustSetTrustSettings should not allow creating an
// invalid trust record in the first place. (The spec is that
// kSecTrustSettingsResultTrustRoot can only be applied to root(self-signed)
// certs and kSecTrustSettingsResultTrustAsRoot is used for other certs.)
// This hack avoids having to check the signature on the cert which is slow
// if using the platform APIs, and may require supporting MD5 signature
// algorithms on some older OSX versions or locally added roots, which is
// undesirable in the built-in signature verifier.
if (is_self_issued) {
return (trust_settings_result == kSecTrustSettingsResultTrustRoot ||
trust_settings_result == kSecTrustSettingsResultTrustAsRoot)
? TrustStatus::TRUSTED
: TrustStatus::UNSPECIFIED;
}
// kSecTrustSettingsResultTrustAsRoot can only be applied to non-root certs.
return (trust_settings_result == kSecTrustSettingsResultTrustAsRoot)
? TrustStatus::TRUSTED
: TrustStatus::UNSPECIFIED;
}
// Returns true if the trust settings array |trust_settings| for a certificate
// that |is_self_issued| should be treated as a trust anchor.
TrustStatus IsTrustSettingsTrustedForPolicy(CFArrayRef trust_settings,
bool is_self_issued,
const CFStringRef policy_oid) {
// An empty trust settings array (that is, the trust_settings parameter
// returns a valid but empty CFArray) means "always trust this certificate"
// with an overall trust setting for the certificate of
// kSecTrustSettingsResultTrustRoot.
if (CFArrayGetCount(trust_settings) == 0) {
return is_self_issued ? TrustStatus::TRUSTED : TrustStatus::UNSPECIFIED;
}
for (CFIndex i = 0, settings_count = CFArrayGetCount(trust_settings);
i < settings_count; ++i) {
CFDictionaryRef trust_dict = reinterpret_cast<CFDictionaryRef>(
const_cast<void*>(CFArrayGetValueAtIndex(trust_settings, i)));
TrustStatus trust = IsTrustDictionaryTrustedForPolicy(
trust_dict, is_self_issued, policy_oid);
if (trust != TrustStatus::UNSPECIFIED)
return trust;
}
return TrustStatus::UNSPECIFIED;
}
// Returns the trust status for |cert_handle| for the policy |policy_oid| in
// |trust_domain|.
TrustStatus IsSecCertificateTrustedForPolicyInDomain(
SecCertificateRef cert_handle,
const bool is_self_issued,
const CFStringRef policy_oid,
SecTrustSettingsDomain trust_domain) {
crypto::GetMacSecurityServicesLock().AssertAcquired();
base::apple::ScopedCFTypeRef<CFArrayRef> trust_settings;
OSStatus err = SecTrustSettingsCopyTrustSettings(
cert_handle, trust_domain, trust_settings.InitializeInto());
if (err == errSecItemNotFound) {
// No trust settings for that domain.. try the next.
return TrustStatus::UNSPECIFIED;
}
if (err) {
OSSTATUS_LOG(ERROR, err) << "SecTrustSettingsCopyTrustSettings error";
return TrustStatus::UNSPECIFIED;
}
TrustStatus trust = IsTrustSettingsTrustedForPolicy(
trust_settings.get(), is_self_issued, policy_oid);
return trust;
}
TrustStatus IsCertificateTrustedForPolicyInDomain(
const bssl::ParsedCertificate* cert,
const CFStringRef policy_oid,
SecTrustSettingsDomain trust_domain) {
// TODO(eroman): Inefficient -- path building will convert between
// SecCertificateRef and bssl::ParsedCertificate representations multiple
// times (when getting the issuers, and again here).
//
// This conversion will also be done for each domain the cert policy is
// checked, but the TrustDomainCache ensures this function is only called on
// domains that actually have settings for the cert. The common case is that
// a cert will have trust settings in only zero or one domains, and when in
// more than one domain it would generally be because one domain is
// overriding the setting in the next, so it would only get done once anyway.
base::apple::ScopedCFTypeRef<SecCertificateRef> cert_handle =
x509_util::CreateSecCertificateFromBytes(cert->der_cert());
if (!cert_handle)
return TrustStatus::UNSPECIFIED;
const bool is_self_issued =
cert->normalized_subject() == cert->normalized_issuer();
return IsSecCertificateTrustedForPolicyInDomain(
cert_handle.get(), is_self_issued, policy_oid, trust_domain);
}
TrustStatus IsCertificateTrustedForPolicy(const bssl::ParsedCertificate* cert,
SecCertificateRef cert_handle,
const CFStringRef policy_oid) {
crypto::GetMacSecurityServicesLock().AssertAcquired();
const bool is_self_issued =
cert->normalized_subject() == cert->normalized_issuer();
// Evaluate user trust domain, then admin. User settings can override
// admin (and both override the system domain, but we don't check that).
for (const auto& trust_domain :
{kSecTrustSettingsDomainUser, kSecTrustSettingsDomainAdmin}) {
base::apple::ScopedCFTypeRef<CFArrayRef> trust_settings;
OSStatus err;
err = SecTrustSettingsCopyTrustSettings(cert_handle, trust_domain,
trust_settings.InitializeInto());
if (err != errSecSuccess) {
if (err == errSecItemNotFound) {
// No trust settings for that domain.. try the next.
continue;
}
OSSTATUS_LOG(ERROR, err) << "SecTrustSettingsCopyTrustSettings error";
continue;
}
TrustStatus trust = IsTrustSettingsTrustedForPolicy(
trust_settings.get(), is_self_issued, policy_oid);
if (trust != TrustStatus::UNSPECIFIED)
return trust;
}
// No trust settings, or none of the settings were for the correct policy, or
// had the correct trust result.
return TrustStatus::UNSPECIFIED;
}
// Returns true if |cert| would never be a valid intermediate. (A return
// value of false does not imply that it is valid.) This is an optimization
// to avoid using memory for caching certs that would never lead to a valid
// chain. It's not intended to exhaustively test everything that
// VerifyCertificateChain does, just to filter out some of the most obviously
// unusable certs.
bool IsNotAcceptableIntermediate(const bssl::ParsedCertificate* cert,
const CFStringRef policy_oid) {
if (!cert->has_basic_constraints() || !cert->basic_constraints().is_ca) {
return true;
}
// EKU filter is only implemented for TLS server auth since that's all we
// actually care about.
if (cert->has_extended_key_usage() &&
CFEqual(policy_oid, kSecPolicyAppleSSL) &&
!base::Contains(cert->extended_key_usage(),
bssl::der::Input(bssl::kAnyEKU)) &&
!base::Contains(cert->extended_key_usage(),
bssl::der::Input(bssl::kServerAuth))) {
return true;
}
// TODO(mattm): filter on other things too? (key usage, ...?)
return false;
}
// Caches certificates and calculated trust status for certificates present in
// a single trust domain.
class TrustDomainCacheFullCerts {
public:
struct TrustStatusDetails {
TrustStatus trust_status = TrustStatus::UNKNOWN;
};
TrustDomainCacheFullCerts(SecTrustSettingsDomain domain,
CFStringRef policy_oid)
: domain_(domain), policy_oid_(policy_oid) {
DCHECK(policy_oid_);
}
TrustDomainCacheFullCerts(const TrustDomainCacheFullCerts&) = delete;
TrustDomainCacheFullCerts& operator=(const TrustDomainCacheFullCerts&) =
delete;
// (Re-)Initializes the cache with the certs in |domain_| set to UNKNOWN trust
// status.
void Initialize() {
trust_status_cache_.clear();
cert_issuer_source_.Clear();
base::apple::ScopedCFTypeRef<CFArrayRef> cert_array;
OSStatus rv;
{
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
rv = SecTrustSettingsCopyCertificates(domain_,
cert_array.InitializeInto());
}
if (rv != noErr) {
// Note: SecTrustSettingsCopyCertificates can legitimately return
// errSecNoTrustSettings if there are no trust settings in |domain_|.
HistogramTrustDomainCertCount(0U);
return;
}
std::vector<std::pair<SHA256HashValue, TrustStatusDetails>>
trust_status_vector;
for (CFIndex i = 0, size = CFArrayGetCount(cert_array.get()); i < size;
++i) {
SecCertificateRef cert = reinterpret_cast<SecCertificateRef>(
const_cast<void*>(CFArrayGetValueAtIndex(cert_array.get(), i)));
base::apple::ScopedCFTypeRef<CFDataRef> der_data(
SecCertificateCopyData(cert));
if (!der_data) {
LOG(ERROR) << "SecCertificateCopyData error";
continue;
}
auto buffer = x509_util::CreateCryptoBuffer(
base::apple::CFDataToSpan(der_data.get()));
bssl::CertErrors errors;
bssl::ParseCertificateOptions options;
options.allow_invalid_serial_numbers = true;
std::shared_ptr<const bssl::ParsedCertificate> parsed_cert =
bssl::ParsedCertificate::Create(std::move(buffer), options, &errors);
if (!parsed_cert) {
LOG(ERROR) << "Error parsing certificate:\n" << errors.ToDebugString();
continue;
}
cert_issuer_source_.AddCert(std::move(parsed_cert));
trust_status_vector.emplace_back(x509_util::CalculateFingerprint256(cert),
TrustStatusDetails());
}
HistogramTrustDomainCertCount(trust_status_vector.size());
trust_status_cache_ = base::flat_map<SHA256HashValue, TrustStatusDetails>(
std::move(trust_status_vector));
}
// Returns the trust status for |cert| in |domain_|.
TrustStatus IsCertTrusted(const bssl::ParsedCertificate* cert,
const SHA256HashValue& cert_hash) {
auto cache_iter = trust_status_cache_.find(cert_hash);
if (cache_iter == trust_status_cache_.end()) {
// Cert does not have trust settings in this domain, return UNSPECIFIED.
return TrustStatus::UNSPECIFIED;
}
if (cache_iter->second.trust_status != TrustStatus::UNKNOWN) {
// Cert has trust settings and trust has already been calculated, return
// the cached value.
return cache_iter->second.trust_status;
}
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
// Cert has trust settings but trust has not been calculated yet.
// Calculate it now, insert into cache, and return.
TrustStatus cert_trust =
IsCertificateTrustedForPolicyInDomain(cert, policy_oid_, domain_);
cache_iter->second.trust_status = cert_trust;
return cert_trust;
}
// Returns true if the certificate with |cert_hash| is present in |domain_|.
bool ContainsCert(const SHA256HashValue& cert_hash) const {
return trust_status_cache_.find(cert_hash) != trust_status_cache_.end();
}
// Returns a bssl::CertIssuerSource containing all the certificates that are
// present in |domain_|.
bssl::CertIssuerSourceStatic& cert_issuer_source() {
return cert_issuer_source_;
}
private:
void HistogramTrustDomainCertCount(size_t count) const {
std::string_view domain_name;
switch (domain_) {
case kSecTrustSettingsDomainUser:
domain_name = "User";
break;
case kSecTrustSettingsDomainAdmin:
domain_name = "Admin";
break;
case kSecTrustSettingsDomainSystem:
NOTREACHED();
}
base::UmaHistogramCounts1000(
base::StrCat(
{"Net.CertVerifier.MacTrustDomainCertCount.", domain_name}),
count);
}
const SecTrustSettingsDomain domain_;
const CFStringRef policy_oid_;
base::flat_map<SHA256HashValue, TrustStatusDetails> trust_status_cache_;
bssl::CertIssuerSourceStatic cert_issuer_source_;
};
// Watches macOS keychain for |event_mask| notifications, and notifies any
// registered callbacks. This is necessary as the keychain callback API is
// keyed only on the callback function pointer rather than function pointer +
// context, so it cannot be safely registered multiple callbacks with the same
// function pointer and different contexts.
template <SecKeychainEventMask event_mask>
class KeychainChangedNotifier {
public:
KeychainChangedNotifier(const KeychainChangedNotifier&) = delete;
KeychainChangedNotifier& operator=(const KeychainChangedNotifier&) = delete;
// Registers |callback| to be run when the keychain trust settings change.
// Must be called on the network notification thread. |callback| will be run
// on the network notification thread. The returned subscription must be
// destroyed on the network notification thread.
static base::CallbackListSubscription AddCallback(
base::RepeatingClosure callback) {
DCHECK(GetNetworkNotificationThreadMac()->RunsTasksInCurrentSequence());
return Get()->callback_list_.Add(std::move(callback));
}
private:
friend base::NoDestructor<KeychainChangedNotifier>;
// Much of the Keychain API was marked deprecated as of the macOS 13 SDK.
// Removal of its use is tracked in https://crbug.com/1348251 but deprecation
// warnings are disabled in the meanwhile.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
KeychainChangedNotifier() {
DCHECK(GetNetworkNotificationThreadMac()->RunsTasksInCurrentSequence());
OSStatus status =
SecKeychainAddCallback(&KeychainChangedNotifier::KeychainCallback,
event_mask, /*context=*/nullptr);
if (status != noErr)
OSSTATUS_LOG(ERROR, status) << "SecKeychainAddCallback failed";
}
#pragma clang diagnostic pop
~KeychainChangedNotifier() = delete;
static OSStatus KeychainCallback(SecKeychainEvent keychain_event,
SecKeychainCallbackInfo* info,
void* context) {
// Since SecKeychainAddCallback is keyed on the function pointer only, we
// need to ensure that each template instantiation of this function has a
// different address. Calling the static Get() method here to get the
// |callback_list_| (rather than passing a |this| pointer through
// |context|) should require each instantiation of KeychainCallback to be
// unique.
Get()->callback_list_.Notify();
return errSecSuccess;
}
static KeychainChangedNotifier* Get() {
static base::NoDestructor<KeychainChangedNotifier> notifier;
return notifier.get();
}
base::RepeatingClosureList callback_list_;
};
// Observes keychain events and increments the value returned by Iteration()
// each time an event indicated by |event_mask| is notified.
template <SecKeychainEventMask event_mask>
class KeychainObserver {
public:
KeychainObserver() {
GetNetworkNotificationThreadMac()->PostTask(
FROM_HERE,
base::BindOnce(&KeychainObserver::RegisterCallbackOnNotificationThread,
base::Unretained(this)));
}
KeychainObserver(const KeychainObserver&) = delete;
KeychainObserver& operator=(const KeychainObserver&) = delete;
// Destroying the observer unregisters the callback. Must be destroyed on the
// notification thread in order to safely release |subscription_|.
~KeychainObserver() {
DCHECK(GetNetworkNotificationThreadMac()->RunsTasksInCurrentSequence());
}
// Returns the current iteration count, which is incremented every time
// keychain trust settings change. This may be called from any thread.
int64_t Iteration() const { return base::subtle::Acquire_Load(&iteration_); }
private:
void RegisterCallbackOnNotificationThread() {
DCHECK(GetNetworkNotificationThreadMac()->RunsTasksInCurrentSequence());
subscription_ =
KeychainChangedNotifier<event_mask>::AddCallback(base::BindRepeating(
&KeychainObserver::Increment, base::Unretained(this)));
}
void Increment() { base::subtle::Barrier_AtomicIncrement(&iteration_, 1); }
// Only accessed on the notification thread.
base::CallbackListSubscription subscription_;
base::subtle::Atomic64 iteration_ = 0;
};
using KeychainTrustObserver =
KeychainObserver<kSecTrustSettingsChangedEventMask>;
// kSecDeleteEventMask events could also be checked here, but it's not
// necessary for correct behavior. Not including that just means the
// intermediates cache might occasionally be a little larger then necessary.
// In theory, the kSecAddEvent events could also be filtered to only notify on
// events for added certificates as opposed to other keychain objects, however
// that requires some fairly nasty CSSM hackery, so we don't do it.
using KeychainCertsObserver =
KeychainObserver<kSecAddEventMask | kSecKeychainListChangedMask>;
using KeychainTrustOrCertsObserver =
KeychainObserver<kSecTrustSettingsChangedEventMask | kSecAddEventMask |
kSecKeychainListChangedMask>;
} // namespace
// Interface for different implementations of getting trust settings from the
// Mac APIs. This abstraction can be removed once a single implementation has
// been chosen and launched.
class TrustStoreMac::TrustImpl {
public:
virtual ~TrustImpl() = default;
virtual TrustStatus IsCertTrusted(const bssl::ParsedCertificate* cert) = 0;
virtual void SyncGetIssuersOf(const bssl::ParsedCertificate* cert,
bssl::ParsedCertificateList* issuers) {}
virtual void InitializeTrustCache() = 0;
virtual std::vector<PlatformTrustStore::CertWithTrust>
GetAllUserAddedCerts() = 0;
};
// TrustImplDomainCacheFullCerts uses SecTrustSettingsCopyCertificates to get
// the list of certs in each trust domain and caches the full certificates so
// that pathbuilding does not need to touch any Mac APIs unless one of those
// certificates is encountered, at which point the calculated trust status of
// that cert is cached. The cache is reset if trust settings are modified.
class TrustStoreMac::TrustImplDomainCacheFullCerts
: public TrustStoreMac::TrustImpl {
public:
explicit TrustImplDomainCacheFullCerts(CFStringRef policy_oid)
// KeyChainObservers must be destroyed on the network notification
// thread as they use a non-threadsafe CallbackListSubscription.
: keychain_trust_observer_(
new KeychainTrustObserver,
base::OnTaskRunnerDeleter(GetNetworkNotificationThreadMac())),
keychain_certs_observer_(
new KeychainCertsObserver,
base::OnTaskRunnerDeleter(GetNetworkNotificationThreadMac())),
policy_oid_(policy_oid, base::scoped_policy::RETAIN),
admin_domain_cache_(kSecTrustSettingsDomainAdmin, policy_oid),
user_domain_cache_(kSecTrustSettingsDomainUser, policy_oid) {}
TrustImplDomainCacheFullCerts(const TrustImplDomainCacheFullCerts&) = delete;
TrustImplDomainCacheFullCerts& operator=(
const TrustImplDomainCacheFullCerts&) = delete;
// Returns the trust status for |cert|.
TrustStatus IsCertTrusted(const bssl::ParsedCertificate* cert) override {
SHA256HashValue cert_hash = crypto::hash::Sha256(cert->der_cert());
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
return IsCertTrustedImpl(cert, cert_hash);
}
TrustStatus IsCertTrustedImpl(const bssl::ParsedCertificate* cert,
const SHA256HashValue& cert_hash)
EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
// Evaluate user trust domain, then admin. User settings can override
// admin (and both override the system domain, but we don't check that).
for (TrustDomainCacheFullCerts* trust_domain_cache :
{&user_domain_cache_, &admin_domain_cache_}) {
TrustStatus ts = trust_domain_cache->IsCertTrusted(cert, cert_hash);
if (ts != TrustStatus::UNSPECIFIED)
return ts;
}
// Cert did not have trust settings in any domain.
return TrustStatus::UNSPECIFIED;
}
void SyncGetIssuersOf(const bssl::ParsedCertificate* cert,
bssl::ParsedCertificateList* issuers) override {
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
user_domain_cache_.cert_issuer_source().SyncGetIssuersOf(cert, issuers);
admin_domain_cache_.cert_issuer_source().SyncGetIssuersOf(cert, issuers);
intermediates_cert_issuer_source_.SyncGetIssuersOf(cert, issuers);
}
// Initializes the cache, if it isn't already initialized.
void InitializeTrustCache() override {
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
}
std::vector<PlatformTrustStore::CertWithTrust> GetAllUserAddedCerts()
override {
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
std::vector<net::PlatformTrustStore::CertWithTrust> results;
// The same cert might be present in both user_domain_cache_ and
// admin_domain_cache_ so we need to dedupe and only include each cert in
// the results once.
std::map<base::span<const uint8_t>,
std::shared_ptr<const bssl::ParsedCertificate>>
all_trusted_certs;
for (auto& cert : user_domain_cache_.cert_issuer_source().Certs()) {
all_trusted_certs[cert->der_cert()] = std::move(cert);
}
for (auto& cert : admin_domain_cache_.cert_issuer_source().Certs()) {
all_trusted_certs[cert->der_cert()] = std::move(cert);
}
for (const auto& [key, cert] : all_trusted_certs) {
SHA256HashValue cert_hash = crypto::hash::Sha256(cert->der_cert());
results.emplace_back(base::ToVector(cert->der_cert()),
TrustStatusToCertificateTrust(
IsCertTrustedImpl(cert.get(), cert_hash)));
}
// InitializeIntermediatesCache already ensures that certs in the domain
// caches are not duplicated in the intemediate cert source, so we don't
// need to check for duplicates here.
for (const auto& cert : intermediates_cert_issuer_source_.Certs()) {
results.emplace_back(base::ToVector(cert->der_cert()),
bssl::CertificateTrust::ForUnspecified());
}
return results;
}
private:
// (Re-)Initialize the cache if necessary. Must be called after acquiring
// |cache_lock_| and before accessing any of the |*_domain_cache_| members.
void MaybeInitializeCache() EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
cache_lock_.AssertAcquired();
const int64_t keychain_trust_iteration =
keychain_trust_observer_->Iteration();
const bool trust_changed = trust_iteration_ != keychain_trust_iteration;
base::ElapsedTimer trust_domain_cache_init_timer;
if (trust_changed) {
trust_iteration_ = keychain_trust_iteration;
user_domain_cache_.Initialize();
admin_domain_cache_.Initialize();
base::UmaHistogramMediumTimes(
"Net.CertVerifier.MacTrustDomainCacheInitTime",
trust_domain_cache_init_timer.Elapsed());
}
const int64_t keychain_certs_iteration =
keychain_certs_observer_->Iteration();
const bool certs_changed = certs_iteration_ != keychain_certs_iteration;
// Intermediates cache is updated on trust changes too, since the
// intermediates cache is exclusive of any certs in trust domain caches.
if (trust_changed || certs_changed) {
certs_iteration_ = keychain_certs_iteration;
InitializeIntermediatesCache();
}
if (trust_changed) {
// Histogram of total init time for the case where both the trust cache
// and intermediates cache were updated.
base::UmaHistogramMediumTimes(
"Net.CertVerifier.MacTrustImplCacheInitTime",
trust_domain_cache_init_timer.Elapsed());
}
}
void InitializeIntermediatesCache() EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
cache_lock_.AssertAcquired();
base::ElapsedTimer timer;
intermediates_cert_issuer_source_.Clear();
base::apple::ScopedCFTypeRef<CFMutableDictionaryRef> query(
CFDictionaryCreateMutable(nullptr, 0, &kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks));
CFDictionarySetValue(query.get(), kSecClass, kSecClassCertificate);
CFDictionarySetValue(query.get(), kSecReturnRef, kCFBooleanTrue);
CFDictionarySetValue(query.get(), kSecMatchLimit, kSecMatchLimitAll);
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
base::apple::ScopedCFTypeRef<CFArrayRef>
scoped_alternate_keychain_search_list;
if (TestKeychainSearchList::HasInstance()) {
OSStatus status = TestKeychainSearchList::GetInstance()->CopySearchList(
scoped_alternate_keychain_search_list.InitializeInto());
if (status) {
OSSTATUS_LOG(ERROR, status)
<< "TestKeychainSearchList::CopySearchList error";
return;
}
CFDictionarySetValue(query.get(), kSecMatchSearchList,
scoped_alternate_keychain_search_list.get());
}
base::apple::ScopedCFTypeRef<CFTypeRef> matching_items;
OSStatus err =
SecItemCopyMatching(query.get(), matching_items.InitializeInto());
if (err == errSecItemNotFound) {
RecordCachedIntermediatesHistograms(0, timer.Elapsed());
// No matches found.
return;
}
if (err) {
RecordCachedIntermediatesHistograms(0, timer.Elapsed());
OSSTATUS_LOG(ERROR, err) << "SecItemCopyMatching error";
return;
}
CFArrayRef matching_items_array =
base::apple::CFCastStrict<CFArrayRef>(matching_items.get());
for (CFIndex i = 0, item_count = CFArrayGetCount(matching_items_array);
i < item_count; ++i) {
SecCertificateRef match_cert_handle =
base::apple::CFCastStrict<SecCertificateRef>(
CFArrayGetValueAtIndex(matching_items_array, i));
// If cert is already in the trust domain certs cache, don't bother
// including it in the intermediates cache.
SHA256HashValue cert_hash =
x509_util::CalculateFingerprint256(match_cert_handle);
if (user_domain_cache_.ContainsCert(cert_hash) ||
admin_domain_cache_.ContainsCert(cert_hash)) {
continue;
}
base::apple::ScopedCFTypeRef<CFDataRef> der_data(
SecCertificateCopyData(match_cert_handle));
if (!der_data) {
LOG(ERROR) << "SecCertificateCopyData error";
continue;
}
auto buffer = x509_util::CreateCryptoBuffer(
base::apple::CFDataToSpan(der_data.get()));
bssl::CertErrors errors;
bssl::ParseCertificateOptions options;
options.allow_invalid_serial_numbers = true;
std::shared_ptr<const bssl::ParsedCertificate> parsed_cert =
bssl::ParsedCertificate::Create(std::move(buffer), options, &errors);
if (!parsed_cert) {
LOG(ERROR) << "Error parsing certificate:\n" << errors.ToDebugString();
continue;
}
if (IsNotAcceptableIntermediate(parsed_cert.get(), policy_oid_.get())) {
continue;
}
intermediates_cert_issuer_source_.AddCert(std::move(parsed_cert));
}
RecordCachedIntermediatesHistograms(CFArrayGetCount(matching_items_array),
timer.Elapsed());
}
void RecordCachedIntermediatesHistograms(CFIndex total_cert_count,
base::TimeDelta cache_init_time)
const EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
cache_lock_.AssertAcquired();
base::UmaHistogramMediumTimes(
"Net.CertVerifier.MacKeychainCerts.IntermediateCacheInitTime",
cache_init_time);
base::UmaHistogramCounts1000("Net.CertVerifier.MacKeychainCerts.TotalCount",
total_cert_count);
base::UmaHistogramCounts1000(
"Net.CertVerifier.MacKeychainCerts.IntermediateCount",
intermediates_cert_issuer_source_.size());
}
const std::unique_ptr<KeychainTrustObserver, base::OnTaskRunnerDeleter>
keychain_trust_observer_;
const std::unique_ptr<KeychainCertsObserver, base::OnTaskRunnerDeleter>
keychain_certs_observer_;
const base::apple::ScopedCFTypeRef<CFStringRef> policy_oid_;
base::Lock cache_lock_;
// |cache_lock_| must be held while accessing any following members.
int64_t trust_iteration_ GUARDED_BY(cache_lock_) = -1;
int64_t certs_iteration_ GUARDED_BY(cache_lock_) = -1;
TrustDomainCacheFullCerts admin_domain_cache_ GUARDED_BY(cache_lock_);
TrustDomainCacheFullCerts user_domain_cache_ GUARDED_BY(cache_lock_);
bssl::CertIssuerSourceStatic intermediates_cert_issuer_source_
GUARDED_BY(cache_lock_);
};
// TrustImplKeychainCacheFullCerts uses SecItemCopyMatching to get the list of
// all user and admin added certificates, then checks each to see if has trust
// settings. Certs will be cached if they are trusted or are potentially valid
// intermediates.
class TrustStoreMac::TrustImplKeychainCacheFullCerts
: public TrustStoreMac::TrustImpl {
public:
explicit TrustImplKeychainCacheFullCerts(CFStringRef policy_oid)
: keychain_observer_(
new KeychainTrustOrCertsObserver,
// KeyChainObserver must be destroyed on the network notification
// thread as it uses a non-threadsafe CallbackListSubscription.
base::OnTaskRunnerDeleter(GetNetworkNotificationThreadMac())),
policy_oid_(policy_oid, base::scoped_policy::RETAIN) {}
TrustImplKeychainCacheFullCerts(const TrustImplKeychainCacheFullCerts&) =
delete;
TrustImplKeychainCacheFullCerts& operator=(
const TrustImplKeychainCacheFullCerts&) = delete;
TrustStatus IsCertTrusted(const bssl::ParsedCertificate* cert) override {
SHA256HashValue cert_hash = crypto::hash::Sha256(cert->der_cert());
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
return IsCertTrustedImpl(cert_hash);
}
TrustStatus IsCertTrustedImpl(const SHA256HashValue& cert_hash)
EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
auto cache_iter = trust_status_cache_.find(cert_hash);
if (cache_iter == trust_status_cache_.end())
return TrustStatus::UNSPECIFIED;
return cache_iter->second;
}
void SyncGetIssuersOf(const bssl::ParsedCertificate* cert,
bssl::ParsedCertificateList* issuers) override {
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
cert_issuer_source_.SyncGetIssuersOf(cert, issuers);
}
// Initializes the cache, if it isn't already initialized.
void InitializeTrustCache() override {
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
}
std::vector<PlatformTrustStore::CertWithTrust> GetAllUserAddedCerts()
override {
base::AutoLock lock(cache_lock_);
MaybeInitializeCache();
std::vector<net::PlatformTrustStore::CertWithTrust> results;
for (const auto& cert : cert_issuer_source_.Certs()) {
SHA256HashValue cert_hash = crypto::hash::Sha256(cert->der_cert());
results.emplace_back(
base::ToVector(cert->der_cert()),
TrustStatusToCertificateTrust(IsCertTrustedImpl(cert_hash)));
}
return results;
}
private:
// (Re-)Initialize the cache if necessary. Must be called after acquiring
// |cache_lock_| and before accessing any of the |*_domain_cache_| members.
void MaybeInitializeCache() EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
cache_lock_.AssertAcquired();
const int64_t keychain_iteration = keychain_observer_->Iteration();
const bool keychain_changed = keychain_iteration_ != keychain_iteration;
if (!keychain_changed)
return;
keychain_iteration_ = keychain_iteration;
base::ElapsedTimer timer;
trust_status_cache_.clear();
cert_issuer_source_.Clear();
base::apple::ScopedCFTypeRef<CFMutableDictionaryRef> query(
CFDictionaryCreateMutable(nullptr, 0, &kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks));
CFDictionarySetValue(query.get(), kSecClass, kSecClassCertificate);
CFDictionarySetValue(query.get(), kSecReturnRef, kCFBooleanTrue);
CFDictionarySetValue(query.get(), kSecMatchLimit, kSecMatchLimitAll);
base::AutoLock lock(crypto::GetMacSecurityServicesLock());
base::apple::ScopedCFTypeRef<CFArrayRef>
scoped_alternate_keychain_search_list;
if (TestKeychainSearchList::HasInstance()) {
OSStatus status = TestKeychainSearchList::GetInstance()->CopySearchList(
scoped_alternate_keychain_search_list.InitializeInto());
if (status) {
OSSTATUS_LOG(ERROR, status)
<< "TestKeychainSearchList::CopySearchList error";
return;
}
CFDictionarySetValue(query.get(), kSecMatchSearchList,
scoped_alternate_keychain_search_list.get());
}
base::apple::ScopedCFTypeRef<CFTypeRef> matching_items;
OSStatus err =
SecItemCopyMatching(query.get(), matching_items.InitializeInto());
if (err == errSecItemNotFound) {
RecordHistograms(0, timer.Elapsed());
// No matches found.
return;
}
if (err) {
RecordHistograms(0, timer.Elapsed());
OSSTATUS_LOG(ERROR, err) << "SecItemCopyMatching error";
return;
}
CFArrayRef matching_items_array =
base::apple::CFCastStrict<CFArrayRef>(matching_items.get());
std::vector<std::pair<SHA256HashValue, TrustStatus>> trust_status_vector;
for (CFIndex i = 0, item_count = CFArrayGetCount(matching_items_array);
i < item_count; ++i) {
SecCertificateRef sec_cert = base::apple::CFCastStrict<SecCertificateRef>(
CFArrayGetValueAtIndex(matching_items_array, i));
base::apple::ScopedCFTypeRef<CFDataRef> der_data(
SecCertificateCopyData(sec_cert));
if (!der_data) {
LOG(ERROR) << "SecCertificateCopyData error";
continue;
}
auto buffer = x509_util::CreateCryptoBuffer(
base::apple::CFDataToSpan(der_data.get()));
bssl::CertErrors errors;
bssl::ParseCertificateOptions options;
options.allow_invalid_serial_numbers = true;
std::shared_ptr<const bssl::ParsedCertificate> parsed_cert =
bssl::ParsedCertificate::Create(std::move(buffer), options, &errors);
if (!parsed_cert) {
LOG(ERROR) << "Error parsing certificate:\n" << errors.ToDebugString();
continue;
}
TrustStatus trust_status = IsCertificateTrustedForPolicy(
parsed_cert.get(), sec_cert, policy_oid_.get());
if (trust_status == TrustStatus::TRUSTED ||
trust_status == TrustStatus::DISTRUSTED) {
trust_status_vector.emplace_back(
X509Certificate::CalculateFingerprint256(
parsed_cert->cert_buffer()),
trust_status);
cert_issuer_source_.AddCert(std::move(parsed_cert));
continue;
}
if (IsNotAcceptableIntermediate(parsed_cert.get(), policy_oid_.get())) {
continue;
}
cert_issuer_source_.AddCert(std::move(parsed_cert));
}
trust_status_cache_ = base::flat_map<SHA256HashValue, TrustStatus>(
std::move(trust_status_vector));
RecordHistograms(CFArrayGetCount(matching_items_array), timer.Elapsed());
}
void RecordHistograms(CFIndex total_cert_count,
base::TimeDelta init_time) const
EXCLUSIVE_LOCKS_REQUIRED(cache_lock_) {
cache_lock_.AssertAcquired();
base::UmaHistogramMediumTimes("Net.CertVerifier.MacTrustImplCacheInitTime",
init_time);
base::UmaHistogramCounts1000("Net.CertVerifier.MacKeychainCerts.TotalCount",
total_cert_count);
base::UmaHistogramCounts1000(
"Net.CertVerifier.MacKeychainCerts.IntermediateCount",
cert_issuer_source_.size() - trust_status_cache_.size());
base::UmaHistogramCounts1000("Net.CertVerifier.MacKeychainCerts.TrustCount",
trust_status_cache_.size());
}
const std::unique_ptr<KeychainTrustOrCertsObserver, base::OnTaskRunnerDeleter>
keychain_observer_;
const base::apple::ScopedCFTypeRef<CFStringRef> policy_oid_;
base::Lock cache_lock_;
// |cache_lock_| must be held while accessing any following members.
int64_t keychain_iteration_ GUARDED_BY(cache_lock_) = -1;
base::flat_map<SHA256HashValue, TrustStatus> trust_status_cache_
GUARDED_BY(cache_lock_);
bssl::CertIssuerSourceStatic cert_issuer_source_ GUARDED_BY(cache_lock_);
};
TrustStoreMac::TrustStoreMac(CFStringRef policy_oid, TrustImplType impl) {
switch (impl) {
case TrustImplType::kUnknown:
DCHECK(false);
break;
case TrustImplType::kDomainCacheFullCerts:
trust_cache_ =
std::make_unique<TrustImplDomainCacheFullCerts>(policy_oid);
break;
case TrustImplType::kKeychainCacheFullCerts:
trust_cache_ =
std::make_unique<TrustImplKeychainCacheFullCerts>(policy_oid);
break;
}
}
TrustStoreMac::~TrustStoreMac() = default;
void TrustStoreMac::InitializeTrustCache() const {
trust_cache_->InitializeTrustCache();
}
void TrustStoreMac::SyncGetIssuersOf(const bssl::ParsedCertificate* cert,
bssl::ParsedCertificateList* issuers) {
trust_cache_->SyncGetIssuersOf(cert, issuers);
}
bssl::CertificateTrust TrustStoreMac::GetTrust(
const bssl::ParsedCertificate* cert) {
return TrustStatusToCertificateTrust(trust_cache_->IsCertTrusted(cert));
}
std::vector<PlatformTrustStore::CertWithTrust>
TrustStoreMac::GetAllUserAddedCerts() {
return trust_cache_->GetAllUserAddedCerts();
}
} // namespace net
|