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