2007-01-25 06:40:21 +00:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_challenge.c: Allows an IRC Operator to securely authenticate.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* 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 2 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBCRYPTO
|
2022-08-13 03:40:48 +00:00
|
|
|
# include <openssl/err.h>
|
|
|
|
# include <openssl/evp.h>
|
|
|
|
# include <openssl/pem.h>
|
|
|
|
# include <openssl/rsa.h>
|
|
|
|
# include <openssl/sha.h>
|
2007-01-25 06:40:21 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "client.h"
|
|
|
|
#include "ircd.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "send.h"
|
|
|
|
#include "s_conf.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "parse.h"
|
2008-04-20 05:47:38 +00:00
|
|
|
#include "match.h"
|
2008-04-03 02:52:01 +00:00
|
|
|
#include "logger.h"
|
2007-01-25 06:40:21 +00:00
|
|
|
#include "s_user.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "s_newconf.h"
|
|
|
|
|
|
|
|
#define CHALLENGE_WIDTH BUFSIZE - (NICKLEN + HOSTLEN + 12)
|
|
|
|
#define CHALLENGE_EXPIRES 180 /* 180 seconds should be more than long enough */
|
|
|
|
#define CHALLENGE_SECRET_LENGTH 128 /* how long our challenge secret should be */
|
|
|
|
|
|
|
|
#ifndef HAVE_LIBCRYPTO
|
2016-03-09 07:29:41 +00:00
|
|
|
|
|
|
|
static const char challenge_desc[] = "Does nothing as OpenSSL was not enabled.";
|
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
/* Maybe this should be an error or something?-davidt */
|
|
|
|
/* now it is -larne */
|
2016-03-09 07:29:41 +00:00
|
|
|
static int challenge_load(void)
|
2007-01-25 06:40:21 +00:00
|
|
|
{
|
2020-11-08 19:30:41 +00:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
2007-01-25 06:40:21 +00:00
|
|
|
"Challenge module not loaded because OpenSSL is not available.");
|
|
|
|
ilog(L_MAIN, "Challenge module not loaded because OpenSSL is not available.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-03-07 07:52:16 +00:00
|
|
|
DECLARE_MODULE_AV2(challenge, challenge_load, NULL, NULL, NULL, NULL, NULL, NULL, challenge_desc);
|
2007-01-25 06:40:21 +00:00
|
|
|
#else
|
|
|
|
|
2016-03-09 07:29:41 +00:00
|
|
|
static const char challenge_desc[] =
|
|
|
|
"Provides the challenge-response facility used for becoming an IRC operator";
|
|
|
|
|
2016-03-09 07:37:03 +00:00
|
|
|
static void m_challenge(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
/* We have openssl support, so include /CHALLENGE */
|
|
|
|
struct Message challenge_msgtab = {
|
2016-02-19 22:42:40 +00:00
|
|
|
"CHALLENGE", 0, 0, 0, 0,
|
2007-01-25 06:40:21 +00:00
|
|
|
{mg_unreg, {m_challenge, 2}, mg_ignore, mg_ignore, mg_ignore, {m_challenge, 2}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 challenge_clist[] = { &challenge_msgtab, NULL };
|
2016-03-07 07:52:16 +00:00
|
|
|
|
|
|
|
DECLARE_MODULE_AV2(challenge, NULL, NULL, challenge_clist, NULL, NULL, NULL, NULL, challenge_desc);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x30000000L)
|
|
|
|
static bool generate_challenge(char **r_challenge, unsigned char **r_response, EVP_PKEY *key);
|
|
|
|
#else
|
|
|
|
static bool generate_challenge(char **r_challenge, unsigned char **r_response, RSA *key);
|
|
|
|
#endif
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
cleanup_challenge(struct Client *target_p)
|
|
|
|
{
|
|
|
|
if(target_p->localClient == NULL)
|
|
|
|
return;
|
2014-03-03 04:25:47 +00:00
|
|
|
|
2008-04-01 22:47:17 +00:00
|
|
|
rb_free(target_p->localClient->challenge);
|
2019-07-07 01:36:58 +00:00
|
|
|
rb_free(target_p->user->opername);
|
2007-01-25 06:40:21 +00:00
|
|
|
target_p->localClient->challenge = NULL;
|
2019-07-07 01:36:58 +00:00
|
|
|
target_p->user->opername = NULL;
|
2007-01-25 06:40:21 +00:00
|
|
|
target_p->localClient->chal_time = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* m_challenge - generate RSA challenge for wouldbe oper
|
|
|
|
* parv[1] = operator to challenge for, or +response
|
|
|
|
*/
|
2016-03-09 07:37:03 +00:00
|
|
|
static void
|
2016-02-11 02:54:17 +00:00
|
|
|
m_challenge(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
2007-01-25 06:40:21 +00:00
|
|
|
{
|
|
|
|
struct oper_conf *oper_p;
|
|
|
|
char *challenge = NULL; /* to placate gcc */
|
2014-03-03 04:25:47 +00:00
|
|
|
char chal_line[CHALLENGE_WIDTH];
|
2007-01-25 06:40:21 +00:00
|
|
|
unsigned char *b_response;
|
|
|
|
size_t cnt;
|
|
|
|
int len = 0;
|
|
|
|
|
2020-11-18 14:29:08 +00:00
|
|
|
if (ConfigFileEntry.oper_secure_only && !IsSecureClient(source_p))
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p, ":You must be using a secure connection to /CHALLENGE on this server");
|
|
|
|
if (ConfigFileEntry.failed_oper_notice)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
|
|
|
"Failed CHALLENGE attempt - missing secure connection by %s (%s@%s)",
|
|
|
|
source_p->name, source_p->username, source_p->host);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
/* if theyre an oper, reprint oper motd and ignore */
|
|
|
|
if(IsOper(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(RPL_YOUREOPER), me.name, source_p->name);
|
|
|
|
send_oper_motd(source_p);
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(*parv[1] == '+')
|
|
|
|
{
|
|
|
|
/* Ignore it if we aren't expecting this... -A1kmm */
|
|
|
|
if(!source_p->localClient->challenge)
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2008-04-01 23:53:20 +00:00
|
|
|
if((rb_current_time() - source_p->localClient->chal_time) > CHALLENGE_EXPIRES)
|
2007-01-25 06:40:21 +00:00
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_PASSWDMISMATCH), me.name, source_p->name);
|
|
|
|
ilog(L_FOPER, "EXPIRED CHALLENGE (%s) by (%s!%s@%s) (%s)",
|
2019-07-07 01:36:58 +00:00
|
|
|
source_p->user->opername, source_p->name,
|
2007-01-25 06:40:21 +00:00
|
|
|
source_p->username, source_p->host, source_p->sockhost);
|
|
|
|
|
|
|
|
if(ConfigFileEntry.failed_oper_notice)
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
|
|
|
"Expired CHALLENGE attempt by %s (%s@%s)",
|
|
|
|
source_p->name, source_p->username,
|
|
|
|
source_p->host);
|
|
|
|
cleanup_challenge(source_p);
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
2011-02-22 17:00:45 +00:00
|
|
|
parv[1]++;
|
|
|
|
b_response = rb_base64_decode((const unsigned char *)parv[1], strlen(parv[1]), &len);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
if(len != SHA_DIGEST_LENGTH ||
|
|
|
|
memcmp(source_p->localClient->challenge, b_response, SHA_DIGEST_LENGTH))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_PASSWDMISMATCH), me.name, source_p->name);
|
|
|
|
ilog(L_FOPER, "FAILED CHALLENGE (%s) by (%s!%s@%s) (%s)",
|
2019-07-07 01:36:58 +00:00
|
|
|
source_p->user->opername, source_p->name,
|
2007-01-25 06:40:21 +00:00
|
|
|
source_p->username, source_p->host, source_p->sockhost);
|
|
|
|
|
|
|
|
if(ConfigFileEntry.failed_oper_notice)
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
|
|
|
"Failed CHALLENGE attempt by %s (%s@%s)",
|
|
|
|
source_p->name, source_p->username,
|
|
|
|
source_p->host);
|
|
|
|
|
2008-04-01 22:47:17 +00:00
|
|
|
rb_free(b_response);
|
2007-01-25 06:40:21 +00:00
|
|
|
cleanup_challenge(source_p);
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
2008-04-01 22:47:17 +00:00
|
|
|
rb_free(b_response);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2014-03-03 04:25:47 +00:00
|
|
|
oper_p = find_oper_conf(source_p->username, source_p->orighost,
|
|
|
|
source_p->sockhost,
|
2019-07-07 01:36:58 +00:00
|
|
|
source_p->user->opername);
|
2007-01-25 06:40:21 +00:00
|
|
|
|
|
|
|
if(oper_p == NULL)
|
|
|
|
{
|
2010-02-17 12:51:41 +00:00
|
|
|
sendto_one_numeric(source_p, ERR_NOOPERHOST, form_str(ERR_NOOPERHOST));
|
2023-10-04 18:48:42 +00:00
|
|
|
ilog(L_FOPER, "FAILED CHALLENGE (%s) by (%s!%s@%s) (%s)",
|
2019-07-07 01:36:58 +00:00
|
|
|
source_p->user->opername, source_p->name,
|
2007-01-25 06:40:21 +00:00
|
|
|
source_p->username, source_p->host,
|
|
|
|
source_p->sockhost);
|
|
|
|
|
|
|
|
if(ConfigFileEntry.failed_oper_notice)
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
|
|
|
"Failed CHALLENGE attempt - host mismatch by %s (%s@%s)",
|
|
|
|
source_p->name, source_p->username,
|
|
|
|
source_p->host);
|
2020-11-19 19:19:14 +00:00
|
|
|
cleanup_challenge(source_p);
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup_challenge(source_p);
|
|
|
|
|
|
|
|
oper_up(source_p, oper_p);
|
|
|
|
|
2023-10-04 18:48:42 +00:00
|
|
|
ilog(L_OPERED, "CHALLENGE %s by %s!%s@%s (%s)",
|
2019-07-07 01:36:58 +00:00
|
|
|
source_p->user->opername, source_p->name,
|
2007-01-25 06:40:21 +00:00
|
|
|
source_p->username, source_p->host, source_p->sockhost);
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cleanup_challenge(source_p);
|
|
|
|
|
2014-03-03 04:25:47 +00:00
|
|
|
oper_p = find_oper_conf(source_p->username, source_p->orighost,
|
2007-01-25 06:40:21 +00:00
|
|
|
source_p->sockhost, parv[1]);
|
|
|
|
|
|
|
|
if(oper_p == NULL)
|
|
|
|
{
|
2010-02-17 12:51:41 +00:00
|
|
|
sendto_one_numeric(source_p, ERR_NOOPERHOST, form_str(ERR_NOOPERHOST));
|
2023-10-04 18:48:42 +00:00
|
|
|
ilog(L_FOPER, "FAILED CHALLENGE (%s) by (%s!%s@%s) (%s)",
|
2007-01-25 06:40:21 +00:00
|
|
|
parv[1], source_p->name,
|
|
|
|
source_p->username, source_p->host, source_p->sockhost);
|
|
|
|
|
|
|
|
if(ConfigFileEntry.failed_oper_notice)
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
2023-10-04 18:52:47 +00:00
|
|
|
"Failed CHALLENGE attempt - user@host mismatch or no operator block for %s by %s (%s@%s)",
|
|
|
|
parv[1], source_p->name, source_p->username, source_p->host);
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!oper_p->rsa_pubkey)
|
|
|
|
{
|
2007-01-25 07:23:01 +00:00
|
|
|
sendto_one_notice(source_p, ":I'm sorry, PK authentication is not enabled for your oper{} block.");
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
2020-10-28 21:55:26 +00:00
|
|
|
if(IsOperConfNeedSSL(oper_p) && !IsSecureClient(source_p))
|
2008-09-06 23:18:58 +00:00
|
|
|
{
|
2010-02-17 12:51:41 +00:00
|
|
|
sendto_one_numeric(source_p, ERR_NOOPERHOST, form_str(ERR_NOOPERHOST));
|
2008-09-06 23:18:58 +00:00
|
|
|
ilog(L_FOPER, "FAILED CHALLENGE (%s) by (%s!%s@%s) (%s) -- requires SSL/TLS",
|
|
|
|
parv[1], source_p->name, source_p->username, source_p->host,
|
|
|
|
source_p->sockhost);
|
|
|
|
|
|
|
|
if(ConfigFileEntry.failed_oper_notice)
|
|
|
|
{
|
2020-11-08 19:30:41 +00:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
2008-09-06 23:18:58 +00:00
|
|
|
"Failed CHALLENGE attempt - missing SSL/TLS by %s (%s@%s)",
|
|
|
|
source_p->name, source_p->username, source_p->host);
|
|
|
|
}
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2008-09-06 23:18:58 +00:00
|
|
|
}
|
|
|
|
|
2010-02-18 05:01:25 +00:00
|
|
|
if (oper_p->certfp != NULL)
|
|
|
|
{
|
2016-04-05 10:39:59 +00:00
|
|
|
if (source_p->certfp == NULL || rb_strcasecmp(source_p->certfp, oper_p->certfp))
|
2010-02-18 05:01:25 +00:00
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOOPERHOST, form_str(ERR_NOOPERHOST));
|
2023-10-04 18:48:42 +00:00
|
|
|
ilog(L_FOPER, "FAILED CHALLENGE (%s) by (%s!%s@%s) (%s) -- client certificate fingerprint mismatch",
|
2010-02-18 22:42:07 +00:00
|
|
|
parv[1], source_p->name,
|
2010-02-18 05:01:25 +00:00
|
|
|
source_p->username, source_p->host, source_p->sockhost);
|
|
|
|
|
|
|
|
if(ConfigFileEntry.failed_oper_notice)
|
|
|
|
{
|
2020-11-08 19:30:41 +00:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
|
2023-10-04 18:48:42 +00:00
|
|
|
"Failed CHALLENGE attempt - client certificate fingerprint mismatch by %s (%s@%s)",
|
2010-02-18 05:01:25 +00:00
|
|
|
source_p->name, source_p->username, source_p->host);
|
|
|
|
}
|
2016-03-09 07:37:03 +00:00
|
|
|
return;
|
2010-02-18 05:01:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-09 07:37:03 +00:00
|
|
|
if(generate_challenge(&challenge, &(source_p->localClient->challenge), oper_p->rsa_pubkey))
|
2007-01-25 06:40:21 +00:00
|
|
|
{
|
|
|
|
char *chal = challenge;
|
2008-04-01 23:53:20 +00:00
|
|
|
source_p->localClient->chal_time = rb_current_time();
|
2007-01-25 06:40:21 +00:00
|
|
|
for(;;)
|
|
|
|
{
|
2008-04-20 04:40:40 +00:00
|
|
|
cnt = rb_strlcpy(chal_line, chal, CHALLENGE_WIDTH);
|
2007-01-25 06:40:21 +00:00
|
|
|
sendto_one(source_p, form_str(RPL_RSACHALLENGE2), me.name, source_p->name, chal_line);
|
2020-11-19 19:19:14 +00:00
|
|
|
if(cnt >= CHALLENGE_WIDTH)
|
2007-01-25 06:40:21 +00:00
|
|
|
chal += CHALLENGE_WIDTH - 1;
|
|
|
|
else
|
|
|
|
break;
|
2014-03-03 04:25:47 +00:00
|
|
|
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
2014-03-03 04:25:47 +00:00
|
|
|
sendto_one(source_p, form_str(RPL_ENDOFRSACHALLENGE2),
|
2007-01-25 06:40:21 +00:00
|
|
|
me.name, source_p->name);
|
2008-04-01 22:47:17 +00:00
|
|
|
rb_free(challenge);
|
2019-07-07 01:36:58 +00:00
|
|
|
source_p->user->opername = rb_strdup(oper_p->name);
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
sendto_one_notice(source_p, ":Failed to generate challenge.");
|
|
|
|
}
|
|
|
|
|
2016-03-09 07:37:03 +00:00
|
|
|
static bool
|
2022-08-13 03:40:48 +00:00
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x30000000L)
|
|
|
|
generate_challenge(char **r_challenge, unsigned char **r_response, EVP_PKEY *key)
|
|
|
|
#else
|
|
|
|
generate_challenge(char **r_challenge, unsigned char **r_response, RSA *key)
|
|
|
|
#endif
|
2007-01-25 06:40:21 +00:00
|
|
|
{
|
2022-08-13 03:40:48 +00:00
|
|
|
unsigned char secret[CHALLENGE_SECRET_LENGTH];
|
|
|
|
unsigned char *tmp = NULL;
|
2007-01-25 06:40:21 +00:00
|
|
|
unsigned long e = 0;
|
|
|
|
unsigned long cnt = 0;
|
2022-08-13 03:40:48 +00:00
|
|
|
bool retval = false;
|
|
|
|
size_t length;
|
|
|
|
EVP_MD_CTX *mctx = NULL;
|
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x30000000L)
|
|
|
|
EVP_PKEY_CTX *pctx = NULL;
|
|
|
|
#endif
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
if(!rb_get_random(secret, sizeof secret))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if((*r_response = rb_malloc(SHA_DIGEST_LENGTH)) == NULL)
|
2016-03-09 07:37:03 +00:00
|
|
|
return false;
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
if((mctx = EVP_MD_CTX_new()) == NULL)
|
|
|
|
goto fail;
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
if(EVP_DigestInit(mctx, EVP_sha1()) < 1)
|
|
|
|
goto fail;
|
2008-04-20 04:30:41 +00:00
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
if(EVP_DigestUpdate(mctx, secret, sizeof secret) < 1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if(EVP_DigestFinal(mctx, *r_response, NULL) < 1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x30000000L)
|
|
|
|
if((length = (size_t) EVP_PKEY_get_size(key)) < 1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if((tmp = rb_malloc(length)) == NULL)
|
|
|
|
goto fail;
|
2007-01-25 06:40:21 +00:00
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
if((pctx = EVP_PKEY_CTX_new(key, NULL)) == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if(EVP_PKEY_encrypt_init(pctx) < 1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if(EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_OAEP_PADDING) < 1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if(EVP_PKEY_encrypt(pctx, tmp, &length, secret, sizeof secret) < 1)
|
|
|
|
goto fail;
|
|
|
|
#else
|
|
|
|
if((length = (size_t) RSA_size(key)) < 1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if((tmp = rb_malloc(length)) == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if(RSA_public_encrypt(sizeof secret, secret, tmp, key, RSA_PKCS1_OAEP_PADDING) < 1)
|
|
|
|
goto fail;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if((*r_challenge = (char *) rb_base64_encode(tmp, (int) length)) == NULL)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
retval = true;
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
fail:
|
2007-01-25 06:40:21 +00:00
|
|
|
while ((cnt < 100) && (e = ERR_get_error()))
|
|
|
|
{
|
2022-08-13 03:40:48 +00:00
|
|
|
ilog(L_MAIN, "OpenSSL Error (CHALLENGE): %s", ERR_error_string(e, 0));
|
2007-01-25 06:40:21 +00:00
|
|
|
cnt++;
|
|
|
|
}
|
|
|
|
|
2022-08-13 03:40:48 +00:00
|
|
|
rb_free(*r_response);
|
|
|
|
*r_response = NULL;
|
|
|
|
|
|
|
|
done:
|
|
|
|
EVP_MD_CTX_free(mctx);
|
|
|
|
#if (OPENSSL_VERSION_NUMBER >= 0x30000000L)
|
|
|
|
EVP_PKEY_CTX_free(pctx);
|
|
|
|
#endif
|
|
|
|
rb_free(tmp);
|
|
|
|
|
|
|
|
return retval;
|
2007-01-25 06:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_LIBCRYPTO */
|