OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_BASE_TRANSPORT_SECURITY_STATE_H_ | 5 #ifndef NET_BASE_TRANSPORT_SECURITY_STATE_H_ |
6 #define NET_BASE_TRANSPORT_SECURITY_STATE_H_ | 6 #define NET_BASE_TRANSPORT_SECURITY_STATE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 10 matching lines...) Expand all Loading... | |
21 namespace net { | 21 namespace net { |
22 | 22 |
23 class SSLInfo; | 23 class SSLInfo; |
24 | 24 |
25 // Tracks which hosts have enabled strict transport security and/or public | 25 // Tracks which hosts have enabled strict transport security and/or public |
26 // key pins. | 26 // key pins. |
27 // | 27 // |
28 // This object manages the in-memory store. Register a Delegate with | 28 // This object manages the in-memory store. Register a Delegate with |
29 // |SetDelegate| to persist the state to disk. | 29 // |SetDelegate| to persist the state to disk. |
30 // | 30 // |
31 // HTTP strict transport security (HSTS) is defined in | 31 // HTTP strict transport security (HSTS) is defined in RFC 6797, and |
32 // http://tools.ietf.org/html/ietf-websec-strict-transport-sec, and | |
33 // HTTP-based dynamic public key pinning (HPKP) is defined in | 32 // HTTP-based dynamic public key pinning (HPKP) is defined in |
34 // http://tools.ietf.org/html/ietf-websec-key-pinning. | 33 // http://tools.ietf.org/html/ietf-websec-key-pinning. |
35 class NET_EXPORT TransportSecurityState | 34 class NET_EXPORT TransportSecurityState |
36 : NON_EXPORTED_BASE(public base::NonThreadSafe) { | 35 : NON_EXPORTED_BASE(public base::NonThreadSafe) { |
37 public: | 36 public: |
38 class Delegate { | |
39 public: | |
40 // This function may not block and may be called with internal locks held. | |
41 // Thus it must not reenter the TransportSecurityState object. | |
42 virtual void StateIsDirty(TransportSecurityState* state) = 0; | |
43 | 37 |
44 protected: | 38 // A DomainState describes the entire set of applicable transport security |
45 virtual ~Delegate() {} | 39 // state for a domain at a particular point in time (required upgrade to |
46 }; | 40 // HTTPS, public key pins, etc). DomainStates are not stored directly |
47 | 41 // but are calculated by searching through the dynamic and preload entries |
48 TransportSecurityState(); | 42 // and merging all relevant and nonexpired data into the DomainState. |
49 ~TransportSecurityState(); | |
50 | |
51 // A DomainState describes the transport security state (required upgrade | |
52 // to HTTPS, and/or any public key pins). | |
53 class NET_EXPORT DomainState { | 43 class NET_EXPORT DomainState { |
54 public: | 44 public: |
55 enum UpgradeMode { | |
56 // These numbers must match those in hsts_view.js, function modeToString. | |
57 MODE_FORCE_HTTPS = 0, | |
58 MODE_DEFAULT = 1, | |
59 }; | |
60 | |
61 DomainState(); | 45 DomainState(); |
62 ~DomainState(); | 46 ~DomainState(); |
63 | 47 |
48 // Returns true iff HTTP requests should be internally redirected to | |
49 // HTTPS (also if the "ws" WebSocket request should be upgraded to "wss"). | |
50 bool ShouldUpgradeToSSL() const; | |
51 | |
52 // Returns true iff HTTPS errors should cause hard-fail behavior | |
53 // (e.g. if HSTS is set for the domain). | |
54 bool ShouldSSLErrorsBeFatal() const; | |
55 | |
56 // Returns true iff CheckPublicKeyPins() should be called to verify | |
57 // SSL/TLS connections. | |
58 bool HasPublicKeyPins() const; | |
59 | |
64 // Takes a set of SubjectPublicKeyInfo |hashes| and returns true if: | 60 // Takes a set of SubjectPublicKeyInfo |hashes| and returns true if: |
65 // 1) |bad_static_spki_hashes| does not intersect |hashes|; AND | 61 // 1) |public_key_pins_bad_hashes_| does not intersect |hashes|; AND |
66 // 2) Both |static_spki_hashes| and |dynamic_spki_hashes| are empty | 62 // 2) |public_key_pins_good_hashes_| is either empty or intersects |
67 // or at least one of them intersects |hashes|. | 63 // |hashes|. |
68 // | 64 // |
69 // |{dynamic,static}_spki_hashes| contain trustworthy public key hashes, | 65 // |public_key_pins_good_hashes_| contain trustworthy public key hashes, |
70 // any one of which is sufficient to validate the certificate chain in | 66 // any one of which is sufficient to validate the certificate chain in |
71 // question. The public keys could be of a root CA, intermediate CA, or | 67 // question. The public keys could be of a root CA, intermediate CA, or |
72 // leaf certificate, depending on the security vs. disaster recovery | 68 // leaf certificate, depending on the security vs. disaster recovery |
73 // tradeoff selected. (Pinning only to leaf certifiates increases | 69 // tradeoff selected. (Pinning only to leaf certifiates increases |
74 // security because you no longer trust any CAs, but it hampers disaster | 70 // security because you no longer trust any CAs, but it hampers disaster |
75 // recovery because you can't just get a new certificate signed by the | 71 // recovery because you can't just get a new certificate signed by the |
76 // CA.) | 72 // CA.) |
77 // | 73 // |
78 // |bad_static_spki_hashes| contains public keys that we don't want to | 74 // |public_key_pins_bad_hashes_| contains public keys that we don't want |
79 // trust. | 75 // to trust. |
80 bool CheckPublicKeyPins(const HashValueVector& hashes) const; | 76 bool CheckPublicKeyPins(const HashValueVector& hashes) const; |
81 | 77 |
82 // Returns true if any of the HashValueVectors |static_spki_hashes|, | 78 // Returns true iff we have any preloaded public key pins for the domain |
83 // |bad_static_spki_hashes|, or |dynamic_spki_hashes| contains any | 79 // and iff its set of required pins is the set we expect for Google |
84 // items. | 80 // properties. |
85 bool HasPublicKeyPins() const; | 81 bool IsGooglePinnedProperty() const; |
86 | 82 |
87 // ShouldUpgradeToSSL returns true iff, given the |mode| of this | 83 // Send an UMA report on pin validation failure, if the host is in a |
88 // DomainState, HTTP requests should be internally redirected to HTTPS | 84 // statically-defined list of domains. |
89 // (also if the "ws" WebSocket request should be upgraded to "wss") | 85 void ReportUMAOnPinFailure() const; |
90 bool ShouldUpgradeToSSL() const; | |
91 | 86 |
92 // ShouldSSLErrorsBeFatal returns true iff HTTPS errors should cause | 87 // Provides direct read-only access for chrome://net-internals. |
Ryan Sleevi
2013/04/29 22:06:14
comment nit: Shouldn't be mentioning net-internals
unsafe
2013/04/30 10:42:57
DomainState already has a high-level CheckPublicKe
Ryan Sleevi
2013/04/30 19:55:09
Yes.
A function comment should be about how to us
| |
93 // hard-fail behavior (e.g. if HSTS is set for the domain) | 88 const HashValueVector& GetPublicKeyPinsGoodHashes() const; |
94 bool ShouldSSLErrorsBeFatal() const; | 89 const HashValueVector& GetPublicKeyPinsBadHashes() const; |
95 | 90 |
96 bool Equals(const DomainState& other) const; | 91 private: |
92 friend TransportSecurityState; | |
97 | 93 |
98 UpgradeMode upgrade_mode; | 94 bool should_upgrade_; |
95 bool has_public_key_pins_; | |
96 bool is_google_pinned_property_; | |
97 bool report_uma_on_pin_failure_; | |
99 | 98 |
100 // The absolute time (UTC) when this DomainState was first created. | 99 // The following values are only relevant if one of the above |
101 // | 100 // booleans is true: |
102 // Static entries do not have a created time. | 101 HashValueVector public_key_pins_good_hashes_; // if has_public_key_pins_ |
103 base::Time created; | 102 HashValueVector public_key_pins_bad_hashes_; // if has_public_key_pins_ |
104 | 103 |
105 // The absolute time (UTC) when the |upgrade_mode|, if set to | 104 size_t second_level_domain_name_; // if report_uma_on_pin_failure_ |
Ryan Sleevi
2013/04/29 22:06:14
Why aren't you using the enum here, and instead ca
unsafe
2013/04/30 10:42:57
I'd have to pull the enum definition out into a he
| |
106 // UPGRADE_ALWAYS, downgrades to UPGRADE_NEVER. | |
107 base::Time upgrade_expiry; | |
108 | |
109 // Are subdomains subject to this DomainState? | |
110 // | |
111 // TODO(palmer): Decide if we should have separate |pin_subdomains| and | |
112 // |upgrade_subdomains|. Alternately, and perhaps better, is to separate | |
113 // DomainState into UpgradeState and PinState (requiring also changing the | |
114 // serialization format?). | |
115 bool include_subdomains; | |
116 | |
117 // Optional; hashes of static pinned SubjectPublicKeyInfos. Unless both | |
118 // are empty, at least one of |static_spki_hashes| and | |
119 // |dynamic_spki_hashes| MUST intersect with the set of SPKIs in the TLS | |
120 // server's certificate chain. | |
121 // | |
122 // |dynamic_spki_hashes| take precedence over |static_spki_hashes|. | |
123 // That is, |IsChainOfPublicKeysPermitted| first checks dynamic pins and | |
124 // then checks static pins. | |
125 HashValueVector static_spki_hashes; | |
126 | |
127 // Optional; hashes of dynamically pinned SubjectPublicKeyInfos. | |
128 HashValueVector dynamic_spki_hashes; | |
129 | |
130 // The absolute time (UTC) when the |dynamic_spki_hashes| expire. | |
131 base::Time dynamic_spki_hashes_expiry; | |
132 | |
133 // Optional; hashes of static known-bad SubjectPublicKeyInfos which | |
134 // MUST NOT intersect with the set of SPKIs in the TLS server's | |
135 // certificate chain. | |
136 HashValueVector bad_static_spki_hashes; | |
137 | |
138 // The following members are not valid when stored in |enabled_hosts_|: | |
139 | |
140 // The domain which matched during a search for this DomainState entry. | |
141 // Updated by |GetDomainState| and |GetStaticDomainState|. | |
142 std::string domain; | |
143 }; | 105 }; |
144 | 106 |
145 class NET_EXPORT Iterator { | 107 // DynamicEntry stores the HSTS data for a single domain. |
Ryan Sleevi
2013/04/29 22:06:14
The intent of this class was/is to provide a de-co
| |
108 struct DynamicEntry { | |
109 DynamicEntry(); | |
110 ~DynamicEntry(); | |
111 DynamicEntry(bool include_subdomains, const base::Time& created, | |
112 const base::Time& expiry); | |
113 | |
114 bool include_subdomains_; | |
115 base::Time created_; | |
116 base::Time expiry_; | |
117 }; | |
118 | |
119 // HPKPEntry stores the HPKP data for a single domain. | |
120 struct HPKPEntry : public DynamicEntry { | |
Ryan Sleevi
2013/04/29 22:06:14
This inheritance model still creates opportunity f
unsafe
2013/04/30 10:42:57
I don't see a problem, but I could derive an HSTSE
Ryan Sleevi
2013/04/30 19:55:09
I suppose the same problem would exist with the in
| |
121 HPKPEntry(); | |
122 ~HPKPEntry(); | |
123 HPKPEntry(bool include_subdomains, const base::Time& created, | |
124 const base::Time& expiry, | |
125 const HashValueVector& good_hashes); | |
126 HashValueVector good_hashes_; | |
127 }; | |
128 | |
129 class Delegate { | |
146 public: | 130 public: |
147 explicit Iterator(const TransportSecurityState& state); | 131 // This function may not block and may be called with internal locks held. |
148 ~Iterator(); | 132 // Thus it must not reenter the TransportSecurityState object. |
133 virtual void StateIsDirty(TransportSecurityState* state) = 0; | |
149 | 134 |
150 bool HasNext() const { return iterator_ != end_; } | 135 protected: |
151 void Advance() { ++iterator_; } | 136 virtual ~Delegate() {} |
152 const std::string& hostname() const { return iterator_->first; } | 137 }; |
153 const DomainState& domain_state() const { return iterator_->second; } | |
154 | 138 |
155 private: | 139 TransportSecurityState(); |
156 std::map<std::string, DomainState>::const_iterator iterator_; | 140 ~TransportSecurityState(); |
157 std::map<std::string, DomainState>::const_iterator end_; | |
158 }; | |
159 | 141 |
160 // Assign a |Delegate| for persisting the transport security state. If | 142 // Assign a |Delegate| for persisting the transport security state. If |
161 // |NULL|, state will not be persisted. The caller retains | 143 // |NULL|, state will not be persisted. The caller retains |
162 // ownership of |delegate|. | 144 // ownership of |delegate|. |
163 // Note: This is only used for serializing/deserializing the | 145 // Note: This is only used for serializing/deserializing the |
164 // TransportSecurityState. | 146 // TransportSecurityState. |
165 void SetDelegate(Delegate* delegate); | 147 void SetDelegate(Delegate* delegate); |
166 | 148 |
167 // Clears all dynamic data (e.g. HSTS and HPKP data). | 149 // Clears all dynamic data (e.g. HSTS and HPKP data). |
168 // | 150 // |
169 // Does NOT persist changes using the Delegate, as this function is only | 151 // Does NOT persist changes using the Delegate, as this function is only |
170 // used to clear any dynamic data prior to re-loading it from a file. | 152 // used to clear any dynamic data prior to re-loading it from a file. |
171 // Note: This is only used for serializing/deserializing the | 153 // Note: This is only used for serializing/deserializing the |
172 // TransportSecurityState. | 154 // TransportSecurityState. |
173 void ClearDynamicData(); | 155 void ClearDynamicData(); |
174 | 156 |
175 // Inserts |state| into |enabled_hosts_| under the key |hashed_host|. | 157 // Returns true and updates |*result| iff there is DomainState for |host|. |
176 // |hashed_host| is already in the internal representation | 158 // |
177 // HashHost(CanonicalizeHost(host)). | 159 // If |sni_enabled| is true, searches the preload data defined for |
178 // Note: This is only used for serializing/deserializing the | 160 // SNI-only hosts as well as the other preload data. |
179 // TransportSecurityState. | 161 bool GetDomainState(const std::string& host, |
180 void AddOrUpdateEnabledHosts(const std::string& hashed_host, | 162 bool sni_enabled, |
181 const DomainState& state); | 163 DomainState* result) const; |
182 | 164 |
183 // Inserts |state| into |forced_hosts_| under the key |hashed_host|. | 165 // Processes an HSTS header value from the host, adds/deletes entries |
184 // |hashed_host| is already in the internal representation | 166 // in dynamic state if necessary. |
185 // HashHost(CanonicalizeHost(host)). | 167 void AddHSTSHeader(const std::string& host, const std::string& value); |
186 // Note: This is only used for serializing/deserializing the | 168 |
187 // TransportSecurityState. | 169 // Processes an HPKP header value from the host, adds/deletes entries |
188 void AddOrUpdateForcedHosts(const std::string& hashed_host, | 170 // in dynamic state if necessary. |ssl_info| is used to check that |
189 const DomainState& state); | 171 // the specified pins overlap with the certificate chain. |
172 void AddHPKPHeader(const std::string& host, const std::string& value, | |
173 const SSLInfo& ssl_info); | |
174 | |
175 // Adds explicitly-specified data as if it was processed from an | |
176 // HSTS/HPKP header (used for net-internals and unit tests). | |
177 // Returns true iff an entry was succesfully added, false if | |
178 // expiry < now or created > now. | |
Ryan Sleevi
2013/04/29 22:06:14
comment nit: Seems like you should just be saying
| |
179 bool AddHSTS(const std::string& host, const base::Time& created, | |
180 const base::Time& expiry, bool include_subdomains); | |
181 bool AddHPKP(const std::string& host, const base::Time& created, | |
182 const base::Time& expiry, bool include_subdomains, | |
183 const HashValueVector& hashes); | |
184 | |
185 // As AddHSTS()/AddHPKP() but uses the internal "hashed" representation of | |
186 // a hostname. This is used internally by AddHSTS()/AddHPKP() and is also | |
187 // used for deserializing the TransportSecurityState (since the JSON stores | |
188 // entries in hashed form). | |
Ryan Sleevi
2013/04/29 22:06:14
comment nit: Leaking abstractions about serializat
| |
189 bool AddHSTSHashedHost(const std::string& hashed_host, | |
190 const base::Time& created, const base::Time& expiry, | |
191 bool include_subdomains); | |
192 bool AddHPKPHashedHost(const std::string& hashed_host, | |
193 const base::Time& created, const base::Time& expiry, | |
194 bool include_subdomains, | |
195 const HashValueVector& hashes); | |
196 | |
197 // Deletes HSTS/HPKP data for the specified |host|. | |
198 // Returns true iff an entry was succesfully deleted. | |
199 bool DeleteHSTS(const std::string& host); | |
200 bool DeleteHPKP(const std::string& host); | |
201 | |
202 // Deletes any dynamic data stored for |host| (e.g. HSTS or HPKP data). | |
203 // If |host| doesn't have an exact entry then no action is taken. Does | |
204 // not delete preload data. Returns true iff an entry | |
205 // was deleted. | |
206 // | |
207 // If an entry is deleted, the new state will be persisted through | |
208 // the Delegate (if any). | |
209 bool DeleteDynamicDataForHost(const std::string& host); | |
190 | 210 |
191 // Deletes all dynamic data (e.g. HSTS or HPKP data) created since a given | 211 // Deletes all dynamic data (e.g. HSTS or HPKP data) created since a given |
192 // time. | 212 // time. |
193 // | 213 // |
194 // If any entries are deleted, the new state will be persisted through | 214 // If any entries are deleted, the new state will be persisted through |
195 // the Delegate (if any). | 215 // the Delegate (if any). |
196 void DeleteAllDynamicDataSince(const base::Time& time); | 216 void DeleteAllDynamicDataSince(const base::Time& time); |
197 | 217 |
198 // Deletes any dynamic data stored for |host| (e.g. HSTS or HPKP data). | 218 // Direct (read-only) access to HSTS and HPKP entries. Used for |
199 // If |host| doesn't have an exact entry then no action is taken. Does | 219 // serializing. |
200 // not delete static (i.e. preloaded) data. Returns true iff an entry | 220 const std::map<std::string, DynamicEntry>& GetHSTSEntries() const; |
201 // was deleted. | 221 const std::map<std::string, HPKPEntry>& GetHPKPEntries() const; |
202 // | |
203 // If an entry is deleted, the new state will be persisted through | |
204 // the Delegate (if any). | |
205 bool DeleteDynamicDataForHost(const std::string& host); | |
206 | 222 |
207 // Returns true and updates |*result| iff there is a DomainState for | 223 // Only used by template functions within the .cc to signal that |
208 // |host|. | 224 // the dynamic entry maps were changed |
209 // | 225 void StateIsDirty(); |
210 // If |sni_enabled| is true, searches the static pins defined for | |
211 // SNI-using hosts as well as the rest of the pins. | |
212 // | |
213 // If |host| matches both an exact entry and is a subdomain of another | |
214 // entry, the exact match determines the return value. | |
215 // | |
216 // Note that this method is not const because it opportunistically removes | |
217 // entries that have expired. | |
218 bool GetDomainState(const std::string& host, | |
219 bool sni_enabled, | |
220 DomainState* result); | |
221 | 226 |
222 // Processes an HSTS header value from the host, adding entries to | 227 // Returns true if the current build is new enough ensure that |
223 // dynamic state if necessary. | 228 // built in security information (i.e. HSTS preloading and pinning |
224 bool AddHSTSHeader(const std::string& host, const std::string& value); | 229 // information) is timely. |
225 | 230 static bool IsBuildTimely(); |
226 // Processes an HPKP header value from the host, adding entries to | |
227 // dynamic state if necessary. ssl_info is used to check that | |
228 // the specified pins overlap with the certificate chain. | |
229 bool AddHPKPHeader(const std::string& host, const std::string& value, | |
230 const SSLInfo& ssl_info); | |
231 | |
232 // Adds explicitly-specified data as if it was processed from an | |
233 // HSTS header (used for net-internals and unit tests). | |
234 bool AddHSTS(const std::string& host, const base::Time& expiry, | |
235 bool include_subdomains); | |
236 | |
237 // Adds explicitly-specified data as if it was processed from an | |
238 // HPKP header (used for net-internals and unit tests). | |
239 bool AddHPKP(const std::string& host, const base::Time& expiry, | |
240 bool include_subdomains, const HashValueVector& hashes); | |
241 | |
242 // Returns true iff we have any static public key pins for the |host| and | |
243 // iff its set of required pins is the set we expect for Google | |
244 // properties. | |
245 // | |
246 // If |sni_enabled| is true, searches the static pins defined for | |
247 // SNI-using hosts as well as the rest of the pins. | |
248 // | |
249 // If |host| matches both an exact entry and is a subdomain of another | |
250 // entry, the exact match determines the return value. | |
251 static bool IsGooglePinnedProperty(const std::string& host, | |
252 bool sni_enabled); | |
253 | 231 |
254 // The maximum number of seconds for which we'll cache an HSTS request. | 232 // The maximum number of seconds for which we'll cache an HSTS request. |
255 static const long int kMaxHSTSAgeSecs; | 233 static const long int kMaxHSTSAgeSecs; |
256 | 234 |
257 // Send an UMA report on pin validation failure, if the host is in a | |
258 // statically-defined list of domains. | |
259 // | |
260 // TODO(palmer): This doesn't really belong here, and should be moved into | |
261 // the exactly one call site. This requires unifying |struct HSTSPreload| | |
262 // (an implementation detail of this class) with a more generic | |
263 // representation of first-class DomainStates, and exposing the preloads | |
264 // to the caller with |GetStaticDomainState|. | |
265 static void ReportUMAOnPinFailure(const std::string& host); | |
266 | |
267 // IsBuildTimely returns true if the current build is new enough ensure that | |
268 // built in security information (i.e. HSTS preloading and pinning | |
269 // information) is timely. | |
270 static bool IsBuildTimely(); | |
271 | |
272 private: | 235 private: |
273 friend class TransportSecurityStateTest; | 236 friend class TransportSecurityStateTest; |
274 | 237 |
275 typedef std::map<std::string, DomainState> DomainStateMap; | 238 // Returns true iff there is any DomainState data in preload entries |
239 bool GetPreloadDomainState(bool sni_enabled, const base::Time& now, | |
240 const std::string& host, DomainState* result) | |
241 const; | |
276 | 242 |
277 // If a Delegate is present, notify it that the internal state has | 243 // Returns true iff there is any DomainState data in dynamic entries |
278 // changed. | 244 bool GetDynamicDomainState(const base::Time& now, const std::string& host, |
279 void DirtyNotify(); | 245 DomainState* result) const; |
280 | 246 |
281 // Enable TransportSecurity for |host|. |state| supercedes any previous | 247 std::map<std::string, DynamicEntry> hsts_entries_; |
282 // state for the |host|, including static entries. | 248 std::map<std::string, HPKPEntry> hpkp_entries_; |
283 // | |
284 // The new state for |host| is persisted using the Delegate (if any). | |
285 void EnableHost(const std::string& host, const DomainState& state); | |
286 | |
287 // Converts |hostname| from dotted form ("www.google.com") to the form | |
288 // used in DNS: "\x03www\x06google\x03com", lowercases that, and returns | |
289 // the result. | |
290 static std::string CanonicalizeHost(const std::string& hostname); | |
291 | |
292 // Returns true and updates |*result| iff there is a static DomainState for | |
293 // |host|. | |
294 // | |
295 // |GetStaticDomainState| is identical to |GetDomainState| except that it | |
296 // searches only the statically-defined transport security state, ignoring | |
297 // all dynamically-added DomainStates. | |
298 // | |
299 // If |sni_enabled| is true, searches the static pins defined for | |
300 // SNI-using hosts as well as the rest of the pins. | |
301 // | |
302 // If |host| matches both an exact entry and is a subdomain of another | |
303 // entry, the exact match determines the return value. | |
304 // | |
305 // Note that this method is not const because it opportunistically removes | |
306 // entries that have expired. | |
307 bool GetStaticDomainState(const std::string& host, | |
308 bool sni_enabled, | |
309 DomainState* result); | |
310 | |
311 // The set of hosts that have enabled TransportSecurity. | |
312 DomainStateMap enabled_hosts_; | |
313 | |
314 // Extra entries, provided by the user at run-time, to treat as if they | |
315 // were static. | |
316 DomainStateMap forced_hosts_; | |
317 | 249 |
318 Delegate* delegate_; | 250 Delegate* delegate_; |
319 | 251 |
320 DISALLOW_COPY_AND_ASSIGN(TransportSecurityState); | 252 DISALLOW_COPY_AND_ASSIGN(TransportSecurityState); |
321 }; | 253 }; |
322 | 254 |
323 } // namespace net | 255 } // namespace net |
324 | 256 |
325 #endif // NET_BASE_TRANSPORT_SECURITY_STATE_H_ | 257 #endif // NET_BASE_TRANSPORT_SECURITY_STATE_H_ |
OLD | NEW |