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