]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_ssl_openssl.cpp
Allow freeform queries. Allow $nick, $host, $ip, $pass, $md5pass and $sha256pass...
[user/henk/code/inspircd.git] / src / modules / extra / m_ssl_openssl.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 #include <openssl/ssl.h>
17 #include <openssl/err.h>
18
19 #include "configreader.h"
20 #include "users.h"
21 #include "channels.h"
22 #include "modules.h"
23
24 #include "socket.h"
25 #include "hashcomp.h"
26
27 #include "transport.h"
28
29 #ifdef WINDOWS
30 #pragma comment(lib, "libeay32MTd")
31 #pragma comment(lib, "ssleay32MTd")
32 #undef MAX_DESCRIPTORS
33 #define MAX_DESCRIPTORS 10000
34 #endif
35
36 /* $ModDesc: Provides SSL support for clients */
37 /* $CompileFlags: pkgconfversion("openssl","0.9.7") pkgconfincludes("openssl","/openssl/ssl.h","") */
38 /* $LinkerFlags: rpath("pkg-config --libs openssl") pkgconflibs("openssl","/libssl.so","-lssl -lcrypto -ldl") */
39 /* $ModDep: transport.h */
40 /* $NoPedantic */
41 /* $CopyInstall: conf/key.pem $(CONPATH) */
42 /* $CopyInstall: conf/cert.pem $(CONPATH) */
43
44 enum issl_status { ISSL_NONE, ISSL_HANDSHAKING, ISSL_OPEN };
45 enum issl_io_status { ISSL_WRITE, ISSL_READ };
46
47 static bool SelfSigned = false;
48
49 bool isin(const std::string &host, int port, const std::vector<std::string> &portlist)
50 {
51         if (std::find(portlist.begin(), portlist.end(), "*:" + ConvToStr(port)) != portlist.end())
52                 return true;
53
54         if (std::find(portlist.begin(), portlist.end(), ":" + ConvToStr(port)) != portlist.end())
55                 return true;
56
57         return std::find(portlist.begin(), portlist.end(), host + ":" + ConvToStr(port)) != portlist.end();
58 }
59
60 char* get_error()
61 {
62         return ERR_error_string(ERR_get_error(), NULL);
63 }
64
65 static int error_callback(const char *str, size_t len, void *u);
66
67 /** Represents an SSL user's extra data
68  */
69 class issl_session : public classbase
70 {
71 public:
72         SSL* sess;
73         issl_status status;
74         issl_io_status rstat;
75         issl_io_status wstat;
76
77         unsigned int inbufoffset;
78         char* inbuf;                    // Buffer OpenSSL reads into.
79         std::string outbuf;     // Buffer for outgoing data that OpenSSL will not take.
80         int fd;
81         bool outbound;
82
83         issl_session()
84         {
85                 outbound = false;
86                 rstat = ISSL_READ;
87                 wstat = ISSL_WRITE;
88         }
89 };
90
91 static int OnVerify(int preverify_ok, X509_STORE_CTX *ctx)
92 {
93         /* XXX: This will allow self signed certificates.
94          * In the future if we want an option to not allow this,
95          * we can just return preverify_ok here, and openssl
96          * will boot off self-signed and invalid peer certs.
97          */
98         int ve = X509_STORE_CTX_get_error(ctx);
99
100         SelfSigned = (ve == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT);
101
102         return 1;
103 }
104
105 class ModuleSSLOpenSSL : public Module
106 {
107         std::vector<std::string> listenports;
108
109         int inbufsize;
110         issl_session sessions[MAX_DESCRIPTORS];
111
112         SSL_CTX* ctx;
113         SSL_CTX* clictx;
114
115         char* dummy;
116         char cipher[MAXBUF];
117
118         std::string keyfile;
119         std::string certfile;
120         std::string cafile;
121         // std::string crlfile;
122         std::string dhfile;
123         std::string sslports;
124
125         int clientactive;
126
127  public:
128
129         InspIRCd* PublicInstance;
130
131         ModuleSSLOpenSSL(InspIRCd* Me)
132         : Module(Me), PublicInstance(Me)
133         {
134                 ServerInstance->Modules->PublishInterface("BufferedSocketHook", this);
135
136                 // Not rehashable...because I cba to reduce all the sizes of existing buffers.
137                 inbufsize = ServerInstance->Config->NetBufferSize;
138
139                 /* Global SSL library initialization*/
140                 SSL_library_init();
141                 SSL_load_error_strings();
142
143                 /* Build our SSL contexts:
144                  * NOTE: OpenSSL makes us have two contexts, one for servers and one for clients. ICK.
145                  */
146                 ctx = SSL_CTX_new( SSLv23_server_method() );
147                 clictx = SSL_CTX_new( SSLv23_client_method() );
148
149                 SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, OnVerify);
150                 SSL_CTX_set_verify(clictx, SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE, OnVerify);
151
152                 // Needs the flag as it ignores a plain /rehash
153                 OnRehash(NULL,"ssl");
154                 Implementation eventlist[] = { I_OnRawSocketConnect, I_OnRawSocketAccept, I_OnRawSocketClose, I_OnRawSocketRead, I_OnRawSocketWrite, I_OnCleanup, I_On005Numeric,
155                         I_OnBufferFlushed, I_OnRequest, I_OnSyncUserMetaData, I_OnDecodeMetaData, I_OnUnloadModule, I_OnRehash, I_OnWhois, I_OnPostConnect, I_OnHookUserIO };
156                 ServerInstance->Modules->Attach(eventlist, this, 16);
157         }
158
159         virtual void OnHookUserIO(User* user, const std::string &targetip)
160         {
161                 if (!user->io && isin(targetip,user->GetPort(), listenports))
162                 {
163                         /* Hook the user with our module */
164                         user->io = this;
165                 }
166         }
167
168         virtual void OnRehash(User* user, const std::string &param)
169         {
170                 ConfigReader Conf(ServerInstance);
171
172                 listenports.clear();
173                 clientactive = 0;
174                 sslports.clear();
175
176                 for(int index = 0; index < Conf.Enumerate("bind"); index++)
177                 {
178                         // For each <bind> tag
179                         std::string x = Conf.ReadValue("bind", "type", index);
180                         if(((x.empty()) || (x == "clients")) && (Conf.ReadValue("bind", "ssl", index) == "openssl"))
181                         {
182                                 // Get the port we're meant to be listening on with SSL
183                                 std::string port = Conf.ReadValue("bind", "port", index);
184                                 std::string addr = Conf.ReadValue("bind", "address", index);
185
186                                 irc::portparser portrange(port, false);
187                                 long portno = -1;
188                                 while ((portno = portrange.GetToken()))
189                                 {
190                                         clientactive++;
191                                         try
192                                         {
193                                                 listenports.push_back(addr + ":" + ConvToStr(portno));
194
195                                                 for (size_t i = 0; i < ServerInstance->Config->ports.size(); i++)
196                                                         if ((ServerInstance->Config->ports[i]->GetPort() == portno) && (ServerInstance->Config->ports[i]->GetIP() == addr))
197                                                                 ServerInstance->Config->ports[i]->SetDescription("ssl");
198                                                 ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_gnutls.so: Enabling SSL for port %d", portno);
199
200                                                 sslports.append((addr.empty() ? "*" : addr)).append(":").append(ConvToStr(portno)).append(";");
201                                         }
202                                         catch (ModuleException &e)
203                                         {
204                                                 ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_gnutls.so: FAILED to enable SSL on port %d: %s. Maybe it's already hooked by the same port on a different IP, or you have an other SSL or similar module loaded?", portno, e.GetReason());
205                                         }
206                                 }
207                         }
208                 }
209
210                 if (!sslports.empty())
211                         sslports.erase(sslports.end() - 1);
212
213                 if (param != "ssl")
214                 {
215                         return;
216                 }
217
218                 std::string confdir(ServerInstance->ConfigFileName);
219                 // +1 so we the path ends with a /
220                 confdir = confdir.substr(0, confdir.find_last_of('/') + 1);
221
222                 cafile   = Conf.ReadValue("openssl", "cafile", 0);
223                 certfile = Conf.ReadValue("openssl", "certfile", 0);
224                 keyfile  = Conf.ReadValue("openssl", "keyfile", 0);
225                 dhfile   = Conf.ReadValue("openssl", "dhfile", 0);
226
227                 // Set all the default values needed.
228                 if (cafile.empty())
229                         cafile = "ca.pem";
230
231                 if (certfile.empty())
232                         certfile = "cert.pem";
233
234                 if (keyfile.empty())
235                         keyfile = "key.pem";
236
237                 if (dhfile.empty())
238                         dhfile = "dhparams.pem";
239
240                 // Prepend relative paths with the path to the config directory.
241                 if (cafile[0] != '/')
242                         cafile = confdir + cafile;
243
244                 if (certfile[0] != '/')
245                         certfile = confdir + certfile;
246
247                 if (keyfile[0] != '/')
248                         keyfile = confdir + keyfile;
249
250                 if (dhfile[0] != '/')
251                         dhfile = confdir + dhfile;
252
253                 /* Load our keys and certificates
254                  * NOTE: OpenSSL's error logging API sucks, don't blame us for this clusterfuck.
255                  */
256                 if ((!SSL_CTX_use_certificate_chain_file(ctx, certfile.c_str())) || (!SSL_CTX_use_certificate_chain_file(clictx, certfile.c_str())))
257                 {
258                         ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so: Can't read certificate file %s. %s", certfile.c_str(), strerror(errno));
259                         ERR_print_errors_cb(error_callback, this);
260                 }
261
262                 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)))
263                 {
264                         ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so: Can't read key file %s. %s", keyfile.c_str(), strerror(errno));
265                         ERR_print_errors_cb(error_callback, this);
266                 }
267
268                 /* Load the CAs we trust*/
269                 if (((!SSL_CTX_load_verify_locations(ctx, cafile.c_str(), 0))) || (!SSL_CTX_load_verify_locations(clictx, cafile.c_str(), 0)))
270                 {
271                         ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so: Can't read CA list from %s. %s", cafile.c_str(), strerror(errno));
272                         ERR_print_errors_cb(error_callback, this);
273                 }
274
275                 FILE* dhpfile = fopen(dhfile.c_str(), "r");
276                 DH* ret;
277
278                 if (dhpfile == NULL)
279                 {
280                         ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so Couldn't open DH file %s: %s", dhfile.c_str(), strerror(errno));
281                         throw ModuleException("Couldn't open DH file " + dhfile + ": " + strerror(errno));
282                 }
283                 else
284                 {
285                         ret = PEM_read_DHparams(dhpfile, NULL, NULL, NULL);
286                         if ((SSL_CTX_set_tmp_dh(ctx, ret) < 0) || (SSL_CTX_set_tmp_dh(clictx, ret) < 0))
287                         {
288                                 ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so: Couldn't set DH parameters %s. SSL errors follow:", dhfile.c_str());
289                                 ERR_print_errors_cb(error_callback, this);
290                         }
291                 }
292
293                 fclose(dhpfile);
294         }
295
296         virtual void On005Numeric(std::string &output)
297         {
298                 output.append(" SSL=" + sslports);
299         }
300
301         virtual ~ModuleSSLOpenSSL()
302         {
303                 SSL_CTX_free(ctx);
304                 SSL_CTX_free(clictx);
305         }
306
307         virtual void OnCleanup(int target_type, void* item)
308         {
309                 if (target_type == TYPE_USER)
310                 {
311                         User* user = (User*)item;
312
313                         if (user->GetExt("ssl", dummy) && IS_LOCAL(user) && user->io == this)
314                         {
315                                 // User is using SSL, they're a local user, and they're using one of *our* SSL ports.
316                                 // Potentially there could be multiple SSL modules loaded at once on different ports.
317                                 User::QuitUser(ServerInstance, user, "SSL module unloading");
318                         }
319                         if (user->GetExt("ssl_cert", dummy))
320                         {
321                                 ssl_cert* tofree;
322                                 user->GetExt("ssl_cert", tofree);
323                                 delete tofree;
324                                 user->Shrink("ssl_cert");
325                         }
326
327                         user->io = NULL;
328                 }
329         }
330
331         virtual void OnUnloadModule(Module* mod, const std::string &name)
332         {
333                 if (mod == this)
334                 {
335                         for(unsigned int i = 0; i < listenports.size(); i++)
336                         {
337                                 for (size_t j = 0; j < ServerInstance->Config->ports.size(); j++)
338                                         if (listenports[i] == (ServerInstance->Config->ports[j]->GetIP()+":"+ConvToStr(ServerInstance->Config->ports[j]->GetPort())))
339                                                 ServerInstance->Config->ports[j]->SetDescription("plaintext");
340                         }
341                 }
342         }
343
344         virtual Version GetVersion()
345         {
346                 return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
347         }
348
349
350         virtual const char* OnRequest(Request* request)
351         {
352                 ISHRequest* ISR = (ISHRequest*)request;
353                 if (strcmp("IS_NAME", request->GetId()) == 0)
354                 {
355                         return "openssl";
356                 }
357                 else if (strcmp("IS_HOOK", request->GetId()) == 0)
358                 {
359                         const char* ret = "OK";
360                         try
361                         {
362                                 ret = ServerInstance->Config->AddIOHook((Module*)this, (BufferedSocket*)ISR->Sock) ? "OK" : NULL;
363                         }
364                         catch (ModuleException &e)
365                         {
366                                 return NULL;
367                         }
368
369                         return ret;
370                 }
371                 else if (strcmp("IS_UNHOOK", request->GetId()) == 0)
372                 {
373                         return ServerInstance->Config->DelIOHook((BufferedSocket*)ISR->Sock) ? "OK" : NULL;
374                 }
375                 else if (strcmp("IS_HSDONE", request->GetId()) == 0)
376                 {
377                         if (ISR->Sock->GetFd() < 0)
378                                 return "OK";
379
380                         issl_session* session = &sessions[ISR->Sock->GetFd()];
381                         return (session->status == ISSL_HANDSHAKING) ? NULL : "OK";
382                 }
383                 else if (strcmp("IS_ATTACH", request->GetId()) == 0)
384                 {
385                         issl_session* session = &sessions[ISR->Sock->GetFd()];
386                         if (session->sess)
387                         {
388                                 VerifyCertificate(session, (BufferedSocket*)ISR->Sock);
389                                 return "OK";
390                         }
391                 }
392                 return NULL;
393         }
394
395
396         virtual void OnRawSocketAccept(int fd, const std::string &ip, int localport)
397         {
398                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
399                 if ((fd < 0) || (fd > MAX_DESCRIPTORS))
400                         return;
401
402                 issl_session* session = &sessions[fd];
403
404                 session->fd = fd;
405                 session->inbuf = new char[inbufsize];
406                 session->inbufoffset = 0;
407                 session->sess = SSL_new(ctx);
408                 session->status = ISSL_NONE;
409                 session->outbound = false;
410
411                 if (session->sess == NULL)
412                         return;
413
414                 if (SSL_set_fd(session->sess, fd) == 0)
415                 {
416                         ServerInstance->Logs->Log("m_ssl_openssl",DEBUG,"BUG: Can't set fd with SSL_set_fd: %d", fd);
417                         return;
418                 }
419
420                 Handshake(session);
421         }
422
423         virtual void OnRawSocketConnect(int fd)
424         {
425                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
426                 if ((fd < 0) || (fd > MAX_DESCRIPTORS))
427                         return;
428
429                 issl_session* session = &sessions[fd];
430
431                 session->fd = fd;
432                 session->inbuf = new char[inbufsize];
433                 session->inbufoffset = 0;
434                 session->sess = SSL_new(clictx);
435                 session->status = ISSL_NONE;
436                 session->outbound = true;
437
438                 if (session->sess == NULL)
439                         return;
440
441                 if (SSL_set_fd(session->sess, fd) == 0)
442                 {
443                         ServerInstance->Logs->Log("m_ssl_openssl",DEBUG,"BUG: Can't set fd with SSL_set_fd: %d", fd);
444                         return;
445                 }
446
447                 Handshake(session);
448         }
449
450         virtual void OnRawSocketClose(int fd)
451         {
452                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
453                 if ((fd < 0) || (fd > MAX_DESCRIPTORS))
454                         return;
455
456                 CloseSession(&sessions[fd]);
457
458                 EventHandler* user = ServerInstance->SE->GetRef(fd);
459
460                 if ((user) && (user->GetExt("ssl_cert", dummy)))
461                 {
462                         ssl_cert* tofree;
463                         user->GetExt("ssl_cert", tofree);
464                         delete tofree;
465                         user->Shrink("ssl_cert");
466                 }
467         }
468
469         virtual int OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult)
470         {
471                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
472                 if ((fd < 0) || (fd > MAX_DESCRIPTORS))
473                         return 0;
474
475                 issl_session* session = &sessions[fd];
476
477                 if (!session->sess)
478                 {
479                         readresult = 0;
480                         CloseSession(session);
481                         return 1;
482                 }
483
484                 if (session->status == ISSL_HANDSHAKING)
485                 {
486                         if (session->rstat == ISSL_READ || session->wstat == ISSL_READ)
487                         {
488                                 // The handshake isn't finished and it wants to read, try to finish it.
489                                 if (!Handshake(session))
490                                 {
491                                         // Couldn't resume handshake.
492                                         return -1;
493                                 }
494                         }
495                         else
496                         {
497                                 errno = EAGAIN;
498                                 return -1;
499                         }
500                 }
501
502                 // If we resumed the handshake then session->status will be ISSL_OPEN
503
504                 if (session->status == ISSL_OPEN)
505                 {
506                         if (session->wstat == ISSL_READ)
507                         {
508                                 if(DoWrite(session) == 0)
509                                         return 0;
510                         }
511
512                         if (session->rstat == ISSL_READ)
513                         {
514                                 int ret = DoRead(session);
515
516                                 if (ret > 0)
517                                 {
518                                         if (count <= session->inbufoffset)
519                                         {
520                                                 memcpy(buffer, session->inbuf, count);
521                                                 // Move the stuff left in inbuf to the beginning of it
522                                                 memcpy(session->inbuf, session->inbuf + count, (session->inbufoffset - count));
523                                                 // Now we need to set session->inbufoffset to the amount of data still waiting to be handed to insp.
524                                                 session->inbufoffset -= count;
525                                                 // Insp uses readresult as the count of how much data there is in buffer, so:
526                                                 readresult = count;
527                                         }
528                                         else
529                                         {
530                                                 // There's not as much in the inbuf as there is space in the buffer, so just copy the whole thing.
531                                                 memcpy(buffer, session->inbuf, session->inbufoffset);
532
533                                                 readresult = session->inbufoffset;
534                                                 // Zero the offset, as there's nothing there..
535                                                 session->inbufoffset = 0;
536                                         }
537                                         return 1;
538                                 }
539                                 return ret;
540                         }
541                 }
542
543                 return -1;
544         }
545
546         virtual int OnRawSocketWrite(int fd, const char* buffer, int count)
547         {
548                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
549                 if ((fd < 0) || (fd > MAX_DESCRIPTORS))
550                         return 0;
551
552                 issl_session* session = &sessions[fd];
553
554                 if (!session->sess)
555                 {
556                         CloseSession(session);
557                         return -1;
558                 }
559
560                 session->outbuf.append(buffer, count);
561                 MakePollWrite(session);
562
563                 if (session->status == ISSL_HANDSHAKING)
564                 {
565                         // The handshake isn't finished, try to finish it.
566                         if (session->rstat == ISSL_WRITE || session->wstat == ISSL_WRITE)
567                         {
568                                 Handshake(session);
569                         }
570                 }
571
572                 if (session->status == ISSL_OPEN)
573                 {
574                         if (session->rstat == ISSL_WRITE)
575                         {
576                                 DoRead(session);
577                         }
578
579                         if (session->wstat == ISSL_WRITE)
580                         {
581                                 return DoWrite(session);
582                         }
583                 }
584
585                 return 1;
586         }
587
588         int DoWrite(issl_session* session)
589         {
590                 if (!session->outbuf.size())
591                         return -1;
592
593                 int ret = SSL_write(session->sess, session->outbuf.data(), session->outbuf.size());
594
595                 if (ret == 0)
596                 {
597                         CloseSession(session);
598                         return 0;
599                 }
600                 else if (ret < 0)
601                 {
602                         int err = SSL_get_error(session->sess, ret);
603
604                         if (err == SSL_ERROR_WANT_WRITE)
605                         {
606                                 session->wstat = ISSL_WRITE;
607                                 return -1;
608                         }
609                         else if (err == SSL_ERROR_WANT_READ)
610                         {
611                                 session->wstat = ISSL_READ;
612                                 return -1;
613                         }
614                         else
615                         {
616                                 CloseSession(session);
617                                 return 0;
618                         }
619                 }
620                 else
621                 {
622                         session->outbuf = session->outbuf.substr(ret);
623                         return ret;
624                 }
625         }
626
627         int DoRead(issl_session* session)
628         {
629                 // Is this right? Not sure if the unencrypted data is garaunteed to be the same length.
630                 // Read into the inbuffer, offset from the beginning by the amount of data we have that insp hasn't taken yet.
631                 
632                 int ret = SSL_read(session->sess, session->inbuf + session->inbufoffset, inbufsize - session->inbufoffset);
633
634                 if (ret == 0)
635                 {
636                         // Client closed connection.
637                         CloseSession(session);
638                         return 0;
639                 }
640                 else if (ret < 0)
641                 {
642                         int err = SSL_get_error(session->sess, ret);
643
644                         if (err == SSL_ERROR_WANT_READ)
645                         {
646                                 session->rstat = ISSL_READ;
647                                 return -1;
648                         }
649                         else if (err == SSL_ERROR_WANT_WRITE)
650                         {
651                                 session->rstat = ISSL_WRITE;
652                                 MakePollWrite(session);
653                                 return -1;
654                         }
655                         else
656                         {
657                                 CloseSession(session);
658                                 return 0;
659                         }
660                 }
661                 else
662                 {
663                         // Read successfully 'ret' bytes into inbuf + inbufoffset
664                         // There are 'ret' + 'inbufoffset' bytes of data in 'inbuf'
665                         // 'buffer' is 'count' long
666
667                         session->inbufoffset += ret;
668
669                         return ret;
670                 }
671         }
672
673         // :kenny.chatspike.net 320 Om Epy|AFK :is a Secure Connection
674         virtual void OnWhois(User* source, User* dest)
675         {
676                 if (!clientactive)
677                         return;
678
679                 // Bugfix, only send this numeric for *our* SSL users
680                 if (dest->GetExt("ssl", dummy) || ((IS_LOCAL(dest) && dest->io == this)))
681                 {
682                         ServerInstance->SendWhoisLine(source, dest, 320, "%s %s :is using a secure connection", source->nick, dest->nick);
683                 }
684         }
685
686         virtual void OnSyncUserMetaData(User* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
687         {
688                 // check if the linking module wants to know about OUR metadata
689                 if (extname == "ssl")
690                 {
691                         // check if this user has an swhois field to send
692                         if(user->GetExt(extname, dummy))
693                         {
694                                 // call this function in the linking module, let it format the data how it
695                                 // sees fit, and send it on its way. We dont need or want to know how.
696                                 proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, displayable ? "Enabled" : "ON");
697                         }
698                 }
699         }
700
701         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
702         {
703                 // check if its our metadata key, and its associated with a user
704                 if ((target_type == TYPE_USER) && (extname == "ssl"))
705                 {
706                         User* dest = (User*)target;
707                         // if they dont already have an ssl flag, accept the remote server's
708                         if (!dest->GetExt(extname, dummy))
709                         {
710                                 dest->Extend(extname, "ON");
711                         }
712                 }
713         }
714
715         bool Handshake(issl_session* session)
716         {
717                 int ret;
718
719                 if (session->outbound)
720                         ret = SSL_connect(session->sess);
721                 else
722                         ret = SSL_accept(session->sess);
723
724                 if (ret < 0)
725                 {
726                         int err = SSL_get_error(session->sess, ret);
727
728                         if (err == SSL_ERROR_WANT_READ)
729                         {
730                                 session->rstat = ISSL_READ;
731                                 session->status = ISSL_HANDSHAKING;
732                                 return true;
733                         }
734                         else if (err == SSL_ERROR_WANT_WRITE)
735                         {
736                                 session->wstat = ISSL_WRITE;
737                                 session->status = ISSL_HANDSHAKING;
738                                 MakePollWrite(session);
739                                 return true;
740                         }
741                         else
742                         {
743                                 CloseSession(session);
744                         }
745
746                         return false;
747                 }
748                 else if (ret > 0)
749                 {
750                         // Handshake complete.
751                         // This will do for setting the ssl flag...it could be done earlier if it's needed. But this seems neater.
752                         User* u = ServerInstance->FindDescriptor(session->fd);
753                         if (u)
754                         {
755                                 if (!u->GetExt("ssl", dummy))
756                                         u->Extend("ssl", "ON");
757                         }
758
759                         session->status = ISSL_OPEN;
760
761                         MakePollWrite(session);
762
763                         return true;
764                 }
765                 else if (ret == 0)
766                 {
767                         CloseSession(session);
768                         return true;
769                 }
770
771                 return true;
772         }
773
774         virtual void OnPostConnect(User* user)
775         {
776                 // This occurs AFTER OnUserConnect so we can be sure the
777                 // protocol module has propagated the NICK message.
778                 if ((user->GetExt("ssl", dummy)) && (IS_LOCAL(user)))
779                 {
780                         // Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
781                         std::deque<std::string>* metadata = new std::deque<std::string>;
782                         metadata->push_back(user->nick);
783                         metadata->push_back("ssl");             // The metadata id
784                         metadata->push_back("ON");              // The value to send
785                         Event* event = new Event((char*)metadata,(Module*)this,"send_metadata");
786                         event->Send(ServerInstance);            // Trigger the event. We don't care what module picks it up.
787                         delete event;
788                         delete metadata;
789
790                         VerifyCertificate(&sessions[user->GetFd()], user);
791                         if (sessions[user->GetFd()].sess)
792                                 user->WriteServ("NOTICE %s :*** You are connected using SSL cipher \"%s\"", user->nick, SSL_get_cipher(sessions[user->GetFd()].sess));
793                 }
794         }
795
796         void MakePollWrite(issl_session* session)
797         {
798                 //OnRawSocketWrite(session->fd, NULL, 0);
799                 EventHandler* eh = ServerInstance->FindDescriptor(session->fd);
800                 if (eh)
801                 {
802                         ServerInstance->SE->WantWrite(eh);
803                 }
804         }
805
806         virtual void OnBufferFlushed(User* user)
807         {
808                 if (user->GetExt("ssl"))
809                 {
810                         issl_session* session = &sessions[user->GetFd()];
811                         if (session && session->outbuf.size())
812                                 OnRawSocketWrite(user->GetFd(), NULL, 0);
813                 }
814         }
815
816         void CloseSession(issl_session* session)
817         {
818                 if (session->sess)
819                 {
820                         SSL_shutdown(session->sess);
821                         SSL_free(session->sess);
822                 }
823
824                 if (session->inbuf)
825                 {
826                         delete[] session->inbuf;
827                 }
828
829                 session->outbuf.clear();
830                 session->inbuf = NULL;
831                 session->sess = NULL;
832                 session->status = ISSL_NONE;
833         }
834
835         void VerifyCertificate(issl_session* session, Extensible* user)
836         {
837                 if (!session->sess || !user)
838                         return;
839
840                 X509* cert;
841                 ssl_cert* certinfo = new ssl_cert;
842                 unsigned int n;
843                 unsigned char md[EVP_MAX_MD_SIZE];
844                 const EVP_MD *digest = EVP_md5();
845
846                 user->Extend("ssl_cert",certinfo);
847
848                 cert = SSL_get_peer_certificate((SSL*)session->sess);
849
850                 if (!cert)
851                 {
852                         certinfo->data.insert(std::make_pair("error","Could not get peer certificate: "+std::string(get_error())));
853                         return;
854                 }
855
856                 certinfo->data.insert(std::make_pair("invalid", SSL_get_verify_result(session->sess) != X509_V_OK ? ConvToStr(1) : ConvToStr(0)));
857
858                 if (SelfSigned)
859                 {
860                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(0)));
861                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(1)));
862                 }
863                 else
864                 {
865                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(1)));
866                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(0)));
867                 }
868
869                 certinfo->data.insert(std::make_pair("dn",std::string(X509_NAME_oneline(X509_get_subject_name(cert),0,0))));
870                 certinfo->data.insert(std::make_pair("issuer",std::string(X509_NAME_oneline(X509_get_issuer_name(cert),0,0))));
871
872                 if (!X509_digest(cert, digest, md, &n))
873                 {
874                         certinfo->data.insert(std::make_pair("error","Out of memory generating fingerprint"));
875                 }
876                 else
877                 {
878                         certinfo->data.insert(std::make_pair("fingerprint",irc::hex(md, n)));
879                 }
880
881                 if ((ASN1_UTCTIME_cmp_time_t(X509_get_notAfter(cert), time(NULL)) == -1) || (ASN1_UTCTIME_cmp_time_t(X509_get_notBefore(cert), time(NULL)) == 0))
882                 {
883                         certinfo->data.insert(std::make_pair("error","Not activated, or expired certificate"));
884                 }
885
886                 X509_free(cert);
887         }
888 };
889
890 static int error_callback(const char *str, size_t len, void *u)
891 {
892         ModuleSSLOpenSSL* mssl = (ModuleSSLOpenSSL*)u;
893         mssl->PublicInstance->Logs->Log("m_ssl_openssl",DEFAULT, "SSL error: " + std::string(str, len - 1));
894         return 0;
895 }
896
897 MODULE_INIT(ModuleSSLOpenSSL)