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
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/base/ssl_config_service.h"
#if defined(OS_WIN)
#include "net/base/ssl_config_service_win.h"
#elif defined(OS_MACOSX)
#include "net/base/ssl_config_service_mac.h"
#else
#include "net/base/ssl_config_service_defaults.h"
#endif
namespace net {
// static
SSLConfigService* SSLConfigService::CreateSystemSSLConfigService() {
#if defined(OS_WIN)
return new SSLConfigServiceWin;
#elif defined(OS_MACOSX)
return new SSLConfigServiceMac;
#else
return new SSLConfigServiceDefaults;
#endif
}
// static
bool SSLConfigService::IsKnownStrictTLSServer(const std::string& hostname) {
// If you wish to add an entry to this list, please contact agl AT chromium
// DOT org.
//
// If this list starts growing, it'll need to be something more efficient
// than a linear list.
static const char kStrictServers[][22] = {
"www.google.com",
"mail.google.com",
"www.gmail.com",
"docs.google.com",
"clients1.google.com",
"sunshinepress.org",
"www.sunshinepress.org",
// Removed until we update the XMPP servers with the renegotiation
// extension.
// "gmail.com",
};
for (size_t i = 0; i < arraysize(kStrictServers); i++) {
// Note that the hostname is normalised to lower-case by this point.
if (strcmp(hostname.c_str(), kStrictServers[i]) == 0)
return true;
}
return false;
}
// static
bool SSLConfigService::IsKnownFalseStartIncompatibleServer(
const std::string& hostname) {
// If this list starts growing, it'll need to be something more efficient
// than a linear list.
static const char kFalseStartIncompatibleServers[][15] = {
"www.picnik.com",
};
for (size_t i = 0; i < arraysize(kFalseStartIncompatibleServers); i++) {
// Note that the hostname is normalised to lower-case by this point.
if (strcmp(hostname.c_str(), kFalseStartIncompatibleServers[i]) == 0)
return true;
}
return false;
}
static bool g_dnssec_enabled = false;
static bool g_false_start_enabled = true;
static bool g_mitm_proxies_allowed = false;
// static
void SSLConfigService::SetSSLConfigFlags(SSLConfig* ssl_config) {
ssl_config->dnssec_enabled = g_dnssec_enabled;
ssl_config->false_start_enabled = g_false_start_enabled;
ssl_config->mitm_proxies_allowed = g_mitm_proxies_allowed;
}
// static
void SSLConfigService::EnableDNSSEC() {
g_dnssec_enabled = true;
}
// static
bool SSLConfigService::dnssec_enabled() {
return g_dnssec_enabled;
}
// static
void SSLConfigService::DisableFalseStart() {
g_false_start_enabled = false;
}
// static
bool SSLConfigService::false_start_enabled() {
return g_false_start_enabled;
}
// static
void SSLConfigService::AllowMITMProxies() {
g_mitm_proxies_allowed = true;
}
// static
bool SSLConfigService::mitm_proxies_allowed() {
return g_mitm_proxies_allowed;
}
} // namespace net
|