]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_ssl_openssl.cpp
Create IOHook interface (extracted from Module)
[user/henk/code/inspircd.git] / src / modules / extra / m_ssl_openssl.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
6  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24  /* HACK: This prevents OpenSSL on OS X 10.7 and later from spewing deprecation
25   * warnings for every single function call. As far as I (SaberUK) know, Apple
26   * have no plans to remove OpenSSL so this warning just causes needless spam.
27   */
28 #ifdef __APPLE__
29 # define __AVAILABILITYMACROS__
30 # define DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER
31 #endif
32
33 #include "inspircd.h"
34 #include "iohook.h"
35 #include <openssl/ssl.h>
36 #include <openssl/err.h>
37 #include "modules/ssl.h"
38
39 #ifdef _WIN32
40 # pragma comment(lib, "libcrypto.lib")
41 # pragma comment(lib, "libssl.lib")
42 # pragma comment(lib, "user32.lib")
43 # pragma comment(lib, "advapi32.lib")
44 # pragma comment(lib, "libgcc.lib")
45 # pragma comment(lib, "libmingwex.lib")
46 # pragma comment(lib, "gdi32.lib")
47 # undef MAX_DESCRIPTORS
48 # define MAX_DESCRIPTORS 10000
49 #endif
50
51 /* $ModDesc: Provides SSL support for clients */
52
53 /* $LinkerFlags: if("USE_FREEBSD_BASE_SSL") -lssl -lcrypto */
54 /* $CompileFlags: if(!"USE_FREEBSD_BASE_SSL") pkgconfversion("openssl","0.9.7") pkgconfincludes("openssl","/openssl/ssl.h","") */
55 /* $LinkerFlags: if(!"USE_FREEBSD_BASE_SSL") rpath("pkg-config --libs openssl") pkgconflibs("openssl","/libssl.so","-lssl -lcrypto -ldl") */
56
57 /* $NoPedantic */
58
59
60 enum issl_status { ISSL_NONE, ISSL_HANDSHAKING, ISSL_OPEN };
61
62 static bool SelfSigned = false;
63
64 char* get_error()
65 {
66         return ERR_error_string(ERR_get_error(), NULL);
67 }
68
69 static int error_callback(const char *str, size_t len, void *u);
70
71 /** Represents an SSL user's extra data
72  */
73 class issl_session
74 {
75 public:
76         SSL* sess;
77         issl_status status;
78         reference<ssl_cert> cert;
79
80         bool outbound;
81         bool data_to_write;
82
83         issl_session()
84         {
85                 outbound = false;
86                 data_to_write = false;
87         }
88 };
89
90 static int OnVerify(int preverify_ok, X509_STORE_CTX *ctx)
91 {
92         /* XXX: This will allow self signed certificates.
93          * In the future if we want an option to not allow this,
94          * we can just return preverify_ok here, and openssl
95          * will boot off self-signed and invalid peer certs.
96          */
97         int ve = X509_STORE_CTX_get_error(ctx);
98
99         SelfSigned = (ve == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT);
100
101         return 1;
102 }
103
104 class OpenSSLIOHook : public IOHook
105 {
106  private:
107         bool Handshake(StreamSocket* user, issl_session* session)
108         {
109                 int ret;
110
111                 if (session->outbound)
112                         ret = SSL_connect(session->sess);
113                 else
114                         ret = SSL_accept(session->sess);
115
116                 if (ret < 0)
117                 {
118                         int err = SSL_get_error(session->sess, ret);
119
120                         if (err == SSL_ERROR_WANT_READ)
121                         {
122                                 ServerInstance->SE->ChangeEventMask(user, FD_WANT_POLL_READ | FD_WANT_NO_WRITE);
123                                 session->status = ISSL_HANDSHAKING;
124                                 return true;
125                         }
126                         else if (err == SSL_ERROR_WANT_WRITE)
127                         {
128                                 ServerInstance->SE->ChangeEventMask(user, FD_WANT_NO_READ | FD_WANT_SINGLE_WRITE);
129                                 session->status = ISSL_HANDSHAKING;
130                                 return true;
131                         }
132                         else
133                         {
134                                 CloseSession(session);
135                         }
136
137                         return false;
138                 }
139                 else if (ret > 0)
140                 {
141                         // Handshake complete.
142                         VerifyCertificate(session, user);
143
144                         session->status = ISSL_OPEN;
145
146                         ServerInstance->SE->ChangeEventMask(user, FD_WANT_POLL_READ | FD_WANT_NO_WRITE | FD_ADD_TRIAL_WRITE);
147
148                         return true;
149                 }
150                 else if (ret == 0)
151                 {
152                         CloseSession(session);
153                         return true;
154                 }
155
156                 return true;
157         }
158
159         void CloseSession(issl_session* session)
160         {
161                 if (session->sess)
162                 {
163                         SSL_shutdown(session->sess);
164                         SSL_free(session->sess);
165                 }
166
167                 session->sess = NULL;
168                 session->status = ISSL_NONE;
169                 errno = EIO;
170         }
171
172         void VerifyCertificate(issl_session* session, StreamSocket* user)
173         {
174                 if (!session->sess || !user)
175                         return;
176
177                 X509* cert;
178                 ssl_cert* certinfo = new ssl_cert;
179                 session->cert = certinfo;
180                 unsigned int n;
181                 unsigned char md[EVP_MAX_MD_SIZE];
182                 const EVP_MD *digest = use_sha ? EVP_sha1() : EVP_md5();
183
184                 cert = SSL_get_peer_certificate((SSL*)session->sess);
185
186                 if (!cert)
187                 {
188                         certinfo->error = "Could not get peer certificate: "+std::string(get_error());
189                         return;
190                 }
191
192                 certinfo->invalid = (SSL_get_verify_result(session->sess) != X509_V_OK);
193
194                 if (SelfSigned)
195                 {
196                         certinfo->unknownsigner = false;
197                         certinfo->trusted = true;
198                 }
199                 else
200                 {
201                         certinfo->unknownsigner = true;
202                         certinfo->trusted = false;
203                 }
204
205                 certinfo->dn = X509_NAME_oneline(X509_get_subject_name(cert),0,0);
206                 certinfo->issuer = X509_NAME_oneline(X509_get_issuer_name(cert),0,0);
207
208                 if (!X509_digest(cert, digest, md, &n))
209                 {
210                         certinfo->error = "Out of memory generating fingerprint";
211                 }
212                 else
213                 {
214                         certinfo->fingerprint = BinToHex(md, n);
215                 }
216
217                 if ((ASN1_UTCTIME_cmp_time_t(X509_get_notAfter(cert), ServerInstance->Time()) == -1) || (ASN1_UTCTIME_cmp_time_t(X509_get_notBefore(cert), ServerInstance->Time()) == 0))
218                 {
219                         certinfo->error = "Not activated, or expired certificate";
220                 }
221
222                 X509_free(cert);
223         }
224
225  public:
226         issl_session* sessions;
227         SSL_CTX* ctx;
228         SSL_CTX* clictx;
229         bool use_sha;
230
231         OpenSSLIOHook(Module* mod)
232                 : IOHook(mod, "ssl/openssl")
233         {
234                 sessions = new issl_session[ServerInstance->SE->GetMaxFds()];
235         }
236
237         ~OpenSSLIOHook()
238         {
239                 delete[] sessions;
240         }
241
242         void OnStreamSocketAccept(StreamSocket* user, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server) CXX11_OVERRIDE
243         {
244                 int fd = user->GetFd();
245
246                 issl_session* session = &sessions[fd];
247
248                 session->sess = SSL_new(ctx);
249                 session->status = ISSL_NONE;
250                 session->outbound = false;
251                 session->cert = NULL;
252
253                 if (session->sess == NULL)
254                         return;
255
256                 if (SSL_set_fd(session->sess, fd) == 0)
257                 {
258                         ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEBUG, "BUG: Can't set fd with SSL_set_fd: %d", fd);
259                         return;
260                 }
261
262                 Handshake(user, session);
263         }
264
265         void OnStreamSocketConnect(StreamSocket* user) CXX11_OVERRIDE
266         {
267                 int fd = user->GetFd();
268                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
269                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() -1))
270                         return;
271
272                 issl_session* session = &sessions[fd];
273
274                 session->sess = SSL_new(clictx);
275                 session->status = ISSL_NONE;
276                 session->outbound = true;
277
278                 if (session->sess == NULL)
279                         return;
280
281                 if (SSL_set_fd(session->sess, fd) == 0)
282                 {
283                         ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEBUG, "BUG: Can't set fd with SSL_set_fd: %d", fd);
284                         return;
285                 }
286
287                 Handshake(user, session);
288         }
289
290         void OnStreamSocketClose(StreamSocket* user) CXX11_OVERRIDE
291         {
292                 int fd = user->GetFd();
293                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
294                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() - 1))
295                         return;
296
297                 CloseSession(&sessions[fd]);
298         }
299
300         int OnStreamSocketRead(StreamSocket* user, std::string& recvq) CXX11_OVERRIDE
301         {
302                 int fd = user->GetFd();
303                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
304                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() - 1))
305                         return -1;
306
307                 issl_session* session = &sessions[fd];
308
309                 if (!session->sess)
310                 {
311                         CloseSession(session);
312                         return -1;
313                 }
314
315                 if (session->status == ISSL_HANDSHAKING)
316                 {
317                         // The handshake isn't finished and it wants to read, try to finish it.
318                         if (!Handshake(user, session))
319                         {
320                                 // Couldn't resume handshake.
321                                 if (session->status == ISSL_NONE)
322                                         return -1;
323                                 return 0;
324                         }
325                 }
326
327                 // If we resumed the handshake then session->status will be ISSL_OPEN
328
329                 if (session->status == ISSL_OPEN)
330                 {
331                         char* buffer = ServerInstance->GetReadBuffer();
332                         size_t bufsiz = ServerInstance->Config->NetBufferSize;
333                         int ret = SSL_read(session->sess, buffer, bufsiz);
334
335                         if (ret > 0)
336                         {
337                                 recvq.append(buffer, ret);
338                                 if (session->data_to_write)
339                                         ServerInstance->SE->ChangeEventMask(user, FD_WANT_POLL_READ | FD_WANT_SINGLE_WRITE);
340                                 return 1;
341                         }
342                         else if (ret == 0)
343                         {
344                                 // Client closed connection.
345                                 CloseSession(session);
346                                 user->SetError("Connection closed");
347                                 return -1;
348                         }
349                         else if (ret < 0)
350                         {
351                                 int err = SSL_get_error(session->sess, ret);
352
353                                 if (err == SSL_ERROR_WANT_READ)
354                                 {
355                                         ServerInstance->SE->ChangeEventMask(user, FD_WANT_POLL_READ);
356                                         return 0;
357                                 }
358                                 else if (err == SSL_ERROR_WANT_WRITE)
359                                 {
360                                         ServerInstance->SE->ChangeEventMask(user, FD_WANT_NO_READ | FD_WANT_SINGLE_WRITE);
361                                         return 0;
362                                 }
363                                 else
364                                 {
365                                         CloseSession(session);
366                                         return -1;
367                                 }
368                         }
369                 }
370
371                 return 0;
372         }
373
374         int OnStreamSocketWrite(StreamSocket* user, std::string& buffer) CXX11_OVERRIDE
375         {
376                 int fd = user->GetFd();
377
378                 issl_session* session = &sessions[fd];
379
380                 if (!session->sess)
381                 {
382                         CloseSession(session);
383                         return -1;
384                 }
385
386                 session->data_to_write = true;
387
388                 if (session->status == ISSL_HANDSHAKING)
389                 {
390                         if (!Handshake(user, session))
391                         {
392                                 // Couldn't resume handshake.
393                                 if (session->status == ISSL_NONE)
394                                         return -1;
395                                 return 0;
396                         }
397                 }
398
399                 if (session->status == ISSL_OPEN)
400                 {
401                         int ret = SSL_write(session->sess, buffer.data(), buffer.size());
402                         if (ret == (int)buffer.length())
403                         {
404                                 session->data_to_write = false;
405                                 ServerInstance->SE->ChangeEventMask(user, FD_WANT_POLL_READ | FD_WANT_NO_WRITE);
406                                 return 1;
407                         }
408                         else if (ret > 0)
409                         {
410                                 buffer = buffer.substr(ret);
411                                 ServerInstance->SE->ChangeEventMask(user, FD_WANT_SINGLE_WRITE);
412                                 return 0;
413                         }
414                         else if (ret == 0)
415                         {
416                                 CloseSession(session);
417                                 return -1;
418                         }
419                         else if (ret < 0)
420                         {
421                                 int err = SSL_get_error(session->sess, ret);
422
423                                 if (err == SSL_ERROR_WANT_WRITE)
424                                 {
425                                         ServerInstance->SE->ChangeEventMask(user, FD_WANT_SINGLE_WRITE);
426                                         return 0;
427                                 }
428                                 else if (err == SSL_ERROR_WANT_READ)
429                                 {
430                                         ServerInstance->SE->ChangeEventMask(user, FD_WANT_POLL_READ);
431                                         return 0;
432                                 }
433                                 else
434                                 {
435                                         CloseSession(session);
436                                         return -1;
437                                 }
438                         }
439                 }
440                 return 0;
441         }
442
443         void TellCiphersAndFingerprint(LocalUser* user)
444         {
445                 issl_session& s = sessions[user->eh.GetFd()];
446                 if (s.sess)
447                 {
448                         std::string text = "*** You are connected using SSL cipher '" + std::string(SSL_get_cipher(s.sess)) + "'";
449                         const std::string& fingerprint = s.cert->fingerprint;
450                         if (!fingerprint.empty())
451                                 text += " and your SSL fingerprint is " + fingerprint;
452
453                         user->WriteNotice(text);
454                 }
455         }
456 };
457
458 class ModuleSSLOpenSSL : public Module
459 {
460         std::string sslports;
461         OpenSSLIOHook iohook;
462
463  public:
464         ModuleSSLOpenSSL() : iohook(this)
465         {
466                 /* Global SSL library initialization*/
467                 SSL_library_init();
468                 SSL_load_error_strings();
469
470                 /* Build our SSL contexts:
471                  * NOTE: OpenSSL makes us have two contexts, one for servers and one for clients. ICK.
472                  */
473                 iohook.ctx = SSL_CTX_new( SSLv23_server_method() );
474                 iohook.clictx = SSL_CTX_new( SSLv23_client_method() );
475
476                 SSL_CTX_set_mode(iohook.ctx, SSL_MODE_ENABLE_PARTIAL_WRITE | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
477                 SSL_CTX_set_mode(iohook.clictx, SSL_MODE_ENABLE_PARTIAL_WRITE | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
478
479                 SSL_CTX_set_verify(iohook.ctx, SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, OnVerify);
480                 SSL_CTX_set_verify(iohook.clictx, SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, OnVerify);
481         }
482
483         ~ModuleSSLOpenSSL()
484         {
485                 SSL_CTX_free(iohook.ctx);
486                 SSL_CTX_free(iohook.clictx);
487         }
488
489         void init() CXX11_OVERRIDE
490         {
491                 // Needs the flag as it ignores a plain /rehash
492                 OnModuleRehash(NULL,"ssl");
493                 Implementation eventlist[] = { I_On005Numeric, I_OnRehash, I_OnModuleRehash, I_OnHookIO, I_OnUserConnect };
494                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
495                 ServerInstance->Modules->AddService(iohook);
496         }
497
498         void OnHookIO(StreamSocket* user, ListenSocket* lsb) CXX11_OVERRIDE
499         {
500                 if (!user->GetIOHook() && lsb->bind_tag->getString("ssl") == "openssl")
501                 {
502                         /* Hook the user with our module */
503                         user->AddIOHook(&iohook);
504                 }
505         }
506
507         void OnRehash(User* user) CXX11_OVERRIDE
508         {
509                 sslports.clear();
510
511                 ConfigTag* Conf = ServerInstance->Config->ConfValue("openssl");
512
513                 if (Conf->getBool("showports", true))
514                 {
515                         sslports = Conf->getString("advertisedports");
516                         if (!sslports.empty())
517                                 return;
518
519                         for (size_t i = 0; i < ServerInstance->ports.size(); i++)
520                         {
521                                 ListenSocket* port = ServerInstance->ports[i];
522                                 if (port->bind_tag->getString("ssl") != "openssl")
523                                         continue;
524
525                                 const std::string& portid = port->bind_desc;
526                                 ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "m_ssl_openssl.so: Enabling SSL for port %s", portid.c_str());
527
528                                 if (port->bind_tag->getString("type", "clients") == "clients" && port->bind_addr != "127.0.0.1")
529                                 {
530                                         /*
531                                          * Found an SSL port for clients that is not bound to 127.0.0.1 and handled by us, display
532                                          * the IP:port in ISUPPORT.
533                                          *
534                                          * We used to advertise all ports seperated by a ';' char that matched the above criteria,
535                                          * but this resulted in too long ISUPPORT lines if there were lots of ports to be displayed.
536                                          * To solve this by default we now only display the first IP:port found and let the user
537                                          * configure the exact value for the 005 token, if necessary.
538                                          */
539                                         sslports = portid;
540                                         break;
541                                 }
542                         }
543                 }
544         }
545
546         void OnModuleRehash(User* user, const std::string &param) CXX11_OVERRIDE
547         {
548                 if (param != "ssl")
549                         return;
550
551                 std::string keyfile;
552                 std::string certfile;
553                 std::string cafile;
554                 std::string dhfile;
555                 OnRehash(user);
556
557                 ConfigTag* conf = ServerInstance->Config->ConfValue("openssl");
558
559                 cafile   = conf->getString("cafile", CONFIG_PATH "/ca.pem");
560                 certfile = conf->getString("certfile", CONFIG_PATH "/cert.pem");
561                 keyfile  = conf->getString("keyfile", CONFIG_PATH "/key.pem");
562                 dhfile   = conf->getString("dhfile", CONFIG_PATH "/dhparams.pem");
563                 std::string hash = conf->getString("hash", "md5");
564                 if (hash != "sha1" && hash != "md5")
565                         throw ModuleException("Unknown hash type " + hash);
566                 iohook.use_sha = (hash == "sha1");
567
568                 std::string ciphers = conf->getString("ciphers", "");
569
570                 SSL_CTX* ctx = iohook.ctx;
571                 SSL_CTX* clictx = iohook.clictx;
572
573                 if (!ciphers.empty())
574                 {
575                         if ((!SSL_CTX_set_cipher_list(ctx, ciphers.c_str())) || (!SSL_CTX_set_cipher_list(clictx, ciphers.c_str())))
576                         {
577                                 ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "m_ssl_openssl.so: Can't set cipher list to %s.", ciphers.c_str());
578                                 ERR_print_errors_cb(error_callback, this);
579                         }
580                 }
581
582                 /* Load our keys and certificates
583                  * NOTE: OpenSSL's error logging API sucks, don't blame us for this clusterfuck.
584                  */
585                 if ((!SSL_CTX_use_certificate_chain_file(ctx, certfile.c_str())) || (!SSL_CTX_use_certificate_chain_file(clictx, certfile.c_str())))
586                 {
587                         ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "m_ssl_openssl.so: Can't read certificate file %s. %s", certfile.c_str(), strerror(errno));
588                         ERR_print_errors_cb(error_callback, this);
589                 }
590
591                 if (((!SSL_CTX_use_PrivateKey_file(ctx, keyfile.c_str(), SSL_FILETYPE_PEM))) || (!SSL_CTX_use_PrivateKey_file(clictx, keyfile.c_str(), SSL_FILETYPE_PEM)))
592                 {
593                         ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "m_ssl_openssl.so: Can't read key file %s. %s", keyfile.c_str(), strerror(errno));
594                         ERR_print_errors_cb(error_callback, this);
595                 }
596
597                 /* Load the CAs we trust*/
598                 if (((!SSL_CTX_load_verify_locations(ctx, cafile.c_str(), 0))) || (!SSL_CTX_load_verify_locations(clictx, cafile.c_str(), 0)))
599                 {
600                         ServerInstance->Logs->Log("m_ssl_openssl",LOG_DEFAULT, "m_ssl_openssl.so: Can't read CA list from %s. This is only a problem if you want to verify client certificates, otherwise it's safe to ignore this message. Error: %s", cafile.c_str(), strerror(errno));
601                         ERR_print_errors_cb(error_callback, this);
602                 }
603
604                 FILE* dhpfile = fopen(dhfile.c_str(), "r");
605                 DH* ret;
606
607                 if (dhpfile == NULL)
608                 {
609                         ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "m_ssl_openssl.so Couldn't open DH file %s: %s", dhfile.c_str(), strerror(errno));
610                         throw ModuleException("Couldn't open DH file " + dhfile + ": " + strerror(errno));
611                 }
612                 else
613                 {
614                         ret = PEM_read_DHparams(dhpfile, NULL, NULL, NULL);
615                         if ((SSL_CTX_set_tmp_dh(ctx, ret) < 0) || (SSL_CTX_set_tmp_dh(clictx, ret) < 0))
616                         {
617                                 ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "m_ssl_openssl.so: Couldn't set DH parameters %s. SSL errors follow:", dhfile.c_str());
618                                 ERR_print_errors_cb(error_callback, this);
619                         }
620                 }
621
622                 fclose(dhpfile);
623         }
624
625         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
626         {
627                 if (!sslports.empty())
628                         tokens["SSL"] = sslports;
629         }
630
631         void OnUserConnect(LocalUser* user) CXX11_OVERRIDE
632         {
633                 if (user->eh.GetIOHook() == &iohook)
634                         iohook.TellCiphersAndFingerprint(user);
635         }
636
637         void OnCleanup(int target_type, void* item) CXX11_OVERRIDE
638         {
639                 if (target_type == TYPE_USER)
640                 {
641                         LocalUser* user = IS_LOCAL((User*)item);
642
643                         if (user && user->eh.GetIOHook() == &iohook)
644                         {
645                                 // User is using SSL, they're a local user, and they're using one of *our* SSL ports.
646                                 // Potentially there could be multiple SSL modules loaded at once on different ports.
647                                 ServerInstance->Users->QuitUser(user, "SSL module unloading");
648                         }
649                 }
650         }
651
652         Version GetVersion() CXX11_OVERRIDE
653         {
654                 return Version("Provides SSL support for clients", VF_VENDOR);
655         }
656
657         void OnRequest(Request& request) CXX11_OVERRIDE
658         {
659                 if (strcmp("GET_SSL_CERT", request.id) == 0)
660                 {
661                         SocketCertificateRequest& req = static_cast<SocketCertificateRequest&>(request);
662                         int fd = req.sock->GetFd();
663                         issl_session* session = &iohook.sessions[fd];
664
665                         req.cert = session->cert;
666                 }
667         }
668 };
669
670 static int error_callback(const char *str, size_t len, void *u)
671 {
672         ServerInstance->Logs->Log("m_ssl_openssl", LOG_DEFAULT, "SSL error: " + std::string(str, len - 1));
673
674         //
675         // XXX: Remove this line, it causes valgrind warnings...
676         //
677         // MD_update(&m, buf, j);
678         //
679         //
680         // ... ONLY JOKING! :-)
681         //
682
683         return 0;
684 }
685
686 MODULE_INIT(ModuleSSLOpenSSL)