5ba6ffc5684711e2cef3616322604aae42241154
[citadel.git] / citadel / modules / crypto / serv_crypto.c
1 /* $Id$
2  *
3  * Copyright (c) 1987-2009 by the citadel.org team
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <string.h>
21 #include <unistd.h>
22 #include <sys/stat.h>
23 #include <sys/types.h>
24 #include "sysdep.h"
25
26 #ifdef HAVE_OPENSSL
27 #include <openssl/ssl.h>
28 #include <openssl/err.h>
29 #include <openssl/rand.h>
30 #endif
31
32 #if TIME_WITH_SYS_TIME
33 # include <sys/time.h>
34 # include <time.h>
35 #else
36 # if HAVE_SYS_TIME_H
37 #  include <sys/time.h>
38 # else
39 #  include <time.h>
40 # endif
41 #endif
42
43 #ifdef HAVE_PTHREAD_H
44 #include <pthread.h>
45 #endif
46
47 #ifdef HAVE_SYS_SELECT_H
48 #include <sys/select.h>
49 #endif
50
51 #include <stdio.h>
52 #include <libcitadel.h>
53 #include "server.h"
54 #include "serv_crypto.h"
55 #include "sysdep_decls.h"
56 #include "citadel.h"
57 #include "config.h"
58
59
60 #include "ctdl_module.h"
61 /* TODO: should we use the standard module init stuff to start this? */
62 /* TODO: should we register an event handler to call destruct_ssl? */
63
64 #ifdef HAVE_OPENSSL
65 SSL_CTX *ssl_ctx;               /* SSL context */
66 pthread_mutex_t **SSLCritters;  /* Things needing locking */
67
68 static unsigned long id_callback(void)
69 {
70         return (unsigned long) pthread_self();
71 }
72
73 void destruct_ssl(void)
74 {
75         int a;
76         for (a = 0; a < CRYPTO_num_locks(); a++) 
77                 free(SSLCritters[a]);
78         free (SSLCritters);
79 }
80
81 void init_ssl(void)
82 {
83         SSL_METHOD *ssl_method;
84         DH *dh;
85         RSA *rsa=NULL;
86         X509_REQ *req = NULL;
87         X509 *cer = NULL;
88         EVP_PKEY *pk = NULL;
89         EVP_PKEY *req_pkey = NULL;
90         X509_NAME *name = NULL;
91         FILE *fp;
92
93         if (!access(EGD_POOL, F_OK))
94                 RAND_egd(EGD_POOL);
95
96         if (!RAND_status()) {
97                 CtdlLogPrintf(CTDL_CRIT,
98                         "PRNG not adequately seeded, won't do SSL/TLS\n");
99                 return;
100         }
101         SSLCritters =
102             malloc(CRYPTO_num_locks() * sizeof(pthread_mutex_t *));
103         if (!SSLCritters) {
104                 CtdlLogPrintf(CTDL_EMERG, "citserver: can't allocate memory!!\n");
105                 /* Nothing's been initialized, just die */
106                 exit(1);
107         } else {
108                 int a;
109
110                 for (a = 0; a < CRYPTO_num_locks(); a++) {
111                         SSLCritters[a] = malloc(sizeof(pthread_mutex_t));
112                         if (!SSLCritters[a]) {
113                                 CtdlLogPrintf(CTDL_EMERG,
114                                         "citserver: can't allocate memory!!\n");
115                                 /* Nothing's been initialized, just die */
116                                 exit(1);
117                         }
118                         pthread_mutex_init(SSLCritters[a], NULL);
119                 }
120         }
121
122         /*
123          * Initialize SSL transport layer
124          */
125         SSL_library_init();
126         SSL_load_error_strings();
127         ssl_method = SSLv23_server_method();
128         if (!(ssl_ctx = SSL_CTX_new(ssl_method))) {
129                 CtdlLogPrintf(CTDL_CRIT, "SSL_CTX_new failed: %s\n",
130                         ERR_reason_error_string(ERR_get_error()));
131                 return;
132         }
133         if (!(SSL_CTX_set_cipher_list(ssl_ctx, CIT_CIPHERS))) {
134                 CtdlLogPrintf(CTDL_CRIT, "SSL: No ciphers available\n");
135                 SSL_CTX_free(ssl_ctx);
136                 ssl_ctx = NULL;
137                 return;
138         }
139 #if 0
140 #if SSLEAY_VERSION_NUMBER >= 0x00906000L
141         SSL_CTX_set_mode(ssl_ctx, SSL_CTX_get_mode(ssl_ctx) |
142                          SSL_MODE_AUTO_RETRY);
143 #endif
144 #endif
145
146         CRYPTO_set_locking_callback(ssl_lock);
147         CRYPTO_set_id_callback(id_callback);
148
149         /* Load DH parameters into the context */
150         dh = DH_new();
151         if (!dh) {
152                 CtdlLogPrintf(CTDL_CRIT, "init_ssl() can't allocate a DH object: %s\n",
153                         ERR_reason_error_string(ERR_get_error()));
154                 SSL_CTX_free(ssl_ctx);
155                 ssl_ctx = NULL;
156                 return;
157         }
158         if (!(BN_hex2bn(&(dh->p), DH_P))) {
159                 CtdlLogPrintf(CTDL_CRIT, "init_ssl() can't assign DH_P: %s\n",
160                         ERR_reason_error_string(ERR_get_error()));
161                 SSL_CTX_free(ssl_ctx);
162                 ssl_ctx = NULL;
163                 return;
164         }
165         if (!(BN_hex2bn(&(dh->g), DH_G))) {
166                 CtdlLogPrintf(CTDL_CRIT, "init_ssl() can't assign DH_G: %s\n",
167                         ERR_reason_error_string(ERR_get_error()));
168                 SSL_CTX_free(ssl_ctx);
169                 ssl_ctx = NULL;
170                 return;
171         }
172         dh->length = DH_L;
173         SSL_CTX_set_tmp_dh(ssl_ctx, dh);
174         DH_free(dh);
175
176         /* Get our certificates in order.
177          * First, create the key/cert directory if it's not there already...
178          */
179         mkdir(ctdl_key_dir, 0700);
180
181         /*
182          * Generate a key pair if we don't have one.
183          */
184         if (access(file_crpt_file_key, R_OK) != 0) {
185                 CtdlLogPrintf(CTDL_INFO, "Generating RSA key pair.\n");
186                 rsa = RSA_generate_key(1024,    /* modulus size */
187                                         65537,  /* exponent */
188                                         NULL,   /* no callback */
189                                         NULL);  /* no callback */
190                 if (rsa == NULL) {
191                         CtdlLogPrintf(CTDL_CRIT, "Key generation failed: %s\n",
192                                 ERR_reason_error_string(ERR_get_error()));
193                 }
194                 if (rsa != NULL) {
195                         fp = fopen(file_crpt_file_key, "w");
196                         if (fp != NULL) {
197                                 chmod(file_crpt_file_key, 0600);
198                                 if (PEM_write_RSAPrivateKey(fp, /* the file */
199                                                         rsa,    /* the key */
200                                                         NULL,   /* no enc */
201                                                         NULL,   /* no passphr */
202                                                         0,      /* no passphr */
203                                                         NULL,   /* no callbk */
204                                                         NULL    /* no callbk */
205                                 ) != 1) {
206                                         CtdlLogPrintf(CTDL_CRIT, "Cannot write key: %s\n",
207                                                 ERR_reason_error_string(ERR_get_error()));
208                                         unlink(file_crpt_file_key);
209                                 }
210                                 fclose(fp);
211                         }
212                         RSA_free(rsa);
213                 }
214         }
215
216         /*
217          * If there is no certificate file on disk, we will be generating a self-signed certificate
218          * in the next step.  Therefore, if we have neither a CSR nor a certificate, generate
219          * the CSR in this step so that the next step may commence.
220          */
221         if ( (access(file_crpt_file_cer, R_OK) != 0) && (access(file_crpt_file_csr, R_OK) != 0) ) {
222                 CtdlLogPrintf(CTDL_INFO, "Generating a certificate signing request.\n");
223
224                 /*
225                  * Read our key from the file.  No, we don't just keep this
226                  * in memory from the above key-generation function, because
227                  * there is the possibility that the key was already on disk
228                  * and we didn't just generate it now.
229                  */
230                 fp = fopen(file_crpt_file_key, "r");
231                 if (fp) {
232                         rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
233                         fclose(fp);
234                 }
235
236                 if (rsa) {
237
238                         /* Create a public key from the private key */
239                         if (pk=EVP_PKEY_new(), pk != NULL) {
240                                 EVP_PKEY_assign_RSA(pk, rsa);
241                                 if (req = X509_REQ_new(), req != NULL) {
242
243                                         /* Set the public key */
244                                         X509_REQ_set_pubkey(req, pk);
245                                         X509_REQ_set_version(req, 0L);
246
247                                         name = X509_REQ_get_subject_name(req);
248
249                                         /* Tell it who we are */
250
251                                         /*
252                                         X509_NAME_add_entry_by_txt(name, "C",
253                                                 MBSTRING_ASC, "US", -1, -1, 0);
254
255                                         X509_NAME_add_entry_by_txt(name, "ST",
256                                                 MBSTRING_ASC, "New York", -1, -1, 0);
257
258                                         X509_NAME_add_entry_by_txt(name, "L",
259                                                 MBSTRING_ASC, "Mount Kisco", -1, -1, 0);
260                                         */
261
262                                         X509_NAME_add_entry_by_txt(name, "O",
263                                                                    MBSTRING_ASC, 
264                                                                    (unsigned char*) config.c_humannode,
265                                                                    -1, -1, 0);
266
267                                         X509_NAME_add_entry_by_txt(name, "OU",
268                                                                    MBSTRING_ASC, 
269                                                                    (unsigned const char*)"Citadel server",
270                                                                    -1, -1, 0);
271
272                                         /* X509_NAME_add_entry_by_txt(name, "CN",
273                                                 MBSTRING_ASC, config.c_fqdn, -1, -1, 0);
274                                         */
275
276                                         X509_NAME_add_entry_by_txt(name, 
277                                                                    "CN",
278                                                                    MBSTRING_ASC, 
279                                                                    (const unsigned char *)"*", -1, -1, 0);
280                                 
281                                         X509_REQ_set_subject_name(req, name);
282
283                                         /* Sign the CSR */
284                                         if (!X509_REQ_sign(req, pk, EVP_md5())) {
285                                                 CtdlLogPrintf(CTDL_CRIT, "X509_REQ_sign(): error\n");
286                                         }
287                                         else {
288                                                 /* Write it to disk. */ 
289                                                 fp = fopen(file_crpt_file_csr, "w");
290                                                 if (fp != NULL) {
291                                                         chmod(file_crpt_file_csr, 0600);
292                                                         PEM_write_X509_REQ(fp, req);
293                                                         fclose(fp);
294                                                 }
295                                         }
296
297                                         X509_REQ_free(req);
298                                 }
299                         }
300
301                         RSA_free(rsa);
302                 }
303
304                 else {
305                         CtdlLogPrintf(CTDL_CRIT, "Unable to read private key.\n");
306                 }
307         }
308
309
310
311         /*
312          * Generate a self-signed certificate if we don't have one.
313          */
314         if (access(file_crpt_file_cer, R_OK) != 0) {
315                 CtdlLogPrintf(CTDL_INFO, "Generating a self-signed certificate.\n");
316
317                 /* Same deal as before: always read the key from disk because
318                  * it may or may not have just been generated.
319                  */
320                 fp = fopen(file_crpt_file_key, "r");
321                 if (fp) {
322                         rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
323                         fclose(fp);
324                 }
325
326                 /* This also holds true for the CSR. */
327                 req = NULL;
328                 cer = NULL;
329                 pk = NULL;
330                 if (rsa) {
331                         if (pk=EVP_PKEY_new(), pk != NULL) {
332                                 EVP_PKEY_assign_RSA(pk, rsa);
333                         }
334
335                         fp = fopen(file_crpt_file_csr, "r");
336                         if (fp) {
337                                 req = PEM_read_X509_REQ(fp, NULL, NULL, NULL);
338                                 fclose(fp);
339                         }
340
341                         if (req) {
342                                 if (cer = X509_new(), cer != NULL) {
343
344                                         ASN1_INTEGER_set(X509_get_serialNumber(cer), 0);
345                                         X509_set_issuer_name(cer, req->req_info->subject);
346                                         X509_set_subject_name(cer, req->req_info->subject);
347                                         X509_gmtime_adj(X509_get_notBefore(cer),0);
348                                         X509_gmtime_adj(X509_get_notAfter(cer),(long)60*60*24*SIGN_DAYS);
349                                         req_pkey = X509_REQ_get_pubkey(req);
350                                         X509_set_pubkey(cer, req_pkey);
351                                         EVP_PKEY_free(req_pkey);
352                                         
353                                         /* Sign the cert */
354                                         if (!X509_sign(cer, pk, EVP_md5())) {
355                                                 CtdlLogPrintf(CTDL_CRIT, "X509_sign(): error\n");
356                                         }
357                                         else {
358                                                 /* Write it to disk. */ 
359                                                 fp = fopen(file_crpt_file_cer, "w");
360                                                 if (fp != NULL) {
361                                                         chmod(file_crpt_file_cer, 0600);
362                                                         PEM_write_X509(fp, cer);
363                                                         fclose(fp);
364                                                 }
365                                         }
366                                         X509_free(cer);
367                                 }
368                         }
369
370                         RSA_free(rsa);
371                 }
372         }
373
374
375         /*
376          * Now try to bind to the key and certificate.
377          */
378         SSL_CTX_use_certificate_chain_file(ssl_ctx, file_crpt_file_cer);
379         SSL_CTX_use_PrivateKey_file(ssl_ctx, file_crpt_file_key, SSL_FILETYPE_PEM);
380         if ( !SSL_CTX_check_private_key(ssl_ctx) ) {
381                 CtdlLogPrintf(CTDL_CRIT, "Cannot install certificate: %s\n",
382                                 ERR_reason_error_string(ERR_get_error()));
383         }
384
385         /* Finally let the server know we're here */
386         CtdlRegisterProtoHook(cmd_stls, "STLS", "Start SSL/TLS session");
387         CtdlRegisterProtoHook(cmd_gtls, "GTLS",
388                               "Get SSL/TLS session status");
389         CtdlRegisterSessionHook(endtls, EVT_STOP);
390 }
391
392
393 /*
394  * client_write_ssl() Send binary data to the client encrypted.
395  */
396 void client_write_ssl(const char *buf, int nbytes)
397 {
398         int retval;
399         int nremain;
400         char junk[1];
401
402         nremain = nbytes;
403
404         while (nremain > 0) {
405                 if (SSL_want_write(CC->ssl)) {
406                         if ((SSL_read(CC->ssl, junk, 0)) < 1) {
407                                 CtdlLogPrintf(CTDL_DEBUG, "SSL_read in client_write: %s\n", ERR_reason_error_string(ERR_get_error()));
408                         }
409                 }
410                 retval =
411                     SSL_write(CC->ssl, &buf[nbytes - nremain], nremain);
412                 if (retval < 1) {
413                         long errval;
414
415                         errval = SSL_get_error(CC->ssl, retval);
416                         if (errval == SSL_ERROR_WANT_READ ||
417                             errval == SSL_ERROR_WANT_WRITE) {
418                                 sleep(1);
419                                 continue;
420                         }
421                         CtdlLogPrintf(CTDL_DEBUG, "SSL_write got error %ld, ret %d\n", errval, retval);
422                         if (retval == -1)
423                                 CtdlLogPrintf(CTDL_DEBUG, "errno is %d\n", errno);
424                         endtls();
425                         client_write(&buf[nbytes - nremain], nremain);
426                         return;
427                 }
428                 nremain -= retval;
429         }
430 }
431
432
433 /*
434  * read data from the encrypted layer.
435  */
436 int client_read_sslbuffer(StrBuf *buf, int timeout)
437 {
438         char sbuf[16384]; /* OpenSSL communicates in 16k blocks, so let's speak its native tongue. */
439         int rlen;
440         char junk[1];
441         SSL *pssl = CC->ssl;
442
443         if (pssl == NULL) return(-1);
444
445         while (1) {
446                 if (SSL_want_read(pssl)) {
447                         if ((SSL_write(pssl, junk, 0)) < 1) {
448                                 CtdlLogPrintf(CTDL_DEBUG, "SSL_write in client_read\n");
449                         }
450                 }
451                 rlen = SSL_read(pssl, sbuf, sizeof(sbuf));
452                 if (rlen < 1) {
453                         long errval;
454
455                         errval = SSL_get_error(pssl, rlen);
456                         if (errval == SSL_ERROR_WANT_READ || errval == SSL_ERROR_WANT_WRITE) {
457                                 sleep(1);
458                                 continue;
459                         }
460                         CtdlLogPrintf(CTDL_DEBUG, "SSL_read got error %ld\n", errval);
461                         endtls();
462                         return (-1);
463                 }
464                 StrBufAppendBufPlain(buf, sbuf, rlen, 0);
465                 return rlen;
466         }
467         return (0);
468 }
469
470 int client_readline_sslbuffer(StrBuf *Target, StrBuf *Buffer, int timeout)
471 {
472         int ntries = 0;
473         const char *pch, *pchs;
474         int rlen, len, retval = 0;
475         CitContext *CCC = CC;
476
477         if (StrLength(Target) > 0) {
478                 pchs = ChrPtr(Buffer);
479                 pch = strchr(pchs, '\n');
480                 if (pch != NULL) {
481                         rlen = 0;
482                         len = pch - pchs;
483                         if (len > 0 && (*(pch - 1) == '\r') )
484                                 rlen ++;
485                         StrBufSub(Target, Buffer, 0, len - rlen);
486                         StrBufCutLeft(Buffer, len + 1);
487                         return len - rlen;
488                 }
489         }
490         
491         while ((retval == 0) && (CCC->ssl != NULL)) { 
492                 pch = NULL;
493                 pchs = ChrPtr(Buffer);
494                 if (*pchs != '\0')
495                         pch = strchr(pchs, '\n');
496                 if (pch == NULL) {
497                         retval = client_read_sslbuffer(Buffer, timeout);
498                         pchs = ChrPtr(Buffer);
499                         pch = strchr(pchs, '\n');
500                 }
501                 if (retval == 0) {
502                         sleep(1);
503                         ntries ++;
504                 }
505                 if (ntries > 10)
506                         return 0;
507         }
508         if ((retval > 0) && (pch != NULL)) {
509                 rlen = 0;
510                 len = pch - pchs;
511                 if (len > 0 && (*(pch - 1) == '\r') )
512                         rlen ++;
513                 StrBufSub(Target, Buffer, 0, len - rlen);
514                 StrBufCutLeft(Buffer, len + 1);
515                 return len - rlen;
516                 
517         }
518         else 
519                 return -1;
520 }
521
522
523
524 int client_read_sslblob(StrBuf *Target, long bytes, int timeout)
525 {
526         long bufremain;
527         long baselen;
528         int retval;
529         CitContext *CCC = CC;
530
531         baselen = StrLength(Target);
532
533         if (CCC->Pos == NULL)
534                 CCC->Pos = ChrPtr(CCC->ReadBuf);
535         bufremain = StrLength(CCC->ReadBuf) - 
536                 (CCC->Pos - ChrPtr(CCC->ReadBuf));
537
538         if (bytes < bufremain)
539                 bufremain = bytes;
540         StrBufAppendBufPlain(Target, CCC->Pos, bufremain, 0);
541         StrBufCutLeft(CCC->ReadBuf, bufremain);
542         CCC->Pos = NULL;
543
544         if (bytes > bufremain) 
545         {
546                 while ((StrLength(CCC->ReadBuf) + StrLength(Target) < bytes + baselen) &&
547                        (retval >= 0))
548                         retval = client_read_sslbuffer(CCC->ReadBuf, timeout);
549                 if (retval >= 0) {
550                         StrBufAppendBuf(Target, CCC->ReadBuf, 0); /* todo: Buf > bytes? */
551                         return 1;
552                 }
553                 else {
554                         return -1;
555                 }
556         }
557         else 
558                 return 1;
559 }
560
561
562 /*
563  * CtdlStartTLS() starts SSL/TLS encryption for the current session.  It
564  * must be supplied with pre-generated strings for responses of "ok," "no
565  * support for TLS," and "error" so that we can use this in any protocol.
566  */
567 void CtdlStartTLS(char *ok_response, char *nosup_response,
568                         char *error_response) {
569
570         int retval, bits, alg_bits;
571
572         if (!ssl_ctx) {
573                 CtdlLogPrintf(CTDL_CRIT, "SSL failed: no ssl_ctx exists?\n");
574                 if (nosup_response != NULL) cprintf("%s", nosup_response);
575                 return;
576         }
577         if (!(CC->ssl = SSL_new(ssl_ctx))) {
578                 CtdlLogPrintf(CTDL_CRIT, "SSL_new failed: %s\n",
579                                 ERR_reason_error_string(ERR_get_error()));
580                 if (error_response != NULL) cprintf("%s", error_response);
581                 return;
582         }
583         if (!(SSL_set_fd(CC->ssl, CC->client_socket))) {
584                 CtdlLogPrintf(CTDL_CRIT, "SSL_set_fd failed: %s\n",
585                         ERR_reason_error_string(ERR_get_error()));
586                 SSL_free(CC->ssl);
587                 CC->ssl = NULL;
588                 if (error_response != NULL) cprintf("%s", error_response);
589                 return;
590         }
591         if (ok_response != NULL) cprintf("%s", ok_response);
592         retval = SSL_accept(CC->ssl);
593         if (retval < 1) {
594                 /*
595                  * Can't notify the client of an error here; they will
596                  * discover the problem at the SSL layer and should
597                  * revert to unencrypted communications.
598                  */
599                 long errval;
600                 char error_string[128];
601
602                 errval = SSL_get_error(CC->ssl, retval);
603                 CtdlLogPrintf(CTDL_CRIT, "SSL_accept failed: retval=%d, errval=%ld, err=%s\n",
604                         retval,
605                         errval,
606                         ERR_error_string(errval, error_string)
607                 );
608                 SSL_free(CC->ssl);
609                 CC->ssl = NULL;
610                 return;
611         }
612         BIO_set_close(CC->ssl->rbio, BIO_NOCLOSE);
613         bits = SSL_CIPHER_get_bits(SSL_get_current_cipher(CC->ssl), &alg_bits);
614         CtdlLogPrintf(CTDL_INFO, "SSL/TLS using %s on %s (%d of %d bits)\n",
615                 SSL_CIPHER_get_name(SSL_get_current_cipher(CC->ssl)),
616                 SSL_CIPHER_get_version(SSL_get_current_cipher(CC->ssl)),
617                 bits, alg_bits);
618         CC->redirect_ssl = 1;
619 }
620
621
622 /*
623  * cmd_stls() starts SSL/TLS encryption for the current session
624  */
625 void cmd_stls(char *params)
626 {
627         char ok_response[SIZ];
628         char nosup_response[SIZ];
629         char error_response[SIZ];
630
631         unbuffer_output();
632
633         sprintf(ok_response,
634                 "%d Begin TLS negotiation now\n",
635                 CIT_OK);
636         sprintf(nosup_response,
637                 "%d TLS not supported here\n",
638                 ERROR + CMD_NOT_SUPPORTED);
639         sprintf(error_response,
640                 "%d TLS negotiation error\n",
641                 ERROR + INTERNAL_ERROR);
642
643         CtdlStartTLS(ok_response, nosup_response, error_response);
644 }
645
646
647 /*
648  * cmd_gtls() returns status info about the TLS connection
649  */
650 void cmd_gtls(char *params)
651 {
652         int bits, alg_bits;
653
654         if (!CC->ssl || !CC->redirect_ssl) {
655                 cprintf("%d Session is not encrypted.\n", ERROR);
656                 return;
657         }
658         bits =
659             SSL_CIPHER_get_bits(SSL_get_current_cipher(CC->ssl),
660                                 &alg_bits);
661         cprintf("%d %s|%s|%d|%d\n", CIT_OK,
662                 SSL_CIPHER_get_version(SSL_get_current_cipher(CC->ssl)),
663                 SSL_CIPHER_get_name(SSL_get_current_cipher(CC->ssl)),
664                 alg_bits, bits);
665 }
666
667
668 /*
669  * endtls() shuts down the TLS connection
670  *
671  * WARNING:  This may make your session vulnerable to a known plaintext
672  * attack in the current implmentation.
673  */
674 void endtls(void)
675 {
676         if (!CC->ssl) {
677                 CC->redirect_ssl = 0;
678                 return;
679         }
680
681         CtdlLogPrintf(CTDL_INFO, "Ending SSL/TLS\n");
682         SSL_shutdown(CC->ssl);
683         SSL_free(CC->ssl);
684         CC->ssl = NULL;
685         CC->redirect_ssl = 0;
686 }
687
688
689 /*
690  * ssl_lock() callback for OpenSSL mutex locks
691  */
692 void ssl_lock(int mode, int n, const char *file, int line)
693 {
694         if (mode & CRYPTO_LOCK)
695                 pthread_mutex_lock(SSLCritters[n]);
696         else
697                 pthread_mutex_unlock(SSLCritters[n]);
698 }
699 #endif                          /* HAVE_OPENSSL */