]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_ssl_gnutls.cpp
Convert all code to use StreamSocket::SendQueue
[user/henk/code/inspircd.git] / src / modules / extra / m_ssl_gnutls.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 John Brooks <john.brooks@dereferenced.net>
6  *   Copyright (C) 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25 #include "modules/ssl.h"
26 #include <memory>
27
28 // Fix warnings about the use of commas at end of enumerator lists on C++03.
29 #if defined __clang__
30 # pragma clang diagnostic ignored "-Wc++11-extensions"
31 #elif defined __GNUC__
32 # pragma GCC diagnostic ignored "-pedantic"
33 #endif
34
35 #include <gnutls/gnutls.h>
36 #include <gnutls/x509.h>
37
38 #ifndef GNUTLS_VERSION_NUMBER
39 #define GNUTLS_VERSION_NUMBER LIBGNUTLS_VERSION_NUMBER
40 #endif
41
42 // Check if the GnuTLS library is at least version major.minor.patch
43 #define INSPIRCD_GNUTLS_HAS_VERSION(major, minor, patch) (GNUTLS_VERSION_NUMBER >= ((major << 16) | (minor << 8) | patch))
44
45 #if INSPIRCD_GNUTLS_HAS_VERSION(2, 9, 8)
46 #define GNUTLS_HAS_MAC_GET_ID
47 #include <gnutls/crypto.h>
48 #endif
49
50 #if INSPIRCD_GNUTLS_HAS_VERSION(2, 12, 0)
51 # define GNUTLS_HAS_RND
52 #else
53 # include <gcrypt.h>
54 #endif
55
56 #ifdef _WIN32
57 # pragma comment(lib, "libgnutls-28.lib")
58 #endif
59
60 /* $CompileFlags: pkgconfincludes("gnutls","/gnutls/gnutls.h","") eval("print `libgcrypt-config --cflags | tr -d \r` if `pkg-config --modversion gnutls 2>/dev/null | tr -d \r` lt '2.12'") */
61 /* $LinkerFlags: rpath("pkg-config --libs gnutls") pkgconflibs("gnutls","/libgnutls.so","-lgnutls") eval("print `libgcrypt-config --libs | tr -d \r` if `pkg-config --modversion gnutls 2>/dev/null | tr -d \r` lt '2.12'") */
62
63 // These don't exist in older GnuTLS versions
64 #if INSPIRCD_GNUTLS_HAS_VERSION(2, 1, 7)
65 #define GNUTLS_NEW_PRIO_API
66 #endif
67
68 #if (!INSPIRCD_GNUTLS_HAS_VERSION(2, 0, 0))
69 typedef gnutls_certificate_credentials_t gnutls_certificate_credentials;
70 typedef gnutls_dh_params_t gnutls_dh_params;
71 #endif
72
73 enum issl_status { ISSL_NONE, ISSL_HANDSHAKING, ISSL_HANDSHAKEN };
74
75 #if INSPIRCD_GNUTLS_HAS_VERSION(2, 12, 0)
76 #define INSPIRCD_GNUTLS_HAS_VECTOR_PUSH
77 #define GNUTLS_NEW_CERT_CALLBACK_API
78 typedef gnutls_retr2_st cert_cb_last_param_type;
79 #else
80 typedef gnutls_retr_st cert_cb_last_param_type;
81 #endif
82
83 #if INSPIRCD_GNUTLS_HAS_VERSION(3, 3, 5)
84 #define INSPIRCD_GNUTLS_HAS_RECV_PACKET
85 #endif
86
87 #if INSPIRCD_GNUTLS_HAS_VERSION(2, 99, 0)
88 // The second parameter of gnutls_init() has changed in 2.99.0 from gnutls_connection_end_t to unsigned int
89 // (it became a general flags parameter) and the enum has been deprecated and generates a warning on use.
90 typedef unsigned int inspircd_gnutls_session_init_flags_t;
91 #else
92 typedef gnutls_connection_end_t inspircd_gnutls_session_init_flags_t;
93 #endif
94
95 class RandGen : public HandlerBase2<void, char*, size_t>
96 {
97  public:
98         void Call(char* buffer, size_t len)
99         {
100 #ifdef GNUTLS_HAS_RND
101                 gnutls_rnd(GNUTLS_RND_RANDOM, buffer, len);
102 #else
103                 gcry_randomize(buffer, len, GCRY_STRONG_RANDOM);
104 #endif
105         }
106 };
107
108 namespace GnuTLS
109 {
110         class Init
111         {
112          public:
113                 Init() { gnutls_global_init(); }
114                 ~Init() { gnutls_global_deinit(); }
115         };
116
117         class Exception : public ModuleException
118         {
119          public:
120                 Exception(const std::string& reason)
121                         : ModuleException(reason) { }
122         };
123
124         void ThrowOnError(int errcode, const char* msg)
125         {
126                 if (errcode < 0)
127                 {
128                         std::string reason = msg;
129                         reason.append(" :").append(gnutls_strerror(errcode));
130                         throw Exception(reason);
131                 }
132         }
133
134         /** Used to create a gnutls_datum_t* from a std::string
135          */
136         class Datum
137         {
138                 gnutls_datum_t datum;
139
140          public:
141                 Datum(const std::string& dat)
142                 {
143                         datum.data = (unsigned char*)dat.data();
144                         datum.size = static_cast<unsigned int>(dat.length());
145                 }
146
147                 const gnutls_datum_t* get() const { return &datum; }
148         };
149
150         class Hash
151         {
152                 gnutls_digest_algorithm_t hash;
153
154          public:
155                 // Nothing to deallocate, constructor may throw freely
156                 Hash(const std::string& hashname)
157                 {
158                         // As older versions of gnutls can't do this, let's disable it where needed.
159 #ifdef GNUTLS_HAS_MAC_GET_ID
160                         // As gnutls_digest_algorithm_t and gnutls_mac_algorithm_t are mapped 1:1, we can do this
161                         // There is no gnutls_dig_get_id() at the moment, but it may come later
162                         hash = (gnutls_digest_algorithm_t)gnutls_mac_get_id(hashname.c_str());
163                         if (hash == GNUTLS_DIG_UNKNOWN)
164                                 throw Exception("Unknown hash type " + hashname);
165
166                         // Check if the user is giving us something that is a valid MAC but not digest
167                         gnutls_hash_hd_t is_digest;
168                         if (gnutls_hash_init(&is_digest, hash) < 0)
169                                 throw Exception("Unknown hash type " + hashname);
170                         gnutls_hash_deinit(is_digest, NULL);
171 #else
172                         if (hashname == "md5")
173                                 hash = GNUTLS_DIG_MD5;
174                         else if (hashname == "sha1")
175                                 hash = GNUTLS_DIG_SHA1;
176 #ifdef INSPIRCD_GNUTLS_ENABLE_SHA256_FINGERPRINT
177                         else if (hashname == "sha256")
178                                 hash = GNUTLS_DIG_SHA256;
179 #endif
180                         else
181                                 throw Exception("Unknown hash type " + hashname);
182 #endif
183                 }
184
185                 gnutls_digest_algorithm_t get() const { return hash; }
186         };
187
188         class DHParams
189         {
190                 gnutls_dh_params_t dh_params;
191
192                 DHParams()
193                 {
194                         ThrowOnError(gnutls_dh_params_init(&dh_params), "gnutls_dh_params_init() failed");
195                 }
196
197          public:
198                 /** Import */
199                 static std::auto_ptr<DHParams> Import(const std::string& dhstr)
200                 {
201                         std::auto_ptr<DHParams> dh(new DHParams);
202                         int ret = gnutls_dh_params_import_pkcs3(dh->dh_params, Datum(dhstr).get(), GNUTLS_X509_FMT_PEM);
203                         ThrowOnError(ret, "Unable to import DH params");
204                         return dh;
205                 }
206
207                 /** Generate */
208                 static std::auto_ptr<DHParams> Generate(unsigned int bits)
209                 {
210                         std::auto_ptr<DHParams> dh(new DHParams);
211                         ThrowOnError(gnutls_dh_params_generate2(dh->dh_params, bits), "Unable to generate DH params");
212                         return dh;
213                 }
214
215                 ~DHParams()
216                 {
217                         gnutls_dh_params_deinit(dh_params);
218                 }
219
220                 const gnutls_dh_params_t& get() const { return dh_params; }
221         };
222
223         class X509Key
224         {
225                 /** Ensure that the key is deinited in case the constructor of X509Key throws
226                  */
227                 class RAIIKey
228                 {
229                  public:
230                         gnutls_x509_privkey_t key;
231
232                         RAIIKey()
233                         {
234                                 ThrowOnError(gnutls_x509_privkey_init(&key), "gnutls_x509_privkey_init() failed");
235                         }
236
237                         ~RAIIKey()
238                         {
239                                 gnutls_x509_privkey_deinit(key);
240                         }
241                 } key;
242
243          public:
244                 /** Import */
245                 X509Key(const std::string& keystr)
246                 {
247                         int ret = gnutls_x509_privkey_import(key.key, Datum(keystr).get(), GNUTLS_X509_FMT_PEM);
248                         ThrowOnError(ret, "Unable to import private key");
249                 }
250
251                 gnutls_x509_privkey_t& get() { return key.key; }
252         };
253
254         class X509CertList
255         {
256                 std::vector<gnutls_x509_crt_t> certs;
257
258          public:
259                 /** Import */
260                 X509CertList(const std::string& certstr)
261                 {
262                         unsigned int certcount = 3;
263                         certs.resize(certcount);
264                         Datum datum(certstr);
265
266                         int ret = gnutls_x509_crt_list_import(raw(), &certcount, datum.get(), GNUTLS_X509_FMT_PEM, GNUTLS_X509_CRT_LIST_IMPORT_FAIL_IF_EXCEED);
267                         if (ret == GNUTLS_E_SHORT_MEMORY_BUFFER)
268                         {
269                                 // the buffer wasn't big enough to hold all certs but gnutls changed certcount to the number of available certs,
270                                 // try again with a bigger buffer
271                                 certs.resize(certcount);
272                                 ret = gnutls_x509_crt_list_import(raw(), &certcount, datum.get(), GNUTLS_X509_FMT_PEM, GNUTLS_X509_CRT_LIST_IMPORT_FAIL_IF_EXCEED);
273                         }
274
275                         ThrowOnError(ret, "Unable to load certificates");
276
277                         // Resize the vector to the actual number of certs because we rely on its size being correct
278                         // when deallocating the certs
279                         certs.resize(certcount);
280                 }
281
282                 ~X509CertList()
283                 {
284                         for (std::vector<gnutls_x509_crt_t>::iterator i = certs.begin(); i != certs.end(); ++i)
285                                 gnutls_x509_crt_deinit(*i);
286                 }
287
288                 gnutls_x509_crt_t* raw() { return &certs[0]; }
289                 unsigned int size() const { return certs.size(); }
290         };
291
292         class X509CRL : public refcountbase
293         {
294                 class RAIICRL
295                 {
296                  public:
297                         gnutls_x509_crl_t crl;
298
299                         RAIICRL()
300                         {
301                                 ThrowOnError(gnutls_x509_crl_init(&crl), "gnutls_x509_crl_init() failed");
302                         }
303
304                         ~RAIICRL()
305                         {
306                                 gnutls_x509_crl_deinit(crl);
307                         }
308                 } crl;
309
310          public:
311                 /** Import */
312                 X509CRL(const std::string& crlstr)
313                 {
314                         int ret = gnutls_x509_crl_import(get(), Datum(crlstr).get(), GNUTLS_X509_FMT_PEM);
315                         ThrowOnError(ret, "Unable to load certificate revocation list");
316                 }
317
318                 gnutls_x509_crl_t& get() { return crl.crl; }
319         };
320
321 #ifdef GNUTLS_NEW_PRIO_API
322         class Priority
323         {
324                 gnutls_priority_t priority;
325
326          public:
327                 Priority(const std::string& priorities)
328                 {
329                         // Try to set the priorities for ciphers, kex methods etc. to the user supplied string
330                         // If the user did not supply anything then the string is already set to "NORMAL"
331                         const char* priocstr = priorities.c_str();
332                         const char* prioerror;
333
334                         int ret = gnutls_priority_init(&priority, priocstr, &prioerror);
335                         if (ret < 0)
336                         {
337                                 // gnutls did not understand the user supplied string
338                                 throw Exception("Unable to initialize priorities to \"" + priorities + "\": " + gnutls_strerror(ret) + " Syntax error at position " + ConvToStr((unsigned int) (prioerror - priocstr)));
339                         }
340                 }
341
342                 ~Priority()
343                 {
344                         gnutls_priority_deinit(priority);
345                 }
346
347                 void SetupSession(gnutls_session_t sess)
348                 {
349                         gnutls_priority_set(sess, priority);
350                 }
351         };
352 #else
353         /** Dummy class, used when gnutls_priority_set() is not available
354          */
355         class Priority
356         {
357          public:
358                 Priority(const std::string& priorities)
359                 {
360                         if (priorities != "NORMAL")
361                                 throw Exception("You've set a non-default priority string, but GnuTLS lacks support for it");
362                 }
363
364                 static void SetupSession(gnutls_session_t sess)
365                 {
366                         // Always set the default priorities
367                         gnutls_set_default_priority(sess);
368                 }
369         };
370 #endif
371
372         class CertCredentials
373         {
374                 /** DH parameters associated with these credentials
375                  */
376                 std::auto_ptr<DHParams> dh;
377
378          protected:
379                 gnutls_certificate_credentials_t cred;
380
381          public:
382                 CertCredentials()
383                 {
384                         ThrowOnError(gnutls_certificate_allocate_credentials(&cred), "Cannot allocate certificate credentials");
385                 }
386
387                 ~CertCredentials()
388                 {
389                         gnutls_certificate_free_credentials(cred);
390                 }
391
392                 /** Associates these credentials with the session
393                  */
394                 void SetupSession(gnutls_session_t sess)
395                 {
396                         gnutls_credentials_set(sess, GNUTLS_CRD_CERTIFICATE, cred);
397                 }
398
399                 /** Set the given DH parameters to be used with these credentials
400                  */
401                 void SetDH(std::auto_ptr<DHParams>& DH)
402                 {
403                         dh = DH;
404                         gnutls_certificate_set_dh_params(cred, dh->get());
405                 }
406         };
407
408         class X509Credentials : public CertCredentials
409         {
410                 /** Private key
411                  */
412                 X509Key key;
413
414                 /** Certificate list, presented to the peer
415                  */
416                 X509CertList certs;
417
418                 /** Trusted CA, may be NULL
419                  */
420                 std::auto_ptr<X509CertList> trustedca;
421
422                 /** Certificate revocation list, may be NULL
423                  */
424                 std::auto_ptr<X509CRL> crl;
425
426                 static int cert_callback(gnutls_session_t session, const gnutls_datum_t* req_ca_rdn, int nreqs, const gnutls_pk_algorithm_t* sign_algos, int sign_algos_length, cert_cb_last_param_type* st);
427
428          public:
429                 X509Credentials(const std::string& certstr, const std::string& keystr)
430                         : key(keystr)
431                         , certs(certstr)
432                 {
433                         // Throwing is ok here, the destructor of Credentials is called in that case
434                         int ret = gnutls_certificate_set_x509_key(cred, certs.raw(), certs.size(), key.get());
435                         ThrowOnError(ret, "Unable to set cert/key pair");
436
437 #ifdef GNUTLS_NEW_CERT_CALLBACK_API
438                         gnutls_certificate_set_retrieve_function(cred, cert_callback);
439 #else
440                         gnutls_certificate_client_set_retrieve_function(cred, cert_callback);
441 #endif
442                 }
443
444                 /** Sets the trusted CA and the certificate revocation list
445                  * to use when verifying certificates
446                  */
447                 void SetCA(std::auto_ptr<X509CertList>& certlist, std::auto_ptr<X509CRL>& CRL)
448                 {
449                         // Do nothing if certlist is NULL
450                         if (certlist.get())
451                         {
452                                 int ret = gnutls_certificate_set_x509_trust(cred, certlist->raw(), certlist->size());
453                                 ThrowOnError(ret, "gnutls_certificate_set_x509_trust() failed");
454
455                                 if (CRL.get())
456                                 {
457                                         ret = gnutls_certificate_set_x509_crl(cred, &CRL->get(), 1);
458                                         ThrowOnError(ret, "gnutls_certificate_set_x509_crl() failed");
459                                 }
460
461                                 trustedca = certlist;
462                                 crl = CRL;
463                         }
464                 }
465         };
466
467         class DataReader
468         {
469                 int retval;
470 #ifdef INSPIRCD_GNUTLS_HAS_RECV_PACKET
471                 gnutls_packet_t packet;
472
473          public:
474                 DataReader(gnutls_session_t sess)
475                 {
476                         // Using the packet API avoids the final copy of the data which GnuTLS does if we supply
477                         // our own buffer. Instead, we get the buffer containing the data from GnuTLS and copy it
478                         // to the recvq directly from there in appendto().
479                         retval = gnutls_record_recv_packet(sess, &packet);
480                 }
481
482                 void appendto(std::string& recvq)
483                 {
484                         // Copy data from GnuTLS buffers to recvq
485                         gnutls_datum_t datum;
486                         gnutls_packet_get(packet, &datum, NULL);
487                         recvq.append(reinterpret_cast<const char*>(datum.data), datum.size);
488
489                         gnutls_packet_deinit(packet);
490                 }
491 #else
492                 char* const buffer;
493
494          public:
495                 DataReader(gnutls_session_t sess)
496                         : buffer(ServerInstance->GetReadBuffer())
497                 {
498                         // Read data from GnuTLS buffers into ReadBuffer
499                         retval = gnutls_record_recv(sess, buffer, ServerInstance->Config->NetBufferSize);
500                 }
501
502                 void appendto(std::string& recvq)
503                 {
504                         // Copy data from ReadBuffer to recvq
505                         recvq.append(buffer, retval);
506                 }
507 #endif
508
509                 int ret() const { return retval; }
510         };
511
512         class Profile : public refcountbase
513         {
514                 /** Name of this profile
515                  */
516                 const std::string name;
517
518                 /** X509 certificate(s) and key
519                  */
520                 X509Credentials x509cred;
521
522                 /** The minimum length in bits for the DH prime to be accepted as a client
523                  */
524                 unsigned int min_dh_bits;
525
526                 /** Hashing algorithm to use when generating certificate fingerprints
527                  */
528                 Hash hash;
529
530                 /** Priorities for ciphers, compression methods, etc.
531                  */
532                 Priority priority;
533
534                 Profile(const std::string& profilename, const std::string& certstr, const std::string& keystr,
535                                 std::auto_ptr<DHParams>& DH, unsigned int mindh, const std::string& hashstr,
536                                 const std::string& priostr, std::auto_ptr<X509CertList>& CA, std::auto_ptr<X509CRL>& CRL)
537                         : name(profilename)
538                         , x509cred(certstr, keystr)
539                         , min_dh_bits(mindh)
540                         , hash(hashstr)
541                         , priority(priostr)
542                 {
543                         x509cred.SetDH(DH);
544                         x509cred.SetCA(CA, CRL);
545                 }
546
547                 static std::string ReadFile(const std::string& filename)
548                 {
549                         FileReader reader(filename);
550                         std::string ret = reader.GetString();
551                         if (ret.empty())
552                                 throw Exception("Cannot read file " + filename);
553                         return ret;
554                 }
555
556          public:
557                 static reference<Profile> Create(const std::string& profilename, ConfigTag* tag)
558                 {
559                         std::string certstr = ReadFile(tag->getString("certfile", "cert.pem"));
560                         std::string keystr = ReadFile(tag->getString("keyfile", "key.pem"));
561
562                         std::auto_ptr<DHParams> dh;
563                         int gendh = tag->getInt("gendh");
564                         if (gendh)
565                         {
566                                 gendh = (gendh < 1024 ? 1024 : gendh);
567                                 dh = DHParams::Generate(gendh);
568                         }
569                         else
570                                 dh = DHParams::Import(ReadFile(tag->getString("dhfile", "dhparams.pem")));
571
572                         // Use default priority string if this tag does not specify one
573                         std::string priostr = tag->getString("priority", "NORMAL");
574                         unsigned int mindh = tag->getInt("mindhbits", 1024);
575                         std::string hashstr = tag->getString("hash", "md5");
576
577                         // Load trusted CA and revocation list, if set
578                         std::auto_ptr<X509CertList> ca;
579                         std::auto_ptr<X509CRL> crl;
580                         std::string filename = tag->getString("cafile");
581                         if (!filename.empty())
582                         {
583                                 ca.reset(new X509CertList(ReadFile(filename)));
584
585                                 filename = tag->getString("crlfile");
586                                 if (!filename.empty())
587                                         crl.reset(new X509CRL(ReadFile(filename)));
588                         }
589
590                         return new Profile(profilename, certstr, keystr, dh, mindh, hashstr, priostr, ca, crl);
591                 }
592
593                 /** Set up the given session with the settings in this profile
594                  */
595                 void SetupSession(gnutls_session_t sess)
596                 {
597                         priority.SetupSession(sess);
598                         x509cred.SetupSession(sess);
599                         gnutls_dh_set_prime_bits(sess, min_dh_bits);
600
601                         // Request client certificate if we are a server, no-op if we're a client
602                         gnutls_certificate_server_set_request(sess, GNUTLS_CERT_REQUEST);
603                 }
604
605                 const std::string& GetName() const { return name; }
606                 X509Credentials& GetX509Credentials() { return x509cred; }
607                 gnutls_digest_algorithm_t GetHash() const { return hash.get(); }
608         };
609 }
610
611 class GnuTLSIOHook : public SSLIOHook
612 {
613  private:
614         gnutls_session_t sess;
615         issl_status status;
616         reference<GnuTLS::Profile> profile;
617
618         void CloseSession()
619         {
620                 if (this->sess)
621                 {
622                         gnutls_bye(this->sess, GNUTLS_SHUT_WR);
623                         gnutls_deinit(this->sess);
624                 }
625                 sess = NULL;
626                 certificate = NULL;
627                 status = ISSL_NONE;
628         }
629
630         // Returns 1 if handshake succeeded, 0 if it is still in progress, -1 if it failed
631         int Handshake(StreamSocket* user)
632         {
633                 int ret = gnutls_handshake(this->sess);
634
635                 if (ret < 0)
636                 {
637                         if(ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
638                         {
639                                 // Handshake needs resuming later, read() or write() would have blocked.
640                                 this->status = ISSL_HANDSHAKING;
641
642                                 if (gnutls_record_get_direction(this->sess) == 0)
643                                 {
644                                         // gnutls_handshake() wants to read() again.
645                                         SocketEngine::ChangeEventMask(user, FD_WANT_POLL_READ | FD_WANT_NO_WRITE);
646                                 }
647                                 else
648                                 {
649                                         // gnutls_handshake() wants to write() again.
650                                         SocketEngine::ChangeEventMask(user, FD_WANT_NO_READ | FD_WANT_SINGLE_WRITE);
651                                 }
652
653                                 return 0;
654                         }
655                         else
656                         {
657                                 user->SetError("Handshake Failed - " + std::string(gnutls_strerror(ret)));
658                                 CloseSession();
659                                 return -1;
660                         }
661                 }
662                 else
663                 {
664                         // Change the seesion state
665                         this->status = ISSL_HANDSHAKEN;
666
667                         VerifyCertificate();
668
669                         // Finish writing, if any left
670                         SocketEngine::ChangeEventMask(user, FD_WANT_POLL_READ | FD_WANT_NO_WRITE | FD_ADD_TRIAL_WRITE);
671
672                         return 1;
673                 }
674         }
675
676         void VerifyCertificate()
677         {
678                 unsigned int certstatus;
679                 const gnutls_datum_t* cert_list;
680                 int ret;
681                 unsigned int cert_list_size;
682                 gnutls_x509_crt_t cert;
683                 char str[512];
684                 unsigned char digest[512];
685                 size_t digest_size = sizeof(digest);
686                 size_t name_size = sizeof(str);
687                 ssl_cert* certinfo = new ssl_cert;
688                 this->certificate = certinfo;
689
690                 /* This verification function uses the trusted CAs in the credentials
691                  * structure. So you must have installed one or more CA certificates.
692                  */
693                 ret = gnutls_certificate_verify_peers2(this->sess, &certstatus);
694
695                 if (ret < 0)
696                 {
697                         certinfo->error = std::string(gnutls_strerror(ret));
698                         return;
699                 }
700
701                 certinfo->invalid = (certstatus & GNUTLS_CERT_INVALID);
702                 certinfo->unknownsigner = (certstatus & GNUTLS_CERT_SIGNER_NOT_FOUND);
703                 certinfo->revoked = (certstatus & GNUTLS_CERT_REVOKED);
704                 certinfo->trusted = !(certstatus & GNUTLS_CERT_SIGNER_NOT_CA);
705
706                 /* Up to here the process is the same for X.509 certificates and
707                  * OpenPGP keys. From now on X.509 certificates are assumed. This can
708                  * be easily extended to work with openpgp keys as well.
709                  */
710                 if (gnutls_certificate_type_get(this->sess) != GNUTLS_CRT_X509)
711                 {
712                         certinfo->error = "No X509 keys sent";
713                         return;
714                 }
715
716                 ret = gnutls_x509_crt_init(&cert);
717                 if (ret < 0)
718                 {
719                         certinfo->error = gnutls_strerror(ret);
720                         return;
721                 }
722
723                 cert_list_size = 0;
724                 cert_list = gnutls_certificate_get_peers(this->sess, &cert_list_size);
725                 if (cert_list == NULL)
726                 {
727                         certinfo->error = "No certificate was found";
728                         goto info_done_dealloc;
729                 }
730
731                 /* This is not a real world example, since we only check the first
732                  * certificate in the given chain.
733                  */
734
735                 ret = gnutls_x509_crt_import(cert, &cert_list[0], GNUTLS_X509_FMT_DER);
736                 if (ret < 0)
737                 {
738                         certinfo->error = gnutls_strerror(ret);
739                         goto info_done_dealloc;
740                 }
741
742                 if (gnutls_x509_crt_get_dn(cert, str, &name_size) == 0)
743                 {
744                         std::string& dn = certinfo->dn;
745                         dn = str;
746                         // Make sure there are no chars in the string that we consider invalid
747                         if (dn.find_first_of("\r\n") != std::string::npos)
748                                 dn.clear();
749                 }
750
751                 name_size = sizeof(str);
752                 if (gnutls_x509_crt_get_issuer_dn(cert, str, &name_size) == 0)
753                 {
754                         std::string& issuer = certinfo->issuer;
755                         issuer = str;
756                         if (issuer.find_first_of("\r\n") != std::string::npos)
757                                 issuer.clear();
758                 }
759
760                 if ((ret = gnutls_x509_crt_get_fingerprint(cert, profile->GetHash(), digest, &digest_size)) < 0)
761                 {
762                         certinfo->error = gnutls_strerror(ret);
763                 }
764                 else
765                 {
766                         certinfo->fingerprint = BinToHex(digest, digest_size);
767                 }
768
769                 /* Beware here we do not check for errors.
770                  */
771                 if ((gnutls_x509_crt_get_expiration_time(cert) < ServerInstance->Time()) || (gnutls_x509_crt_get_activation_time(cert) > ServerInstance->Time()))
772                 {
773                         certinfo->error = "Not activated, or expired certificate";
774                 }
775
776 info_done_dealloc:
777                 gnutls_x509_crt_deinit(cert);
778         }
779
780         // Returns 1 if application I/O should proceed, 0 if it must wait for the underlying protocol to progress, -1 on fatal error
781         int PrepareIO(StreamSocket* sock)
782         {
783                 if (status == ISSL_HANDSHAKEN)
784                         return 1;
785                 else if (status == ISSL_HANDSHAKING)
786                 {
787                         // The handshake isn't finished, try to finish it
788                         return Handshake(sock);
789                 }
790
791                 CloseSession();
792                 sock->SetError("No SSL session");
793                 return -1;
794         }
795
796         static const char* UnknownIfNULL(const char* str)
797         {
798                 return str ? str : "UNKNOWN";
799         }
800
801         static ssize_t gnutls_pull_wrapper(gnutls_transport_ptr_t session_wrap, void* buffer, size_t size)
802         {
803                 StreamSocket* sock = reinterpret_cast<StreamSocket*>(session_wrap);
804 #ifdef _WIN32
805                 GnuTLSIOHook* session = static_cast<GnuTLSIOHook*>(sock->GetIOHook());
806 #endif
807
808                 if (sock->GetEventMask() & FD_READ_WILL_BLOCK)
809                 {
810 #ifdef _WIN32
811                         gnutls_transport_set_errno(session->sess, EAGAIN);
812 #else
813                         errno = EAGAIN;
814 #endif
815                         return -1;
816                 }
817
818                 int rv = SocketEngine::Recv(sock, reinterpret_cast<char *>(buffer), size, 0);
819
820 #ifdef _WIN32
821                 if (rv < 0)
822                 {
823                         /* Windows doesn't use errno, but gnutls does, so check SocketEngine::IgnoreError()
824                          * and then set errno appropriately.
825                          * The gnutls library may also have a different errno variable than us, see
826                          * gnutls_transport_set_errno(3).
827                          */
828                         gnutls_transport_set_errno(session->sess, SocketEngine::IgnoreError() ? EAGAIN : errno);
829                 }
830 #endif
831
832                 if (rv < (int)size)
833                         SocketEngine::ChangeEventMask(sock, FD_READ_WILL_BLOCK);
834                 return rv;
835         }
836
837 #ifdef INSPIRCD_GNUTLS_HAS_VECTOR_PUSH
838         static ssize_t VectorPush(gnutls_transport_ptr_t transportptr, const giovec_t* iov, int iovcnt)
839         {
840                 StreamSocket* sock = reinterpret_cast<StreamSocket*>(transportptr);
841 #ifdef _WIN32
842                 GnuTLSIOHook* session = static_cast<GnuTLSIOHook*>(sock->GetIOHook());
843 #endif
844
845                 if (sock->GetEventMask() & FD_WRITE_WILL_BLOCK)
846                 {
847 #ifdef _WIN32
848                         gnutls_transport_set_errno(session->sess, EAGAIN);
849 #else
850                         errno = EAGAIN;
851 #endif
852                         return -1;
853                 }
854
855                 // Cast the giovec_t to iovec not to IOVector so the correct function is called on Windows
856                 int ret = SocketEngine::WriteV(sock, reinterpret_cast<const iovec*>(iov), iovcnt);
857 #ifdef _WIN32
858                 // See the function above for more info about the usage of gnutls_transport_set_errno() on Windows
859                 if (ret < 0)
860                         gnutls_transport_set_errno(session->sess, SocketEngine::IgnoreError() ? EAGAIN : errno);
861 #endif
862
863                 int size = 0;
864                 for (int i = 0; i < iovcnt; i++)
865                         size += iov[i].iov_len;
866
867                 if (ret < size)
868                         SocketEngine::ChangeEventMask(sock, FD_WRITE_WILL_BLOCK);
869                 return ret;
870         }
871
872 #else // INSPIRCD_GNUTLS_HAS_VECTOR_PUSH
873         static ssize_t gnutls_push_wrapper(gnutls_transport_ptr_t session_wrap, const void* buffer, size_t size)
874         {
875                 StreamSocket* sock = reinterpret_cast<StreamSocket*>(session_wrap);
876 #ifdef _WIN32
877                 GnuTLSIOHook* session = static_cast<GnuTLSIOHook*>(sock->GetIOHook());
878 #endif
879
880                 if (sock->GetEventMask() & FD_WRITE_WILL_BLOCK)
881                 {
882 #ifdef _WIN32
883                         gnutls_transport_set_errno(session->sess, EAGAIN);
884 #else
885                         errno = EAGAIN;
886 #endif
887                         return -1;
888                 }
889
890                 int rv = SocketEngine::Send(sock, reinterpret_cast<const char *>(buffer), size, 0);
891
892 #ifdef _WIN32
893                 if (rv < 0)
894                 {
895                         /* Windows doesn't use errno, but gnutls does, so check SocketEngine::IgnoreError()
896                          * and then set errno appropriately.
897                          * The gnutls library may also have a different errno variable than us, see
898                          * gnutls_transport_set_errno(3).
899                          */
900                         gnutls_transport_set_errno(session->sess, SocketEngine::IgnoreError() ? EAGAIN : errno);
901                 }
902 #endif
903
904                 if (rv < (int)size)
905                         SocketEngine::ChangeEventMask(sock, FD_WRITE_WILL_BLOCK);
906                 return rv;
907         }
908 #endif // INSPIRCD_GNUTLS_HAS_VECTOR_PUSH
909
910  public:
911         GnuTLSIOHook(IOHookProvider* hookprov, StreamSocket* sock, inspircd_gnutls_session_init_flags_t flags, const reference<GnuTLS::Profile>& sslprofile)
912                 : SSLIOHook(hookprov)
913                 , sess(NULL)
914                 , status(ISSL_NONE)
915                 , profile(sslprofile)
916         {
917                 gnutls_init(&sess, flags);
918                 gnutls_transport_set_ptr(sess, reinterpret_cast<gnutls_transport_ptr_t>(sock));
919 #ifdef INSPIRCD_GNUTLS_HAS_VECTOR_PUSH
920                 gnutls_transport_set_vec_push_function(sess, VectorPush);
921 #else
922                 gnutls_transport_set_push_function(sess, gnutls_push_wrapper);
923 #endif
924                 gnutls_transport_set_pull_function(sess, gnutls_pull_wrapper);
925                 profile->SetupSession(sess);
926
927                 sock->AddIOHook(this);
928                 Handshake(sock);
929         }
930
931         void OnStreamSocketClose(StreamSocket* user) CXX11_OVERRIDE
932         {
933                 CloseSession();
934         }
935
936         int OnStreamSocketRead(StreamSocket* user, std::string& recvq) CXX11_OVERRIDE
937         {
938                 // Finish handshake if needed
939                 int prepret = PrepareIO(user);
940                 if (prepret <= 0)
941                         return prepret;
942
943                 // If we resumed the handshake then this->status will be ISSL_HANDSHAKEN.
944                 {
945                         GnuTLS::DataReader reader(sess);
946                         int ret = reader.ret();
947                         if (ret > 0)
948                         {
949                                 reader.appendto(recvq);
950                                 return 1;
951                         }
952                         else if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED)
953                         {
954                                 return 0;
955                         }
956                         else if (ret == 0)
957                         {
958                                 user->SetError("Connection closed");
959                                 CloseSession();
960                                 return -1;
961                         }
962                         else
963                         {
964                                 user->SetError(gnutls_strerror(ret));
965                                 CloseSession();
966                                 return -1;
967                         }
968                 }
969         }
970
971         int OnStreamSocketWrite(StreamSocket* user) CXX11_OVERRIDE
972         {
973                 // Finish handshake if needed
974                 int prepret = PrepareIO(user);
975                 if (prepret <= 0)
976                         return prepret;
977
978                 // Session is ready for transferring application data
979                 StreamSocket::SendQueue& sendq = user->GetSendQ();
980                 int ret = 0;
981
982                 {
983                         const StreamSocket::SendQueue::Element& buffer = sendq.front();
984                         ret = gnutls_record_send(this->sess, buffer.data(), buffer.length());
985
986                         if (ret == (int)buffer.length())
987                         {
988                                 SocketEngine::ChangeEventMask(user, FD_WANT_NO_WRITE);
989                                 return 1;
990                         }
991                         else if (ret > 0)
992                         {
993                                 sendq.erase_front(ret);
994                                 SocketEngine::ChangeEventMask(user, FD_WANT_SINGLE_WRITE);
995                                 return 0;
996                         }
997                         else if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED || ret == 0)
998                         {
999                                 SocketEngine::ChangeEventMask(user, FD_WANT_SINGLE_WRITE);
1000                                 return 0;
1001                         }
1002                         else // (ret < 0)
1003                         {
1004                                 user->SetError(gnutls_strerror(ret));
1005                                 CloseSession();
1006                                 return -1;
1007                         }
1008                 }
1009         }
1010
1011         void TellCiphersAndFingerprint(LocalUser* user)
1012         {
1013                 if (sess)
1014                 {
1015                         std::string text = "*** You are connected using SSL cipher '";
1016                         GetCiphersuite(text);
1017                         text += '\'';
1018                         if (!certificate->fingerprint.empty())
1019                                 text += " and your SSL certificate fingerprint is " + certificate->fingerprint;
1020
1021                         user->WriteNotice(text);
1022                 }
1023         }
1024
1025         void GetCiphersuite(std::string& out) const
1026         {
1027                 out.append(UnknownIfNULL(gnutls_protocol_get_name(gnutls_protocol_get_version(sess)))).push_back('-');
1028                 out.append(UnknownIfNULL(gnutls_kx_get_name(gnutls_kx_get(sess)))).push_back('-');
1029                 out.append(UnknownIfNULL(gnutls_cipher_get_name(gnutls_cipher_get(sess)))).push_back('-');
1030                 out.append(UnknownIfNULL(gnutls_mac_get_name(gnutls_mac_get(sess))));
1031         }
1032
1033         GnuTLS::Profile* GetProfile() { return profile; }
1034         bool IsHandshakeDone() const { return (status == ISSL_HANDSHAKEN); }
1035 };
1036
1037 int GnuTLS::X509Credentials::cert_callback(gnutls_session_t sess, const gnutls_datum_t* req_ca_rdn, int nreqs, const gnutls_pk_algorithm_t* sign_algos, int sign_algos_length, cert_cb_last_param_type* st)
1038 {
1039 #ifndef GNUTLS_NEW_CERT_CALLBACK_API
1040         st->type = GNUTLS_CRT_X509;
1041 #else
1042         st->cert_type = GNUTLS_CRT_X509;
1043         st->key_type = GNUTLS_PRIVKEY_X509;
1044 #endif
1045         StreamSocket* sock = reinterpret_cast<StreamSocket*>(gnutls_transport_get_ptr(sess));
1046         GnuTLS::X509Credentials& cred = static_cast<GnuTLSIOHook*>(sock->GetIOHook())->GetProfile()->GetX509Credentials();
1047
1048         st->ncerts = cred.certs.size();
1049         st->cert.x509 = cred.certs.raw();
1050         st->key.x509 = cred.key.get();
1051         st->deinit_all = 0;
1052
1053         return 0;
1054 }
1055
1056 class GnuTLSIOHookProvider : public refcountbase, public IOHookProvider
1057 {
1058         reference<GnuTLS::Profile> profile;
1059
1060  public:
1061         GnuTLSIOHookProvider(Module* mod, reference<GnuTLS::Profile>& prof)
1062                 : IOHookProvider(mod, "ssl/" + prof->GetName(), IOHookProvider::IOH_SSL)
1063                 , profile(prof)
1064         {
1065                 ServerInstance->Modules->AddService(*this);
1066         }
1067
1068         ~GnuTLSIOHookProvider()
1069         {
1070                 ServerInstance->Modules->DelService(*this);
1071         }
1072
1073         void OnAccept(StreamSocket* sock, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server) CXX11_OVERRIDE
1074         {
1075                 new GnuTLSIOHook(this, sock, GNUTLS_SERVER, profile);
1076         }
1077
1078         void OnConnect(StreamSocket* sock) CXX11_OVERRIDE
1079         {
1080                 new GnuTLSIOHook(this, sock, GNUTLS_CLIENT, profile);
1081         }
1082 };
1083
1084 class ModuleSSLGnuTLS : public Module
1085 {
1086         typedef std::vector<reference<GnuTLSIOHookProvider> > ProfileList;
1087
1088         // First member of the class, gets constructed first and destructed last
1089         GnuTLS::Init libinit;
1090         RandGen randhandler;
1091         ProfileList profiles;
1092
1093         void ReadProfiles()
1094         {
1095                 // First, store all profiles in a new, temporary container. If no problems occur, swap the two
1096                 // containers; this way if something goes wrong we can go back and continue using the current profiles,
1097                 // avoiding unpleasant situations where no new SSL connections are possible.
1098                 ProfileList newprofiles;
1099
1100                 ConfigTagList tags = ServerInstance->Config->ConfTags("sslprofile");
1101                 if (tags.first == tags.second)
1102                 {
1103                         // No <sslprofile> tags found, create a profile named "gnutls" from settings in the <gnutls> block
1104                         const std::string defname = "gnutls";
1105                         ConfigTag* tag = ServerInstance->Config->ConfValue(defname);
1106                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "No <sslprofile> tags found; using settings from the <gnutls> tag");
1107
1108                         try
1109                         {
1110                                 reference<GnuTLS::Profile> profile(GnuTLS::Profile::Create(defname, tag));
1111                                 newprofiles.push_back(new GnuTLSIOHookProvider(this, profile));
1112                         }
1113                         catch (CoreException& ex)
1114                         {
1115                                 throw ModuleException("Error while initializing the default SSL profile - " + ex.GetReason());
1116                         }
1117                 }
1118
1119                 for (ConfigIter i = tags.first; i != tags.second; ++i)
1120                 {
1121                         ConfigTag* tag = i->second;
1122                         if (tag->getString("provider") != "gnutls")
1123                                 continue;
1124
1125                         std::string name = tag->getString("name");
1126                         if (name.empty())
1127                         {
1128                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Ignoring <sslprofile> tag without name at " + tag->getTagLocation());
1129                                 continue;
1130                         }
1131
1132                         reference<GnuTLS::Profile> profile;
1133                         try
1134                         {
1135                                 profile = GnuTLS::Profile::Create(name, tag);
1136                         }
1137                         catch (CoreException& ex)
1138                         {
1139                                 throw ModuleException("Error while initializing SSL profile \"" + name + "\" at " + tag->getTagLocation() + " - " + ex.GetReason());
1140                         }
1141
1142                         newprofiles.push_back(new GnuTLSIOHookProvider(this, profile));
1143                 }
1144
1145                 // New profiles are ok, begin using them
1146                 // Old profiles are deleted when their refcount drops to zero
1147                 profiles.swap(newprofiles);
1148         }
1149
1150  public:
1151         ModuleSSLGnuTLS()
1152         {
1153 #ifndef GNUTLS_HAS_RND
1154                 gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
1155 #endif
1156         }
1157
1158         void init() CXX11_OVERRIDE
1159         {
1160                 ReadProfiles();
1161                 ServerInstance->GenRandom = &randhandler;
1162         }
1163
1164         void OnModuleRehash(User* user, const std::string &param) CXX11_OVERRIDE
1165         {
1166                 if(param != "ssl")
1167                         return;
1168
1169                 try
1170                 {
1171                         ReadProfiles();
1172                 }
1173                 catch (ModuleException& ex)
1174                 {
1175                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, ex.GetReason() + " Not applying settings.");
1176                 }
1177         }
1178
1179         ~ModuleSSLGnuTLS()
1180         {
1181                 ServerInstance->GenRandom = &ServerInstance->HandleGenRandom;
1182         }
1183
1184         void OnCleanup(int target_type, void* item) CXX11_OVERRIDE
1185         {
1186                 if(target_type == TYPE_USER)
1187                 {
1188                         LocalUser* user = IS_LOCAL(static_cast<User*>(item));
1189
1190                         if (user && user->eh.GetIOHook() && user->eh.GetIOHook()->prov->creator == this)
1191                         {
1192                                 // User is using SSL, they're a local user, and they're using one of *our* SSL ports.
1193                                 // Potentially there could be multiple SSL modules loaded at once on different ports.
1194                                 ServerInstance->Users->QuitUser(user, "SSL module unloading");
1195                         }
1196                 }
1197         }
1198
1199         Version GetVersion() CXX11_OVERRIDE
1200         {
1201                 return Version("Provides SSL support for clients", VF_VENDOR);
1202         }
1203
1204         void OnUserConnect(LocalUser* user) CXX11_OVERRIDE
1205         {
1206                 IOHook* hook = user->eh.GetIOHook();
1207                 if (hook && hook->prov->creator == this)
1208                         static_cast<GnuTLSIOHook*>(hook)->TellCiphersAndFingerprint(user);
1209         }
1210
1211         ModResult OnCheckReady(LocalUser* user) CXX11_OVERRIDE
1212         {
1213                 if ((user->eh.GetIOHook()) && (user->eh.GetIOHook()->prov->creator == this))
1214                 {
1215                         GnuTLSIOHook* iohook = static_cast<GnuTLSIOHook*>(user->eh.GetIOHook());
1216                         if (!iohook->IsHandshakeDone())
1217                                 return MOD_RES_DENY;
1218                 }
1219
1220                 return MOD_RES_PASSTHRU;
1221         }
1222 };
1223
1224 MODULE_INIT(ModuleSSLGnuTLS)