]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_ssl_gnutls.cpp
Fix for bug #541: /taxonomy reporting metadata for incorrect user. Can someone please...
[user/henk/code/inspircd.git] / src / modules / extra / m_ssl_gnutls.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 <gnutls/gnutls.h>
17 #include <gnutls/x509.h>
18
19 #include "inspircd_config.h"
20 #include "configreader.h"
21 #include "users.h"
22 #include "channels.h"
23 #include "modules.h"
24 #include "socket.h"
25 #include "hashcomp.h"
26 #include "transport.h"
27 #include "m_cap.h"
28
29 #ifdef WINDOWS
30 #pragma comment(lib, "libgnutls-13.lib")
31 #endif
32
33 /* $ModDesc: Provides SSL support for clients */
34 /* $CompileFlags: exec("libgnutls-config --cflags") */
35 /* $LinkerFlags: rpath("libgnutls-config --libs") exec("libgnutls-config --libs") */
36 /* $ModDep: transport.h */
37 /* $CopyInstall: conf/key.pem $(CONPATH) */
38 /* $CopyInstall: conf/cert.pem $(CONPATH) */
39
40 enum issl_status { ISSL_NONE, ISSL_HANDSHAKING_READ, ISSL_HANDSHAKING_WRITE, ISSL_HANDSHAKEN, ISSL_CLOSING, ISSL_CLOSED };
41
42 bool isin(const std::string &host, int port, const std::vector<std::string> &portlist)
43 {
44         if (std::find(portlist.begin(), portlist.end(), "*:" + ConvToStr(port)) != portlist.end())
45                 return true;
46
47         if (std::find(portlist.begin(), portlist.end(), ":" + ConvToStr(port)) != portlist.end())
48                 return true;
49
50         return std::find(portlist.begin(), portlist.end(), host + ":" + ConvToStr(port)) != portlist.end();
51 }
52
53 /** Represents an SSL user's extra data
54  */
55 class issl_session : public classbase
56 {
57 public:
58         gnutls_session_t sess;
59         issl_status status;
60         std::string outbuf;
61         int inbufoffset;
62         char* inbuf;
63         int fd;
64 };
65
66 class CommandStartTLS : public Command
67 {
68         Module* Caller;
69  public:
70         /* Command 'dalinfo', takes no parameters and needs no special modes */
71         CommandStartTLS (InspIRCd* Instance, Module* mod) : Command(Instance,"STARTTLS", 0, 0, true), Caller(mod)
72         {
73                 this->source = "m_ssl_gnutls.so";
74         }
75
76         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
77         {
78                 if (user->registered == REG_ALL)
79                 {
80                         ServerInstance->Users->QuitUser(user, "STARTTLS not allowed after client registration");
81                 }
82                 else
83                 {
84                         if (!user->io)
85                         {
86                                 user->WriteNumeric(670, "%s :STARTTLS successful, go ahead with TLS handshake", user->nick.c_str());
87                                 user->io = Caller;
88                                 Caller->OnRawSocketAccept(user->GetFd(), user->GetIPString(), user->GetPort());
89                         }
90                         else
91                                 user->WriteNumeric(671, "%s :STARTTLS failure", user->nick.c_str());
92                 }
93
94                 return CMD_FAILURE;
95         }
96 };
97
98 class ModuleSSLGnuTLS : public Module
99 {
100
101         ConfigReader* Conf;
102
103         char* dummy;
104
105         std::vector<std::string> listenports;
106
107         int inbufsize;
108         issl_session* sessions;
109
110         gnutls_certificate_credentials x509_cred;
111         gnutls_dh_params dh_params;
112
113         std::string keyfile;
114         std::string certfile;
115         std::string cafile;
116         std::string crlfile;
117         std::string sslports;
118         int dh_bits;
119
120         int clientactive;
121
122         CommandStartTLS* starttls;
123
124  public:
125
126         ModuleSSLGnuTLS(InspIRCd* Me)
127                 : Module(Me)
128         {
129                 ServerInstance->Modules->PublishInterface("BufferedSocketHook", this);
130
131                 sessions = new issl_session[ServerInstance->SE->GetMaxFds()];
132
133                 // Not rehashable...because I cba to reduce all the sizes of existing buffers.
134                 inbufsize = ServerInstance->Config->NetBufferSize;
135
136                 gnutls_global_init(); // This must be called once in the program
137
138                 if(gnutls_certificate_allocate_credentials(&x509_cred) != 0)
139                         ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: Failed to allocate certificate credentials");
140
141                 // Guessing return meaning
142                 if(gnutls_dh_params_init(&dh_params) < 0)
143                         ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: Failed to initialise DH parameters");
144
145                 // Needs the flag as it ignores a plain /rehash
146                 OnRehash(NULL,"ssl");
147
148                 // Void return, guess we assume success
149                 gnutls_certificate_set_dh_params(x509_cred, dh_params);
150                 Implementation eventlist[] = { I_On005Numeric, I_OnRawSocketConnect, I_OnRawSocketAccept, I_OnRawSocketClose, I_OnRawSocketRead, I_OnRawSocketWrite, I_OnCleanup,
151                         I_OnBufferFlushed, I_OnRequest, I_OnSyncUserMetaData, I_OnDecodeMetaData, I_OnUnloadModule, I_OnRehash, I_OnWhois, I_OnPostConnect, I_OnEvent, I_OnHookUserIO };
152                 ServerInstance->Modules->Attach(eventlist, this, 17);
153
154                 starttls = new CommandStartTLS(ServerInstance, this);
155                 ServerInstance->AddCommand(starttls);
156         }
157
158         virtual void OnRehash(User* user, const std::string &param)
159         {
160                 Conf = new ConfigReader(ServerInstance);
161
162                 listenports.clear();
163                 clientactive = 0;
164                 sslports.clear();
165
166                 for(int index = 0; index < Conf->Enumerate("bind"); index++)
167                 {
168                         // For each <bind> tag
169                         std::string x = Conf->ReadValue("bind", "type", index);
170                         if(((x.empty()) || (x == "clients")) && (Conf->ReadValue("bind", "ssl", index) == "gnutls"))
171                         {
172                                 // Get the port we're meant to be listening on with SSL
173                                 std::string port = Conf->ReadValue("bind", "port", index);
174                                 std::string addr = Conf->ReadValue("bind", "address", index);
175
176                                 irc::portparser portrange(port, false);
177                                 long portno = -1;
178                                 while ((portno = portrange.GetToken()))
179                                 {
180                                         clientactive++;
181                                         try
182                                         {
183                                                 listenports.push_back(addr + ":" + ConvToStr(portno));
184
185                                                 for (size_t i = 0; i < ServerInstance->Config->ports.size(); i++)
186                                                         if ((ServerInstance->Config->ports[i]->GetPort() == portno) && (ServerInstance->Config->ports[i]->GetIP() == addr))
187                                                                 ServerInstance->Config->ports[i]->SetDescription("ssl");
188                                                 ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: Enabling SSL for port %ld", portno);
189
190                                                 sslports.append((addr.empty() ? "*" : addr)).append(":").append(ConvToStr(portno)).append(";");
191                                         }
192                                         catch (ModuleException &e)
193                                         {
194                                                 ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: FAILED to enable SSL on port %ld: %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());
195                                         }
196                                 }
197                         }
198                 }
199
200                 if (!sslports.empty())
201                         sslports.erase(sslports.end() - 1);
202
203                 if(param != "ssl")
204                 {
205                         delete Conf;
206                         return;
207                 }
208
209                 std::string confdir(ServerInstance->ConfigFileName);
210                 // +1 so we the path ends with a /
211                 confdir = confdir.substr(0, confdir.find_last_of('/') + 1);
212
213                 cafile  = Conf->ReadValue("gnutls", "cafile", 0);
214                 crlfile = Conf->ReadValue("gnutls", "crlfile", 0);
215                 certfile        = Conf->ReadValue("gnutls", "certfile", 0);
216                 keyfile = Conf->ReadValue("gnutls", "keyfile", 0);
217                 dh_bits = Conf->ReadInteger("gnutls", "dhbits", 0, false);
218
219                 // Set all the default values needed.
220                 if (cafile.empty())
221                         cafile = "ca.pem";
222
223                 if (crlfile.empty())
224                         crlfile = "crl.pem";
225
226                 if (certfile.empty())
227                         certfile = "cert.pem";
228
229                 if (keyfile.empty())
230                         keyfile = "key.pem";
231
232                 if((dh_bits != 768) && (dh_bits != 1024) && (dh_bits != 2048) && (dh_bits != 3072) && (dh_bits != 4096))
233                         dh_bits = 1024;
234
235                 // Prepend relative paths with the path to the config directory.
236                 if ((cafile[0] != '/') && (!ServerInstance->Config->StartsWithWindowsDriveLetter(cafile)))
237                         cafile = confdir + cafile;
238
239                 if ((crlfile[0] != '/') && (!ServerInstance->Config->StartsWithWindowsDriveLetter(crlfile)))
240                         crlfile = confdir + crlfile;
241
242                 if ((certfile[0] != '/') && (!ServerInstance->Config->StartsWithWindowsDriveLetter(certfile)))
243                         certfile = confdir + certfile;
244
245                 if ((keyfile[0] != '/') && (!ServerInstance->Config->StartsWithWindowsDriveLetter(keyfile)))
246                         keyfile = confdir + keyfile;
247
248                 int ret;
249
250                 if((ret =gnutls_certificate_set_x509_trust_file(x509_cred, cafile.c_str(), GNUTLS_X509_FMT_PEM)) < 0)
251                         ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: Failed to set X.509 trust file '%s': %s", cafile.c_str(), gnutls_strerror(ret));
252
253                 if((ret = gnutls_certificate_set_x509_crl_file (x509_cred, crlfile.c_str(), GNUTLS_X509_FMT_PEM)) < 0)
254                         ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: Failed to set X.509 CRL file '%s': %s", crlfile.c_str(), gnutls_strerror(ret));
255
256                 if((ret = gnutls_certificate_set_x509_key_file (x509_cred, certfile.c_str(), keyfile.c_str(), GNUTLS_X509_FMT_PEM)) < 0)
257                 {
258                         // If this fails, no SSL port will work. At all. So, do the smart thing - throw a ModuleException
259                         throw ModuleException("Unable to load GnuTLS server certificate: " + std::string(gnutls_strerror(ret)));
260                 }
261
262                 // This may be on a large (once a day or week) timer eventually.
263                 GenerateDHParams();
264
265                 delete Conf;
266         }
267
268         void GenerateDHParams()
269         {
270                 // Generate Diffie Hellman parameters - for use with DHE
271                 // kx algorithms. These should be discarded and regenerated
272                 // once a day, once a week or once a month. Depending on the
273                 // security requirements.
274
275                 int ret;
276
277                 if((ret = gnutls_dh_params_generate2(dh_params, dh_bits)) < 0)
278                         ServerInstance->Logs->Log("m_ssl_gnutls",DEFAULT, "m_ssl_gnutls.so: Failed to generate DH parameters (%d bits): %s", dh_bits, gnutls_strerror(ret));
279         }
280
281         virtual ~ModuleSSLGnuTLS()
282         {
283                 gnutls_dh_params_deinit(dh_params);
284                 gnutls_certificate_free_credentials(x509_cred);
285                 gnutls_global_deinit();
286                 ServerInstance->Modules->UnpublishInterface("BufferedSocketHook", this);
287                 delete[] sessions;
288         }
289
290         virtual void OnCleanup(int target_type, void* item)
291         {
292                 if(target_type == TYPE_USER)
293                 {
294                         User* user = (User*)item;
295
296                         if (user->io == this)
297                         {
298                                 // User is using SSL, they're a local user, and they're using one of *our* SSL ports.
299                                 // Potentially there could be multiple SSL modules loaded at once on different ports.
300                                 ServerInstance->Users->QuitUser(user, "SSL module unloading");
301                                 user->io = NULL;
302                         }
303                         if (user->GetExt("ssl_cert", dummy))
304                         {
305                                 ssl_cert* tofree;
306                                 user->GetExt("ssl_cert", tofree);
307                                 delete tofree;
308                                 user->Shrink("ssl_cert");
309                         }
310                 }
311         }
312
313         virtual void OnUnloadModule(Module* mod, const std::string &name)
314         {
315                 if(mod == this)
316                 {
317                         for(unsigned int i = 0; i < listenports.size(); i++)
318                         {
319                                 for (size_t j = 0; j < ServerInstance->Config->ports.size(); j++)
320                                         if (listenports[i] == (ServerInstance->Config->ports[j]->GetIP()+":"+ConvToStr(ServerInstance->Config->ports[j]->GetPort())))
321                                                 ServerInstance->Config->ports[j]->SetDescription("plaintext");
322                         }
323                 }
324         }
325
326         virtual Version GetVersion()
327         {
328                 return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
329         }
330
331
332         virtual void On005Numeric(std::string &output)
333         {
334                 output.append(" SSL=" + sslports);
335         }
336
337         virtual void OnHookUserIO(User* user, const std::string &targetip)
338         {
339                 if (!user->io && isin(targetip,user->GetPort(),listenports))
340                 {
341                         /* Hook the user with our module */
342                         user->io = this;
343                 }
344         }
345
346         virtual const char* OnRequest(Request* request)
347         {
348                 ISHRequest* ISR = (ISHRequest*)request;
349                 if (strcmp("IS_NAME", request->GetId()) == 0)
350                 {
351                         return "gnutls";
352                 }
353                 else if (strcmp("IS_HOOK", request->GetId()) == 0)
354                 {
355                         const char* ret = "OK";
356                         try
357                         {
358                                 ret = ServerInstance->Config->AddIOHook((Module*)this, (BufferedSocket*)ISR->Sock) ? "OK" : NULL;
359                         }
360                         catch (ModuleException &e)
361                         {
362                                 return NULL;
363                         }
364                         return ret;
365                 }
366                 else if (strcmp("IS_UNHOOK", request->GetId()) == 0)
367                 {
368                         return ServerInstance->Config->DelIOHook((BufferedSocket*)ISR->Sock) ? "OK" : NULL;
369                 }
370                 else if (strcmp("IS_HSDONE", request->GetId()) == 0)
371                 {
372                         if (ISR->Sock->GetFd() < 0)
373                                 return "OK";
374
375                         issl_session* session = &sessions[ISR->Sock->GetFd()];
376                         return (session->status == ISSL_HANDSHAKING_READ || session->status == ISSL_HANDSHAKING_WRITE) ? NULL : "OK";
377                 }
378                 else if (strcmp("IS_ATTACH", request->GetId()) == 0)
379                 {
380                         if (ISR->Sock->GetFd() > -1)
381                         {
382                                 issl_session* session = &sessions[ISR->Sock->GetFd()];
383                                 if (session->sess)
384                                 {
385                                         if ((Extensible*)ServerInstance->FindDescriptor(ISR->Sock->GetFd()) == (Extensible*)(ISR->Sock))
386                                         {
387                                                 VerifyCertificate(session, (BufferedSocket*)ISR->Sock);
388                                                 return "OK";
389                                         }
390                                 }
391                         }
392                 }
393                 return NULL;
394         }
395
396
397         virtual void OnRawSocketAccept(int fd, const std::string &ip, int localport)
398         {
399                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
400                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() - 1))
401                         return;
402
403                 issl_session* session = &sessions[fd];
404
405                 /* For STARTTLS: Don't try and init a session on a socket that already has a session */
406                 if (session->sess)
407                         return;
408
409                 session->fd = fd;
410                 session->inbuf = new char[inbufsize];
411                 session->inbufoffset = 0;
412
413                 gnutls_init(&session->sess, GNUTLS_SERVER);
414
415                 gnutls_set_default_priority(session->sess); // Avoid calling all the priority functions, defaults are adequate.
416                 gnutls_credentials_set(session->sess, GNUTLS_CRD_CERTIFICATE, x509_cred);
417                 gnutls_dh_set_prime_bits(session->sess, dh_bits);
418
419                 /* This is an experimental change to avoid a warning on 64bit systems about casting between integer and pointer of different sizes
420                  * This needs testing, but it's easy enough to rollback if need be
421                  * Old: gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket.
422                  * New: gnutls_transport_set_ptr(session->sess, &fd); // Give gnutls the fd for the socket.
423                  *
424                  * With testing this seems to...not work :/
425                  */
426
427                 gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket.
428
429                 gnutls_certificate_server_set_request(session->sess, GNUTLS_CERT_REQUEST); // Request client certificate if any.
430
431                 Handshake(session);
432         }
433
434         virtual void OnRawSocketConnect(int fd)
435         {
436                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
437                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() - 1))
438                         return;
439
440                 issl_session* session = &sessions[fd];
441
442                 session->fd = fd;
443                 session->inbuf = new char[inbufsize];
444                 session->inbufoffset = 0;
445
446                 gnutls_init(&session->sess, GNUTLS_CLIENT);
447
448                 gnutls_set_default_priority(session->sess); // Avoid calling all the priority functions, defaults are adequate.
449                 gnutls_credentials_set(session->sess, GNUTLS_CRD_CERTIFICATE, x509_cred);
450                 gnutls_dh_set_prime_bits(session->sess, dh_bits);
451                 gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket.
452
453                 Handshake(session);
454         }
455
456         virtual void OnRawSocketClose(int fd)
457         {
458                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
459                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds()))
460                         return;
461
462                 CloseSession(&sessions[fd]);
463
464                 EventHandler* user = ServerInstance->SE->GetRef(fd);
465
466                 if ((user) && (user->GetExt("ssl_cert", dummy)))
467                 {
468                         ssl_cert* tofree;
469                         user->GetExt("ssl_cert", tofree);
470                         delete tofree;
471                         user->Shrink("ssl_cert");
472                 }
473         }
474
475         virtual int OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult)
476         {
477                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
478                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() - 1))
479                         return 0;
480
481                 issl_session* session = &sessions[fd];
482
483                 if (!session->sess)
484                 {
485                         readresult = 0;
486                         CloseSession(session);
487                         return 1;
488                 }
489
490                 if (session->status == ISSL_HANDSHAKING_READ)
491                 {
492                         // The handshake isn't finished, try to finish it.
493
494                         if(!Handshake(session))
495                         {
496                                 // Couldn't resume handshake.
497                                 return -1;
498                         }
499                 }
500                 else if (session->status == ISSL_HANDSHAKING_WRITE)
501                 {
502                         errno = EAGAIN;
503                         MakePollWrite(session);
504                         return -1;
505                 }
506
507                 // If we resumed the handshake then session->status will be ISSL_HANDSHAKEN.
508
509                 if (session->status == ISSL_HANDSHAKEN)
510                 {
511                         // Is this right? Not sure if the unencrypted data is garaunteed to be the same length.
512                         // Read into the inbuffer, offset from the beginning by the amount of data we have that insp hasn't taken yet.
513                         int ret = gnutls_record_recv(session->sess, session->inbuf + session->inbufoffset, inbufsize - session->inbufoffset);
514
515                         if (ret == 0)
516                         {
517                                 // Client closed connection.
518                                 readresult = 0;
519                                 CloseSession(session);
520                                 return 1;
521                         }
522                         else if (ret < 0)
523                         {
524                                 if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
525                                 {
526                                         errno = EAGAIN;
527                                         return -1;
528                                 }
529                                 else
530                                 {
531                                         readresult = 0;
532                                         CloseSession(session);
533                                 }
534                         }
535                         else
536                         {
537                                 // Read successfully 'ret' bytes into inbuf + inbufoffset
538                                 // There are 'ret' + 'inbufoffset' bytes of data in 'inbuf'
539                                 // 'buffer' is 'count' long
540
541                                 unsigned int length = ret + session->inbufoffset;
542
543                                 if(count <= length)
544                                 {
545                                         memcpy(buffer, session->inbuf, count);
546                                         // Move the stuff left in inbuf to the beginning of it
547                                         memmove(session->inbuf, session->inbuf + count, (length - count));
548                                         // Now we need to set session->inbufoffset to the amount of data still waiting to be handed to insp.
549                                         session->inbufoffset = length - count;
550                                         // Insp uses readresult as the count of how much data there is in buffer, so:
551                                         readresult = count;
552                                 }
553                                 else
554                                 {
555                                         // There's not as much in the inbuf as there is space in the buffer, so just copy the whole thing.
556                                         memcpy(buffer, session->inbuf, length);
557                                         // Zero the offset, as there's nothing there..
558                                         session->inbufoffset = 0;
559                                         // As above
560                                         readresult = length;
561                                 }
562                         }
563                 }
564                 else if(session->status == ISSL_CLOSING)
565                         readresult = 0;
566
567                 return 1;
568         }
569
570         virtual int OnRawSocketWrite(int fd, const char* buffer, int count)
571         {
572                 /* Are there any possibilities of an out of range fd? Hope not, but lets be paranoid */
573                 if ((fd < 0) || (fd > ServerInstance->SE->GetMaxFds() - 1))
574                         return 0;
575
576                 issl_session* session = &sessions[fd];
577                 const char* sendbuffer = buffer;
578
579                 if (!session->sess)
580                 {
581                         CloseSession(session);
582                         return 1;
583                 }
584
585                 session->outbuf.append(sendbuffer, count);
586                 sendbuffer = session->outbuf.c_str();
587                 count = session->outbuf.size();
588
589                 if (session->status == ISSL_HANDSHAKING_WRITE)
590                 {
591                         // The handshake isn't finished, try to finish it.
592                         Handshake(session);
593                         errno = EAGAIN;
594                         return -1;
595                 }
596
597                 int ret = 0;
598
599                 if (session->status == ISSL_HANDSHAKEN)
600                 {
601                         ret = gnutls_record_send(session->sess, sendbuffer, count);
602
603                         if (ret == 0)
604                         {
605                                 CloseSession(session);
606                         }
607                         else if (ret < 0)
608                         {
609                                 if(ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED)
610                                 {
611                                         CloseSession(session);
612                                 }
613                                 else
614                                 {
615                                         errno = EAGAIN;
616                                 }
617                         }
618                         else
619                         {
620                                 session->outbuf = session->outbuf.substr(ret);
621                         }
622                 }
623
624                 MakePollWrite(session);
625
626                 /* Who's smart idea was it to return 1 when we havent written anything?
627                  * This fucks the buffer up in BufferedSocket :p
628                  */
629                 return ret < 1 ? 0 : ret;
630         }
631
632         // :kenny.chatspike.net 320 Om Epy|AFK :is a Secure Connection
633         virtual void OnWhois(User* source, User* dest)
634         {
635                 if (!clientactive)
636                         return;
637
638                 // Bugfix, only send this numeric for *our* SSL users
639                 if (dest->GetExt("ssl", dummy) || ((IS_LOCAL(dest) && (dest->io == this))))
640                 {
641                         ServerInstance->SendWhoisLine(source, dest, 320, "%s %s :is using a secure connection", source->nick.c_str(), dest->nick.c_str());
642                 }
643         }
644
645         virtual void OnSyncUserMetaData(User* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
646         {
647                 // check if the linking module wants to know about OUR metadata
648                 if(extname == "ssl")
649                 {
650                         // check if this user has an swhois field to send
651                         if(user->GetExt(extname, dummy))
652                         {
653                                 // call this function in the linking module, let it format the data how it
654                                 // sees fit, and send it on its way. We dont need or want to know how.
655                                 proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, displayable ? "Enabled" : "ON");
656                         }
657                 }
658         }
659
660         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
661         {
662                 // check if its our metadata key, and its associated with a user
663                 if ((target_type == TYPE_USER) && (extname == "ssl"))
664                 {
665                         User* dest = (User*)target;
666                         // if they dont already have an ssl flag, accept the remote server's
667                         if (!dest->GetExt(extname, dummy))
668                         {
669                                 dest->Extend(extname, "ON");
670                         }
671                 }
672         }
673
674         bool Handshake(issl_session* session)
675         {
676                 int ret = gnutls_handshake(session->sess);
677
678                 if (ret < 0)
679                 {
680                         if(ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
681                         {
682                                 // Handshake needs resuming later, read() or write() would have blocked.
683
684                                 if(gnutls_record_get_direction(session->sess) == 0)
685                                 {
686                                         // gnutls_handshake() wants to read() again.
687                                         session->status = ISSL_HANDSHAKING_READ;
688                                 }
689                                 else
690                                 {
691                                         // gnutls_handshake() wants to write() again.
692                                         session->status = ISSL_HANDSHAKING_WRITE;
693                                         MakePollWrite(session);
694                                 }
695                         }
696                         else
697                         {
698                                 // Handshake failed.
699                                 CloseSession(session);
700                                 session->status = ISSL_CLOSING;
701                         }
702
703                         return false;
704                 }
705                 else
706                 {
707                         // Handshake complete.
708                         // This will do for setting the ssl flag...it could be done earlier if it's needed. But this seems neater.
709                         User* extendme = ServerInstance->FindDescriptor(session->fd);
710                         if (extendme)
711                         {
712                                 if (!extendme->GetExt("ssl", dummy))
713                                         extendme->Extend("ssl", "ON");
714                         }
715
716                         // Change the seesion state
717                         session->status = ISSL_HANDSHAKEN;
718
719                         // Finish writing, if any left
720                         MakePollWrite(session);
721
722                         return true;
723                 }
724         }
725
726         virtual void OnPostConnect(User* user)
727         {
728                 // This occurs AFTER OnUserConnect so we can be sure the
729                 // protocol module has propagated the NICK message.
730                 if ((user->GetExt("ssl", dummy)) && (IS_LOCAL(user)))
731                 {
732                         // Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
733                         ServerInstance->PI->SendMetaData(user, TYPE_USER, "SSL", "on");
734
735                         VerifyCertificate(&sessions[user->GetFd()],user);
736                         if (sessions[user->GetFd()].sess)
737                         {
738                                 std::string cipher = gnutls_kx_get_name(gnutls_kx_get(sessions[user->GetFd()].sess));
739                                 cipher.append("-").append(gnutls_cipher_get_name(gnutls_cipher_get(sessions[user->GetFd()].sess))).append("-");
740                                 cipher.append(gnutls_mac_get_name(gnutls_mac_get(sessions[user->GetFd()].sess)));
741                                 user->WriteServ("NOTICE %s :*** You are connected using SSL cipher \"%s\"", user->nick.c_str(), cipher.c_str());
742                         }
743                 }
744         }
745
746         void MakePollWrite(issl_session* session)
747         {
748                 //OnRawSocketWrite(session->fd, NULL, 0);
749                 EventHandler* eh = ServerInstance->FindDescriptor(session->fd);
750                 if (eh)
751                         ServerInstance->SE->WantWrite(eh);
752         }
753
754         virtual void OnBufferFlushed(User* user)
755         {
756                 if (user->GetExt("ssl"))
757                 {
758                         issl_session* session = &sessions[user->GetFd()];
759                         if (session && session->outbuf.size())
760                                 OnRawSocketWrite(user->GetFd(), NULL, 0);
761                 }
762         }
763
764         void CloseSession(issl_session* session)
765         {
766                 if(session->sess)
767                 {
768                         gnutls_bye(session->sess, GNUTLS_SHUT_WR);
769                         gnutls_deinit(session->sess);
770                 }
771
772                 if(session->inbuf)
773                 {
774                         delete[] session->inbuf;
775                 }
776
777                 session->outbuf.clear();
778                 session->inbuf = NULL;
779                 session->sess = NULL;
780                 session->status = ISSL_NONE;
781         }
782
783         void VerifyCertificate(issl_session* session, Extensible* user)
784         {
785                 if (!session->sess || !user)
786                         return;
787
788                 unsigned int status;
789                 const gnutls_datum_t* cert_list;
790                 int ret;
791                 unsigned int cert_list_size;
792                 gnutls_x509_crt_t cert;
793                 char name[MAXBUF];
794                 unsigned char digest[MAXBUF];
795                 size_t digest_size = sizeof(digest);
796                 size_t name_size = sizeof(name);
797                 ssl_cert* certinfo = new ssl_cert;
798
799                 user->Extend("ssl_cert",certinfo);
800
801                 /* This verification function uses the trusted CAs in the credentials
802                  * structure. So you must have installed one or more CA certificates.
803                  */
804                 ret = gnutls_certificate_verify_peers2(session->sess, &status);
805
806                 if (ret < 0)
807                 {
808                         certinfo->data.insert(std::make_pair("error",std::string(gnutls_strerror(ret))));
809                         return;
810                 }
811
812                 if (status & GNUTLS_CERT_INVALID)
813                 {
814                         certinfo->data.insert(std::make_pair("invalid",ConvToStr(1)));
815                 }
816                 else
817                 {
818                         certinfo->data.insert(std::make_pair("invalid",ConvToStr(0)));
819                 }
820                 if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
821                 {
822                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(1)));
823                 }
824                 else
825                 {
826                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(0)));
827                 }
828                 if (status & GNUTLS_CERT_REVOKED)
829                 {
830                         certinfo->data.insert(std::make_pair("revoked",ConvToStr(1)));
831                 }
832                 else
833                 {
834                         certinfo->data.insert(std::make_pair("revoked",ConvToStr(0)));
835                 }
836                 if (status & GNUTLS_CERT_SIGNER_NOT_CA)
837                 {
838                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(0)));
839                 }
840                 else
841                 {
842                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(1)));
843                 }
844
845                 /* Up to here the process is the same for X.509 certificates and
846                  * OpenPGP keys. From now on X.509 certificates are assumed. This can
847                  * be easily extended to work with openpgp keys as well.
848                  */
849                 if (gnutls_certificate_type_get(session->sess) != GNUTLS_CRT_X509)
850                 {
851                         certinfo->data.insert(std::make_pair("error","No X509 keys sent"));
852                         return;
853                 }
854
855                 ret = gnutls_x509_crt_init(&cert);
856                 if (ret < 0)
857                 {
858                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
859                         return;
860                 }
861
862                 cert_list_size = 0;
863                 cert_list = gnutls_certificate_get_peers(session->sess, &cert_list_size);
864                 if (cert_list == NULL)
865                 {
866                         certinfo->data.insert(std::make_pair("error","No certificate was found"));
867                         return;
868                 }
869
870                 /* This is not a real world example, since we only check the first
871                  * certificate in the given chain.
872                  */
873
874                 ret = gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER);
875                 if (ret < 0)
876                 {
877                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
878                         return;
879                 }
880
881                 gnutls_x509_crt_get_dn(cert, name, &name_size);
882
883                 certinfo->data.insert(std::make_pair("dn",name));
884
885                 gnutls_x509_crt_get_issuer_dn(cert, name, &name_size);
886
887                 certinfo->data.insert(std::make_pair("issuer",name));
888
889                 if ((ret = gnutls_x509_crt_get_fingerprint(cert, GNUTLS_DIG_MD5, digest, &digest_size)) < 0)
890                 {
891                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
892                 }
893                 else
894                 {
895                         certinfo->data.insert(std::make_pair("fingerprint",irc::hex(digest, digest_size)));
896                 }
897
898                 /* Beware here we do not check for errors.
899                  */
900                 if ((gnutls_x509_crt_get_expiration_time(cert) < time(0)) || (gnutls_x509_crt_get_activation_time(cert) > time(0)))
901                 {
902                         certinfo->data.insert(std::make_pair("error","Not activated, or expired certificate"));
903                 }
904
905                 gnutls_x509_crt_deinit(cert);
906
907                 return;
908         }
909
910         void OnEvent(Event* ev)
911         {
912                 GenericCapHandler(ev, "tls", "tls");
913         }
914
915         void Prioritize()
916         {
917                 Module* server = ServerInstance->Modules->Find("m_spanningtree.so");
918                 ServerInstance->Modules->SetPriority(this, I_OnPostConnect, PRIO_AFTER, &server);
919         }
920 };
921
922 MODULE_INIT(ModuleSSLGnuTLS)