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