]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_ssl_gnutls.cpp
Add ISUPPORT SSL token requested by tabris.
[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->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                 // Guessing on the return value of this, manual doesn't say :|
215                 if((ret = gnutls_certificate_set_x509_key_file (x509_cred, certfile.c_str(), keyfile.c_str(), GNUTLS_X509_FMT_PEM)) < 0)
216                         ServerInstance->Log(DEFAULT, "m_ssl_gnutls.so: Failed to set X.509 certificate and key files '%s' and '%s': %s", certfile.c_str(), keyfile.c_str(), gnutls_strerror(ret));
217
218                 // This may be on a large (once a day or week) timer eventually.
219                 GenerateDHParams();
220
221                 DELETE(Conf);
222         }
223
224         void GenerateDHParams()
225         {
226                 // Generate Diffie Hellman parameters - for use with DHE
227                 // kx algorithms. These should be discarded and regenerated
228                 // once a day, once a week or once a month. Depending on the
229                 // security requirements.
230
231                 int ret;
232
233                 if((ret = gnutls_dh_params_generate2(dh_params, dh_bits)) < 0)
234                         ServerInstance->Log(DEFAULT, "m_ssl_gnutls.so: Failed to generate DH parameters (%d bits): %s", dh_bits, gnutls_strerror(ret));
235         }
236
237         virtual ~ModuleSSLGnuTLS()
238         {
239                 gnutls_dh_params_deinit(dh_params);
240                 gnutls_certificate_free_credentials(x509_cred);
241                 gnutls_global_deinit();
242         }
243
244         virtual void OnCleanup(int target_type, void* item)
245         {
246                 if(target_type == TYPE_USER)
247                 {
248                         userrec* user = (userrec*)item;
249
250                         if(user->GetExt("ssl", dummy) && isin(user->GetPort(), listenports))
251                         {
252                                 // User is using SSL, they're a local user, and they're using one of *our* SSL ports.
253                                 // Potentially there could be multiple SSL modules loaded at once on different ports.
254                                 ServerInstance->GlobalCulls.AddItem(user, "SSL module unloading");
255                         }
256                         if (user->GetExt("ssl_cert", dummy) && isin(user->GetPort(), listenports))
257                         {
258                                 ssl_cert* tofree;
259                                 user->GetExt("ssl_cert", tofree);
260                                 delete tofree;
261                                 user->Shrink("ssl_cert");
262                         }
263                 }
264         }
265
266         virtual void OnUnloadModule(Module* mod, const std::string &name)
267         {
268                 if(mod == this)
269                 {
270                         for(unsigned int i = 0; i < listenports.size(); i++)
271                         {
272                                 ServerInstance->Config->DelIOHook(listenports[i]);
273                                 for (size_t j = 0; j < ServerInstance->Config->ports.size(); j++)
274                                         if (ServerInstance->Config->ports[j]->GetPort() == listenports[i])
275                                                 ServerInstance->Config->ports[j]->SetDescription("plaintext");
276                         }
277                 }
278         }
279
280         virtual Version GetVersion()
281         {
282                 return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
283         }
284
285         void Implements(char* List)
286         {
287                 List[I_On005Numeric] = List[I_OnRawSocketConnect] = List[I_OnRawSocketAccept] = List[I_OnRawSocketClose] = List[I_OnRawSocketRead] = List[I_OnRawSocketWrite] = List[I_OnCleanup] = 1;
288                 List[I_OnRequest] = List[I_OnSyncUserMetaData] = List[I_OnDecodeMetaData] = List[I_OnUnloadModule] = List[I_OnRehash] = List[I_OnWhois] = List[I_OnPostConnect] = 1;
289         }
290
291         virtual void On005Numeric(std::string &output)
292         {
293                 output.append(" SSL=" + sslports);
294         }
295
296         virtual char* OnRequest(Request* request)
297         {
298                 ISHRequest* ISR = (ISHRequest*)request;
299                 if (strcmp("IS_NAME", request->GetId()) == 0)
300                 {
301                         return "gnutls";
302                 }
303                 else if (strcmp("IS_HOOK", request->GetId()) == 0)
304                 {
305                         char* ret = "OK";
306                         try
307                         {
308                                 ret = ServerInstance->Config->AddIOHook((Module*)this, (InspSocket*)ISR->Sock) ? (char*)"OK" : NULL;
309                         }
310                         catch (ModuleException &e)
311                         {
312                                 return NULL;
313                         }
314                         return ret;
315                 }
316                 else if (strcmp("IS_UNHOOK", request->GetId()) == 0)
317                 {
318                         return ServerInstance->Config->DelIOHook((InspSocket*)ISR->Sock) ? (char*)"OK" : NULL;
319                 }
320                 else if (strcmp("IS_HSDONE", request->GetId()) == 0)
321                 {
322                         if (ISR->Sock->GetFd() < 0)
323                                 return (char*)"OK";
324
325                         issl_session* session = &sessions[ISR->Sock->GetFd()];
326                         return (session->status == ISSL_HANDSHAKING_READ || session->status == ISSL_HANDSHAKING_WRITE) ? NULL : (char*)"OK";
327                 }
328                 else if (strcmp("IS_ATTACH", request->GetId()) == 0)
329                 {
330                         if (ISR->Sock->GetFd() > -1)
331                         {
332                                 issl_session* session = &sessions[ISR->Sock->GetFd()];
333                                 if (session->sess)
334                                 {
335                                         if ((Extensible*)ServerInstance->FindDescriptor(ISR->Sock->GetFd()) == (Extensible*)(ISR->Sock))
336                                         {
337                                                 VerifyCertificate(session, (InspSocket*)ISR->Sock);
338                                                 return "OK";
339                                         }
340                                 }
341                         }
342                 }
343                 return NULL;
344         }
345
346
347         virtual void OnRawSocketAccept(int fd, const std::string &ip, int localport)
348         {
349                 issl_session* session = &sessions[fd];
350
351                 session->fd = fd;
352                 session->inbuf = new char[inbufsize];
353                 session->inbufoffset = 0;
354
355                 gnutls_init(&session->sess, GNUTLS_SERVER);
356
357                 gnutls_set_default_priority(session->sess); // Avoid calling all the priority functions, defaults are adequate.
358                 gnutls_credentials_set(session->sess, GNUTLS_CRD_CERTIFICATE, x509_cred);
359                 gnutls_dh_set_prime_bits(session->sess, dh_bits);
360
361                 /* This is an experimental change to avoid a warning on 64bit systems about casting between integer and pointer of different sizes
362                  * This needs testing, but it's easy enough to rollback if need be
363                  * Old: gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket.
364                  * New: gnutls_transport_set_ptr(session->sess, &fd); // Give gnutls the fd for the socket.
365                  *
366                  * With testing this seems to...not work :/
367                  */
368
369                 gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket.
370
371                 gnutls_certificate_server_set_request(session->sess, GNUTLS_CERT_REQUEST); // Request client certificate if any.
372
373                 Handshake(session);
374         }
375
376         virtual void OnRawSocketConnect(int fd)
377         {
378                 issl_session* session = &sessions[fd];
379
380                 session->fd = fd;
381                 session->inbuf = new char[inbufsize];
382                 session->inbufoffset = 0;
383
384                 gnutls_init(&session->sess, GNUTLS_CLIENT);
385
386                 gnutls_set_default_priority(session->sess); // Avoid calling all the priority functions, defaults are adequate.
387                 gnutls_credentials_set(session->sess, GNUTLS_CRD_CERTIFICATE, x509_cred);
388                 gnutls_dh_set_prime_bits(session->sess, dh_bits);
389                 gnutls_transport_set_ptr(session->sess, (gnutls_transport_ptr_t) fd); // Give gnutls the fd for the socket.
390
391                 Handshake(session);
392         }
393
394         virtual void OnRawSocketClose(int fd)
395         {
396                 CloseSession(&sessions[fd]);
397
398                 EventHandler* user = ServerInstance->SE->GetRef(fd);
399
400                 if ((user) && (user->GetExt("ssl_cert", dummy)))
401                 {
402                         ssl_cert* tofree;
403                         user->GetExt("ssl_cert", tofree);
404                         delete tofree;
405                         user->Shrink("ssl_cert");
406                 }
407         }
408
409         virtual int OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult)
410         {
411                 issl_session* session = &sessions[fd];
412
413                 if (!session->sess)
414                 {
415                         readresult = 0;
416                         CloseSession(session);
417                         return 1;
418                 }
419
420                 if (session->status == ISSL_HANDSHAKING_READ)
421                 {
422                         // The handshake isn't finished, try to finish it.
423
424                         if(!Handshake(session))
425                         {
426                                 // Couldn't resume handshake.
427                                 return -1;
428                         }
429                 }
430                 else if (session->status == ISSL_HANDSHAKING_WRITE)
431                 {
432                         errno = EAGAIN;
433                         return -1;
434                 }
435
436                 // If we resumed the handshake then session->status will be ISSL_HANDSHAKEN.
437
438                 if (session->status == ISSL_HANDSHAKEN)
439                 {
440                         // Is this right? Not sure if the unencrypted data is garaunteed to be the same length.
441                         // Read into the inbuffer, offset from the beginning by the amount of data we have that insp hasn't taken yet.
442                         int ret = gnutls_record_recv(session->sess, session->inbuf + session->inbufoffset, inbufsize - session->inbufoffset);
443
444                         if (ret == 0)
445                         {
446                                 // Client closed connection.
447                                 readresult = 0;
448                                 CloseSession(session);
449                                 return 1;
450                         }
451                         else if (ret < 0)
452                         {
453                                 if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
454                                 {
455                                         errno = EAGAIN;
456                                         return -1;
457                                 }
458                                 else
459                                 {
460                                         readresult = 0;
461                                         CloseSession(session);
462                                 }
463                         }
464                         else
465                         {
466                                 // Read successfully 'ret' bytes into inbuf + inbufoffset
467                                 // There are 'ret' + 'inbufoffset' bytes of data in 'inbuf'
468                                 // 'buffer' is 'count' long
469
470                                 unsigned int length = ret + session->inbufoffset;
471
472                                 if(count <= length)
473                                 {
474                                         memcpy(buffer, session->inbuf, count);
475                                         // Move the stuff left in inbuf to the beginning of it
476                                         memcpy(session->inbuf, session->inbuf + count, (length - count));
477                                         // Now we need to set session->inbufoffset to the amount of data still waiting to be handed to insp.
478                                         session->inbufoffset = length - count;
479                                         // Insp uses readresult as the count of how much data there is in buffer, so:
480                                         readresult = count;
481                                 }
482                                 else
483                                 {
484                                         // There's not as much in the inbuf as there is space in the buffer, so just copy the whole thing.
485                                         memcpy(buffer, session->inbuf, length);
486                                         // Zero the offset, as there's nothing there..
487                                         session->inbufoffset = 0;
488                                         // As above
489                                         readresult = length;
490                                 }
491                         }
492                 }
493                 else if(session->status == ISSL_CLOSING)
494                         readresult = 0;
495
496                 return 1;
497         }
498
499         virtual int OnRawSocketWrite(int fd, const char* buffer, int count)
500         {
501                 if (!count)
502                         return 0;
503
504                 issl_session* session = &sessions[fd];
505                 const char* sendbuffer = buffer;
506
507                 if (!session->sess)
508                 {
509                         CloseSession(session);
510                         return 1;
511                 }
512
513                 session->outbuf.append(sendbuffer, count);
514                 sendbuffer = session->outbuf.c_str();
515                 count = session->outbuf.size();
516
517                 if(session->status == ISSL_HANDSHAKING_WRITE)
518                 {
519                         // The handshake isn't finished, try to finish it.
520                         Handshake(session);
521                         errno = EAGAIN;
522                         return -1;
523                 }
524
525                 int ret = 0;
526
527                 if(session->status == ISSL_HANDSHAKEN)
528                 {
529                         ret = gnutls_record_send(session->sess, sendbuffer, count);
530
531                         if(ret == 0)
532                         {
533                                 CloseSession(session);
534                         }
535                         else if (ret < 0)
536                         {
537                                 if(ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED)
538                                 {
539                                         CloseSession(session);
540                                 }
541                                 else
542                                 {
543                                         errno = EAGAIN;
544                                         return -1;
545                                 }
546                         }
547                         else
548                         {
549                                 session->outbuf = session->outbuf.substr(ret);
550                         }
551                 }
552
553                 /* Who's smart idea was it to return 1 when we havent written anything?
554                  * This fucks the buffer up in InspSocket :p
555                  */
556                 return ret < 1 ? 0 : ret;
557         }
558
559         // :kenny.chatspike.net 320 Om Epy|AFK :is a Secure Connection
560         virtual void OnWhois(userrec* source, userrec* dest)
561         {
562                 if (!clientactive)
563                         return;
564
565                 // Bugfix, only send this numeric for *our* SSL users
566                 if(dest->GetExt("ssl", dummy) || (IS_LOCAL(dest) &&  isin(dest->GetPort(), listenports)))
567                 {
568                         ServerInstance->SendWhoisLine(source, dest, 320, "%s %s :is using a secure connection", source->nick, dest->nick);
569                 }
570         }
571
572         virtual void OnSyncUserMetaData(userrec* user, Module* proto, void* opaque, const std::string &extname, bool displayable)
573         {
574                 // check if the linking module wants to know about OUR metadata
575                 if(extname == "ssl")
576                 {
577                         // check if this user has an swhois field to send
578                         if(user->GetExt(extname, dummy))
579                         {
580                                 // call this function in the linking module, let it format the data how it
581                                 // sees fit, and send it on its way. We dont need or want to know how.
582                                 proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, displayable ? "Enabled" : "ON");
583                         }
584                 }
585         }
586
587         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
588         {
589                 // check if its our metadata key, and its associated with a user
590                 if ((target_type == TYPE_USER) && (extname == "ssl"))
591                 {
592                         userrec* dest = (userrec*)target;
593                         // if they dont already have an ssl flag, accept the remote server's
594                         if (!dest->GetExt(extname, dummy))
595                         {
596                                 dest->Extend(extname, "ON");
597                         }
598                 }
599         }
600
601         bool Handshake(issl_session* session)
602         {
603                 int ret = gnutls_handshake(session->sess);
604
605                 if (ret < 0)
606                 {
607                         if(ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
608                         {
609                                 // Handshake needs resuming later, read() or write() would have blocked.
610
611                                 if(gnutls_record_get_direction(session->sess) == 0)
612                                 {
613                                         // gnutls_handshake() wants to read() again.
614                                         session->status = ISSL_HANDSHAKING_READ;
615                                 }
616                                 else
617                                 {
618                                         // gnutls_handshake() wants to write() again.
619                                         session->status = ISSL_HANDSHAKING_WRITE;
620                                         MakePollWrite(session);
621                                 }
622                         }
623                         else
624                         {
625                                 // Handshake failed.
626                                 CloseSession(session);
627                                 session->status = ISSL_CLOSING;
628                         }
629
630                         return false;
631                 }
632                 else
633                 {
634                         // Handshake complete.
635                         // This will do for setting the ssl flag...it could be done earlier if it's needed. But this seems neater.
636                         userrec* extendme = ServerInstance->FindDescriptor(session->fd);
637                         if (extendme)
638                         {
639                                 if (!extendme->GetExt("ssl", dummy))
640                                         extendme->Extend("ssl", "ON");
641                         }
642
643                         // Change the seesion state
644                         session->status = ISSL_HANDSHAKEN;
645
646                         // Finish writing, if any left
647                         MakePollWrite(session);
648
649                         return true;
650                 }
651         }
652
653         virtual void OnPostConnect(userrec* user)
654         {
655                 // This occurs AFTER OnUserConnect so we can be sure the
656                 // protocol module has propogated the NICK message.
657                 if ((user->GetExt("ssl", dummy)) && (IS_LOCAL(user)))
658                 {
659                         // Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
660                         std::deque<std::string>* metadata = new std::deque<std::string>;
661                         metadata->push_back(user->nick);
662                         metadata->push_back("ssl");             // The metadata id
663                         metadata->push_back("ON");              // The value to send
664                         Event* event = new Event((char*)metadata,(Module*)this,"send_metadata");
665                         event->Send(ServerInstance);            // Trigger the event. We don't care what module picks it up.
666                         DELETE(event);
667                         DELETE(metadata);
668
669                         VerifyCertificate(&sessions[user->GetFd()],user);
670                         if (sessions[user->GetFd()].sess)
671                         {
672                                 std::string cipher = gnutls_kx_get_name(gnutls_kx_get(sessions[user->GetFd()].sess));
673                                 cipher.append("-").append(gnutls_cipher_get_name(gnutls_cipher_get(sessions[user->GetFd()].sess))).append("-");
674                                 cipher.append(gnutls_mac_get_name(gnutls_mac_get(sessions[user->GetFd()].sess)));
675                                 user->WriteServ("NOTICE %s :*** You are connected using SSL cipher \"%s\"", user->nick, cipher.c_str());
676                         }
677                 }
678         }
679
680         void MakePollWrite(issl_session* session)
681         {
682                 OnRawSocketWrite(session->fd, NULL, 0);
683         }
684
685         void CloseSession(issl_session* session)
686         {
687                 if(session->sess)
688                 {
689                         gnutls_bye(session->sess, GNUTLS_SHUT_WR);
690                         gnutls_deinit(session->sess);
691                 }
692
693                 if(session->inbuf)
694                 {
695                         delete[] session->inbuf;
696                 }
697
698                 session->outbuf.clear();
699                 session->inbuf = NULL;
700                 session->sess = NULL;
701                 session->status = ISSL_NONE;
702         }
703
704         void VerifyCertificate(issl_session* session, Extensible* user)
705         {
706                 if (!session->sess || !user)
707                         return;
708
709                 unsigned int status;
710                 const gnutls_datum_t* cert_list;
711                 int ret;
712                 unsigned int cert_list_size;
713                 gnutls_x509_crt_t cert;
714                 char name[MAXBUF];
715                 unsigned char digest[MAXBUF];
716                 size_t digest_size = sizeof(digest);
717                 size_t name_size = sizeof(name);
718                 ssl_cert* certinfo = new ssl_cert;
719
720                 user->Extend("ssl_cert",certinfo);
721
722                 /* This verification function uses the trusted CAs in the credentials
723                  * structure. So you must have installed one or more CA certificates.
724                  */
725                 ret = gnutls_certificate_verify_peers2(session->sess, &status);
726
727                 if (ret < 0)
728                 {
729                         certinfo->data.insert(std::make_pair("error",std::string(gnutls_strerror(ret))));
730                         return;
731                 }
732
733                 if (status & GNUTLS_CERT_INVALID)
734                 {
735                         certinfo->data.insert(std::make_pair("invalid",ConvToStr(1)));
736                 }
737                 else
738                 {
739                         certinfo->data.insert(std::make_pair("invalid",ConvToStr(0)));
740                 }
741                 if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
742                 {
743                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(1)));
744                 }
745                 else
746                 {
747                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(0)));
748                 }
749                 if (status & GNUTLS_CERT_REVOKED)
750                 {
751                         certinfo->data.insert(std::make_pair("revoked",ConvToStr(1)));
752                 }
753                 else
754                 {
755                         certinfo->data.insert(std::make_pair("revoked",ConvToStr(0)));
756                 }
757                 if (status & GNUTLS_CERT_SIGNER_NOT_CA)
758                 {
759                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(0)));
760                 }
761                 else
762                 {
763                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(1)));
764                 }
765
766                 /* Up to here the process is the same for X.509 certificates and
767                  * OpenPGP keys. From now on X.509 certificates are assumed. This can
768                  * be easily extended to work with openpgp keys as well.
769                  */
770                 if (gnutls_certificate_type_get(session->sess) != GNUTLS_CRT_X509)
771                 {
772                         certinfo->data.insert(std::make_pair("error","No X509 keys sent"));
773                         return;
774                 }
775
776                 ret = gnutls_x509_crt_init(&cert);
777                 if (ret < 0)
778                 {
779                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
780                         return;
781                 }
782
783                 cert_list_size = 0;
784                 cert_list = gnutls_certificate_get_peers(session->sess, &cert_list_size);
785                 if (cert_list == NULL)
786                 {
787                         certinfo->data.insert(std::make_pair("error","No certificate was found"));
788                         return;
789                 }
790
791                 /* This is not a real world example, since we only check the first
792                  * certificate in the given chain.
793                  */
794
795                 ret = gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER);
796                 if (ret < 0)
797                 {
798                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
799                         return;
800                 }
801
802                 gnutls_x509_crt_get_dn(cert, name, &name_size);
803
804                 certinfo->data.insert(std::make_pair("dn",name));
805
806                 gnutls_x509_crt_get_issuer_dn(cert, name, &name_size);
807
808                 certinfo->data.insert(std::make_pair("issuer",name));
809
810                 if ((ret = gnutls_x509_crt_get_fingerprint(cert, GNUTLS_DIG_MD5, digest, &digest_size)) < 0)
811                 {
812                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
813                 }
814                 else
815                 {
816                         certinfo->data.insert(std::make_pair("fingerprint",irc::hex(digest, digest_size)));
817                 }
818
819                 /* Beware here we do not check for errors.
820                  */
821                 if ((gnutls_x509_crt_get_expiration_time(cert) < time(0)) || (gnutls_x509_crt_get_activation_time(cert) > time(0)))
822                 {
823                         certinfo->data.insert(std::make_pair("error","Not activated, or expired certificate"));
824                 }
825
826                 gnutls_x509_crt_deinit(cert);
827
828                 return;
829         }
830
831 };
832
833 MODULE_INIT(ModuleSSLGnuTLS);
834