]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cban.cpp
m_cban: Implement support for channel masks
[user/henk/code/inspircd.git] / src / modules / m_cban.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
5  *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
6  *   Copyright (C) 2013, 2017-2018, 2020 Sadie Powell <sadie@witchery.services>
7  *   Copyright (C) 2012-2013, 2016 Attila Molnar <attilamolnar@hush.com>
8  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
9  *   Copyright (C) 2009 John Brooks <special@inspircd.org>
10  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
11  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
12  *   Copyright (C) 2007-2008 Dennis Friis <peavey@inspircd.org>
13  *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
14  *
15  * This file is part of InspIRCd.  InspIRCd is free software: you can
16  * redistribute it and/or modify it under the terms of the GNU General Public
17  * License as published by the Free Software Foundation, version 2.
18  *
19  * This program is distributed in the hope that it will be useful, but WITHOUT
20  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
21  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
22  * details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
26  */
27
28
29 #include "inspircd.h"
30 #include "xline.h"
31 #include "modules/stats.h"
32
33 enum
34 {
35         // InspIRCd-specific.
36         ERR_BADCHANNEL = 926
37 };
38
39 /** Holds a CBAN item
40  */
41 class CBan : public XLine
42 {
43 private:
44         std::string matchtext;
45
46 public:
47         CBan(time_t s_time, unsigned long d, const std::string& src, const std::string& re, const std::string& ch)
48                 : XLine(s_time, d, src, re, "CBAN")
49                 , matchtext(ch)
50         {
51         }
52
53         // XXX I shouldn't have to define this
54         bool Matches(User* u) CXX11_OVERRIDE
55         {
56                 return false;
57         }
58
59         bool Matches(const std::string& s) CXX11_OVERRIDE
60         {
61                 return InspIRCd::Match(s, matchtext);
62         }
63
64         const std::string& Displayable() CXX11_OVERRIDE
65         {
66                 return matchtext;
67         }
68 };
69
70 /** An XLineFactory specialized to generate cban pointers
71  */
72 class CBanFactory : public XLineFactory
73 {
74  public:
75         CBanFactory() : XLineFactory("CBAN") { }
76
77         /** Generate a CBAN
78         */
79         XLine* Generate(time_t set_time, unsigned long duration, const std::string& source, const std::string& reason, const std::string& xline_specific_mask) CXX11_OVERRIDE
80         {
81                 return new CBan(set_time, duration, source, reason, xline_specific_mask);
82         }
83
84         bool AutoApplyToUserList(XLine* x) CXX11_OVERRIDE
85         {
86                 return false; // No, we apply to channels.
87         }
88 };
89
90 /** Handle /CBAN
91  */
92 class CommandCBan : public Command
93 {
94  public:
95         CommandCBan(Module* Creator) : Command(Creator, "CBAN", 1, 3)
96         {
97                 flags_needed = 'o';
98                 this->syntax = "<channelmask> [<duration> [:<reason>]]";
99         }
100
101         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
102         {
103                 /* syntax: CBAN #channel time :reason goes here */
104                 /* 'time' is a human-readable timestring, like 2d3h2s. */
105
106                 if (parameters.size() == 1)
107                 {
108                         std::string reason;
109
110                         if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "CBAN", reason, user))
111                         {
112                                 ServerInstance->SNO->WriteGlobalSno('x', "%s removed CBan on %s: %s", user->nick.c_str(), parameters[0].c_str(), reason.c_str());
113                         }
114                         else
115                         {
116                                 user->WriteNotice("*** CBan " + parameters[0] + " not found on the list.");
117                                 return CMD_FAILURE;
118                         }
119                 }
120                 else
121                 {
122                         // Adding - XXX todo make this respect <insane> tag perhaps..
123                         unsigned long duration;
124                         if (!InspIRCd::Duration(parameters[1], duration))
125                         {
126                                 user->WriteNotice("*** Invalid duration for CBan.");
127                                 return CMD_FAILURE;
128                         }
129                         const char *reason = (parameters.size() > 2) ? parameters[2].c_str() : "No reason supplied";
130                         CBan* r = new CBan(ServerInstance->Time(), duration, user->nick.c_str(), reason, parameters[0].c_str());
131
132                         if (ServerInstance->XLines->AddLine(r, user))
133                         {
134                                 if (!duration)
135                                 {
136                                         ServerInstance->SNO->WriteGlobalSno('x', "%s added permanent CBan for %s: %s", user->nick.c_str(), parameters[0].c_str(), reason);
137                                 }
138                                 else
139                                 {
140                                         ServerInstance->SNO->WriteGlobalSno('x', "%s added timed CBan for %s, expires in %s (on %s): %s",
141                                                 user->nick.c_str(), parameters[0].c_str(), InspIRCd::DurationString(duration).c_str(),
142                                                 InspIRCd::TimeString(ServerInstance->Time() + duration).c_str(), reason);
143                                 }
144                         }
145                         else
146                         {
147                                 delete r;
148                                 user->WriteNotice("*** CBan for " + parameters[0] + " already exists");
149                                 return CMD_FAILURE;
150                         }
151                 }
152                 return CMD_SUCCESS;
153         }
154
155         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
156         {
157                 if (IS_LOCAL(user))
158                         return ROUTE_LOCALONLY; // spanningtree will send ADDLINE
159
160                 return ROUTE_BROADCAST;
161         }
162 };
163
164 class ModuleCBan : public Module, public Stats::EventListener
165 {
166         CommandCBan mycommand;
167         CBanFactory f;
168
169  public:
170         ModuleCBan()
171                 : Stats::EventListener(this)
172                 , mycommand(this)
173         {
174         }
175
176         void init() CXX11_OVERRIDE
177         {
178                 ServerInstance->XLines->RegisterFactory(&f);
179         }
180
181         ~ModuleCBan()
182         {
183                 ServerInstance->XLines->DelAll("CBAN");
184                 ServerInstance->XLines->UnregisterFactory(&f);
185         }
186
187         ModResult OnStats(Stats::Context& stats) CXX11_OVERRIDE
188         {
189                 if (stats.GetSymbol() != 'C')
190                         return MOD_RES_PASSTHRU;
191
192                 ServerInstance->XLines->InvokeStats("CBAN", stats);
193                 return MOD_RES_DENY;
194         }
195
196         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
197         {
198                 XLine *rl = ServerInstance->XLines->MatchesLine("CBAN", cname);
199
200                 if (rl)
201                 {
202                         // Channel is banned.
203                         user->WriteNumeric(ERR_BADCHANNEL, cname, InspIRCd::Format("Channel %s is CBANed: %s", cname.c_str(), rl->reason.c_str()));
204                         ServerInstance->SNO->WriteGlobalSno('a', "%s tried to join %s which is CBANed (%s)",
205                                  user->nick.c_str(), cname.c_str(), rl->reason.c_str());
206                         return MOD_RES_DENY;
207                 }
208
209                 return MOD_RES_PASSTHRU;
210         }
211
212         Version GetVersion() CXX11_OVERRIDE
213         {
214                 return Version("Adds the /CBAN command which allows server operators to prevent channels matching a glob from being created.", VF_COMMON | VF_VENDOR);
215         }
216 };
217
218 MODULE_INIT(ModuleCBan)