1 /* $Cambridge: exim/src/src/tls-openssl.c,v 1.14 2009/06/10 07:34:04 tom Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2007 */
8 /* See the file NOTICE for conditions of use and distribution. */
10 /* This module provides the TLS (aka SSL) support for Exim using the OpenSSL
11 library. It is #included into the tls.c file when that library is used. The
12 code herein is based on a patch that was originally contributed by Steve
13 Haslam. It was adapted from stunnel, a GPL program by Michal Trojnara.
15 No cryptographic code is included in Exim. All this module does is to call
16 functions from the OpenSSL library. */
21 #include <openssl/lhash.h>
22 #include <openssl/ssl.h>
23 #include <openssl/err.h>
24 #include <openssl/rand.h>
26 /* Structure for collecting random data for seeding. */
28 typedef struct randstuff {
33 /* Local static variables */
35 static BOOL verify_callback_called = FALSE;
36 static const uschar *sid_ctx = US"exim";
38 static SSL_CTX *ctx = NULL;
39 static SSL *ssl = NULL;
41 static char ssl_errstring[256];
43 static int ssl_session_timeout = 200;
44 static BOOL verify_optional = FALSE;
50 /*************************************************
52 *************************************************/
54 /* Called from lots of places when errors occur before actually starting to do
55 the TLS handshake, that is, while the session is still in clear. Always returns
56 DEFER for a server and FAIL for a client so that most calls can use "return
57 tls_error(...)" to do this processing and then give an appropriate return. A
58 single function is used for both server and client, because it is called from
59 some shared functions.
62 prefix text to include in the logged error
63 host NULL if setting up a server;
64 the connected host if setting up a client
65 msg error message or NULL if we should ask OpenSSL
67 Returns: OK/DEFER/FAIL
71 tls_error(uschar *prefix, host_item *host, uschar *msg)
75 ERR_error_string(ERR_get_error(), ssl_errstring);
81 uschar *conn_info = smtp_get_connection_info();
82 if (strncmp(conn_info, "SMTP ", 5) == 0)
84 log_write(0, LOG_MAIN, "TLS error on %s (%s): %s",
85 conn_info, prefix, msg);
90 log_write(0, LOG_MAIN, "TLS error on connection to %s [%s] (%s): %s",
91 host->name, host->address, prefix, msg);
98 /*************************************************
99 * Callback to generate RSA key *
100 *************************************************/
108 Returns: pointer to generated key
112 rsa_callback(SSL *s, int export, int keylength)
115 export = export; /* Shut picky compilers up */
116 DEBUG(D_tls) debug_printf("Generating %d bit RSA key...\n", keylength);
117 rsa_key = RSA_generate_key(keylength, RSA_F4, NULL, NULL);
120 ERR_error_string(ERR_get_error(), ssl_errstring);
121 log_write(0, LOG_MAIN|LOG_PANIC, "TLS error (RSA_generate_key): %s",
131 /*************************************************
132 * Callback for verification *
133 *************************************************/
135 /* The SSL library does certificate verification if set up to do so. This
136 callback has the current yes/no state is in "state". If verification succeeded,
137 we set up the tls_peerdn string. If verification failed, what happens depends
138 on whether the client is required to present a verifiable certificate or not.
140 If verification is optional, we change the state to yes, but still log the
141 verification error. For some reason (it really would help to have proper
142 documentation of OpenSSL), this callback function then gets called again, this
143 time with state = 1. In fact, that's useful, because we can set up the peerdn
144 value, but we must take care not to set the private verified flag on the second
147 Note: this function is not called if the client fails to present a certificate
148 when asked. We get here only if a certificate has been received. Handling of
149 optional verification for this case is done when requesting SSL to verify, by
150 setting SSL_VERIFY_FAIL_IF_NO_PEER_CERT in the non-optional case.
153 state current yes/no state as 1/0
154 x509ctx certificate information.
156 Returns: 1 if verified, 0 if not
160 verify_callback(int state, X509_STORE_CTX *x509ctx)
162 static uschar txt[256];
164 X509_NAME_oneline(X509_get_subject_name(x509ctx->current_cert),
165 CS txt, sizeof(txt));
169 log_write(0, LOG_MAIN, "SSL verify error: depth=%d error=%s cert=%s",
170 x509ctx->error_depth,
171 X509_verify_cert_error_string(x509ctx->error),
173 tls_certificate_verified = FALSE;
174 verify_callback_called = TRUE;
175 if (!verify_optional) return 0; /* reject */
176 DEBUG(D_tls) debug_printf("SSL verify failure overridden (host in "
177 "tls_try_verify_hosts)\n");
178 return 1; /* accept */
181 if (x509ctx->error_depth != 0)
183 DEBUG(D_tls) debug_printf("SSL verify ok: depth=%d cert=%s\n",
184 x509ctx->error_depth, txt);
188 DEBUG(D_tls) debug_printf("SSL%s peer: %s\n",
189 verify_callback_called? "" : " authenticated", txt);
193 if (!verify_callback_called) tls_certificate_verified = TRUE;
194 verify_callback_called = TRUE;
196 return 1; /* accept */
201 /*************************************************
202 * Information callback *
203 *************************************************/
205 /* The SSL library functions call this from time to time to indicate what they
206 are doing. We copy the string to the debugging output when the level is high
218 info_callback(SSL *s, int where, int ret)
222 DEBUG(D_tls) debug_printf("SSL info: %s\n", SSL_state_string_long(s));
227 /*************************************************
228 * Initialize for DH *
229 *************************************************/
231 /* If dhparam is set, expand it, and load up the parameters for DH encryption.
234 dhparam DH parameter file
235 host connected host, if client; NULL if server
237 Returns: TRUE if OK (nothing to set up, or setup worked)
241 init_dh(uschar *dhparam, host_item *host)
248 if (!expand_check(dhparam, US"tls_dhparam", &dhexpanded))
251 if (dhexpanded == NULL) return TRUE;
253 if ((bio = BIO_new_file(CS dhexpanded, "r")) == NULL)
255 tls_error(string_sprintf("could not read dhparams file %s", dhexpanded),
256 host, strerror(errno));
261 if ((dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL)) == NULL)
263 tls_error(string_sprintf("could not read dhparams file %s", dhexpanded),
269 SSL_CTX_set_tmp_dh(ctx, dh);
271 debug_printf("Diffie-Hellman initialized from %s with %d-bit key\n",
272 dhexpanded, 8*DH_size(dh));
284 /*************************************************
285 * Initialize for TLS *
286 *************************************************/
288 /* Called from both server and client code, to do preliminary initialization of
292 host connected host, if client; NULL if server
293 dhparam DH parameter file
294 certificate certificate file
295 privatekey private key
296 addr address if client; NULL if server (for some randomness)
298 Returns: OK/DEFER/FAIL
302 tls_init(host_item *host, uschar *dhparam, uschar *certificate,
303 uschar *privatekey, address_item *addr)
305 SSL_load_error_strings(); /* basic set up */
306 OpenSSL_add_ssl_algorithms();
308 /* Create a context */
310 ctx = SSL_CTX_new((host == NULL)?
311 SSLv23_server_method() : SSLv23_client_method());
313 if (ctx == NULL) return tls_error(US"SSL_CTX_new", host, NULL);
315 /* It turns out that we need to seed the random number generator this early in
316 order to get the full complement of ciphers to work. It took me roughly a day
317 of work to discover this by experiment.
319 On systems that have /dev/urandom, SSL may automatically seed itself from
320 there. Otherwise, we have to make something up as best we can. Double check
329 RAND_seed((uschar *)(&r), sizeof(r));
330 RAND_seed((uschar *)big_buffer, big_buffer_size);
331 if (addr != NULL) RAND_seed((uschar *)addr, sizeof(addr));
334 return tls_error(US"RAND_status", host,
335 "unable to seed random number generator");
338 /* Set up the information callback, which outputs if debugging is at a suitable
341 SSL_CTX_set_info_callback(ctx, (void (*)())info_callback);
343 /* The following patch was supplied by Robert Roselius */
345 #if OPENSSL_VERSION_NUMBER > 0x00906040L
346 /* Enable client-bug workaround.
347 Versions of OpenSSL as of 0.9.6d include a "CBC countermeasure" feature,
348 which causes problems with some clients (such as the Certicom SSL Plus
349 library used by Eudora). This option, SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS,
350 disables the coutermeasure allowing Eudora to connect.
351 Some poppers and MTAs use SSL_OP_ALL, which enables all such bug
353 /* XXX (Silently?) ignore failure here? XXX*/
355 if (!(SSL_CTX_set_options(ctx, SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)))
356 return tls_error(US"SSL_CTX_set_option", host, NULL);
359 /* Initialize with DH parameters if supplied */
361 if (!init_dh(dhparam, host)) return DEFER;
363 /* Set up certificate and key */
365 if (certificate != NULL)
368 if (!expand_check(certificate, US"tls_certificate", &expanded))
371 if (expanded != NULL)
373 DEBUG(D_tls) debug_printf("tls_certificate file %s\n", expanded);
374 if (!SSL_CTX_use_certificate_chain_file(ctx, CS expanded))
375 return tls_error(string_sprintf(
376 "SSL_CTX_use_certificate_chain_file file=%s", expanded), host, NULL);
379 if (privatekey != NULL &&
380 !expand_check(privatekey, US"tls_privatekey", &expanded))
383 /* If expansion was forced to fail, key_expanded will be NULL. If the result
384 of the expansion is an empty string, ignore it also, and assume the private
385 key is in the same file as the certificate. */
387 if (expanded != NULL && *expanded != 0)
389 DEBUG(D_tls) debug_printf("tls_privatekey file %s\n", expanded);
390 if (!SSL_CTX_use_PrivateKey_file(ctx, CS expanded, SSL_FILETYPE_PEM))
391 return tls_error(string_sprintf(
392 "SSL_CTX_use_PrivateKey_file file=%s", expanded), host, NULL);
396 /* Set up the RSA callback */
398 SSL_CTX_set_tmp_rsa_callback(ctx, rsa_callback);
400 /* Finally, set the timeout, and we are done */
402 SSL_CTX_set_timeout(ctx, ssl_session_timeout);
403 DEBUG(D_tls) debug_printf("Initialized TLS\n");
410 /*************************************************
411 * Get name of cipher in use *
412 *************************************************/
414 /* The answer is left in a static buffer, and tls_cipher is set to point
417 Argument: pointer to an SSL structure for the connection
422 construct_cipher_name(SSL *ssl)
424 static uschar cipherbuf[256];
429 switch (ssl->session->ssl_version)
447 c = SSL_get_current_cipher(ssl);
448 SSL_CIPHER_get_bits(c, &bits);
450 string_format(cipherbuf, sizeof(cipherbuf), "%s:%s:%u", ver,
451 SSL_CIPHER_get_name(c), bits);
452 tls_cipher = cipherbuf;
454 DEBUG(D_tls) debug_printf("Cipher: %s\n", cipherbuf);
461 /*************************************************
462 * Set up for verifying certificates *
463 *************************************************/
465 /* Called by both client and server startup
468 certs certs file or NULL
470 host NULL in a server; the remote host in a client
471 optional TRUE if called from a server for a host in tls_try_verify_hosts;
472 otherwise passed as FALSE
474 Returns: OK/DEFER/FAIL
478 setup_certs(uschar *certs, uschar *crl, host_item *host, BOOL optional)
480 uschar *expcerts, *expcrl;
482 if (!expand_check(certs, US"tls_verify_certificates", &expcerts))
485 if (expcerts != NULL)
488 if (!SSL_CTX_set_default_verify_paths(ctx))
489 return tls_error(US"SSL_CTX_set_default_verify_paths", host, NULL);
491 if (Ustat(expcerts, &statbuf) < 0)
493 log_write(0, LOG_MAIN|LOG_PANIC,
494 "failed to stat %s for certificates", expcerts);
500 if ((statbuf.st_mode & S_IFMT) == S_IFDIR)
501 { file = NULL; dir = expcerts; }
503 { file = expcerts; dir = NULL; }
505 /* If a certificate file is empty, the next function fails with an
506 unhelpful error message. If we skip it, we get the correct behaviour (no
507 certificates are recognized, but the error message is still misleading (it
508 says no certificate was supplied.) But this is better. */
510 if ((file == NULL || statbuf.st_size > 0) &&
511 !SSL_CTX_load_verify_locations(ctx, CS file, CS dir))
512 return tls_error(US"SSL_CTX_load_verify_locations", host, NULL);
516 SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CS file));
520 /* Handle a certificate revocation list. */
522 #if OPENSSL_VERSION_NUMBER > 0x00907000L
524 /* This bit of code is now the version supplied by Lars Mainka. (I have
525 * merely reformatted it into the Exim code style.)
527 * "From here I changed the code to add support for multiple crl's
528 * in pem format in one file or to support hashed directory entries in
529 * pem format instead of a file. This method now uses the library function
530 * X509_STORE_load_locations to add the CRL location to the SSL context.
531 * OpenSSL will then handle the verify against CA certs and CRLs by
532 * itself in the verify callback." */
534 if (!expand_check(crl, US"tls_crl", &expcrl)) return DEFER;
535 if (expcrl != NULL && *expcrl != 0)
537 struct stat statbufcrl;
538 if (Ustat(expcrl, &statbufcrl) < 0)
540 log_write(0, LOG_MAIN|LOG_PANIC,
541 "failed to stat %s for certificates revocation lists", expcrl);
546 /* is it a file or directory? */
548 X509_STORE *cvstore = SSL_CTX_get_cert_store(ctx);
549 if ((statbufcrl.st_mode & S_IFMT) == S_IFDIR)
553 DEBUG(D_tls) debug_printf("SSL CRL value is a directory %s\n", dir);
559 DEBUG(D_tls) debug_printf("SSL CRL value is a file %s\n", file);
561 if (X509_STORE_load_locations(cvstore, CS file, CS dir) == 0)
562 return tls_error(US"X509_STORE_load_locations", host, NULL);
564 /* setting the flags to check against the complete crl chain */
566 X509_STORE_set_flags(cvstore,
567 X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
571 #endif /* OPENSSL_VERSION_NUMBER > 0x00907000L */
573 /* If verification is optional, don't fail if no certificate */
575 SSL_CTX_set_verify(ctx,
576 SSL_VERIFY_PEER | (optional? 0 : SSL_VERIFY_FAIL_IF_NO_PEER_CERT),
585 /*************************************************
586 * Start a TLS session in a server *
587 *************************************************/
589 /* This is called when Exim is running as a server, after having received
590 the STARTTLS command. It must respond to that command, and then negotiate
594 require_ciphers allowed ciphers
595 ------------------------------------------------------
596 require_mac list of allowed MACs ) Not used
597 require_kx list of allowed key_exchange methods ) for
598 require_proto list of allowed protocols ) OpenSSL
599 ------------------------------------------------------
601 Returns: OK on success
602 DEFER for errors before the start of the negotiation
603 FAIL for errors during the negotation; the server can't
608 tls_server_start(uschar *require_ciphers, uschar *require_mac,
609 uschar *require_kx, uschar *require_proto)
614 /* Check for previous activation */
618 tls_error("STARTTLS received after TLS started", NULL, "");
619 smtp_printf("554 Already in TLS\r\n");
623 /* Initialize the SSL library. If it fails, it will already have logged
626 rc = tls_init(NULL, tls_dhparam, tls_certificate, tls_privatekey, NULL);
627 if (rc != OK) return rc;
629 if (!expand_check(require_ciphers, US"tls_require_ciphers", &expciphers))
632 /* In OpenSSL, cipher components are separated by hyphens. In GnuTLS, they
633 are separated by underscores. So that I can use either form in my tests, and
634 also for general convenience, we turn underscores into hyphens here. */
636 if (expciphers != NULL)
638 uschar *s = expciphers;
639 while (*s != 0) { if (*s == '_') *s = '-'; s++; }
640 DEBUG(D_tls) debug_printf("required ciphers: %s\n", expciphers);
641 if (!SSL_CTX_set_cipher_list(ctx, CS expciphers))
642 return tls_error(US"SSL_CTX_set_cipher_list", NULL, NULL);
645 /* If this is a host for which certificate verification is mandatory or
646 optional, set up appropriately. */
648 tls_certificate_verified = FALSE;
649 verify_callback_called = FALSE;
651 if (verify_check_host(&tls_verify_hosts) == OK)
653 rc = setup_certs(tls_verify_certificates, tls_crl, NULL, FALSE);
654 if (rc != OK) return rc;
655 verify_optional = FALSE;
657 else if (verify_check_host(&tls_try_verify_hosts) == OK)
659 rc = setup_certs(tls_verify_certificates, tls_crl, NULL, TRUE);
660 if (rc != OK) return rc;
661 verify_optional = TRUE;
664 /* Prepare for new connection */
666 if ((ssl = SSL_new(ctx)) == NULL) return tls_error(US"SSL_new", NULL, NULL);
669 /* Set context and tell client to go ahead, except in the case of TLS startup
670 on connection, where outputting anything now upsets the clients and tends to
671 make them disconnect. We need to have an explicit fflush() here, to force out
672 the response. Other smtp_printf() calls do not need it, because in non-TLS
673 mode, the fflush() happens when smtp_getc() is called. */
675 SSL_set_session_id_context(ssl, sid_ctx, Ustrlen(sid_ctx));
678 smtp_printf("220 TLS go ahead\r\n");
682 /* Now negotiate the TLS session. We put our own timer on it, since it seems
683 that the OpenSSL library doesn't. */
685 SSL_set_wfd(ssl, fileno(smtp_out));
686 SSL_set_rfd(ssl, fileno(smtp_in));
687 SSL_set_accept_state(ssl);
689 DEBUG(D_tls) debug_printf("Calling SSL_accept\n");
691 sigalrm_seen = FALSE;
692 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
693 rc = SSL_accept(ssl);
698 tls_error(US"SSL_accept", NULL, sigalrm_seen ? US"timed out" : NULL);
702 DEBUG(D_tls) debug_printf("SSL_accept was successful\n");
704 /* TLS has been set up. Adjust the input functions to read via TLS,
705 and initialize things. */
707 construct_cipher_name(ssl);
712 if (SSL_get_shared_ciphers(ssl, CS buf, sizeof(buf)) != NULL)
713 debug_printf("Shared ciphers: %s\n", buf);
717 ssl_xfer_buffer = store_malloc(ssl_xfer_buffer_size);
718 ssl_xfer_buffer_lwm = ssl_xfer_buffer_hwm = 0;
719 ssl_xfer_eof = ssl_xfer_error = 0;
721 receive_getc = tls_getc;
722 receive_ungetc = tls_ungetc;
723 receive_feof = tls_feof;
724 receive_ferror = tls_ferror;
725 receive_smtp_buffered = tls_smtp_buffered;
727 tls_active = fileno(smtp_out);
735 /*************************************************
736 * Start a TLS session in a client *
737 *************************************************/
739 /* Called from the smtp transport after STARTTLS has been accepted.
742 fd the fd of the connection
743 host connected host (for messages)
744 addr the first address
745 dhparam DH parameter file
746 certificate certificate file
747 privatekey private key file
748 verify_certs file for certificate verify
749 crl file containing CRL
750 require_ciphers list of allowed ciphers
751 ------------------------------------------------------
752 require_mac list of allowed MACs ) Not used
753 require_kx list of allowed key_exchange methods ) for
754 require_proto list of allowed protocols ) OpenSSL
755 ------------------------------------------------------
756 timeout startup timeout
758 Returns: OK on success
759 FAIL otherwise - note that tls_error() will not give DEFER
760 because this is not a server
764 tls_client_start(int fd, host_item *host, address_item *addr, uschar *dhparam,
765 uschar *certificate, uschar *privatekey, uschar *verify_certs, uschar *crl,
766 uschar *require_ciphers, uschar *require_mac, uschar *require_kx,
767 uschar *require_proto, int timeout)
769 static uschar txt[256];
774 rc = tls_init(host, dhparam, certificate, privatekey, addr);
775 if (rc != OK) return rc;
777 tls_certificate_verified = FALSE;
778 verify_callback_called = FALSE;
780 if (!expand_check(require_ciphers, US"tls_require_ciphers", &expciphers))
783 /* In OpenSSL, cipher components are separated by hyphens. In GnuTLS, they
784 are separated by underscores. So that I can use either form in my tests, and
785 also for general convenience, we turn underscores into hyphens here. */
787 if (expciphers != NULL)
789 uschar *s = expciphers;
790 while (*s != 0) { if (*s == '_') *s = '-'; s++; }
791 DEBUG(D_tls) debug_printf("required ciphers: %s\n", expciphers);
792 if (!SSL_CTX_set_cipher_list(ctx, CS expciphers))
793 return tls_error(US"SSL_CTX_set_cipher_list", host, NULL);
796 rc = setup_certs(verify_certs, crl, host, FALSE);
797 if (rc != OK) return rc;
799 if ((ssl = SSL_new(ctx)) == NULL) return tls_error(US"SSL_new", host, NULL);
800 SSL_set_session_id_context(ssl, sid_ctx, Ustrlen(sid_ctx));
802 SSL_set_connect_state(ssl);
804 /* There doesn't seem to be a built-in timeout on connection. */
806 DEBUG(D_tls) debug_printf("Calling SSL_connect\n");
807 sigalrm_seen = FALSE;
809 rc = SSL_connect(ssl);
813 return tls_error(US"SSL_connect", host, sigalrm_seen ? US"timed out" : NULL);
815 DEBUG(D_tls) debug_printf("SSL_connect succeeded\n");
817 server_cert = SSL_get_peer_certificate (ssl);
818 tls_peerdn = US X509_NAME_oneline(X509_get_subject_name(server_cert),
819 CS txt, sizeof(txt));
822 construct_cipher_name(ssl); /* Sets tls_cipher */
832 /*************************************************
833 * TLS version of getc *
834 *************************************************/
836 /* This gets the next byte from the TLS input buffer. If the buffer is empty,
837 it refills the buffer via the SSL reading function.
840 Returns: the next character or EOF
846 if (ssl_xfer_buffer_lwm >= ssl_xfer_buffer_hwm)
851 DEBUG(D_tls) debug_printf("Calling SSL_read(%lx, %lx, %u)\n", (long)ssl,
852 (long)ssl_xfer_buffer, ssl_xfer_buffer_size);
854 if (smtp_receive_timeout > 0) alarm(smtp_receive_timeout);
855 inbytes = SSL_read(ssl, CS ssl_xfer_buffer, ssl_xfer_buffer_size);
856 error = SSL_get_error(ssl, inbytes);
859 /* SSL_ERROR_ZERO_RETURN appears to mean that the SSL session has been
860 closed down, not that the socket itself has been closed down. Revert to
863 if (error == SSL_ERROR_ZERO_RETURN)
865 DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
867 receive_getc = smtp_getc;
868 receive_ungetc = smtp_ungetc;
869 receive_feof = smtp_feof;
870 receive_ferror = smtp_ferror;
871 receive_smtp_buffered = smtp_buffered;
882 /* Handle genuine errors */
884 else if (error != SSL_ERROR_NONE)
886 DEBUG(D_tls) debug_printf("Got SSL error %d\n", error);
891 dkim_exim_verify_feed(ssl_xfer_buffer, inbytes);
893 ssl_xfer_buffer_hwm = inbytes;
894 ssl_xfer_buffer_lwm = 0;
897 /* Something in the buffer; return next uschar */
899 return ssl_xfer_buffer[ssl_xfer_buffer_lwm++];
904 /*************************************************
905 * Read bytes from TLS channel *
906 *************************************************/
913 Returns: the number of bytes read
914 -1 after a failed read
918 tls_read(uschar *buff, size_t len)
923 DEBUG(D_tls) debug_printf("Calling SSL_read(%lx, %lx, %u)\n", (long)ssl,
924 (long)buff, (unsigned int)len);
926 inbytes = SSL_read(ssl, CS buff, len);
927 error = SSL_get_error(ssl, inbytes);
929 if (error == SSL_ERROR_ZERO_RETURN)
931 DEBUG(D_tls) debug_printf("Got SSL_ERROR_ZERO_RETURN\n");
934 else if (error != SSL_ERROR_NONE)
946 /*************************************************
947 * Write bytes down TLS channel *
948 *************************************************/
955 Returns: the number of bytes after a successful write,
956 -1 after a failed write
960 tls_write(const uschar *buff, size_t len)
966 DEBUG(D_tls) debug_printf("tls_do_write(%lx, %d)\n", (long)buff, left);
969 DEBUG(D_tls) debug_printf("SSL_write(SSL, %lx, %d)\n", (long)buff, left);
970 outbytes = SSL_write(ssl, CS buff, left);
971 error = SSL_get_error(ssl, outbytes);
972 DEBUG(D_tls) debug_printf("outbytes=%d error=%d\n", outbytes, error);
976 ERR_error_string(ERR_get_error(), ssl_errstring);
977 log_write(0, LOG_MAIN, "TLS error (SSL_write): %s", ssl_errstring);
985 case SSL_ERROR_ZERO_RETURN:
986 log_write(0, LOG_MAIN, "SSL channel closed on write");
990 log_write(0, LOG_MAIN, "SSL_write error %d", error);
999 /*************************************************
1000 * Close down a TLS session *
1001 *************************************************/
1003 /* This is also called from within a delivery subprocess forked from the
1004 daemon, to shut down the TLS library, without actually doing a shutdown (which
1005 would tamper with the SSL session in the parent process).
1007 Arguments: TRUE if SSL_shutdown is to be called
1012 tls_close(BOOL shutdown)
1014 if (tls_active < 0) return; /* TLS was not active */
1018 DEBUG(D_tls) debug_printf("tls_close(): shutting down SSL\n");
1028 /* End of tls-openssl.c */