1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2010 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
/* $ModDesc: Implements config tags which allow blocking of joins to channels */
class ModuleDenyChannels : public Module
{
public:
ModuleDenyChannels()
{}
void init()
{
Implementation eventlist[] = { I_OnCheckJoin };
ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
}
ConfigTag* FindBadChan(const std::string& cname)
{
ConfigTagList tags = ServerInstance->Config->GetTags("badchan");
for (ConfigIter i = tags.first; i != tags.second; ++i)
{
if (InspIRCd::Match(cname, i->second->getString("name")))
{
// found a bad channel. Maybe it has a goodchan pattern?
tags = ServerInstance->Config->GetTags("goodchan");
for (ConfigIter j = tags.first; j != tags.second; ++j)
{
if (InspIRCd::Match(cname, i->second->getString("name")))
return NULL;
}
// nope
return i->second;
}
}
// no <badchan> found
return NULL;
}
void ReadConfig(ConfigReadStatus& stat)
{
/* check for redirect validity and loops/chains */
ConfigTagList tags = ServerInstance->Config->GetTags("badchan");
for (ConfigIter i = tags.first; i != tags.second; ++i)
{
std::string name = i->second->getString("name");
std::string redirect = i->second->getString("redirect");
if (!redirect.empty())
{
if (!ServerInstance->IsChannel(redirect.c_str(), ServerInstance->Config->Limits.ChanMax))
{
stat.ReportError(i->second, "Invalid badchan redirect, not a channel", true);
}
ConfigTag* tag = FindBadChan(redirect);
if (tag)
{
/* <badchan:redirect> is a badchan */
stat.ReportError(i->second, "Badchan redirect loop", true);
}
}
}
}
virtual ~ModuleDenyChannels()
{
}
virtual Version GetVersion()
{
return Version("Implements config tags which allow blocking of joins to channels", VF_VENDOR);
}
void OnCheckJoin(ChannelPermissionData& join)
{
if (join.result != MOD_RES_PASSTHRU)
return;
ConfigTag* tag = FindBadChan(join.channel);
if (!tag)
return;
if (IS_OPER(join.user) && tag->getBool("allowopers"))
return;
std::string reason = tag->getString("reason");
std::string redirect = tag->getString("redirect");
join.result = MOD_RES_DENY;
if (!ServerInstance->RedirectJoin.get(join.user) && ServerInstance->IsChannel(redirect.c_str(), ServerInstance->Config->Limits.ChanMax))
{
join.user->WriteNumeric(926, "%s %s :Channel %s is forbidden, redirecting to %s: %s",
join.user->nick.c_str(),join.channel.c_str(),join.channel.c_str(),redirect.c_str(), reason.c_str());
ServerInstance->RedirectJoin.set(join.user, 1);
Channel::JoinUser(join.user,redirect.c_str(),false,"",false,ServerInstance->Time());
ServerInstance->RedirectJoin.set(join.user, 0);
} else {
join.user->WriteNumeric(926, "%s %s :Channel %s is forbidden: %s",
join.user->nick.c_str(),join.channel.c_str(),join.channel.c_str(),reason.c_str());
}
}
};
MODULE_INIT(ModuleDenyChannels)
|