]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_ssl_gnutls.cpp
We're checking for non-null session->sess in VerifyCertificate now. theres very littl...
[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(CONFIG_FILE);
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                         return -1;
423                 }
424
425                 // If we resumed the handshake then session->status will be ISSL_HANDSHAKEN.
426
427                 if (session->status == ISSL_HANDSHAKEN)
428                 {
429                         // Is this right? Not sure if the unencrypted data is garaunteed to be the same length.
430                         // Read into the inbuffer, offset from the beginning by the amount of data we have that insp hasn't taken yet.
431                         int ret = gnutls_record_recv(session->sess, session->inbuf + session->inbufoffset, inbufsize - session->inbufoffset);
432
433                         if (ret == 0)
434                         {
435                                 // Client closed connection.
436                                 readresult = 0;
437                                 CloseSession(session);
438                                 return 1;
439                         }
440                         else if (ret < 0)
441                         {
442                                 if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
443                                 {
444                                         errno = EAGAIN;
445                                         return -1;
446                                 }
447                                 else
448                                 {
449                                         readresult = 0;
450                                         CloseSession(session);
451                                 }
452                         }
453                         else
454                         {
455                                 // Read successfully 'ret' bytes into inbuf + inbufoffset
456                                 // There are 'ret' + 'inbufoffset' bytes of data in 'inbuf'
457                                 // 'buffer' is 'count' long
458
459                                 unsigned int length = ret + session->inbufoffset;
460
461                                 if(count <= length)
462                                 {
463                                         memcpy(buffer, session->inbuf, count);
464                                         // Move the stuff left in inbuf to the beginning of it
465                                         memcpy(session->inbuf, session->inbuf + count, (length - count));
466                                         // Now we need to set session->inbufoffset to the amount of data still waiting to be handed to insp.
467                                         session->inbufoffset = length - count;
468                                         // Insp uses readresult as the count of how much data there is in buffer, so:
469                                         readresult = count;
470                                 }
471                                 else
472                                 {
473                                         // There's not as much in the inbuf as there is space in the buffer, so just copy the whole thing.
474                                         memcpy(buffer, session->inbuf, length);
475                                         // Zero the offset, as there's nothing there..
476                                         session->inbufoffset = 0;
477                                         // As above
478                                         readresult = length;
479                                 }
480                         }
481                 }
482                 else if(session->status == ISSL_CLOSING)
483                         readresult = 0;
484
485                 return 1;
486         }
487
488         virtual int OnRawSocketWrite(int fd, const char* buffer, int count)
489         {
490                 if (!count)
491                         return 0;
492
493                 issl_session* session = &sessions[fd];
494                 const char* sendbuffer = buffer;
495
496                 if (!session->sess)
497                 {
498                         CloseSession(session);
499                         return 1;
500                 }
501
502                 session->outbuf.append(sendbuffer, count);
503                 sendbuffer = session->outbuf.c_str();
504                 count = session->outbuf.size();
505
506                 if(session->status == ISSL_HANDSHAKING_WRITE)
507                 {
508                         // The handshake isn't finished, try to finish it.
509                         Handshake(session);
510                         errno = EAGAIN;
511                         return 0;
512                 }
513
514                 int ret = 0;
515
516                 if(session->status == ISSL_HANDSHAKEN)
517                 {
518                         ret = gnutls_record_send(session->sess, sendbuffer, count);
519
520                         if(ret == 0)
521                                 CloseSession(session);
522                         else if(ret < 0)
523                         {
524                                 if(ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED)
525                                         CloseSession(session);
526                         }
527                         else
528                         {
529                                 session->outbuf = session->outbuf.substr(ret);
530                         }
531                 }
532
533                 /* Who's smart idea was it to return 1 when we havent written anything?
534                  * This fucks the buffer up in InspSocket :p
535                  */
536                 return ret < 1 ? 0 : ret;
537         }
538
539         // :kenny.chatspike.net 320 Om Epy|AFK :is a Secure Connection
540         virtual void OnWhois(userrec* source, userrec* dest)
541         {
542                 if (!clientactive)
543                         return;
544
545                 // Bugfix, only send this numeric for *our* SSL users
546                 if(dest->GetExt("ssl", dummy) || (IS_LOCAL(dest) &&  isin(dest->GetPort(), listenports)))
547                 {
548                         ServerInstance->SendWhoisLine(source, dest, 320, "%s %s :is using a secure connection", source->nick, dest->nick);
549                 }
550         }
551
552         virtual void OnSyncUserMetaData(userrec* user, Module* proto, void* opaque, const std::string &extname)
553         {
554                 // check if the linking module wants to know about OUR metadata
555                 if(extname == "ssl")
556                 {
557                         // check if this user has an swhois field to send
558                         if(user->GetExt(extname, dummy))
559                         {
560                                 // call this function in the linking module, let it format the data how it
561                                 // sees fit, and send it on its way. We dont need or want to know how.
562                                 proto->ProtoSendMetaData(opaque, TYPE_USER, user, extname, "ON");
563                         }
564                 }
565         }
566
567         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
568         {
569                 // check if its our metadata key, and its associated with a user
570                 if ((target_type == TYPE_USER) && (extname == "ssl"))
571                 {
572                         userrec* dest = (userrec*)target;
573                         // if they dont already have an ssl flag, accept the remote server's
574                         if (!dest->GetExt(extname, dummy))
575                         {
576                                 dest->Extend(extname, "ON");
577                         }
578                 }
579         }
580
581         bool Handshake(issl_session* session)
582         {
583                 int ret = gnutls_handshake(session->sess);
584
585                 if (ret < 0)
586                 {
587                         if(ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
588                         {
589                                 // Handshake needs resuming later, read() or write() would have blocked.
590
591                                 if(gnutls_record_get_direction(session->sess) == 0)
592                                 {
593                                         // gnutls_handshake() wants to read() again.
594                                         session->status = ISSL_HANDSHAKING_READ;
595                                 }
596                                 else
597                                 {
598                                         // gnutls_handshake() wants to write() again.
599                                         session->status = ISSL_HANDSHAKING_WRITE;
600                                         MakePollWrite(session);
601                                 }
602                         }
603                         else
604                         {
605                                 // Handshake failed.
606                                 CloseSession(session);
607                                 session->status = ISSL_CLOSING;
608                         }
609
610                         return false;
611                 }
612                 else
613                 {
614                         // Handshake complete.
615                         // This will do for setting the ssl flag...it could be done earlier if it's needed. But this seems neater.
616                         userrec* extendme = ServerInstance->FindDescriptor(session->fd);
617                         if (extendme)
618                         {
619                                 if (!extendme->GetExt("ssl", dummy))
620                                         extendme->Extend("ssl", "ON");
621                         }
622
623                         // Change the seesion state
624                         session->status = ISSL_HANDSHAKEN;
625
626                         // Finish writing, if any left
627                         MakePollWrite(session);
628
629                         return true;
630                 }
631         }
632
633         virtual void OnPostConnect(userrec* user)
634         {
635                 // This occurs AFTER OnUserConnect so we can be sure the
636                 // protocol module has propogated the NICK message.
637                 if ((user->GetExt("ssl", dummy)) && (IS_LOCAL(user)))
638                 {
639                         // Tell whatever protocol module we're using that we need to inform other servers of this metadata NOW.
640                         std::deque<std::string>* metadata = new std::deque<std::string>;
641                         metadata->push_back(user->nick);
642                         metadata->push_back("ssl");             // The metadata id
643                         metadata->push_back("ON");              // The value to send
644                         Event* event = new Event((char*)metadata,(Module*)this,"send_metadata");
645                         event->Send(ServerInstance);            // Trigger the event. We don't care what module picks it up.
646                         DELETE(event);
647                         DELETE(metadata);
648
649                         VerifyCertificate(&sessions[user->GetFd()],user);
650                 }
651         }
652
653         void MakePollWrite(issl_session* session)
654         {
655                 OnRawSocketWrite(session->fd, NULL, 0);
656         }
657
658         void CloseSession(issl_session* session)
659         {
660                 if(session->sess)
661                 {
662                         gnutls_bye(session->sess, GNUTLS_SHUT_WR);
663                         gnutls_deinit(session->sess);
664                 }
665
666                 if(session->inbuf)
667                 {
668                         delete[] session->inbuf;
669                 }
670
671                 session->outbuf.clear();
672                 session->inbuf = NULL;
673                 session->sess = NULL;
674                 session->status = ISSL_NONE;
675         }
676
677         void VerifyCertificate(issl_session* session, Extensible* user)
678         {
679                 if (!session->sess || !user)
680                         return;
681
682                 unsigned int status;
683                 const gnutls_datum_t* cert_list;
684                 int ret;
685                 unsigned int cert_list_size;
686                 gnutls_x509_crt_t cert;
687                 char name[MAXBUF];
688                 unsigned char digest[MAXBUF];
689                 size_t digest_size = sizeof(digest);
690                 size_t name_size = sizeof(name);
691                 ssl_cert* certinfo = new ssl_cert;
692
693                 user->Extend("ssl_cert",certinfo);
694
695                 /* This verification function uses the trusted CAs in the credentials
696                  * structure. So you must have installed one or more CA certificates.
697                  */
698                 ret = gnutls_certificate_verify_peers2(session->sess, &status);
699
700                 if (ret < 0)
701                 {
702                         certinfo->data.insert(std::make_pair("error",std::string(gnutls_strerror(ret))));
703                         return;
704                 }
705
706                 if (status & GNUTLS_CERT_INVALID)
707                 {
708                         certinfo->data.insert(std::make_pair("invalid",ConvToStr(1)));
709                 }
710                 else
711                 {
712                         certinfo->data.insert(std::make_pair("invalid",ConvToStr(0)));
713                 }
714                 if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
715                 {
716                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(1)));
717                 }
718                 else
719                 {
720                         certinfo->data.insert(std::make_pair("unknownsigner",ConvToStr(0)));
721                 }
722                 if (status & GNUTLS_CERT_REVOKED)
723                 {
724                         certinfo->data.insert(std::make_pair("revoked",ConvToStr(1)));
725                 }
726                 else
727                 {
728                         certinfo->data.insert(std::make_pair("revoked",ConvToStr(0)));
729                 }
730                 if (status & GNUTLS_CERT_SIGNER_NOT_CA)
731                 {
732                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(0)));
733                 }
734                 else
735                 {
736                         certinfo->data.insert(std::make_pair("trusted",ConvToStr(1)));
737                 }
738
739                 /* Up to here the process is the same for X.509 certificates and
740                  * OpenPGP keys. From now on X.509 certificates are assumed. This can
741                  * be easily extended to work with openpgp keys as well.
742                  */
743                 if (gnutls_certificate_type_get(session->sess) != GNUTLS_CRT_X509)
744                 {
745                         certinfo->data.insert(std::make_pair("error","No X509 keys sent"));
746                         return;
747                 }
748
749                 ret = gnutls_x509_crt_init(&cert);
750                 if (ret < 0)
751                 {
752                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
753                         return;
754                 }
755
756                 cert_list_size = 0;
757                 cert_list = gnutls_certificate_get_peers(session->sess, &cert_list_size);
758                 if (cert_list == NULL)
759                 {
760                         certinfo->data.insert(std::make_pair("error","No certificate was found"));
761                         return;
762                 }
763
764                 /* This is not a real world example, since we only check the first
765                  * certificate in the given chain.
766                  */
767
768                 ret = gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER);
769                 if (ret < 0)
770                 {
771                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
772                         return;
773                 }
774
775                 gnutls_x509_crt_get_dn(cert, name, &name_size);
776
777                 certinfo->data.insert(std::make_pair("dn",name));
778
779                 gnutls_x509_crt_get_issuer_dn(cert, name, &name_size);
780
781                 certinfo->data.insert(std::make_pair("issuer",name));
782
783                 if ((ret = gnutls_x509_crt_get_fingerprint(cert, GNUTLS_DIG_MD5, digest, &digest_size)) < 0)
784                 {
785                         certinfo->data.insert(std::make_pair("error",gnutls_strerror(ret)));
786                 }
787                 else
788                 {
789                         certinfo->data.insert(std::make_pair("fingerprint",irc::hex(digest, digest_size)));
790                 }
791
792                 /* Beware here we do not check for errors.
793                  */
794                 if ((gnutls_x509_crt_get_expiration_time(cert) < time(0)) || (gnutls_x509_crt_get_activation_time(cert) > time(0)))
795                 {
796                         certinfo->data.insert(std::make_pair("error","Not activated, or expired certificate"));
797                 }
798
799                 gnutls_x509_crt_deinit(cert);
800
801                 return;
802         }
803
804 };
805
806 class ModuleSSLGnuTLSFactory : public ModuleFactory
807 {
808  public:
809         ModuleSSLGnuTLSFactory()
810         {
811         }
812
813         ~ModuleSSLGnuTLSFactory()
814         {
815         }
816
817         virtual Module * CreateModule(InspIRCd* Me)
818         {
819                 return new ModuleSSLGnuTLS(Me);
820         }
821 };
822
823
824 extern "C" void * init_module( void )
825 {
826         return new ModuleSSLGnuTLSFactory;
827 }