1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 11:46:38 +02:00
Files
unrealircd/src/ssl.c
T
stskeeps e64c18860f .
2000-11-05 18:15:55 +00:00

224 lines
4.9 KiB
C

/*
This was originally done by the hq.alert.sk implementation
Modified by Stskeeps
*/
#include "config.h"
#ifdef USE_SSL
#include "struct.h"
/* The SSL structures */
SSL_CTX *ctx_server;
SSL_CTX *ctx_client;
#define CHK_SSL(err) if ((err)==-1) { ERR_print_errors_fp(stderr); }
void init_ctx_server(void)
{
ctx_server = SSL_CTX_new(SSLv23_server_method());
if (!ctx_server)
{
ircd_log("Failed to do SSL CTX new");
exit(2);
}
if (SSL_CTX_use_certificate_file(ctx_server, CERTF, SSL_FILETYPE_PEM) <= 0)
{
ircd_log("Failed to load SSL certificate %s", CERTF);
exit(3);
}
if (SSL_CTX_use_PrivateKey_file(ctx_server, KEYF, SSL_FILETYPE_PEM) <= 0)
{
ircd_log("Failed to load SSL private key %s", KEYF);
exit(4);
}
if (!SSL_CTX_check_private_key(ctx_server))
{
ircd_log("Failed to check SSL private key");
exit(5);
}
}
void init_ctx_client(void)
{
ctx_client = SSL_CTX_new(SSLv2_client_method());
if (!ctx_client)
{
ircd_log("Failed to do SSL CTX new client");
exit(2);
}
if (SSL_CTX_use_certificate_file(ctx_client, "client.pem", SSL_FILETYPE_PEM) <= 0)
{
ircd_log("Failed to load SSL certificate %s (client)", "client.pem");
exit(3);
}
if (SSL_CTX_use_PrivateKey_file(ctx_client, "client.pem", SSL_FILETYPE_PEM) <= 0)
{
ircd_log("Failed to load SSL private key %s (client)", KEYF);
exit(4);
}
if (!SSL_CTX_check_private_key(ctx_client))
{
ircd_log("Failed to check SSL private key (client)");
exit(5);
}
}
void init_ssl()
{
/* SSL preliminaries. We keep the certificate and key with the context. */
SSL_load_error_strings();
SSLeay_add_ssl_algorithms();
init_ctx_server();
init_ctx_client();
}
#define CHK_NULL(x) if ((x)==NULL) {\
sendto_umode(UMODE_JUNK, "Lost connection to %s:Error in SSL", \
get_client_name(cptr, TRUE)); \
return 0;\
}
int ssl_handshake(aClient *cptr)
{
char *str;
int err;
cptr->ssl = (struct SSL *)SSL_new(ctx_server);
CHK_NULL(cptr->ssl);
SSL_set_fd((SSL *) cptr->ssl, cptr->fd);
err = SSL_accept((SSL *) cptr->ssl);
if ((err) == -1)
{
if (IsHandshake(cptr))
sendto_ops("Lost connection to %s:Error in SSL_accept()",
get_client_name(cptr, TRUE));
return 0;
}
/* Get the cipher - opt */
/* ircd_log("SSL connection using %s\n",
SSL_get_cipher((SSL *) cptr->ssl));
*/
/* Get client's certificate (note: beware of dynamic
* allocation) - opt */
cptr->client_cert =
(struct X509 *)SSL_get_peer_certificate((SSL *) cptr->ssl);
if (cptr->client_cert != NULL)
{
// log (L_DEBUG,"Client certificate:\n");
str =
X509_NAME_oneline(X509_get_subject_name((X509 *) cptr->
client_cert), 0, 0);
CHK_NULL(str);
// log (L_DEBUG, "\t subject: %s\n", str);
free(str);
str =
X509_NAME_oneline(X509_get_issuer_name((X509 *) cptr->
client_cert), 0, 0);
CHK_NULL(str);
// log (L_DEBUG, "\t issuer: %s\n", str);
free(str);
/* We could do all sorts of certificate
* verification stuff here before
* deallocating the certificate. */
X509_free((X509 *) cptr->client_cert);
}
else
{
// log (L_DEBUG, "Client does not have certificate.\n");
}
return 0;
}
/*
ssl_client_handshake
Return values:
-1 = Could not SSL_new
-2 = Error doing SSL_connect
-3 = Try again
*/
int ssl_client_handshake(struct Client *cptr)
{
int err = 0;
char *str = NULL;
/* Use client CTX, as we are*/
cptr->ssl = (struct SSL *) SSL_new(ctx_client);
if (!cptr->ssl)
{
sendto_realops("Could not SSL_new for client %s: Error in SSL",
get_client_name(cptr, TRUE));
return -1;
}
/* Set the SSL connection up to bind with cptr->fd */
SSL_set_fd((SSL *) cptr->ssl, cptr->fd);
SSL_set_connect_state((SSL *)cptr->ssl);
err = SSL_connect((SSL *) cptr->ssl);
if (err == -1)
{
sendto_realops("Lost connection to %s:Error in SSL_connect(), %s",
get_client_name(cptr, TRUE), ERR_error_string(ERR_get_error(), NULL));
return -2;
}
if (err == 0)
return -2;
sendto_ops("%i", err);
/* Get the cipher - opt */
sendto_ops("SSL connection using %s\n",
SSL_get_cipher((SSL *) cptr->ssl));
/* Get client's certificate (note: beware of dynamic
* allocation) - opt */
cptr->client_cert =
(struct X509 *)SSL_get_peer_certificate((SSL *) cptr->ssl);
if (cptr->client_cert != NULL)
{
sendto_realops("Client certificate:\n");
str =
X509_NAME_oneline(X509_get_subject_name((X509 *) cptr->
client_cert), 0, 0);
CHK_NULL(str);
sendto_realops("\t subject: %s\n", str);
free(str);
str =
X509_NAME_oneline(X509_get_issuer_name((X509 *) cptr->
client_cert), 0, 0);
CHK_NULL(str);
sendto_realops("\t issuer: %s\n", str);
free(str);
/* We could do all sorts of certificate
* verification stuff here before
* deallocating the certificate. */
X509_free((X509 *) cptr->client_cert);
}
else
{
sendto_realops("Client does not have certificate.\n");
}
return -1;
}
#endif