]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules/ssl.h
Merge insp20
[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  public:
142         SSLIOHook(IOHookProvider* hookprov)
143                 : IOHook(hookprov)
144         {
145         }
146
147         /**
148          * Get the certificate sent by this peer
149          * @return The SSL certificate sent by the peer, NULL if no cert was sent
150          */
151         ssl_cert* GetCertificate() const
152         {
153                 return certificate;
154         }
155
156         /**
157          * Get the fingerprint of the peer's certificate
158          * @return The fingerprint of the SSL client certificate sent by the peer,
159          * empty if no cert was sent
160          */
161         std::string GetFingerprint() const
162         {
163                 ssl_cert* cert = GetCertificate();
164                 if (cert)
165                         return cert->GetFingerprint();
166                 return "";
167         }
168 };
169
170 /** Helper functions for obtaining SSL client certificates and key fingerprints
171  * from StreamSockets
172  */
173 class SSLClientCert
174 {
175  public:
176         /**
177          * Get the client certificate from a socket
178          * @param sock The socket to get the certificate from, the socket does not have to use SSL
179          * @return The SSL client certificate information, NULL if the peer is not using SSL
180          */
181         static ssl_cert* GetCertificate(StreamSocket* sock)
182         {
183                 IOHook* iohook = sock->GetIOHook();
184                 if ((!iohook) || (iohook->prov->type != IOHookProvider::IOH_SSL))
185                         return NULL;
186
187                 SSLIOHook* ssliohook = static_cast<SSLIOHook*>(iohook);
188                 return ssliohook->GetCertificate();
189         }
190
191         /**
192          * Get the fingerprint of a client certificate from a socket
193          * @param sock The socket to get the certificate fingerprint from, the
194          * socket does not have to use SSL
195          * @return The key fingerprint from the SSL certificate sent by the peer,
196          * empty if no cert was sent or the peer is not using SSL
197          */
198         static std::string GetFingerprint(StreamSocket* sock)
199         {
200                 ssl_cert* cert = SSLClientCert::GetCertificate(sock);
201                 if (cert)
202                         return cert->GetFingerprint();
203                 return "";
204         }
205 };
206
207 class UserCertificateAPIBase : public DataProvider
208 {
209  public:
210         UserCertificateAPIBase(Module* parent)
211                 : DataProvider(parent, "m_sslinfo_api")
212         {
213         }
214
215         /** Get the SSL certificate of a user
216          * @param user The user whose certificate to get, user may be remote
217          * @return The SSL certificate of the user or NULL if the user is not using SSL
218          */
219         virtual ssl_cert* GetCertificate(User* user) = 0;
220
221         /** Get the key fingerprint from a user's certificate
222          * @param user The user whose key fingerprint to get, user may be remote
223          * @return The key fingerprint from the user's SSL certificate or an empty string
224          * if the user is not using SSL or did not provide a client certificate
225          */
226         std::string GetFingerprint(User* user)
227         {
228                 ssl_cert* cert = GetCertificate(user);
229                 if (cert)
230                         return cert->GetFingerprint();
231                 return "";
232         }
233 };
234
235 /** API implemented by m_sslinfo that allows modules to retrive the SSL certificate
236  * information of local and remote users. It can also be used to find out whether a
237  * user is using SSL or not.
238  */
239 class UserCertificateAPI : public dynamic_reference<UserCertificateAPIBase>
240 {
241  public:
242         UserCertificateAPI(Module* parent)
243                 : dynamic_reference<UserCertificateAPIBase>(parent, "m_sslinfo_api")
244         {
245         }
246 };