summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/extra/m_ssl_openssl.cpp40
-rw-r--r--src/modules/m_spanningtree/handshaketimer.cpp4
2 files changed, 3 insertions, 41 deletions
diff --git a/src/modules/extra/m_ssl_openssl.cpp b/src/modules/extra/m_ssl_openssl.cpp
index e8f62eb1c..768973d0a 100644
--- a/src/modules/extra/m_ssl_openssl.cpp
+++ b/src/modules/extra/m_ssl_openssl.cpp
@@ -130,7 +130,9 @@ class ModuleSSLOpenSSL : public Module
SSL_library_init();
SSL_load_error_strings();
- /* Build our SSL context*/
+ /* Build our SSL contexts:
+ * NOTE: OpenSSL makes us have two contexts, one for servers and one for clients. ICK.
+ */
ctx = SSL_CTX_new( SSLv23_server_method() );
clictx = SSL_CTX_new( SSLv23_client_method() );
@@ -386,7 +388,6 @@ class ModuleSSLOpenSSL : public Module
virtual void OnRawSocketConnect(int fd)
{
- ServerInstance->Log(DEBUG,"ON RAW SOCKET CONNECT WITH FD %d", fd);
issl_session* session = &sessions[fd];
session->fd = fd;
@@ -396,8 +397,6 @@ class ModuleSSLOpenSSL : public Module
session->status = ISSL_NONE;
session->outbound = true;
- ServerInstance->Log(DEBUG,"Session: %08x", session->sess);
-
if (session->sess == NULL)
return;
@@ -414,8 +413,6 @@ class ModuleSSLOpenSSL : public Module
{
CloseSession(&sessions[fd]);
- ServerInstance->Log(DEBUG,"SSL session close: %d", fd);
-
EventHandler* user = ServerInstance->SE->GetRef(fd);
if ((user) && (user->GetExt("ssl_cert", dummy)))
@@ -509,14 +506,11 @@ class ModuleSSLOpenSSL : public Module
if (!session->sess)
{
- ServerInstance->Log(DEBUG,"BUG: file descriptor %d doesn't have an SSL session attached!", fd);
CloseSession(session);
return -1;
}
session->outbuf.append(buffer, count);
-
- ServerInstance->Log(DEBUG,"Buffer now: %s", session->outbuf.c_str());
if (session->status == ISSL_HANDSHAKING)
{
@@ -527,7 +521,6 @@ class ModuleSSLOpenSSL : public Module
if (session->status == ISSL_OPEN)
{
- ServerInstance->Log(DEBUG,"Session is open, writing to it");
if (session->rstat == ISSL_WRITE)
DoRead(session);
@@ -540,7 +533,6 @@ class ModuleSSLOpenSSL : public Module
int DoWrite(issl_session* session)
{
- ServerInstance->Log(DEBUG,"DoWrite called");
if (!session->outbuf.size())
return -1;
@@ -548,7 +540,6 @@ class ModuleSSLOpenSSL : public Module
if (ret == 0)
{
- ServerInstance->Log(DEBUG,"SSL_write returned 0");
CloseSession(session);
return 0;
}
@@ -568,21 +559,6 @@ class ModuleSSLOpenSSL : public Module
}
else
{
- char errbuf[1024];
- ERR_print_errors_fp(stdout);
- if (err == SSL_ERROR_WANT_CONNECT)
- ServerInstance->Log(DEBUG,"Closing in DoWrite() due to error: SSL_ERROR_WANT_CONNECT");
- if (err == SSL_ERROR_WANT_ACCEPT)
- ServerInstance->Log(DEBUG,"Closing in DoWrite() due to error: SSL_ERROR_WANT_ACCEPT");
- if (err == SSL_ERROR_ZERO_RETURN)
- ServerInstance->Log(DEBUG,"Closing in DoWrite() due to error: SSL_ERROR_ZERO_RETURN");
- if (err == SSL_ERROR_WANT_X509_LOOKUP)
- ServerInstance->Log(DEBUG,"Closing in DoWrite() due to error: SSL_ERROR_WANT_X509_LOOKUP");
- if (err == SSL_ERROR_SSL)
- ServerInstance->Log(DEBUG,"Closing in DoWrite() due to error: SSL_ERROR_SSL: %s", ERR_error_string(err, errbuf));
- if (err == SSL_ERROR_SYSCALL)
- ServerInstance->Log(DEBUG,"Closing in DoWrite() due to error: SSL_ERROR_SYSCALL: %d %s", errno, strerror(errno));
-
CloseSession(session);
return 0;
}
@@ -680,7 +656,6 @@ class ModuleSSLOpenSSL : public Module
bool Handshake(issl_session* session)
{
- ServerInstance->Log(DEBUG,"Handshake()");
int ret;
if (session->outbound)
@@ -690,25 +665,21 @@ class ModuleSSLOpenSSL : public Module
if (ret < 0)
{
- ServerInstance->Log(DEBUG,"Handshake ret < 0");
int err = SSL_get_error(session->sess, ret);
if (err == SSL_ERROR_WANT_READ)
{
- ServerInstance->Log(DEBUG,"Handshake want read");
session->rstat = ISSL_READ;
session->status = ISSL_HANDSHAKING;
}
else if (err == SSL_ERROR_WANT_WRITE)
{
- ServerInstance->Log(DEBUG,"Handshake want write");
session->wstat = ISSL_WRITE;
session->status = ISSL_HANDSHAKING;
MakePollWrite(session);
}
else
{
- ServerInstance->Log(DEBUG,"Handshake other error");
CloseSession(session);
}
@@ -727,17 +698,12 @@ class ModuleSSLOpenSSL : public Module
session->status = ISSL_OPEN;
- ServerInstance->Log(DEBUG,"Handshake complete, returned %d", ret);
-
MakePollWrite(session);
return true;
}
else if (ret == 0)
{
- int err = SSL_get_error(session->sess, ret);
- ServerInstance->Log(DEBUG,"Handshake generic failure: %d", err);
- ERR_print_errors_fp(stdout);
CloseSession(session);
return true;
}
diff --git a/src/modules/m_spanningtree/handshaketimer.cpp b/src/modules/m_spanningtree/handshaketimer.cpp
index 150c9eecd..e0c471af7 100644
--- a/src/modules/m_spanningtree/handshaketimer.cpp
+++ b/src/modules/m_spanningtree/handshaketimer.cpp
@@ -26,13 +26,10 @@ HandshakeTimer::HandshakeTimer(InspIRCd* Inst, TreeSocket* s, Link* l, SpanningT
void HandshakeTimer::Tick(time_t TIME)
{
- Instance->Log(DEBUG,"Tick handshake timer.");
if (Instance->SE->GetRef(thefd) == sock)
{
- Instance->Log(DEBUG,"Socket still here");
if (sock->GetHook() && InspSocketHSCompleteRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send())
{
- Instance->Log(DEBUG,"request complete");
InspSocketAttachCertRequest(sock, (Module*)Utils->Creator, sock->GetHook()).Send();
sock->SendCapabilities();
if (sock->GetLinkState() == CONNECTING)
@@ -42,7 +39,6 @@ void HandshakeTimer::Tick(time_t TIME)
}
else
{
- Instance->Log(DEBUG,"Request not yet complete");
Instance->Timers->AddTimer(new HandshakeTimer(Instance, sock, lnk, Utils));
}
}