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

Side by Side Diff: net/base/ssl_config_service.cc

Issue 7058049: Added client-side support for the TLS cached info extension. This feature is disabled by default ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/base/ssl_config_service.h" 5 #include "net/base/ssl_config_service.h"
6 6
7 #include "net/base/ssl_config_service_defaults.h" 7 #include "net/base/ssl_config_service_defaults.h"
8 #include "net/base/ssl_false_start_blacklist.h" 8 #include "net/base/ssl_false_start_blacklist.h"
9 9
10 namespace net { 10 namespace net {
11 11
12 SSLConfig::CertAndStatus::CertAndStatus() : cert_status(0) {} 12 SSLConfig::CertAndStatus::CertAndStatus() : cert_status(0) {}
13 13
14 SSLConfig::CertAndStatus::~CertAndStatus() {} 14 SSLConfig::CertAndStatus::~CertAndStatus() {}
15 15
16 SSLConfig::SSLConfig() 16 SSLConfig::SSLConfig()
17 : rev_checking_enabled(true), ssl3_enabled(true), 17 : rev_checking_enabled(true), ssl3_enabled(true),
18 tls1_enabled(true), 18 tls1_enabled(true),
19 dns_cert_provenance_checking_enabled(false), 19 dns_cert_provenance_checking_enabled(false), cached_info_enabled(false),
20 false_start_enabled(true), 20 false_start_enabled(true),
21 send_client_cert(false), verify_ev_cert(false), ssl3_fallback(false) { 21 send_client_cert(false), verify_ev_cert(false), ssl3_fallback(false) {
22 } 22 }
23 23
24 SSLConfig::~SSLConfig() { 24 SSLConfig::~SSLConfig() {
25 } 25 }
26 26
27 bool SSLConfig::IsAllowedBadCert(X509Certificate* cert, 27 bool SSLConfig::IsAllowedBadCert(X509Certificate* cert,
28 int* cert_status) const { 28 int* cert_status) const {
29 for (size_t i = 0; i < allowed_bad_certs.size(); ++i) { 29 for (size_t i = 0; i < allowed_bad_certs.size(); ++i) {
(...skipping 12 matching lines...) Expand all
42 42
43 // static 43 // static
44 bool SSLConfigService::IsKnownFalseStartIncompatibleServer( 44 bool SSLConfigService::IsKnownFalseStartIncompatibleServer(
45 const std::string& hostname) { 45 const std::string& hostname) {
46 return SSLFalseStartBlacklist::IsMember(hostname.c_str()); 46 return SSLFalseStartBlacklist::IsMember(hostname.c_str());
47 } 47 }
48 48
49 static bool g_false_start_enabled = true; 49 static bool g_false_start_enabled = true;
50 static bool g_dns_cert_provenance_checking = false; 50 static bool g_dns_cert_provenance_checking = false;
51 static bool g_rev_checking_disabled_for_pinned_sites = false; 51 static bool g_rev_checking_disabled_for_pinned_sites = false;
52 static bool g_cached_info_enabled = false;
52 53
53 // static 54 // static
54 void SSLConfigService::DisableFalseStart() { 55 void SSLConfigService::DisableFalseStart() {
55 g_false_start_enabled = false; 56 g_false_start_enabled = false;
56 } 57 }
57 58
58 // static 59 // static
59 bool SSLConfigService::false_start_enabled() { 60 bool SSLConfigService::false_start_enabled() {
60 return g_false_start_enabled; 61 return g_false_start_enabled;
61 } 62 }
62 63
63 // static 64 // static
64 void SSLConfigService::EnableDNSCertProvenanceChecking() { 65 void SSLConfigService::EnableDNSCertProvenanceChecking() {
65 g_dns_cert_provenance_checking = true; 66 g_dns_cert_provenance_checking = true;
66 } 67 }
67 68
68 // static 69 // static
70 void SSLConfigService::EnableCachedInfo() {
71 g_cached_info_enabled = true;
72 }
73
74 // static
75 bool SSLConfigService::cached_info_enabled() {
76 return g_cached_info_enabled;
77 }
wtc 2011/06/17 22:57:09 Move this up to before line 53. The Style guide r
rkn 2011/06/20 21:21:09 Done.
78
79 // static
69 bool SSLConfigService::dns_cert_provenance_checking_enabled() { 80 bool SSLConfigService::dns_cert_provenance_checking_enabled() {
70 return g_dns_cert_provenance_checking; 81 return g_dns_cert_provenance_checking;
71 } 82 }
72 83
73 // static 84 // static
74 void SSLConfigService::DisableRevCheckingForPinnedSites() { 85 void SSLConfigService::DisableRevCheckingForPinnedSites() {
75 g_rev_checking_disabled_for_pinned_sites = true; 86 g_rev_checking_disabled_for_pinned_sites = true;
76 } 87 }
77 88
78 // static 89 // static
(...skipping 10 matching lines...) Expand all
89 } 100 }
90 101
91 SSLConfigService::~SSLConfigService() { 102 SSLConfigService::~SSLConfigService() {
92 } 103 }
93 104
94 // static 105 // static
95 void SSLConfigService::SetSSLConfigFlags(SSLConfig* ssl_config) { 106 void SSLConfigService::SetSSLConfigFlags(SSLConfig* ssl_config) {
96 ssl_config->false_start_enabled = g_false_start_enabled; 107 ssl_config->false_start_enabled = g_false_start_enabled;
97 ssl_config->dns_cert_provenance_checking_enabled = 108 ssl_config->dns_cert_provenance_checking_enabled =
98 g_dns_cert_provenance_checking; 109 g_dns_cert_provenance_checking;
110 ssl_config->cached_info_enabled = g_cached_info_enabled;
99 } 111 }
100 112
101 void SSLConfigService::ProcessConfigUpdate(const SSLConfig& orig_config, 113 void SSLConfigService::ProcessConfigUpdate(const SSLConfig& orig_config,
102 const SSLConfig& new_config) { 114 const SSLConfig& new_config) {
103 if (orig_config.rev_checking_enabled != new_config.rev_checking_enabled || 115 if (orig_config.rev_checking_enabled != new_config.rev_checking_enabled ||
104 orig_config.ssl3_enabled != new_config.ssl3_enabled || 116 orig_config.ssl3_enabled != new_config.ssl3_enabled ||
105 orig_config.tls1_enabled != new_config.tls1_enabled) { 117 orig_config.tls1_enabled != new_config.tls1_enabled) {
106 FOR_EACH_OBSERVER(Observer, observer_list_, OnSSLConfigChanged()); 118 FOR_EACH_OBSERVER(Observer, observer_list_, OnSSLConfigChanged());
107 } 119 }
108 } 120 }
109 121
110 // static 122 // static
111 bool SSLConfigService::IsSNIAvailable(SSLConfigService* service) { 123 bool SSLConfigService::IsSNIAvailable(SSLConfigService* service) {
112 if (!service) 124 if (!service)
113 return false; 125 return false;
114 126
115 SSLConfig ssl_config; 127 SSLConfig ssl_config;
116 service->GetSSLConfig(&ssl_config); 128 service->GetSSLConfig(&ssl_config);
117 return ssl_config.tls1_enabled; 129 return ssl_config.tls1_enabled;
118 } 130 }
119 131
120 } // namespace net 132 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698