2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2015 Attila Molnar <attilamolnar@hush.com>
5 * Copyright (C) 2017 Peter Powell <petpow@saberuk.com>
7 * This file is part of InspIRCd. InspIRCd is free software: you can
8 * redistribute it and/or modify it under the terms of the GNU General Public
9 * License as published by the Free Software Foundation, version 2.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "modules/cap.h"
23 #include "modules/ssl.h"
25 class STSCap : public Cap::Capability
29 std::string plaintextpolicy;
30 std::string securepolicy;
32 bool OnList(LocalUser* user) CXX11_OVERRIDE
34 // Don't send the cap to clients that only support cap-3.1.
35 if (GetProtocol(user) == Cap::CAP_LEGACY)
38 // Plaintext listeners have their own policy.
39 SSLIOHook* sslhook = SSLIOHook::IsSSL(&user->eh);
43 // If no hostname has been provided for the connection, an STS persistence policy SHOULD NOT be advertised.
45 if (!sslhook->GetServerName(snihost))
48 // Before advertising an STS persistence policy over a secure connection, servers SHOULD verify whether the
49 // hostname provided by clients, for example, via TLS Server Name Indication (SNI), has been whitelisted by
50 // administrators in the server configuration.
51 return InspIRCd::Match(snihost, host, ascii_case_insensitive_map);
54 bool OnRequest(LocalUser* user, bool adding) CXX11_OVERRIDE
56 // Clients MUST NOT request this capability with CAP REQ. Servers MAY reply with a CAP NAK message if a
57 // client requests this capability.
61 const std::string* GetValue(LocalUser* user) const CXX11_OVERRIDE
63 return SSLIOHook::IsSSL(&user->eh) ? &securepolicy : &plaintextpolicy;
68 : Cap::Capability(mod, "sts")
74 // TODO: Send duration=0 when STS vanishes.
77 void SetPolicy(const std::string& newhost, unsigned long duration, unsigned int port, bool preload)
79 // To enforce an STS upgrade policy, servers MUST send this key to insecurely connected clients. Servers
80 // MAY send this key to securely connected clients, but it will be ignored.
81 std::string newplaintextpolicy("port=");
82 newplaintextpolicy.append(ConvToStr(port));
84 // To enforce an STS persistence policy, servers MUST send this key to securely connected clients. Servers
85 // MAY send this key to all clients, but insecurely connected clients MUST ignore it.
86 std::string newsecurepolicy("duration=");
87 newsecurepolicy.append(ConvToStr(duration));
89 // Servers MAY send this key to all clients, but insecurely connected clients MUST ignore it.
91 newsecurepolicy.append(",preload");
93 // Apply the new policy.
95 if (!irc::equals(host, newhost))
97 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Changing STS SNI hostname from \"%s\" to \"%s\"", host.c_str(), newhost.c_str());
102 if (plaintextpolicy != newplaintextpolicy)
104 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Changing plaintext STS policy from \"%s\" to \"%s\"", plaintextpolicy.c_str(), newplaintextpolicy.c_str());
105 plaintextpolicy.swap(newplaintextpolicy);
109 if (securepolicy != newsecurepolicy)
111 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Changing secure STS policy from \"%s\" to \"%s\"", securepolicy.c_str(), newsecurepolicy.c_str());
112 securepolicy.swap(newsecurepolicy);
116 // If the policy has changed then notify all clients via cap-notify.
122 class ModuleIRCv3STS : public Module
127 // The IRCv3 STS specification requires that the server is listening using SSL using a valid certificate.
128 bool HasValidSSLPort(unsigned int port)
130 for (std::vector<ListenSocket*>::const_iterator iter = ServerInstance->ports.begin(); iter != ServerInstance->ports.end(); ++iter)
132 ListenSocket* ls = *iter;
134 // Is this listener on the right port?
135 unsigned int saport = ls->bind_sa.port();
139 // Is this listener using SSL?
140 if (ls->bind_tag->getString("ssl").empty())
143 // TODO: Add a way to check if a listener's TLS cert is CA-verified.
155 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
157 // TODO: Multiple SNI profiles
158 ConfigTag* tag = ServerInstance->Config->ConfValue("sts");
159 if (tag == ServerInstance->Config->EmptyTag)
160 throw ModuleException("You must define a STS policy!");
162 const std::string host = tag->getString("host");
164 throw ModuleException("<sts:host> must contain a hostname, at " + tag->getTagLocation());
166 unsigned int port = tag->getUInt("port", 0, 0, UINT16_MAX);
167 if (!HasValidSSLPort(port))
168 throw ModuleException("<sts:port> must be a TLS port, at " + tag->getTagLocation());
170 unsigned long duration = tag->getDuration("duration", 60*60*24*30*2);
171 bool preload = tag->getBool("preload");
172 cap.SetPolicy(host, duration, port, preload);
175 Version GetVersion() CXX11_OVERRIDE
177 return Version("Provides IRCv3 Strict Transport Security policy advertisement", VF_OPTCOMMON|VF_VENDOR);
181 MODULE_INIT(ModuleIRCv3STS)