Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: net/cert/test_root_certs_openssl_ios.cc

Issue 1810153002: Adding iOS OpenSSL Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on master. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/cert/test_root_certs.h" 5 #include "net/cert/test_root_certs.h"
6 6
7 #include <Security/Security.h> 7 #include <Security/Security.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/mac/mac_util.h"
11 #include "base/mac/scoped_cftyperef.h" 10 #include "base/mac/scoped_cftyperef.h"
12 #include "net/cert/x509_certificate.h" 11 #include "net/cert/x509_certificate.h"
13 12
14 namespace net { 13 namespace net {
15 14
16 namespace { 15 namespace {
17 16
18 typedef OSStatus (*SecTrustSetAnchorCertificatesOnlyFuncPtr)(SecTrustRef, 17 typedef OSStatus (*SecTrustSetAnchorCertificatesOnlyFuncPtr)(SecTrustRef,
19 Boolean); 18 Boolean);
20 19
(...skipping 11 matching lines...) Expand all
32 } 31 }
33 32
34 void ReleaseWrapper(CFAllocatorRef unused, const void* value) { 33 void ReleaseWrapper(CFAllocatorRef unused, const void* value) {
35 CFRelease(value); 34 CFRelease(value);
36 } 35 }
37 36
38 // CFEqual prior to 10.6 only performed pointer checks on SecCertificateRefs, 37 // CFEqual prior to 10.6 only performed pointer checks on SecCertificateRefs,
39 // rather than checking if they were the same (logical) certificate, so a 38 // rather than checking if they were the same (logical) certificate, so a
40 // custom structure is used for the array callbacks. 39 // custom structure is used for the array callbacks.
41 const CFArrayCallBacks kCertArrayCallbacks = { 40 const CFArrayCallBacks kCertArrayCallbacks = {
42 0, // version 41 0, // version
43 RetainWrapper, 42 RetainWrapper,
44 ReleaseWrapper, 43 ReleaseWrapper,
45 CFCopyDescription, 44 CFCopyDescription,
46 OurSecCertificateEqual, 45 OurSecCertificateEqual,
47 }; 46 };
48 47
49 } // namespace 48 } // namespace
50 49
51 bool TestRootCerts::Add(X509Certificate* certificate) { 50 bool TestRootCerts::Add(X509Certificate* certificate) {
52 if (CFArrayContainsValue(temporary_roots_, 51 if (CFArrayContainsValue(temporary_roots_,
53 CFRangeMake(0, CFArrayGetCount(temporary_roots_)), 52 CFRangeMake(0, CFArrayGetCount(temporary_roots_)),
54 certificate->os_cert_handle())) 53 certificate->os_cert_handle()))
55 return true; 54 return true;
56 CFArrayAppendValue(temporary_roots_, certificate->os_cert_handle()); 55 CFArrayAppendValue(temporary_roots_, certificate->os_cert_handle());
57 return true; 56 return true;
58 } 57 }
59 58
60 void TestRootCerts::Clear() { 59 void TestRootCerts::Clear() {
61 CFArrayRemoveAllValues(temporary_roots_); 60 CFArrayRemoveAllValues(temporary_roots_);
62 } 61 }
63 62
64 bool TestRootCerts::IsEmpty() const { 63 bool TestRootCerts::IsEmpty() const {
65 return CFArrayGetCount(temporary_roots_) == 0; 64 return CFArrayGetCount(temporary_roots_) == 0;
66 } 65 }
67 66
68 OSStatus TestRootCerts::FixupSecTrustRef(SecTrustRef trust_ref) const { 67 OSStatus TestRootCerts::FixupSecTrustRef(SecTrustRef trust_ref) const {
69 if (IsEmpty()) 68 if (IsEmpty())
70 return noErr; 69 return noErr;
71 70
72 // Despite SecTrustSetAnchorCertificatesOnly existing in OS X 10.6, and 71 OSStatus status = SecTrustSetAnchorCertificates(trust_ref, temporary_roots_);
73 // being documented as available, it is not actually implemented. On 10.7+,
74 // however, it always works.
75 if (base::mac::IsOSLionOrLater()) {
76 OSStatus status = SecTrustSetAnchorCertificates(trust_ref,
77 temporary_roots_);
78 if (status)
79 return status;
80 return SecTrustSetAnchorCertificatesOnly(trust_ref, !allow_system_trust_);
81 }
82
83 if (!allow_system_trust_) {
84 // Avoid any copying if system roots are not to be trusted. This acts as
85 // an exclusive list on 10.6, replacing the built-ins.
86 return SecTrustSetAnchorCertificates(trust_ref, temporary_roots_);
87 }
88
89 // Otherwise, both system trust and temporary_roots_ must be trusted.
90 // Emulate the functionality of SecTrustSetAnchorCertificatesOnly by
91 // creating a copy of the system roots and merging with temporary_roots_.
92 CFArrayRef system_roots = NULL;
93 OSStatus status = SecTrustCopyAnchorCertificates(&system_roots);
94 if (status) 72 if (status)
95 return status; 73 return status;
96 74 return SecTrustSetAnchorCertificatesOnly(trust_ref, !allow_system_trust_);
97 base::ScopedCFTypeRef<CFArrayRef> scoped_system_roots(system_roots);
98 base::ScopedCFTypeRef<CFMutableArrayRef> scoped_roots(
99 CFArrayCreateMutableCopy(kCFAllocatorDefault, 0, scoped_system_roots));
100 CFArrayAppendArray(scoped_roots, temporary_roots_,
101 CFRangeMake(0, CFArrayGetCount(temporary_roots_)));
102 return SecTrustSetAnchorCertificates(trust_ref, scoped_roots);
103 } 75 }
104 76
105 void TestRootCerts::SetAllowSystemTrust(bool allow_system_trust) { 77 void TestRootCerts::SetAllowSystemTrust(bool allow_system_trust) {
106 allow_system_trust_ = allow_system_trust; 78 allow_system_trust_ = allow_system_trust;
107 } 79 }
108 80
109 TestRootCerts::~TestRootCerts() {} 81 TestRootCerts::~TestRootCerts() {}
110 82
111 void TestRootCerts::Init() { 83 void TestRootCerts::Init() {
112 temporary_roots_.reset(CFArrayCreateMutable(kCFAllocatorDefault, 0, 84 temporary_roots_.reset(
113 &kCertArrayCallbacks)); 85 CFArrayCreateMutable(kCFAllocatorDefault, 0, &kCertArrayCallbacks));
114 allow_system_trust_ = true; 86 allow_system_trust_ = true;
115 } 87 }
116 88
117 } // namespace net 89 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698