]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules/ssl.h
Extract directory creation code to its own subroutine.
[user/henk/code/inspircd.git] / include / modules / ssl.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
6  *
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.
10  *
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
14  * details.
15  *
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/>.
18  */
19
20
21 #pragma once
22
23 #include <string>
24 #include "iohook.h"
25
26 /** ssl_cert is a class which abstracts SSL certificate
27  * and key information.
28  *
29  * Because gnutls and openssl represent key information in
30  * wildly different ways, this class allows it to be accessed
31  * in a unified manner. These classes are attached to ssl-
32  * connected local users using SSLCertExt
33  */
34 class ssl_cert : public refcountbase
35 {
36  public:
37         std::string dn;
38         std::string issuer;
39         std::string error;
40         std::string fingerprint;
41         bool trusted, invalid, unknownsigner, revoked;
42
43         ssl_cert() : trusted(false), invalid(true), unknownsigner(true), revoked(false) {}
44
45         /** Get certificate distinguished name
46          * @return Certificate DN
47          */
48         const std::string& GetDN()
49         {
50                 return dn;
51         }
52
53         /** Get Certificate issuer
54          * @return Certificate issuer
55          */
56         const std::string& GetIssuer()
57         {
58                 return issuer;
59         }
60
61         /** Get error string if an error has occured
62          * @return The error associated with this users certificate,
63          * or an empty string if there is no error.
64          */
65         const std::string& GetError()
66         {
67                 return error;
68         }
69
70         /** Get key fingerprint.
71          * @return The key fingerprint as a hex string.
72          */
73         const std::string& GetFingerprint()
74         {
75                 return fingerprint;
76         }
77
78         /** Get trust status
79          * @return True if this is a trusted certificate
80          * (the certificate chain validates)
81          */
82         bool IsTrusted()
83         {
84                 return trusted;
85         }
86
87         /** Get validity status
88          * @return True if the certificate itself is
89          * correctly formed.
90          */
91         bool IsInvalid()
92         {
93                 return invalid;
94         }
95
96         /** Get signer status
97          * @return True if the certificate appears to be
98          * self-signed.
99          */
100         bool IsUnknownSigner()
101         {
102                 return unknownsigner;
103         }
104
105         /** Get revokation status.
106          * @return True if the certificate is revoked.
107          * Note that this only works properly for GnuTLS
108          * right now.
109          */
110         bool IsRevoked()
111         {
112                 return revoked;
113         }
114
115         bool IsCAVerified()
116         {
117                 return trusted && !invalid && !revoked && !unknownsigner && error.empty();
118         }
119
120         std::string GetMetaLine()
121         {
122                 std::stringstream value;
123                 bool hasError = !error.empty();
124                 value << (IsInvalid() ? "v" : "V") << (IsTrusted() ? "T" : "t") << (IsRevoked() ? "R" : "r")
125                         << (IsUnknownSigner() ? "s" : "S") << (hasError ? "E" : "e") << " ";
126                 if (hasError)
127                         value << GetError();
128                 else
129                         value << GetFingerprint() << " " << GetDN() << " " << GetIssuer();
130                 return value.str();
131         }
132 };
133
134 class SSLIOHook : public IOHook
135 {
136  protected:
137         /** Peer SSL certificate, set by the SSL module
138          */
139         reference<ssl_cert> certificate;
140
141         /** Reduce elements in a send queue by appending later elements to the first element until there are no more
142          * elements to append or a desired length is reached
143          * @param sendq SendQ to work on
144          * @param targetsize Target size of the front element
145          */
146         static void FlattenSendQueue(StreamSocket::SendQueue& sendq, size_t targetsize)
147         {
148                 if ((sendq.size() <= 1) || (sendq.front().length() >= targetsize))
149                         return;
150
151                 // Avoid multiple repeated SSL encryption invocations
152                 // This adds a single copy of the queue, but avoids
153                 // much more overhead in terms of system calls invoked
154                 // by an IOHook.
155                 std::string tmp;
156                 tmp.reserve(std::min(targetsize, sendq.bytes())+1);
157                 do
158                 {
159                         tmp.append(sendq.front());
160                         sendq.pop_front();
161                 }
162                 while (!sendq.empty() && tmp.length() < targetsize);
163                 sendq.push_front(tmp);
164         }
165
166  public:
167         SSLIOHook(IOHookProvider* hookprov)
168                 : IOHook(hookprov)
169         {
170         }
171
172         /**
173          * Get the certificate sent by this peer
174          * @return The SSL certificate sent by the peer, NULL if no cert was sent
175          */
176         ssl_cert* GetCertificate() const
177         {
178                 return certificate;
179         }
180
181         /**
182          * Get the fingerprint of the peer's certificate
183          * @return The fingerprint of the SSL client certificate sent by the peer,
184          * empty if no cert was sent
185          */
186         std::string GetFingerprint() const
187         {
188                 ssl_cert* cert = GetCertificate();
189                 if (cert)
190                         return cert->GetFingerprint();
191                 return "";
192         }
193 };
194
195 /** Helper functions for obtaining SSL client certificates and key fingerprints
196  * from StreamSockets
197  */
198 class SSLClientCert
199 {
200  public:
201         /**
202          * Get the client certificate from a socket
203          * @param sock The socket to get the certificate from, the socket does not have to use SSL
204          * @return The SSL client certificate information, NULL if the peer is not using SSL
205          */
206         static ssl_cert* GetCertificate(StreamSocket* sock)
207         {
208                 IOHook* iohook = sock->GetIOHook();
209                 if ((!iohook) || (iohook->prov->type != IOHookProvider::IOH_SSL))
210                         return NULL;
211
212                 SSLIOHook* ssliohook = static_cast<SSLIOHook*>(iohook);
213                 return ssliohook->GetCertificate();
214         }
215
216         /**
217          * Get the fingerprint of a client certificate from a socket
218          * @param sock The socket to get the certificate fingerprint from, the
219          * socket does not have to use SSL
220          * @return The key fingerprint from the SSL certificate sent by the peer,
221          * empty if no cert was sent or the peer is not using SSL
222          */
223         static std::string GetFingerprint(StreamSocket* sock)
224         {
225                 ssl_cert* cert = SSLClientCert::GetCertificate(sock);
226                 if (cert)
227                         return cert->GetFingerprint();
228                 return "";
229         }
230 };
231
232 class UserCertificateAPIBase : public DataProvider
233 {
234  public:
235         UserCertificateAPIBase(Module* parent)
236                 : DataProvider(parent, "m_sslinfo_api")
237         {
238         }
239
240         /** Get the SSL certificate of a user
241          * @param user The user whose certificate to get, user may be remote
242          * @return The SSL certificate of the user or NULL if the user is not using SSL
243          */
244         virtual ssl_cert* GetCertificate(User* user) = 0;
245
246         /** Get the key fingerprint from a user's certificate
247          * @param user The user whose key fingerprint to get, user may be remote
248          * @return The key fingerprint from the user's SSL certificate or an empty string
249          * if the user is not using SSL or did not provide a client certificate
250          */
251         std::string GetFingerprint(User* user)
252         {
253                 ssl_cert* cert = GetCertificate(user);
254                 if (cert)
255                         return cert->GetFingerprint();
256                 return "";
257         }
258 };
259
260 /** API implemented by m_sslinfo that allows modules to retrive the SSL certificate
261  * information of local and remote users. It can also be used to find out whether a
262  * user is using SSL or not.
263  */
264 class UserCertificateAPI : public dynamic_reference<UserCertificateAPIBase>
265 {
266  public:
267         UserCertificateAPI(Module* parent)
268                 : dynamic_reference<UserCertificateAPIBase>(parent, "m_sslinfo_api")
269         {
270         }
271 };