2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
2016-03-07 06:48:27 +01:00
|
|
|
static const char chm_insecure_desc[] =
|
|
|
|
"Adds channel mode +U that allows non-SSL users to join a channel, "
|
|
|
|
"disallowing them by default";
|
2016-01-30 04:26:41 +01:00
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static void h_can_join(hook_data_channel *);
|
|
|
|
|
2016-01-30 04:26:41 +01:00
|
|
|
mapi_hfn_list_av1 sslonly_hfnlist[] = {
|
|
|
|
{ "can_join", (hookfn) h_can_join },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2016-08-17 05:01:20 +02:00
|
|
|
static chan::mode::type mymode;
|
2016-01-30 04:26:41 +01:00
|
|
|
|
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
2016-08-17 05:01:20 +02:00
|
|
|
using namespace chan::mode;
|
|
|
|
|
|
|
|
mymode = add('U', category::D, functor::simple);
|
2016-01-30 04:26:41 +01:00
|
|
|
if (mymode == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
2016-08-17 05:01:20 +02:00
|
|
|
chan::mode::orphan('U');
|
2016-01-30 04:26:41 +01:00
|
|
|
}
|
|
|
|
|
2016-03-07 06:48:27 +01:00
|
|
|
DECLARE_MODULE_AV2(chm_insecure, _modinit, _moddeinit, NULL, NULL, sslonly_hfnlist, NULL, NULL, chm_insecure_desc);
|
2016-01-30 04:26:41 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
h_can_join(hook_data_channel *data)
|
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *source_p = data->client;
|
2016-08-18 07:33:38 +02:00
|
|
|
const auto &chptr(data->chptr);
|
2016-01-30 04:26:41 +01:00
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(!(chptr->mode.mode & mymode) && !is(*source_p, umode::SSLCLIENT)) {
|
2016-01-30 04:26:41 +01:00
|
|
|
/* XXX This is equal to ERR_THROTTLE */
|
2016-08-18 07:33:38 +02:00
|
|
|
sendto_one_numeric(source_p, 480, "%s :Cannot join channel (-U) - SSL/TLS required", chptr->name.c_str());
|
2016-08-17 05:01:20 +02:00
|
|
|
data->approved = chan::mode::ERR_CUSTOM;
|
2016-01-30 04:26:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|