ssl_store_cert(): Declare a variable at the beginning of the the code block
[privoxy.git] / openssl.c
1 /*********************************************************************
2  *
3  * File        :  $Source: /cvsroot/ijbswa/current/openssl.c,v $
4  *
5  * Purpose     :  File with TLS/SSL extension. Contains methods for
6  *                creating, using and closing TLS/SSL connections.
7  *
8  * Copyright   :  Written by and Copyright (c) 2020 Maxim Antonov <mantonov@gmail.com>
9  *                Copyright (C) 2017 Vaclav Svec. FIT CVUT.
10  *                Copyright (C) 2018-2020 by Fabian Keil <fk@fabiankeil.de>
11  *
12  *                This program is free software; you can redistribute it
13  *                and/or modify it under the terms of the GNU General
14  *                Public License as published by the Free Software
15  *                Foundation; either version 2 of the License, or (at
16  *                your option) any later version.
17  *
18  *                This program is distributed in the hope that it will
19  *                be useful, but WITHOUT ANY WARRANTY; without even the
20  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
21  *                PARTICULAR PURPOSE.  See the GNU General Public
22  *                License for more details.
23  *
24  *                The GNU General Public License should be included with
25  *                this file.  If not, you can view it at
26  *                http://www.gnu.org/copyleft/gpl.html
27  *                or write to the Free Software Foundation, Inc., 59
28  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29  *
30  *********************************************************************/
31
32 #include <string.h>
33 #include <unistd.h>
34
35 #include <openssl/bn.h>
36 #include <openssl/opensslv.h>
37 #include <openssl/pem.h>
38 #include <openssl/md5.h>
39 #include <openssl/x509v3.h>
40
41 #include "config.h"
42 #include "project.h"
43 #include "miscutil.h"
44 #include "errlog.h"
45 #include "encode.h"
46 #include "jcc.h"
47 #include "ssl.h"
48 #include "ssl_common.h"
49
50 /*
51  * Macros for openssl.c
52  */
53 #define CERTIFICATE_BASIC_CONSTRAINTS            "CA:FALSE"
54 #define CERTIFICATE_SUBJECT_KEY                  "hash"
55 #define CERTIFICATE_AUTHORITY_KEY                "keyid:always"
56 #define CERTIFICATE_ALT_NAME_PREFIX              "DNS:"
57 #define CERTIFICATE_VERSION                      2
58 #define VALID_DATETIME_FMT                       "%y%m%d%H%M%SZ"
59 #define VALID_DATETIME_BUFLEN                    16
60
61 static int generate_webpage_certificate(struct client_state *csp);
62 static void free_client_ssl_structures(struct client_state *csp);
63 static void free_server_ssl_structures(struct client_state *csp);
64 static int ssl_store_cert(struct client_state *csp, X509* crt);
65 static void log_ssl_errors(int debuglevel, const char* fmt, ...) __attribute__((format(printf, 2, 3)));
66
67 static int ssl_inited = 0;
68
69 #if OPENSSL_VERSION_NUMBER < 0x10100000L
70 #define X509_set1_notBefore X509_set_notBefore
71 #define X509_set1_notAfter X509_set_notAfter
72 #define X509_get0_serialNumber X509_get_serialNumber
73 #define X509_get0_notBefore X509_get_notBefore
74 #define X509_get0_notAfter X509_get_notAfter
75 #endif
76
77 /*********************************************************************
78  *
79  * Function    :  openssl_init
80  *
81  * Description :  Initializes OpenSSL library once
82  *
83  * Parameters  :  N/A
84  *
85  * Returns     :  N/A
86  *
87  *********************************************************************/
88 static void openssl_init(void)
89 {
90    if (ssl_inited == 0)
91    {
92       privoxy_mutex_lock(&ssl_init_mutex);
93       if (ssl_inited == 0)
94       {
95 #if OPENSSL_VERSION_NUMBER < 0x10100000L
96          SSL_library_init();
97 #else
98          OPENSSL_init_ssl(0, NULL);
99 #endif
100          SSL_load_error_strings();
101          OpenSSL_add_ssl_algorithms();
102          ssl_inited = 1;
103       }
104       privoxy_mutex_unlock(&ssl_init_mutex);
105    }
106 }
107
108
109 /*********************************************************************
110  *
111  * Function    :  is_ssl_pending
112  *
113  * Description :  Tests if there are some waiting data on ssl connection.
114  *                Only considers data that has actually been received
115  *                locally and ignores data that is still on the fly
116  *                or has not yet been sent by the remote end.
117  *
118  * Parameters  :
119  *          1  :  ssl_attr = SSL context to test
120  *
121  * Returns     :   0 => No data are pending
122  *                >0 => Pending data length
123  *
124  *********************************************************************/
125 extern size_t is_ssl_pending(struct ssl_attr *ssl_attr)
126 {
127    BIO *bio = ssl_attr->openssl_attr.bio;
128    if (bio == NULL)
129    {
130       return 0;
131    }
132
133    return (size_t)BIO_pending(bio);
134 }
135
136
137 /*********************************************************************
138  *
139  * Function    :  ssl_send_data
140  *
141  * Description :  Sends the content of buf (for n bytes) to given SSL
142  *                connection context.
143  *
144  * Parameters  :
145  *          1  :  ssl_attr = SSL context to send data to
146  *          2  :  buf = Pointer to data to be sent
147  *          3  :  len = Length of data to be sent to the SSL context
148  *
149  * Returns     :  Length of sent data or negative value on error.
150  *
151  *********************************************************************/
152 extern int ssl_send_data(struct ssl_attr *ssl_attr, const unsigned char *buf, size_t len)
153 {
154    BIO *bio = ssl_attr->openssl_attr.bio;
155    SSL *ssl;
156    int ret = 0;
157    int pos = 0; /* Position of unsent part in buffer */
158    int fd = -1;
159
160    if (len == 0)
161    {
162       return 0;
163    }
164
165    if (BIO_get_ssl(bio, &ssl) == 1)
166    {
167       fd = SSL_get_fd(ssl);
168    }
169
170    while (pos < len)
171    {
172       int send_len = (int)len - pos;
173
174       log_error(LOG_LEVEL_WRITING, "TLS on socket %d: %N",
175          fd, send_len, buf+pos);
176
177       /*
178        * Sending one part of the buffer
179        */
180       while ((ret = BIO_write(bio,
181          (const unsigned char *)(buf + pos),
182          send_len)) <= 0)
183       {
184          if (!BIO_should_retry(bio))
185          {
186             log_ssl_errors(LOG_LEVEL_ERROR,
187                "Sending data on socket %d over TLS/SSL failed", fd);
188             return -1;
189          }
190       }
191       /* Adding count of sent bytes to position in buffer */
192       pos = pos + ret;
193    }
194
195    return (int)len;
196 }
197
198
199 /*********************************************************************
200  *
201  * Function    :  ssl_recv_data
202  *
203  * Description :  Receives data from given SSL context and puts
204  *                it into buffer.
205  *
206  * Parameters  :
207  *          1  :  ssl_attr = SSL context to receive data from
208  *          2  :  buf = Pointer to buffer where data will be written
209  *          3  :  max_length = Maximum number of bytes to read
210  *
211  * Returns     :  Number of bytes read, 0 for EOF, or -1
212  *                on error.
213  *
214  *********************************************************************/
215 extern int ssl_recv_data(struct ssl_attr *ssl_attr, unsigned char *buf, size_t max_length)
216 {
217    BIO *bio = ssl_attr->openssl_attr.bio;
218    SSL *ssl;
219    int ret = 0;
220    int fd = -1;
221
222    memset(buf, 0, max_length);
223
224    /*
225     * Receiving data from SSL context into buffer
226     */
227    do
228    {
229       ret = BIO_read(bio, buf, (int)max_length);
230    } while (ret <= 0 && BIO_should_retry(bio));
231
232    if (ret < 0)
233    {
234       log_ssl_errors(LOG_LEVEL_ERROR,
235          "Receiving data on socket %d over TLS/SSL failed", fd);
236
237       return -1;
238    }
239
240    if (BIO_get_ssl(bio, &ssl) == 1)
241    {
242       fd = SSL_get_fd(ssl);
243    }
244
245    log_error(LOG_LEVEL_RECEIVED, "TLS from socket %d: %N",
246       fd, ret, buf);
247
248    return ret;
249 }
250
251
252 /*********************************************************************
253  *
254  * Function    :  ssl_store_cert
255  *
256  * Description : This function is called once for each certificate in the
257  *               server's certificate trusted chain and prepares
258  *               information about the certificate. The information can
259  *               be used to inform the user about invalid certificates.
260  *
261  * Parameters  :
262  *          1  :  csp = Current client state (buffers, headers, etc...)
263  *          2  :  crt = certificate from trusted chain
264  *
265  * Returns     :  0 on success and negative value on error
266  *
267  *********************************************************************/
268 static int ssl_store_cert(struct client_state *csp, X509* crt)
269 {
270    long len = 0;
271    struct certs_chain  *last = &(csp->server_certs_chain);
272    int ret = 0;
273    BIO *bio = BIO_new(BIO_s_mem());
274    EVP_PKEY *pkey = NULL;
275    char *bio_mem_data = 0;
276    char *encoded_text;
277    long l;
278    const ASN1_INTEGER *bs;
279 #if OPENSSL_VERSION_NUMBER > 0x10100000L
280    const X509_ALGOR *tsig_alg;
281 #endif
282    int loc;
283
284    if (!bio)
285    {
286       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_new_mem_buf() failed");
287       return -1;
288    }
289
290    /*
291     * Searching for last item in certificates linked list
292     */
293    while (last->next != NULL)
294    {
295       last = last->next;
296    }
297
298    /*
299     * Preparing next item in linked list for next certificate
300     */
301    last->next = malloc_or_die(sizeof(struct certs_chain));
302    last->next->next = NULL;
303    memset(last->next->info_buf, 0, sizeof(last->next->info_buf));
304    memset(last->next->file_buf, 0, sizeof(last->next->file_buf));
305
306    /*
307     * Saving certificate file into buffer
308     */
309    if (!PEM_write_bio_X509(bio, crt))
310    {
311       log_ssl_errors(LOG_LEVEL_ERROR, "PEM_write_X509() failed");
312       ret = -1;
313       goto exit;
314    }
315
316    len = BIO_get_mem_data(bio, &bio_mem_data);
317
318    if (len > (sizeof(last->file_buf) - 1))
319    {
320       log_error(LOG_LEVEL_ERROR,
321          "X509 PEM cert len %ld is larger than buffer len %lu",
322          len, sizeof(last->file_buf) - 1);
323       len = sizeof(last->file_buf) - 1;
324    }
325
326    strncpy(last->file_buf, bio_mem_data, (size_t)len);
327    BIO_free(bio);
328    bio = BIO_new(BIO_s_mem());
329    if (!bio)
330    {
331       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_new_mem_buf() failed");
332       ret = -1;
333       goto exit;
334    }
335
336    /*
337     * Saving certificate information into buffer
338     */
339    l = X509_get_version(crt);
340    if (l >= 0 && l <= 2)
341    {
342       if (BIO_printf(bio, "cert. version     : %ld\n", l + 1) <= 0)
343       {
344          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for version failed");
345          ret = -1;
346          goto exit;
347       }
348    }
349    else
350    {
351       if (BIO_printf(bio, "cert. version     : Unknown (%ld)\n", l) <= 0)
352       {
353          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for version failed");
354          ret = -1;
355          goto exit;
356       }
357    }
358
359    if (BIO_puts(bio, "serial number     : ") <= 0)
360    {
361       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for serial failed");
362       ret = -1;
363       goto exit;
364    }
365    bs = X509_get0_serialNumber(crt);
366    if (bs->length <= (int)sizeof(long))
367    {
368       ERR_set_mark();
369       l = ASN1_INTEGER_get(bs);
370       ERR_pop_to_mark();
371    }
372    else
373    {
374       l = -1;
375    }
376    if (l != -1)
377    {
378       unsigned long ul;
379       const char *neg;
380       if (bs->type == V_ASN1_NEG_INTEGER)
381       {
382          ul = 0 - (unsigned long)l;
383          neg = "-";
384       }
385       else
386       {
387          ul = (unsigned long)l;
388          neg = "";
389       }
390       if (BIO_printf(bio, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0)
391       {
392          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for serial failed");
393          ret = -1;
394          goto exit;
395       }
396    }
397    else
398    {
399       int i;
400       if (bs->type == V_ASN1_NEG_INTEGER)
401       {
402          if (BIO_puts(bio, " (Negative)") < 0)
403          {
404             log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for serial failed");
405             ret = -1;
406             goto exit;
407          }
408       }
409       for (i = 0; i < bs->length; i++)
410       {
411          if (BIO_printf(bio, "%02x%c", bs->data[i],
412                ((i + 1 == bs->length) ? '\n' : ':')) <= 0)
413          {
414             log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for serial failed");
415             ret = -1;
416             goto exit;
417          }
418       }
419    }
420
421    if (BIO_puts(bio, "issuer name       : ") <= 0)
422    {
423       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for issuer failed");
424       ret = -1;
425       goto exit;
426    }
427    if (X509_NAME_print_ex(bio, X509_get_issuer_name(crt), 0, 0) < 0)
428    {
429       log_ssl_errors(LOG_LEVEL_ERROR, "X509_NAME_print_ex() for issuer failed");
430       ret = -1;
431       goto exit;
432    }
433
434    if (BIO_puts(bio, "\nsubject name      : ") <= 0)
435    {
436       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for subject failed");
437       ret = -1;
438       goto exit;
439    }
440    if (X509_NAME_print_ex(bio, X509_get_subject_name(crt), 0, 0) < 0) {
441       log_ssl_errors(LOG_LEVEL_ERROR, "X509_NAME_print_ex() for subject failed");
442       ret = -1;
443       goto exit;
444    }
445
446    if (BIO_puts(bio, "\nissued  on        : ") <= 0)
447    {
448       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for issued on failed");
449       ret = -1;
450       goto exit;
451    }
452    if (!ASN1_TIME_print(bio, X509_get0_notBefore(crt)))
453    {
454       log_ssl_errors(LOG_LEVEL_ERROR, "ASN1_TIME_print() for issued on failed");
455       ret = -1;
456       goto exit;
457    }
458
459    if (BIO_puts(bio, "\nexpires on        : ") <= 0)
460    {
461       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for expires on failed");
462       ret = -1;
463       goto exit;
464    }
465    if (!ASN1_TIME_print(bio, X509_get0_notAfter(crt)))
466    {
467       log_ssl_errors(LOG_LEVEL_ERROR, "ASN1_TIME_print() for expires on failed");
468       ret = -1;
469       goto exit;
470    }
471
472 #if OPENSSL_VERSION_NUMBER > 0x10100000L
473    if (BIO_puts(bio, "\nsigned using      : ") <= 0)
474    {
475       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_puts() for signed using failed");
476       ret = -1;
477       goto exit;
478    }
479    tsig_alg = X509_get0_tbs_sigalg(crt);
480    if (!i2a_ASN1_OBJECT(bio, tsig_alg->algorithm))
481    {
482       log_ssl_errors(LOG_LEVEL_ERROR, "i2a_ASN1_OBJECT() for signed using failed");
483       ret = -1;
484       goto exit;
485    }
486 #endif
487    pkey = X509_get_pubkey(crt);
488    if (!pkey)
489    {
490       log_ssl_errors(LOG_LEVEL_ERROR, "X509_get_pubkey() failed");
491       ret = -1;
492       goto exit;
493    }
494 #define BC              "18"
495    switch (EVP_PKEY_base_id(pkey))
496    {
497       case EVP_PKEY_RSA:
498          ret = BIO_printf(bio, "\n%-" BC "s: %d bits", "RSA key size", EVP_PKEY_bits(pkey));
499          break;
500       case EVP_PKEY_DSA:
501          ret = BIO_printf(bio, "\n%-" BC "s: %d bits", "DSA key size", EVP_PKEY_bits(pkey));
502          break;
503       default:
504          ret = BIO_printf(bio, "\n%-" BC "s: %d bits", "non-RSA/DSA key size", EVP_PKEY_bits(pkey));
505          break;
506    }
507    if (ret <= 0)
508    {
509       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for key size failed");
510       ret = -1;
511       goto exit;
512    }
513
514    loc = X509_get_ext_by_NID(crt, NID_basic_constraints, -1);
515    if (loc != -1)
516    {
517       X509_EXTENSION *ex = X509_get_ext(crt, loc);
518       if (BIO_puts(bio, "\nbasic constraints : ") <= 0)
519       {
520          log_ssl_errors(LOG_LEVEL_ERROR,
521             "BIO_printf() for basic constraints failed");
522          ret = -1;
523          goto exit;
524       }
525       if (!X509V3_EXT_print(bio, ex, 0, 0))
526       {
527          if (!ASN1_STRING_print_ex(bio, X509_EXTENSION_get_data(ex), ASN1_STRFLGS_RFC2253))
528          {
529             log_ssl_errors(LOG_LEVEL_ERROR,
530                "ASN1_STRING_print_ex() for basic constraints failed");
531             ret = -1;
532             goto exit;
533          }
534       }
535    }
536
537    loc = X509_get_ext_by_NID(crt, NID_subject_alt_name, -1);
538    if (loc != -1)
539    {
540       X509_EXTENSION *ex = X509_get_ext(crt, loc);
541       if (BIO_puts(bio, "\nsubject alt name  : ") <= 0)
542       {
543          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for alt name failed");
544          ret = -1;
545          goto exit;
546       }
547       if (!X509V3_EXT_print(bio, ex, 0, 0))
548       {
549          if (!ASN1_STRING_print_ex(bio, X509_EXTENSION_get_data(ex),
550                ASN1_STRFLGS_RFC2253))
551          {
552             log_ssl_errors(LOG_LEVEL_ERROR,
553                "ASN1_STRING_print_ex() for alt name failed");
554             ret = -1;
555             goto exit;
556          }
557       }
558    }
559
560    loc = X509_get_ext_by_NID(crt, NID_netscape_cert_type, -1);
561    if (loc != -1)
562    {
563       X509_EXTENSION *ex = X509_get_ext(crt, loc);
564       if (BIO_puts(bio, "\ncert. type        : ") <= 0)
565       {
566          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for cert type failed");
567          ret = -1;
568          goto exit;
569       }
570       if (!X509V3_EXT_print(bio, ex, 0, 0))
571       {
572          if (!ASN1_STRING_print_ex(bio, X509_EXTENSION_get_data(ex),
573                ASN1_STRFLGS_RFC2253))
574          {
575             log_ssl_errors(LOG_LEVEL_ERROR,
576                "ASN1_STRING_print_ex() for cert type failed");
577             ret = -1;
578             goto exit;
579          }
580       }
581    }
582
583    loc = X509_get_ext_by_NID(crt, NID_key_usage, -1);
584    if (loc != -1)
585    {
586       X509_EXTENSION *ex = X509_get_ext(crt, loc);
587       if (BIO_puts(bio, "\nkey usage         : ") <= 0)
588       {
589          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for key usage failed");
590          ret = -1;
591          goto exit;
592       }
593       if (!X509V3_EXT_print(bio, ex, 0, 0))
594       {
595          if (!ASN1_STRING_print_ex(bio, X509_EXTENSION_get_data(ex),
596                ASN1_STRFLGS_RFC2253))
597          {
598             log_ssl_errors(LOG_LEVEL_ERROR,
599                "ASN1_STRING_print_ex() for key usage failed");
600             ret = -1;
601             goto exit;
602          }
603       }
604    }
605
606    loc = X509_get_ext_by_NID(crt, NID_ext_key_usage, -1);
607    if (loc != -1) {
608       X509_EXTENSION *ex = X509_get_ext(crt, loc);
609       if (BIO_puts(bio, "\next key usage     : ") <= 0)
610       {
611          log_ssl_errors(LOG_LEVEL_ERROR,
612             "BIO_printf() for ext key usage failed");
613          ret = -1;
614          goto exit;
615       }
616       if (!X509V3_EXT_print(bio, ex, 0, 0))
617       {
618          if (!ASN1_STRING_print_ex(bio, X509_EXTENSION_get_data(ex),
619                ASN1_STRFLGS_RFC2253))
620          {
621             log_ssl_errors(LOG_LEVEL_ERROR,
622                "ASN1_STRING_print_ex() for ext key usage failed");
623             ret = -1;
624             goto exit;
625          }
626       }
627    }
628
629    loc = X509_get_ext_by_NID(crt, NID_certificate_policies, -1);
630    if (loc != -1)
631    {
632       X509_EXTENSION *ex = X509_get_ext(crt, loc);
633       if (BIO_puts(bio, "\ncertificate policies : ") <= 0)
634       {
635          log_ssl_errors(LOG_LEVEL_ERROR, "BIO_printf() for certificate policies failed");
636          ret = -1;
637          goto exit;
638       }
639       if (!X509V3_EXT_print(bio, ex, 0, 0))
640       {
641          if (!ASN1_STRING_print_ex(bio, X509_EXTENSION_get_data(ex),
642                ASN1_STRFLGS_RFC2253))
643          {
644             log_ssl_errors(LOG_LEVEL_ERROR,
645                "ASN1_STRING_print_ex() for certificate policies failed");
646             ret = -1;
647             goto exit;
648          }
649       }
650    }
651
652    /* make valgrind happy */
653    static const char zero = 0;
654    BIO_write(bio, &zero, 1);
655
656    len = BIO_get_mem_data(bio, &bio_mem_data);
657    encoded_text = html_encode(bio_mem_data);
658    if (encoded_text == NULL)
659    {
660       log_error(LOG_LEVEL_ERROR,
661          "Failed to HTML-encode the certificate information");
662       ret = -1;
663       goto exit;
664    }
665
666    strlcpy(last->info_buf, encoded_text, sizeof(last->info_buf));
667    freez(encoded_text);
668    ret = 0;
669
670 exit:
671    if (bio)
672    {
673       BIO_free(bio);
674    }
675    if (pkey)
676    {
677       EVP_PKEY_free(pkey);
678    }
679    return ret;
680 }
681
682
683 /*********************************************************************
684  *
685  * Function    :  host_to_hash
686  *
687  * Description :  Creates MD5 hash from host name. Host name is loaded
688  *                from structure csp and saved again into it.
689  *
690  * Parameters  :
691  *          1  :  csp = Current client state (buffers, headers, etc...)
692  *
693  * Returns     :  1 => Error while creating hash
694  *                0 => Hash created successfully
695  *
696  *********************************************************************/
697 static int host_to_hash(struct client_state *csp)
698 {
699    int ret = 0;
700
701    memset(csp->http->hash_of_host, 0, sizeof(csp->http->hash_of_host));
702    MD5((unsigned char *)csp->http->host, strlen(csp->http->host),
703       csp->http->hash_of_host);
704
705    /* Converting hash into string with hex */
706    size_t i = 0;
707    for (; i < 16; i++)
708    {
709       if ((ret = sprintf((char *)csp->http->hash_of_host_hex + 2 * i, "%02x",
710          csp->http->hash_of_host[i])) < 0)
711       {
712          log_error(LOG_LEVEL_ERROR, "Sprintf return value: %d", ret);
713          return -1;
714       }
715    }
716
717    return 0;
718 }
719
720
721 /*********************************************************************
722  *
723  * Function    :  create_client_ssl_connection
724  *
725  * Description :  Creates TLS/SSL secured connection with client
726  *
727  * Parameters  :
728  *          1  :  csp = Current client state (buffers, headers, etc...)
729  *
730  * Returns     :  0 on success, negative value if connection wasn't created
731  *                successfully.
732  *
733  *********************************************************************/
734 extern int create_client_ssl_connection(struct client_state *csp)
735 {
736    struct ssl_attr *ssl_attr = &csp->ssl_client_attr;
737    /* Paths to certificates file and key file */
738    char *key_file  = NULL;
739    char *cert_file = NULL;
740    int ret = 0;
741    SSL *ssl;
742
743    /*
744     * Initializing OpenSSL structures for TLS/SSL connection
745     */
746    openssl_init();
747
748    /*
749     * Preparing hash of host for creating certificates
750     */
751    ret = host_to_hash(csp);
752    if (ret != 0)
753    {
754       log_error(LOG_LEVEL_ERROR, "Generating hash of host failed: %d", ret);
755       ret = -1;
756       goto exit;
757    }
758
759    /*
760     * Preparing paths to certificates files and key file
761     */
762    cert_file = make_certs_path(csp->config->certificate_directory,
763       (const char *)csp->http->hash_of_host_hex, CERT_FILE_TYPE);
764    key_file  = make_certs_path(csp->config->certificate_directory,
765       (const char *)csp->http->hash_of_host_hex, KEY_FILE_TYPE);
766
767    if (cert_file == NULL || key_file == NULL)
768    {
769       ret = -1;
770       goto exit;
771    }
772
773    /*
774     * Generating certificate for requested host. Mutex to prevent
775     * certificate and key inconsistence must be locked.
776     */
777    privoxy_mutex_lock(&certificate_mutex);
778
779    ret = generate_webpage_certificate(csp);
780    if (ret < 0)
781    {
782       log_error(LOG_LEVEL_ERROR,
783          "Generate_webpage_certificate failed: %d", ret);
784       privoxy_mutex_unlock(&certificate_mutex);
785       ret = -1;
786       goto exit;
787    }
788    privoxy_mutex_unlock(&certificate_mutex);
789
790    if (!(ssl_attr->openssl_attr.ctx = SSL_CTX_new(SSLv23_server_method())))
791    {
792       log_ssl_errors(LOG_LEVEL_ERROR, "Unable to create SSL context");
793       ret = -1;
794       goto exit;
795    }
796
797    /* Set the key and cert */
798    if (SSL_CTX_use_certificate_file(ssl_attr->openssl_attr.ctx,
799          cert_file, SSL_FILETYPE_PEM) != 1)
800    {
801       log_ssl_errors(LOG_LEVEL_ERROR,
802          "Loading webpage certificate %s failed", cert_file);
803       ret = -1;
804       goto exit;
805    }
806
807    if (SSL_CTX_use_PrivateKey_file(ssl_attr->openssl_attr.ctx,
808          key_file, SSL_FILETYPE_PEM) != 1)
809    {
810       log_ssl_errors(LOG_LEVEL_ERROR,
811          "Loading webpage certificate private key %s failed", key_file);
812       ret = -1;
813       goto exit;
814    }
815
816    SSL_CTX_set_options(ssl_attr->openssl_attr.ctx, SSL_OP_NO_SSLv3);
817
818    if (!(ssl_attr->openssl_attr.bio = BIO_new_ssl(ssl_attr->openssl_attr.ctx, 0)))
819    {
820       log_ssl_errors(LOG_LEVEL_ERROR, "Unable to create BIO structure");
821       ret = -1;
822       goto exit;
823    }
824
825    if (BIO_get_ssl(ssl_attr->openssl_attr.bio, &ssl) != 1)
826    {
827       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_get_ssl failed");
828       ret = -1;
829       goto exit;
830    }
831
832    if (!SSL_set_fd(ssl, csp->cfd))
833    {
834       log_ssl_errors(LOG_LEVEL_ERROR, "SSL_set_fd failed");
835       ret = -1;
836       goto exit;
837    }
838
839    if (csp->config->cipher_list != NULL)
840    {
841       if (!SSL_set_cipher_list(ssl, csp->config->cipher_list))
842       {
843          log_ssl_errors(LOG_LEVEL_ERROR,
844             "Setting the cipher list '%s' for the client connection failed",
845             csp->config->cipher_list);
846          ret = -1;
847          goto exit;
848       }
849    }
850
851    /*
852     *  Handshake with client
853     */
854    log_error(LOG_LEVEL_CONNECT,
855       "Performing the TLS/SSL handshake with client. Hash of host: %s",
856       csp->http->hash_of_host_hex);
857    if (BIO_do_handshake(ssl_attr->openssl_attr.bio) != 1)
858    {
859        log_ssl_errors(LOG_LEVEL_ERROR,
860           "The TLS/SSL handshake with the client failed");
861        ret = -1;
862        goto exit;
863    }
864
865    log_error(LOG_LEVEL_CONNECT, "Client successfully connected over TLS/SSL");
866    csp->ssl_with_client_is_opened = 1;
867    ret = 0;
868
869 exit:
870    /*
871     * Freeing allocated paths to files
872     */
873    freez(cert_file);
874    freez(key_file);
875
876    /* Freeing structures if connection wasn't created successfully */
877    if (ret < 0)
878    {
879       free_client_ssl_structures(csp);
880    }
881    return ret;
882 }
883
884
885 /*********************************************************************
886  *
887  * Function    :  close_client_ssl_connection
888  *
889  * Description :  Closes TLS/SSL connection with client. This function
890  *                checks if this connection is already created.
891  *
892  * Parameters  :
893  *          1  :  csp = Current client state (buffers, headers, etc...)
894  *
895  * Returns     :  N/A
896  *
897  *********************************************************************/
898 extern void close_client_ssl_connection(struct client_state *csp)
899 {
900    struct ssl_attr *ssl_attr = &csp->ssl_client_attr;
901    SSL *ssl;
902
903    if (csp->ssl_with_client_is_opened == 0)
904    {
905       return;
906    }
907
908    /*
909     * Notifying the peer that the connection is being closed.
910     */
911    BIO_ssl_shutdown(ssl_attr->openssl_attr.bio);
912    if (BIO_get_ssl(ssl_attr->openssl_attr.bio, &ssl) != 1)
913    {
914       log_ssl_errors(LOG_LEVEL_ERROR,
915          "BIO_get_ssl() failed in close_client_ssl_connection()");
916    }
917    else
918    {
919       /*
920        * Pretend we received a shutdown alert so
921        * the BIO_free_all() call later on returns
922        * quickly.
923        */
924       SSL_set_shutdown(ssl, SSL_RECEIVED_SHUTDOWN);
925    }
926    free_client_ssl_structures(csp);
927    csp->ssl_with_client_is_opened = 0;
928 }
929
930
931 /*********************************************************************
932  *
933  * Function    :  free_client_ssl_structures
934  *
935  * Description :  Frees structures used for SSL communication with
936  *                client.
937  *
938  * Parameters  :
939  *          1  :  csp = Current client state (buffers, headers, etc...)
940  *
941  * Returns     :  N/A
942  *
943  *********************************************************************/
944 static void free_client_ssl_structures(struct client_state *csp)
945 {
946    struct ssl_attr *ssl_attr = &csp->ssl_client_attr;
947
948    if (ssl_attr->openssl_attr.bio)
949    {
950       BIO_free_all(ssl_attr->openssl_attr.bio);
951    }
952    if (ssl_attr->openssl_attr.ctx)
953    {
954       SSL_CTX_free(ssl_attr->openssl_attr.ctx);
955    }
956 }
957
958
959 /*********************************************************************
960  *
961  * Function    :  close_server_ssl_connection
962  *
963  * Description :  Closes TLS/SSL connection with server. This function
964  *                checks if this connection is already opened.
965  *
966  * Parameters  :
967  *          1  :  csp = Current client state (buffers, headers, etc...)
968  *
969  * Returns     :  N/A
970  *
971  *********************************************************************/
972 extern void close_server_ssl_connection(struct client_state *csp)
973 {
974    struct ssl_attr *ssl_attr = &csp->ssl_server_attr;
975    SSL *ssl;
976
977    if (csp->ssl_with_server_is_opened == 0)
978    {
979       return;
980    }
981
982    /*
983    * Notifying the peer that the connection is being closed.
984    */
985    BIO_ssl_shutdown(ssl_attr->openssl_attr.bio);
986    if (BIO_get_ssl(ssl_attr->openssl_attr.bio, &ssl) != 1)
987    {
988       log_ssl_errors(LOG_LEVEL_ERROR,
989          "BIO_get_ssl() failed in close_server_ssl_connection()");
990    }
991    else
992    {
993       /*
994        * Pretend we received a shutdown alert so
995        * the BIO_free_all() call later on returns
996        * quickly.
997        */
998       SSL_set_shutdown(ssl, SSL_RECEIVED_SHUTDOWN);
999    }
1000    free_server_ssl_structures(csp);
1001    csp->ssl_with_server_is_opened = 0;
1002 }
1003
1004
1005 /*********************************************************************
1006  *
1007  * Function    :  create_server_ssl_connection
1008  *
1009  * Description :  Creates TLS/SSL secured connection with server.
1010  *
1011  * Parameters  :
1012  *          1  :  csp = Current client state (buffers, headers, etc...)
1013  *
1014  * Returns     :  0 on success, negative value if connection wasn't created
1015  *                successfully.
1016  *
1017  *********************************************************************/
1018 extern int create_server_ssl_connection(struct client_state *csp)
1019 {
1020    openssl_connection_attr *ssl_attrs = &csp->ssl_server_attr.openssl_attr;
1021    int ret = 0;
1022    char *trusted_cas_file = NULL;
1023    STACK_OF(X509) *chain;
1024    SSL *ssl;
1025
1026    csp->server_cert_verification_result = SSL_CERT_NOT_VERIFIED;
1027    csp->server_certs_chain.next = NULL;
1028
1029    /* Setting path to file with trusted CAs */
1030    trusted_cas_file = csp->config->trusted_cas_file;
1031
1032    ssl_attrs->ctx = SSL_CTX_new(SSLv23_method());
1033    if (!ssl_attrs->ctx)
1034    {
1035       log_ssl_errors(LOG_LEVEL_ERROR, "SSL context creation failed");
1036       ret = -1;
1037       goto exit;
1038    }
1039
1040    /*
1041     * Loading file with trusted CAs
1042     */
1043    if (!SSL_CTX_load_verify_locations(ssl_attrs->ctx, trusted_cas_file, NULL))
1044    {
1045       log_ssl_errors(LOG_LEVEL_ERROR, "Loading trusted CAs file %s failed",
1046          trusted_cas_file);
1047       ret = -1;
1048       goto exit;
1049    }
1050
1051    SSL_CTX_set_verify(ssl_attrs->ctx, SSL_VERIFY_NONE, NULL);
1052    SSL_CTX_set_options(ssl_attrs->ctx, SSL_OP_NO_SSLv3);
1053
1054    if (!(ssl_attrs->bio = BIO_new_ssl(ssl_attrs->ctx, 1)))
1055    {
1056       log_ssl_errors(LOG_LEVEL_ERROR, "Unable to create BIO structure");
1057       ret = -1;
1058       goto exit;
1059    }
1060
1061    if (BIO_get_ssl(ssl_attrs->bio, &ssl) != 1)
1062    {
1063       log_ssl_errors(LOG_LEVEL_ERROR, "BIO_get_ssl failed");
1064       ret = -1;
1065       goto exit;
1066    }
1067
1068    if (!SSL_set_fd(ssl, csp->server_connection.sfd))
1069    {
1070       log_ssl_errors(LOG_LEVEL_ERROR, "SSL_set_fd failed");
1071       ret = -1;
1072       goto exit;
1073    }
1074
1075    if (csp->config->cipher_list != NULL)
1076    {
1077       if (!SSL_set_cipher_list(ssl, csp->config->cipher_list))
1078       {
1079          log_ssl_errors(LOG_LEVEL_ERROR,
1080             "Setting the cipher list '%s' for the server connection failed",
1081             csp->config->cipher_list);
1082          ret = -1;
1083          goto exit;
1084       }
1085    }
1086
1087    /*
1088     * Set the hostname to check against the received server certificate
1089     */
1090 #if OPENSSL_VERSION_NUMBER > 0x10100000L
1091    if (!SSL_set1_host(ssl, csp->http->host))
1092    {
1093       log_ssl_errors(LOG_LEVEL_ERROR, "SSL_set1_host failed");
1094       ret = -1;
1095       goto exit;
1096    }
1097 #else
1098    if (host_is_ip_address(csp->http->host))
1099    {
1100       if (X509_VERIFY_PARAM_set1_ip_asc(ssl->param,  csp->http->host) != 1)
1101       {
1102          log_ssl_errors(LOG_LEVEL_ERROR,
1103             "X509_VERIFY_PARAM_set1_ip_asc() failed");
1104          ret = -1;
1105          goto exit;
1106       }
1107    }
1108    else
1109    {
1110       if (X509_VERIFY_PARAM_set1_host(ssl->param,  csp->http->host, 0) != 1)
1111       {
1112          log_ssl_errors(LOG_LEVEL_ERROR,
1113             "X509_VERIFY_PARAM_set1_host() failed");
1114          ret = -1;
1115          goto exit;
1116       }
1117    }
1118 #endif
1119    /* SNI extension */
1120    if (!SSL_set_tlsext_host_name(ssl, csp->http->host))
1121    {
1122       log_ssl_errors(LOG_LEVEL_ERROR, "SSL_set_tlsext_host_name failed");
1123       ret = -1;
1124       goto exit;
1125    }
1126
1127    /*
1128     * Handshake with server
1129     */
1130    log_error(LOG_LEVEL_CONNECT,
1131       "Performing the TLS/SSL handshake with the server");
1132
1133    if (BIO_do_handshake(ssl_attrs->bio) != 1)
1134    {
1135       log_ssl_errors(LOG_LEVEL_ERROR,
1136          "The TLS/SSL handshake with the server failed");
1137       ret = -1;
1138       goto exit;
1139    }
1140
1141    chain = SSL_get_peer_cert_chain(ssl);
1142    if (chain)
1143    {
1144       for (int i = 0; i < sk_X509_num(chain); i++)
1145       {
1146          if (ssl_store_cert(csp, sk_X509_value(chain, i)) != 0)
1147          {
1148             log_error(LOG_LEVEL_ERROR, "ssl_store_cert failed");
1149             ret = -1;
1150             goto exit;
1151          }
1152       }
1153    }
1154
1155    if (!csp->dont_verify_certificate)
1156    {
1157       long verify_result = SSL_get_verify_result(ssl);
1158       if (verify_result == X509_V_OK)
1159       {
1160          ret = 0;
1161          csp->server_cert_verification_result = SSL_CERT_VALID;
1162       }
1163       else
1164       {
1165          csp->server_cert_verification_result = verify_result;
1166          log_error(LOG_LEVEL_ERROR,
1167             "X509 certificate verification for %s failed: %s",
1168             csp->http->hostport, X509_verify_cert_error_string(verify_result));
1169          ret = -1;
1170          goto exit;
1171       }
1172    }
1173
1174    log_error(LOG_LEVEL_CONNECT, "Server successfully connected over TLS/SSL");
1175
1176    /*
1177     * Server certificate chain is valid, so we can clean
1178     * chain, because we will not send it to client.
1179     */
1180    free_certificate_chain(csp);
1181
1182    csp->ssl_with_server_is_opened = 1;
1183 exit:
1184    /* Freeing structures if connection wasn't created successfully */
1185    if (ret < 0)
1186    {
1187       free_server_ssl_structures(csp);
1188    }
1189
1190    return ret;
1191 }
1192
1193
1194 /*********************************************************************
1195  *
1196  * Function    :  free_server_ssl_structures
1197  *
1198  * Description :  Frees structures used for SSL communication with server
1199  *
1200  * Parameters  :
1201  *          1  :  csp = Current client state (buffers, headers, etc...)
1202  *
1203  * Returns     :  N/A
1204  *
1205  *********************************************************************/
1206 static void free_server_ssl_structures(struct client_state *csp)
1207 {
1208    struct ssl_attr *ssl_attr = &csp->ssl_server_attr;
1209
1210    if (ssl_attr->openssl_attr.bio)
1211    {
1212       BIO_free_all(ssl_attr->openssl_attr.bio);
1213    }
1214    if (ssl_attr->openssl_attr.ctx)
1215    {
1216       SSL_CTX_free(ssl_attr->openssl_attr.ctx);
1217    }
1218 }
1219
1220
1221 /*********************************************************************
1222  *
1223  * Function    :  log_ssl_errors
1224  *
1225  * Description :  Log SSL errors
1226  *
1227  * Parameters  :
1228  *          1  :  debuglevel = Debug level
1229  *          2  :  desc = Error description
1230  *
1231  * Returns     :  N/A
1232  *
1233  *********************************************************************/
1234 static void log_ssl_errors(int debuglevel, const char* fmt, ...)
1235 {
1236    unsigned long err_code;
1237    char prefix[ERROR_BUF_SIZE];
1238    va_list args;
1239    va_start(args, fmt);
1240    vsnprintf(prefix, sizeof(prefix), fmt, args);
1241    int reported = 0;
1242
1243    while ((err_code = ERR_get_error()))
1244    {
1245       char err_buf[ERROR_BUF_SIZE];
1246       reported = 1;
1247       ERR_error_string_n(err_code, err_buf, sizeof(err_buf));
1248       log_error(debuglevel, "%s: %s", prefix, err_buf);
1249    }
1250    va_end(args);
1251    /*
1252     * In case if called by mistake and there were
1253     * no TLS/SSL errors let's report it to the log.
1254     */
1255    if (!reported)
1256    {
1257       log_error(debuglevel, "%s: no TLS/SSL errors detected", prefix);
1258    }
1259 }
1260
1261
1262 /*********************************************************************
1263  *
1264  * Function    :  ssl_base64_encode
1265  *
1266  * Description :  Encode a buffer into base64 format.
1267  *
1268  * Parameters  :
1269  *          1  :  dst = Destination buffer
1270  *          2  :  dlen = Destination buffer length
1271  *          3  :  olen = Number of bytes written
1272  *          4  :  src = Source buffer
1273  *          5  :  slen = Amount of data to be encoded
1274  *
1275  * Returns     :  0 on success, error code othervise
1276  *
1277  *********************************************************************/
1278 extern int ssl_base64_encode(unsigned char *dst, size_t dlen, size_t *olen,
1279                              const unsigned char *src, size_t slen)
1280 {
1281    *olen = 4 * ((slen/3)  + ((slen%3) ? 1 : 0)) + 1;
1282    if (*olen < dlen)
1283    {
1284       return ENOBUFS;
1285    }
1286    *olen = (size_t)EVP_EncodeBlock(dst, src, (int)slen) + 1;
1287    return 0;
1288 }
1289
1290
1291 /*********************************************************************
1292  *
1293  * Function    :  close_file_stream
1294  *
1295  * Description :  Close file stream, report error on close error
1296  *
1297  * Parameters  :
1298  *          1  :  f = file stream to close
1299  *          2  :  path = path for error report
1300  *
1301  * Returns     :  N/A
1302  *
1303  *********************************************************************/
1304 static void close_file_stream(FILE *f, const char *path)
1305 {
1306    if (fclose(f) != 0)
1307    {
1308       log_error(LOG_LEVEL_ERROR,
1309          "Error closing file %s: %s", path, strerror(errno));
1310    }
1311 }
1312
1313
1314 /*********************************************************************
1315  *
1316  * Function    :  write_certificate
1317  *
1318  * Description :  Writes certificate into file.
1319  *
1320  * Parameters  :
1321  *          1  :  crt = certificate to write into file
1322  *          2  :  output_file = path to save certificate file
1323  *
1324  *                on error
1325  * Returns     :  1 on success success or negative value
1326  *
1327  *********************************************************************/
1328 static int write_certificate(X509 *crt, const char *output_file)
1329 {
1330    FILE *f = NULL;
1331    int ret = -1;
1332
1333    /*
1334     * Saving certificate into file
1335     */
1336    if ((f = fopen(output_file, "w")) == NULL)
1337    {
1338       log_error(LOG_LEVEL_ERROR, "Opening file %s to save certificate failed",
1339          output_file);
1340       return ret;
1341    }
1342
1343    ret = PEM_write_X509(f, crt);
1344    if (!ret)
1345    {
1346       log_ssl_errors(LOG_LEVEL_ERROR,
1347          "Writing certificate into file %s failed", output_file);
1348       ret = -1;
1349    }
1350
1351    close_file_stream(f, output_file);
1352
1353    return ret;
1354 }
1355
1356 /*********************************************************************
1357  *
1358  * Function    :  write_private_key
1359  *
1360  * Description :  Writes private key into file and copies saved
1361  *                content into given pointer to string. If function
1362  *                returns 0 for success, this copy must be freed by
1363  *                caller.
1364  *
1365  * Parameters  :
1366  *          1  :  key = key to write into file
1367  *          2  :  ret_buf = pointer to string with created key file content
1368  *          3  :  key_file_path = path where to save key file
1369  *
1370  * Returns     :  Length of written private key on success or negative value
1371  *                on error
1372  *
1373  *********************************************************************/
1374 static int write_private_key(EVP_PKEY *key, char **ret_buf,
1375                              const char *key_file_path)
1376 {
1377    size_t len = 0;                /* Length of created key    */
1378    FILE *f = NULL;                /* File to save certificate */
1379    int ret = 0;
1380    BIO *bio_mem = BIO_new(BIO_s_mem());
1381    char *bio_mem_data = 0;
1382
1383    if (bio_mem == NULL)
1384    {
1385       log_ssl_errors(LOG_LEVEL_ERROR, "write_private_key memory allocation failure");
1386       return -1;
1387    }
1388
1389    /*
1390     * Writing private key into PEM string
1391     */
1392    if (!PEM_write_bio_PrivateKey(bio_mem, key, NULL, NULL, 0, NULL, NULL))
1393    {
1394       log_ssl_errors(LOG_LEVEL_ERROR,
1395          "Writing private key into PEM string failed");
1396       ret = -1;
1397       goto exit;
1398    }
1399
1400    len = (size_t)BIO_get_mem_data(bio_mem, &bio_mem_data);
1401
1402    /* Initializing buffer for key file content */
1403    *ret_buf = zalloc_or_die(len + 1);
1404    (*ret_buf)[len] = 0;
1405
1406    strncpy(*ret_buf, bio_mem_data, len);
1407
1408    /*
1409     * Saving key into file
1410     */
1411    if ((f = fopen(key_file_path, "wb")) == NULL)
1412    {
1413       log_error(LOG_LEVEL_ERROR,
1414          "Opening file %s to save private key failed: %E",
1415          key_file_path);
1416       ret = -1;
1417       goto exit;
1418    }
1419
1420    if (fwrite(*ret_buf, 1, len, f) != len)
1421    {
1422       log_error(LOG_LEVEL_ERROR,
1423          "Writing private key into file %s failed",
1424          key_file_path);
1425       close_file_stream(f, key_file_path);
1426       ret = -1;
1427       goto exit;
1428    }
1429
1430    close_file_stream(f, key_file_path);
1431
1432 exit:
1433    BIO_free(bio_mem);
1434    if (ret < 0)
1435    {
1436       freez(*ret_buf);
1437       *ret_buf = NULL;
1438       return ret;
1439    }
1440    return (int)len;
1441 }
1442
1443
1444 /*********************************************************************
1445  *
1446  * Function    :  generate_key
1447  *
1448  * Description : Tests if private key for host saved in csp already
1449  *               exists.  If this file doesn't exists, a new key is
1450  *               generated and saved in a file. The generated key is also
1451  *               copied into given parameter key_buf, which must be then
1452  *               freed by caller. If file with key exists, key_buf
1453  *               contain NULL and no private key is generated.
1454  *
1455  * Parameters  :
1456  *          1  :  csp = Current client state (buffers, headers, etc...)
1457  *          2  :  key_buf = buffer to save new generated key
1458  *
1459  * Returns     :  -1 => Error while generating private key
1460  *                 0 => Key already exists
1461  *                >0 => Length of generated private key
1462  *
1463  *********************************************************************/
1464 static int generate_key(struct client_state *csp, char **key_buf)
1465 {
1466    int ret = 0;
1467    char* key_file_path = NULL;
1468    BIGNUM *exp = BN_new();
1469    RSA *rsa = RSA_new();
1470    EVP_PKEY *key = EVP_PKEY_new();
1471
1472    if (exp == NULL || rsa == NULL || key == NULL)
1473    {
1474       log_ssl_errors(LOG_LEVEL_ERROR, "RSA key memory allocation failure");
1475       ret = -1;
1476       goto exit;
1477    }
1478
1479    if (BN_set_word(exp, RSA_KEY_PUBLIC_EXPONENT) != 1)
1480    {
1481       log_ssl_errors(LOG_LEVEL_ERROR, "Setting RSA key exponent failed");
1482       ret = -1;
1483       goto exit;
1484    }
1485
1486    key_file_path = make_certs_path(csp->config->certificate_directory,
1487       (char *)csp->http->hash_of_host_hex, KEY_FILE_TYPE);
1488    if (key_file_path == NULL)
1489    {
1490       ret = -1;
1491       goto exit;
1492    }
1493
1494    /*
1495     * Test if key already exists. If so, we don't have to create it again.
1496     */
1497    if (file_exists(key_file_path) == 1)
1498    {
1499       ret = 0;
1500       goto exit;
1501    }
1502
1503    ret = RSA_generate_key_ex(rsa, RSA_KEYSIZE, exp, NULL);
1504    if (ret == 0)
1505    {
1506       log_ssl_errors(LOG_LEVEL_ERROR, "RSA key generation failure");
1507       ret = -1;
1508       goto exit;
1509    }
1510
1511    if (!EVP_PKEY_set1_RSA(key, rsa))
1512    {
1513       log_ssl_errors(LOG_LEVEL_ERROR,
1514          "Error assigning RSA key pair to PKEY structure");
1515       ret = -1;
1516       goto exit;
1517    }
1518
1519    /*
1520     * Exporting private key into file
1521     */
1522    if ((ret = write_private_key(key, key_buf, key_file_path)) < 0)
1523    {
1524       log_error(LOG_LEVEL_ERROR,
1525          "Writing private key into file %s failed", key_file_path);
1526       ret = -1;
1527       goto exit;
1528    }
1529
1530 exit:
1531    /*
1532     * Freeing used variables
1533     */
1534    if (exp)
1535    {
1536       BN_free(exp);
1537    }
1538    if (rsa)
1539    {
1540       RSA_free(rsa);
1541    }
1542    if (key)
1543    {
1544       EVP_PKEY_free(key);
1545    }
1546    freez(key_file_path);
1547
1548    return ret;
1549 }
1550
1551
1552 /*********************************************************************
1553  *
1554  * Function    :  ssl_certificate_load
1555  *
1556  * Description :  Loads certificate from file.
1557  *
1558  * Parameters  :
1559  *          1  :  cert_path = The certificate path to load
1560  *
1561  * Returns     :   NULL => error loading certificate,
1562  *                   pointer to certificate instance otherwise
1563  *
1564  *********************************************************************/
1565 static X509* ssl_certificate_load(const char *cert_path)
1566 {
1567    X509 *cert = NULL;
1568    FILE *cert_f = NULL;
1569
1570    if (!(cert_f = fopen(cert_path, "r")))
1571    {
1572       log_error(LOG_LEVEL_ERROR,
1573          "Error opening certificate file %s: %s", cert_path, strerror(errno));
1574       return NULL;
1575    }
1576
1577    if (!(cert = PEM_read_X509(cert_f, NULL, NULL, NULL)))
1578    {
1579       log_ssl_errors(LOG_LEVEL_ERROR,
1580          "Error reading certificate file %s", cert_path);
1581    }
1582
1583    close_file_stream(cert_f, cert_path);
1584    return cert;
1585 }
1586
1587
1588 /*********************************************************************
1589  *
1590  * Function    :  ssl_certificate_is_invalid
1591  *
1592  * Description :  Checks whether or not a certificate is valid.
1593  *                Currently only checks that the certificate can be
1594  *                parsed and that the "valid to" date is in the future.
1595  *
1596  * Parameters  :
1597  *          1  :  cert_file = The certificate to check
1598  *
1599  * Returns     :   0 => The certificate is valid.
1600  *                 1 => The certificate is invalid
1601  *
1602  *********************************************************************/
1603 static int ssl_certificate_is_invalid(const char *cert_file)
1604 {
1605    int ret;
1606
1607    X509 *cert = NULL;
1608
1609    if (!(cert = ssl_certificate_load(cert_file)))
1610    {
1611       log_ssl_errors(LOG_LEVEL_ERROR,
1612          "Error reading certificate file %s", cert_file);
1613       return 1;
1614    }
1615
1616    ret = X509_cmp_current_time(X509_get_notAfter(cert));
1617    if (ret == 0)
1618    {
1619       log_ssl_errors(LOG_LEVEL_ERROR,
1620          "Error checking certificate %s validity", cert_file);
1621       ret = -1;
1622    }
1623
1624    X509_free(cert);
1625
1626    return ret == -1 ? 1 : 0;
1627 }
1628
1629
1630 /*********************************************************************
1631  *
1632  * Function    :  set_x509_ext
1633  *
1634  * Description :  Sets the X509V3 extension data
1635  *
1636  * Parameters  :
1637  *          1  :  cert = The certificate to modify
1638  *          2  :  issuer = Issuer certificate
1639  *          3  :  nid = OpenSSL NID
1640  *          4  :  value = extension value
1641  *
1642  * Returns     :   0 => Error while setting extensuon data
1643  *                 1 => It worked
1644  *
1645  *********************************************************************/
1646 static int set_x509_ext(X509 *cert, X509 *issuer, int nid, char *value)
1647 {
1648    X509_EXTENSION *ext = NULL;
1649    X509V3_CTX ctx;
1650    int ret = 0;
1651
1652    X509V3_set_ctx(&ctx, issuer, cert, NULL, NULL, 0);
1653    ext = X509V3_EXT_conf_nid(NULL, &ctx, nid, value);
1654    if (!ext)
1655    {
1656       log_ssl_errors(LOG_LEVEL_ERROR, "X509V3_EXT_conf_nid failure");
1657       goto exit;
1658    }
1659
1660    if (!X509_add_ext(cert, ext, -1))
1661    {
1662       log_ssl_errors(LOG_LEVEL_ERROR, "X509_add_ext failure");
1663       goto exit;
1664    }
1665
1666    ret = 1;
1667 exit:
1668    if (ext)
1669    {
1670       X509_EXTENSION_free(ext);
1671    }
1672    return ret;
1673 }
1674
1675
1676 /*********************************************************************
1677  *
1678  * Function    :  set_subject_alternative_name
1679  *
1680  * Description :  Sets the Subject Alternative Name extension to a cert
1681  *
1682  * Parameters  :
1683  *          1  :  cert = The certificate to modify
1684  *          2  :  issuer = Issuer certificate
1685  *          3  :  hostname = The hostname to add
1686  *
1687  * Returns     :   0 => Error while creating certificate.
1688  *                 1 => It worked
1689  *
1690  *********************************************************************/
1691 static int set_subject_alternative_name(X509 *cert, X509 *issuer, const char *hostname)
1692 {
1693    size_t altname_len = strlen(hostname) + sizeof(CERTIFICATE_ALT_NAME_PREFIX);
1694    char alt_name_buf[altname_len];
1695
1696    snprintf(alt_name_buf, sizeof(alt_name_buf),
1697       CERTIFICATE_ALT_NAME_PREFIX"%s", hostname);
1698    return set_x509_ext(cert, issuer, NID_subject_alt_name, alt_name_buf);
1699 }
1700
1701
1702 /*********************************************************************
1703  *
1704  * Function    :  generate_webpage_certificate
1705  *
1706  * Description :  Creates certificate file in presetted directory.
1707  *                If certificate already exists, no other certificate
1708  *                will be created. Subject of certificate is named
1709  *                by csp->http->host from parameter. This function also
1710  *                triggers generating of private key for new certificate.
1711  *
1712  * Parameters  :
1713  *          1  :  csp = Current client state (buffers, headers, etc...)
1714  *
1715  * Returns     :  -1 => Error while creating certificate.
1716  *                 0 => Certificate already exists.
1717  *                 1 => Certificate created
1718  *
1719  *********************************************************************/
1720 static int generate_webpage_certificate(struct client_state *csp)
1721 {
1722    char *key_buf = NULL;    /* Buffer for created key */
1723    X509 *issuer_cert = NULL;
1724    X509 *cert = NULL;
1725    BIO *pk_bio = NULL;
1726    EVP_PKEY *loaded_subject_key = NULL;
1727    EVP_PKEY *loaded_issuer_key = NULL;
1728    X509_NAME *issuer_name;
1729    X509_NAME *subject_name = NULL;
1730    ASN1_TIME *asn_time = NULL;
1731    ASN1_INTEGER *serial = NULL;
1732    BIGNUM *serial_num = NULL;
1733
1734    int ret = 0;
1735    cert_options cert_opt;
1736    char cert_valid_from[VALID_DATETIME_BUFLEN];
1737    char cert_valid_to[VALID_DATETIME_BUFLEN];
1738
1739    /* Paths to keys and certificates needed to create certificate */
1740    cert_opt.issuer_key  = NULL;
1741    cert_opt.subject_key = NULL;
1742    cert_opt.issuer_crt  = NULL;
1743
1744    cert_opt.output_file = make_certs_path(csp->config->certificate_directory,
1745       (const char *)csp->http->hash_of_host_hex, CERT_FILE_TYPE);
1746    if (cert_opt.output_file == NULL)
1747    {
1748       return -1;
1749    }
1750
1751    cert_opt.subject_key = make_certs_path(csp->config->certificate_directory,
1752       (const char *)csp->http->hash_of_host_hex, KEY_FILE_TYPE);
1753    if (cert_opt.subject_key == NULL)
1754    {
1755       freez(cert_opt.output_file);
1756       return -1;
1757    }
1758
1759    if (file_exists(cert_opt.output_file) == 1)
1760    {
1761       /* The file exists, but is it valid? */
1762       if (ssl_certificate_is_invalid(cert_opt.output_file))
1763       {
1764          log_error(LOG_LEVEL_CONNECT,
1765             "Certificate %s is no longer valid. Removing it.",
1766             cert_opt.output_file);
1767          if (unlink(cert_opt.output_file))
1768          {
1769             log_error(LOG_LEVEL_ERROR, "Failed to unlink %s: %E",
1770                cert_opt.output_file);
1771
1772             freez(cert_opt.output_file);
1773             freez(cert_opt.subject_key);
1774
1775             return -1;
1776          }
1777          if (unlink(cert_opt.subject_key))
1778          {
1779             log_error(LOG_LEVEL_ERROR, "Failed to unlink %s: %E",
1780                cert_opt.subject_key);
1781
1782             freez(cert_opt.output_file);
1783             freez(cert_opt.subject_key);
1784
1785             return -1;
1786          }
1787       }
1788       else
1789       {
1790          freez(cert_opt.output_file);
1791          freez(cert_opt.subject_key);
1792
1793          return 0;
1794       }
1795    }
1796
1797    if (file_exists(cert_opt.output_file) == 0 &&
1798        file_exists(cert_opt.subject_key) == 1)
1799    {
1800       log_error(LOG_LEVEL_ERROR,
1801          "A website key already exists but there's no matching certificate. "
1802          "Removing %s before creating a new key and certificate.",
1803          cert_opt.subject_key);
1804       if (unlink(cert_opt.subject_key))
1805       {
1806          log_error(LOG_LEVEL_ERROR, "Failed to unlink %s: %E",
1807             cert_opt.subject_key);
1808
1809          freez(cert_opt.output_file);
1810          freez(cert_opt.subject_key);
1811
1812          return -1;
1813       }
1814    }
1815
1816    /*
1817     * Create key for requested host
1818     */
1819    int subject_key_len = generate_key(csp, &key_buf);
1820    if (subject_key_len < 0)
1821    {
1822       freez(cert_opt.output_file);
1823       freez(cert_opt.subject_key);
1824       log_error(LOG_LEVEL_ERROR, "Key generating failed");
1825       return -1;
1826    }
1827
1828    /*
1829     * Converting unsigned long serial number to char * serial number.
1830     * We must compute length of serial number in string + terminating null.
1831     */
1832    unsigned long certificate_serial = get_certificate_serial(csp);
1833    unsigned long certificate_serial_time = (unsigned long)time(NULL);
1834    int serial_num_size = snprintf(NULL, 0, "%lu%lu",
1835       certificate_serial_time, certificate_serial) + 1;
1836    if (serial_num_size <= 0)
1837    {
1838       serial_num_size = 1;
1839    }
1840
1841    char serial_num_text[serial_num_size];  /* Buffer for serial number */
1842    ret = snprintf(serial_num_text, (size_t)serial_num_size, "%lu%lu",
1843       certificate_serial_time, certificate_serial);
1844    if (ret < 0 || ret >= serial_num_size)
1845    {
1846       log_error(LOG_LEVEL_ERROR,
1847          "Converting certificate serial number into string failed");
1848       ret = -1;
1849       goto exit;
1850    }
1851
1852    /*
1853     * Preparing parameters for certificate
1854     */
1855    subject_name = X509_NAME_new();
1856    if (!subject_name)
1857    {
1858       log_ssl_errors(LOG_LEVEL_ERROR, "RSA key memory allocation failure");
1859       ret = -1;
1860       goto exit;
1861    }
1862
1863    if (!X509_NAME_add_entry_by_txt(subject_name, CERT_PARAM_COMMON_NAME_FCODE,
1864          MBSTRING_ASC, (void *)csp->http->host, -1, -1, 0))
1865    {
1866       log_ssl_errors(LOG_LEVEL_ERROR,
1867          "X509 subject name (code: %s, val: %s) error",
1868          CERT_PARAM_COMMON_NAME_FCODE, csp->http->host);
1869       ret = -1;
1870       goto exit;
1871    }
1872    if (!X509_NAME_add_entry_by_txt(subject_name, CERT_PARAM_ORGANIZATION_FCODE,
1873          MBSTRING_ASC, (void *)csp->http->host, -1, -1, 0))
1874    {
1875       log_ssl_errors(LOG_LEVEL_ERROR,
1876          "X509 subject name (code: %s, val: %s) error",
1877          CERT_PARAM_ORGANIZATION_FCODE, csp->http->host);
1878       ret = -1;
1879       goto exit;
1880    }
1881    if (!X509_NAME_add_entry_by_txt(subject_name, CERT_PARAM_ORG_UNIT_FCODE,
1882          MBSTRING_ASC, (void *)csp->http->host, -1, -1, 0))
1883    {
1884       log_ssl_errors(LOG_LEVEL_ERROR,
1885          "X509 subject name (code: %s, val: %s) error",
1886          CERT_PARAM_ORG_UNIT_FCODE, csp->http->host);
1887       ret = -1;
1888       goto exit;
1889    }
1890    if (!X509_NAME_add_entry_by_txt(subject_name, CERT_PARAM_COUNTRY_FCODE,
1891          MBSTRING_ASC, (void *)CERT_PARAM_COUNTRY_CODE, -1, -1, 0))
1892    {
1893       log_ssl_errors(LOG_LEVEL_ERROR,
1894          "X509 subject name (code: %s, val: %s) error",
1895          CERT_PARAM_COUNTRY_FCODE, csp->http->host);
1896       ret = -1;
1897       goto exit;
1898    }
1899
1900    cert_opt.issuer_crt = csp->config->ca_cert_file;
1901    cert_opt.issuer_key = csp->config->ca_key_file;
1902
1903    if (get_certificate_valid_from_date(cert_valid_from,
1904          sizeof(cert_valid_from), VALID_DATETIME_FMT)
1905     || get_certificate_valid_to_date(cert_valid_to,
1906          sizeof(cert_valid_to), VALID_DATETIME_FMT))
1907    {
1908       log_error(LOG_LEVEL_ERROR, "Generating one of the validity dates failed");
1909       ret = -1;
1910       goto exit;
1911    }
1912
1913    cert_opt.subject_pwd = CERT_SUBJECT_PASSWORD;
1914    cert_opt.issuer_pwd  = csp->config->ca_password;
1915    cert_opt.not_before  = cert_valid_from;
1916    cert_opt.not_after   = cert_valid_to;
1917    cert_opt.serial      = serial_num_text;
1918    cert_opt.max_pathlen = -1;
1919
1920    /*
1921     * Test if the private key was already created.
1922     * XXX: Can this still happen?
1923     */
1924    if (subject_key_len == 0)
1925    {
1926       log_error(LOG_LEVEL_ERROR, "Subject key was already created");
1927       ret = 0;
1928       goto exit;
1929    }
1930
1931    /*
1932     * Parse serial to MPI
1933     */
1934    serial_num = BN_new();
1935    if (!serial_num)
1936    {
1937       log_error(LOG_LEVEL_ERROR, "generate_webpage_certificate: memory error");
1938       ret = -1;
1939       goto exit;
1940    }
1941    if (!BN_dec2bn(&serial_num, cert_opt.serial))
1942    {
1943       log_ssl_errors(LOG_LEVEL_ERROR, "Failed to parse serial %s", cert_opt.serial);
1944       ret = -1;
1945       goto exit;
1946    }
1947
1948    if (!(serial = BN_to_ASN1_INTEGER(serial_num, NULL)))
1949    {
1950       log_ssl_errors(LOG_LEVEL_ERROR, "Failed to generate serial ASN1 representation");
1951       ret = -1;
1952       goto exit;
1953    }
1954
1955    /*
1956     * Loading certificates
1957     */
1958    if (!(issuer_cert = ssl_certificate_load(cert_opt.issuer_crt)))
1959    {
1960       log_error(LOG_LEVEL_ERROR, "Loading issuer certificate %s failed",
1961          cert_opt.issuer_crt);
1962       ret = -1;
1963       goto exit;
1964    }
1965
1966    issuer_name = X509_get_issuer_name(issuer_cert);
1967
1968    /*
1969     * Loading keys from file or from buffer
1970     */
1971    if (key_buf != NULL && subject_key_len > 0)
1972    {
1973       pk_bio = BIO_new_mem_buf(key_buf, subject_key_len);
1974    }
1975    else if (!(pk_bio = BIO_new_file(cert_opt.subject_key, "r")))
1976    {
1977       log_ssl_errors(LOG_LEVEL_ERROR,
1978          "Failure opening subject key %s BIO", cert_opt.subject_key);
1979       ret = -1;
1980       goto exit;
1981    }
1982
1983    loaded_subject_key = PEM_read_bio_PrivateKey(pk_bio, NULL, NULL,
1984       (void *)cert_opt.subject_pwd);
1985    if (!loaded_subject_key)
1986    {
1987       log_ssl_errors(LOG_LEVEL_ERROR, "Parsing subject key %s failed",
1988          cert_opt.subject_key);
1989       ret = -1;
1990       goto exit;
1991    }
1992
1993    if (!BIO_free(pk_bio))
1994    {
1995       log_ssl_errors(LOG_LEVEL_ERROR, "Error closing subject key BIO");
1996    }
1997
1998    if (!(pk_bio = BIO_new_file(cert_opt.issuer_key, "r")))
1999    {
2000       log_ssl_errors(LOG_LEVEL_ERROR, "Failure opening issuer key %s BIO",
2001          cert_opt.issuer_key);
2002       ret = -1;
2003       goto exit;
2004    }
2005
2006    loaded_issuer_key = PEM_read_bio_PrivateKey(pk_bio, NULL, NULL,
2007       (void *)cert_opt.issuer_pwd);
2008    if (!loaded_issuer_key)
2009    {
2010       log_ssl_errors(LOG_LEVEL_ERROR, "Parsing issuer key %s failed",
2011          cert_opt.subject_key);
2012       ret = -1;
2013       goto exit;
2014    }
2015
2016    cert = X509_new();
2017    if (!cert)
2018    {
2019       log_ssl_errors(LOG_LEVEL_ERROR, "Certificate allocation error");
2020       ret = -1;
2021       goto exit;
2022    }
2023
2024    if (!X509_set_version(cert, CERTIFICATE_VERSION))
2025    {
2026       log_ssl_errors(LOG_LEVEL_ERROR, "X509_set_version failed");
2027       ret = -1;
2028       goto exit;
2029    }
2030
2031    /*
2032     * Setting parameters of signed certificate
2033     */
2034    if (!X509_set_pubkey(cert, loaded_subject_key))
2035    {
2036       log_ssl_errors(LOG_LEVEL_ERROR,
2037          "Setting public key in signed certificate failed");
2038       ret = -1;
2039       goto exit;
2040    }
2041
2042    if (!X509_set_subject_name(cert, subject_name))
2043    {
2044       log_ssl_errors(LOG_LEVEL_ERROR,
2045          "Setting subject name in signed certificate failed");
2046       ret = -1;
2047       goto exit;
2048    }
2049
2050    if (!X509_set_issuer_name(cert, issuer_name))
2051    {
2052       log_ssl_errors(LOG_LEVEL_ERROR,
2053          "Setting issuer name in signed certificate failed");
2054       ret = -1;
2055       goto exit;
2056    }
2057
2058    if (!X509_set_serialNumber(cert, serial))
2059    {
2060       log_ssl_errors(LOG_LEVEL_ERROR,
2061          "Setting serial number in signed certificate failed");
2062       ret = -1;
2063       goto exit;
2064    }
2065
2066    asn_time = ASN1_TIME_new();
2067    if (!asn_time)
2068    {
2069       log_ssl_errors(LOG_LEVEL_ERROR, "ASN1 time memory allocation failure");
2070       ret = -1;
2071       goto exit;
2072    }
2073
2074    if (!ASN1_TIME_set_string(asn_time, cert_opt.not_after))
2075    {
2076       log_ssl_errors(LOG_LEVEL_ERROR, "ASN1 time [%s] encode error", cert_opt.not_after);
2077       ret = -1;
2078       goto exit;
2079    }
2080
2081    if (!X509_set1_notAfter(cert, asn_time))
2082    {
2083       log_ssl_errors(LOG_LEVEL_ERROR,
2084          "Setting valid not after in signed certificate failed");
2085       ret = -1;
2086       goto exit;
2087    }
2088
2089    if (!ASN1_TIME_set_string(asn_time, cert_opt.not_before))
2090    {
2091       log_ssl_errors(LOG_LEVEL_ERROR, "ASN1 time encode error");
2092       ret = -1;
2093       goto exit;
2094    }
2095
2096    if (!X509_set1_notBefore(cert, asn_time))
2097    {
2098       log_ssl_errors(LOG_LEVEL_ERROR,
2099          "Setting valid not before in signed certificate failed");
2100       ret = -1;
2101       goto exit;
2102    }
2103
2104    if (!set_x509_ext(cert, issuer_cert, NID_basic_constraints, CERTIFICATE_BASIC_CONSTRAINTS))
2105    {
2106       log_ssl_errors(LOG_LEVEL_ERROR, "Setting the basicConstraints extension "
2107          "in signed certificate failed");
2108       ret = -1;
2109       goto exit;
2110    }
2111
2112    if (!set_x509_ext(cert, issuer_cert, NID_subject_key_identifier, CERTIFICATE_SUBJECT_KEY))
2113    {
2114       log_ssl_errors(LOG_LEVEL_ERROR,
2115          "Setting the Subject Key Identifier extension failed");
2116       ret = -1;
2117       goto exit;
2118    }
2119
2120    if (!set_x509_ext(cert, issuer_cert, NID_authority_key_identifier, CERTIFICATE_AUTHORITY_KEY))
2121    {
2122       log_ssl_errors(LOG_LEVEL_ERROR,
2123          "Setting the Authority Key Identifier extension failed");
2124       ret = -1;
2125       goto exit;
2126    }
2127
2128    if (!host_is_ip_address(csp->http->host) &&
2129        !set_subject_alternative_name(cert, issuer_cert, csp->http->host))
2130    {
2131       log_ssl_errors(LOG_LEVEL_ERROR,
2132          "Setting the Subject Alt Name extension failed");
2133       ret = -1;
2134       goto exit;
2135    }
2136
2137    if (!X509_sign(cert, loaded_issuer_key, EVP_sha256()))
2138    {
2139       log_ssl_errors(LOG_LEVEL_ERROR, "Signing certificate failed");
2140       ret = -1;
2141       goto exit;
2142    }
2143
2144    /*
2145     * Writing certificate into file
2146     */
2147    if (write_certificate(cert, cert_opt.output_file) < 0)
2148    {
2149       log_error(LOG_LEVEL_ERROR, "Writing certificate into file failed");
2150       ret = -1;
2151       goto exit;
2152    }
2153
2154    ret = 1;
2155
2156 exit:
2157    /*
2158     * Freeing used structures
2159     */
2160    if (issuer_cert)
2161    {
2162       X509_free(issuer_cert);
2163    }
2164    if (cert)
2165    {
2166       X509_free(cert);
2167    }
2168    if (pk_bio && !BIO_free(pk_bio))
2169    {
2170       log_ssl_errors(LOG_LEVEL_ERROR, "Error closing pk BIO");
2171    }
2172    if (loaded_subject_key)
2173    {
2174       EVP_PKEY_free(loaded_subject_key);
2175    }
2176    if (loaded_issuer_key)
2177    {
2178       EVP_PKEY_free(loaded_issuer_key);
2179    }
2180    if (subject_name)
2181    {
2182       X509_NAME_free(subject_name);
2183    }
2184    if (asn_time)
2185    {
2186       ASN1_TIME_free(asn_time);
2187    }
2188    if (serial_num)
2189    {
2190       BN_free(serial_num);
2191    }
2192    if (serial)
2193    {
2194       ASN1_INTEGER_free(serial);
2195    }
2196    freez(cert_opt.subject_key);
2197    freez(cert_opt.output_file);
2198    freez(key_buf);
2199
2200    return ret;
2201 }
2202
2203
2204 /*********************************************************************
2205  *
2206  * Function    :  ssl_crt_verify_info
2207  *
2208  * Description :  Returns an informational string about the verification
2209  *                status of a certificate.
2210  *
2211  * Parameters  :
2212  *          1  :  buf = Buffer to write to
2213  *          2  :  size = Maximum size of buffer
2214  *          3  :  csp = client state
2215  *
2216  * Returns     :  N/A
2217  *
2218  *********************************************************************/
2219 extern void ssl_crt_verify_info(char *buf, size_t size, struct client_state *csp)
2220 {
2221    strncpy(buf, X509_verify_cert_error_string(csp->server_cert_verification_result), size);
2222    buf[size - 1] = 0;
2223 }
2224
2225
2226 /*********************************************************************
2227  *
2228  * Function    :  ssl_release
2229  *
2230  * Description :  Release all SSL resources
2231  *
2232  * Parameters  :
2233  *
2234  * Returns     :  N/A
2235  *
2236  *********************************************************************/
2237 extern void ssl_release(void)
2238 {
2239    if (ssl_inited == 1)
2240    {
2241 #ifndef OPENSSL_NO_COMP
2242       SSL_COMP_free_compression_methods();
2243 #endif
2244       CONF_modules_free();
2245       CONF_modules_unload(1);
2246 #ifndef OPENSSL_NO_COMP
2247       COMP_zlib_cleanup();
2248 #endif
2249
2250       ERR_free_strings();
2251       EVP_cleanup();
2252
2253       CRYPTO_cleanup_all_ex_data();
2254    }
2255 }
2256