/* These functions are declared in crypto.c but not exported. */
EVP_PKEY *_crypto_pk_env_get_evp_pkey(crypto_pk_env_t *env);
crypto_pk_env_t *_crypto_new_pk_env_rsa(RSA *rsa);
+char *crypto_perror();
+
+static void
+tls_log_error(int severity, char *doing)
+{
+ if (doing) {
+ log(severity, "TLS error while %s: %s", doing, crypto_perror());
+ } else {
+ log(severity, "TLS error: %s",crypto_perror());
+ }
+}
static int
tor_tls_get_error(tor_tls *tls, int r, int extra)
if (r > 0)
return r;
err = tor_tls_get_error(tls, r, 1);
- if (err == _TOR_TLS_SYSCALL)
+ if (err == _TOR_TLS_SYSCALL) {
+ tls_log_error(LOG_ERR, "reading");
return TOR_TLS_ERROR;
- else if (err == _TOR_TLS_ZERORETURN) {
+ } else if (err == _TOR_TLS_ZERORETURN) {
tls->state = TOR_TLS_ST_CLOSED;
return TOR_TLS_CLOSE;
} else {
assert(err != TOR_TLS_DONE);
+ tls_log_error(LOG_ERR, "reading");
return err;
}
}
if (err == TOR_TLS_DONE) {
return r;
} else {
+ if (err != TOR_TLS_WANTREAD && err != TOR_TLS_WANTWRITE)
+ tls_log_error(LOG_ERR, "writing");
return err;
}
}
r = tor_tls_get_error(tls,r,0);
if (r == TOR_TLS_DONE) {
tls->state = TOR_TLS_ST_OPEN;
+ } else if (r != TOR_TLS_WANTREAD && r != TOR_TLS_WANTWRITE) {
+ tls_log_error(LOG_ERR, "handshaking");
}
return r;
}
} else {
if (err == _TOR_TLS_SYSCALL)
err = TOR_TLS_ERROR;
+ if (err != TOR_TLS_WANTREAD && err != TOR_TLS_WANTWRITE)
+ tls_log_error(LOG_ERR, "shutting down");
return err;
}
}
tls->state = TOR_TLS_ST_SENTCLOSE;
/* fall through ... */
} else {
+ if (err != TOR_TLS_WANTREAD && err != TOR_TLS_WANTWRITE)
+ tls_log_error(LOG_ERR, "shutting down");
return err;
}
} /* end loop */