mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-30 20:06:38 +02:00
115 lines
3.2 KiB
C
115 lines
3.2 KiB
C
/*
|
|
* IRC - Internet Relay Chat, src/modules/m_starttls.c
|
|
* (C) 2009 Syzop & The UnrealIRCd Team
|
|
*
|
|
* See file AUTHORS in IRC package for additional names of
|
|
* the programmers.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 1, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include "unrealircd.h"
|
|
|
|
CMD_FUNC(m_starttls);
|
|
|
|
#define MSG_STARTTLS "STARTTLS"
|
|
|
|
ModuleHeader MOD_HEADER(m_starttls)
|
|
= {
|
|
"m_starttls",
|
|
"4.0",
|
|
"command /starttls",
|
|
"3.2-b8-1",
|
|
NULL
|
|
};
|
|
|
|
MOD_INIT(m_starttls)
|
|
{
|
|
ClientCapability cap;
|
|
|
|
MARK_AS_OFFICIAL_MODULE(modinfo);
|
|
CommandAdd(modinfo->handle, MSG_STARTTLS, m_starttls, MAXPARA, M_UNREGISTERED|M_ANNOUNCE);
|
|
|
|
memset(&cap, 0, sizeof(cap));
|
|
cap.name = "tls";
|
|
cap.cap = PROTO_STARTTLS;
|
|
ClientCapabilityAdd(modinfo->handle, &cap);
|
|
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
MOD_LOAD(m_starttls)
|
|
{
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
MOD_UNLOAD(m_starttls)
|
|
{
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
CMD_FUNC(m_starttls)
|
|
{
|
|
if (!MyConnect(sptr) || !IsUnknown(sptr))
|
|
return 0;
|
|
if (!ctx_server) /* or SSL support is not enabled (failed to load cert/keys/..)... */
|
|
{
|
|
/* Pretend STARTTLS is an unknown command, this is the safest approach */
|
|
sendto_one(sptr, err_str(ERR_NOTREGISTERED), me.name, "STARTTLS");
|
|
return 0;
|
|
}
|
|
|
|
if (iConf.ssl_options & SSLFLAG_NOSTARTTLS)
|
|
{
|
|
sendto_one(sptr, err_str(ERR_NOTREGISTERED), me.name, "STARTTLS");
|
|
return 0;
|
|
}
|
|
|
|
if (IsSecure(sptr))
|
|
{
|
|
sendto_one(sptr, err_str(ERR_STARTTLS), me.name, !BadPtr(sptr->name) ? sptr->name : "*", "STARTTLS failed. Already using TLS.");
|
|
return 0;
|
|
}
|
|
|
|
dbuf_delete(&sptr->local->recvQ, DBufLength(&sptr->local->recvQ)); /* Clear up any remaining plaintext commands */
|
|
sendto_one(sptr, rpl_str(RPL_STARTTLS), me.name, !BadPtr(sptr->name) ? sptr->name : "*");
|
|
send_queued(sptr);
|
|
|
|
SetSSLStartTLSHandshake(sptr);
|
|
Debug((DEBUG_DEBUG, "Starting SSL handshake (due to STARTTLS) for %s", sptr->local->sockhost));
|
|
if ((sptr->local->ssl = SSL_new(ctx_server)) == NULL)
|
|
goto fail;
|
|
sptr->flags |= FLAGS_SSL;
|
|
SSL_set_fd(sptr->local->ssl, sptr->fd);
|
|
SSL_set_nonblocking(sptr->local->ssl);
|
|
if (!ircd_SSL_accept(sptr, sptr->fd)) {
|
|
Debug((DEBUG_DEBUG, "Failed SSL accept handshake in instance 1: %s", sptr->local->sockhost));
|
|
SSL_set_shutdown(sptr->local->ssl, SSL_RECEIVED_SHUTDOWN);
|
|
SSL_smart_shutdown(sptr->local->ssl);
|
|
SSL_free(sptr->local->ssl);
|
|
goto fail;
|
|
}
|
|
|
|
/* HANDSHAKE IN PROGRESS */
|
|
return 0;
|
|
fail:
|
|
/* Failure */
|
|
sendto_one(sptr, err_str(ERR_STARTTLS), me.name, !BadPtr(sptr->name) ? sptr->name : "*", "STARTTLS failed");
|
|
sptr->local->ssl = NULL;
|
|
sptr->flags &= ~FLAGS_SSL;
|
|
SetUnknown(sptr);
|
|
return 0;
|
|
}
|