]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_callerid.cpp
Add a Flash Policy Daemon module
[user/henk/code/inspircd.git] / src / modules / m_callerid.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008-2009 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
7  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24
25 enum
26 {
27         RPL_ACCEPTLIST = 281,
28         RPL_ENDOFACCEPT = 282,
29         ERR_ACCEPTFULL = 456,
30         ERR_ACCEPTEXIST = 457,
31         ERR_ACCEPTNOT = 458,
32         ERR_TARGUMODEG = 716,
33         RPL_TARGNOTIFY = 717,
34         RPL_UMODEGMSG = 718
35 };
36
37 class callerid_data
38 {
39  public:
40         time_t lastnotify;
41
42         /** Users I accept messages from
43          */
44         std::set<User*> accepting;
45
46         /** Users who list me as accepted
47          */
48         std::list<callerid_data *> wholistsme;
49
50         callerid_data() : lastnotify(0) { }
51
52         std::string ToString(SerializeFormat format) const
53         {
54                 std::ostringstream oss;
55                 oss << lastnotify;
56                 for (std::set<User*>::const_iterator i = accepting.begin(); i != accepting.end(); ++i)
57                 {
58                         User* u = *i;
59                         // Encode UIDs.
60                         oss << "," << (format == FORMAT_USER ? u->nick : u->uuid);
61                 }
62                 return oss.str();
63         }
64 };
65
66 struct CallerIDExtInfo : public ExtensionItem
67 {
68         CallerIDExtInfo(Module* parent)
69                 : ExtensionItem("callerid_data", parent)
70         {
71         }
72
73         std::string serialize(SerializeFormat format, const Extensible* container, void* item) const
74         {
75                 std::string ret;
76                 if (format != FORMAT_NETWORK)
77                 {
78                         callerid_data* dat = static_cast<callerid_data*>(item);
79                         ret = dat->ToString(format);
80                 }
81                 return ret;
82         }
83
84         void unserialize(SerializeFormat format, Extensible* container, const std::string& value)
85         {
86                 if (format == FORMAT_NETWORK)
87                         return;
88
89                 callerid_data* dat = new callerid_data;
90                 irc::commasepstream s(value);
91                 std::string tok;
92                 if (s.GetToken(tok))
93                         dat->lastnotify = ConvToInt(tok);
94
95                 while (s.GetToken(tok))
96                 {
97                         User *u = ServerInstance->FindNick(tok);
98                         if ((u) && (u->registered == REG_ALL) && (!u->quitting) && (!IS_SERVER(u)))
99                         {
100                                 if (dat->accepting.insert(u).second)
101                                 {
102                                         callerid_data* other = this->get(u, true);
103                                         other->wholistsme.push_back(dat);
104                                 }
105                         }
106                 }
107
108                 void* old = set_raw(container, dat);
109                 if (old)
110                         this->free(old);
111         }
112
113         callerid_data* get(User* user, bool create)
114         {
115                 callerid_data* dat = static_cast<callerid_data*>(get_raw(user));
116                 if (create && !dat)
117                 {
118                         dat = new callerid_data;
119                         set_raw(user, dat);
120                 }
121                 return dat;
122         }
123
124         void free(void* item)
125         {
126                 callerid_data* dat = static_cast<callerid_data*>(item);
127
128                 // We need to walk the list of users on our accept list, and remove ourselves from their wholistsme.
129                 for (std::set<User *>::iterator it = dat->accepting.begin(); it != dat->accepting.end(); it++)
130                 {
131                         callerid_data *targ = this->get(*it, false);
132
133                         if (!targ)
134                         {
135                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (1)");
136                                 continue; // shouldn't happen, but oh well.
137                         }
138
139                         std::list<callerid_data*>::iterator it2 = std::find(targ->wholistsme.begin(), targ->wholistsme.end(), dat);
140                         if (it2 != targ->wholistsme.end())
141                                 targ->wholistsme.erase(it2);
142                         else
143                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (2)");
144                 }
145                 delete dat;
146         }
147 };
148
149 class User_g : public SimpleUserModeHandler
150 {
151 public:
152         User_g(Module* Creator) : SimpleUserModeHandler(Creator, "callerid", 'g') { }
153 };
154
155 class CommandAccept : public Command
156 {
157         /** Pair: first is the target, second is true to add, false to remove
158          */
159         typedef std::pair<User*, bool> ACCEPTAction;
160
161         static ACCEPTAction GetTargetAndAction(std::string& tok)
162         {
163                 bool remove = (tok[0] == '-');
164                 if ((remove) || (tok[0] == '+'))
165                         tok.erase(tok.begin());
166
167                 User* target = ServerInstance->FindNick(tok);
168                 if ((!target) || (target->registered != REG_ALL) || (target->quitting) || (IS_SERVER(target)))
169                         target = NULL;
170
171                 return std::make_pair(target, !remove);
172         }
173
174 public:
175         CallerIDExtInfo extInfo;
176         unsigned int maxaccepts;
177         CommandAccept(Module* Creator) : Command(Creator, "ACCEPT", 1),
178                 extInfo(Creator)
179         {
180                 allow_empty_last_param = false;
181                 syntax = "{[+|-]<nicks>}|*}";
182                 TRANSLATE1(TR_CUSTOM);
183         }
184
185         void EncodeParameter(std::string& parameter, int index)
186         {
187                 // Send lists as-is (part of 2.0 compat)
188                 if (parameter.find(',') != std::string::npos)
189                         return;
190
191                 // Convert a [+|-]<nick> into a [-]<uuid>
192                 ACCEPTAction action = GetTargetAndAction(parameter);
193                 if (!action.first)
194                         return;
195
196                 parameter = (action.second ? "" : "-") + action.first->uuid;
197         }
198
199         /** Will take any number of nicks (up to MaxTargets), which can be seperated by commas.
200          * - in front of any nick removes, and an * lists. This effectively means you can do:
201          * /accept nick1,nick2,nick3,*
202          * to add 3 nicks and then show your list
203          */
204         CmdResult Handle(const std::vector<std::string> &parameters, User* user)
205         {
206                 if (CommandParser::LoopCall(user, this, parameters, 0))
207                         return CMD_SUCCESS;
208
209                 /* Even if callerid mode is not set, we let them manage their ACCEPT list so that if they go +g they can
210                  * have a list already setup. */
211
212                 if (parameters[0] == "*")
213                 {
214                         ListAccept(user);
215                         return CMD_SUCCESS;
216                 }
217
218                 std::string tok = parameters[0];
219                 ACCEPTAction action = GetTargetAndAction(tok);
220                 if (!action.first)
221                 {
222                         user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", tok.c_str());
223                         return CMD_FAILURE;
224                 }
225
226                 if ((!IS_LOCAL(user)) && (!IS_LOCAL(action.first)))
227                         // Neither source nor target is local, forward the command to the server of target
228                         return CMD_SUCCESS;
229
230                 // The second item in the pair is true if the first char is a '+' (or nothing), false if it's a '-'
231                 if (action.second)
232                         return (AddAccept(user, action.first) ? CMD_SUCCESS : CMD_FAILURE);
233                 else
234                         return (RemoveAccept(user, action.first) ? CMD_SUCCESS : CMD_FAILURE);
235         }
236
237         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
238         {
239                 // There is a list in parameters[0] in two cases:
240                 // Either when the source is remote, this happens because 2.0 servers send comma seperated uuid lists,
241                 // we don't split those but broadcast them, as before.
242                 //
243                 // Or if the source is local then LoopCall() runs OnPostCommand() after each entry in the list,
244                 // meaning the linking module has sent an ACCEPT already for each entry in the list to the
245                 // appropiate server and the ACCEPT with the list of nicks (this) doesn't need to be sent anywhere.
246                 if ((!IS_LOCAL(user)) && (parameters[0].find(',') != std::string::npos))
247                         return ROUTE_BROADCAST;
248
249                 // Find the target
250                 std::string targetstring = parameters[0];
251                 ACCEPTAction action = GetTargetAndAction(targetstring);
252                 if (!action.first)
253                         // Target is a "*" or source is local and the target is a list of nicks
254                         return ROUTE_LOCALONLY;
255
256                 // Route to the server of the target
257                 return ROUTE_UNICAST(action.first->server);
258         }
259
260         void ListAccept(User* user)
261         {
262                 callerid_data* dat = extInfo.get(user, false);
263                 if (dat)
264                 {
265                         for (std::set<User*>::iterator i = dat->accepting.begin(); i != dat->accepting.end(); ++i)
266                                 user->WriteNumeric(RPL_ACCEPTLIST, (*i)->nick);
267                 }
268                 user->WriteNumeric(RPL_ENDOFACCEPT, ":End of ACCEPT list");
269         }
270
271         bool AddAccept(User* user, User* whotoadd)
272         {
273                 // Add this user to my accept list first, so look me up..
274                 callerid_data* dat = extInfo.get(user, true);
275                 if (dat->accepting.size() >= maxaccepts)
276                 {
277                         user->WriteNumeric(ERR_ACCEPTFULL, ":Accept list is full (limit is %d)", maxaccepts);
278                         return false;
279                 }
280                 if (!dat->accepting.insert(whotoadd).second)
281                 {
282                         user->WriteNumeric(ERR_ACCEPTEXIST, "%s :is already on your accept list", whotoadd->nick.c_str());
283                         return false;
284                 }
285
286                 // Now, look them up, and add me to their list
287                 callerid_data *targ = extInfo.get(whotoadd, true);
288                 targ->wholistsme.push_back(dat);
289
290                 user->WriteNotice(whotoadd->nick + " is now on your accept list");
291                 return true;
292         }
293
294         bool RemoveAccept(User* user, User* whotoremove)
295         {
296                 // Remove them from my list, so look up my list..
297                 callerid_data* dat = extInfo.get(user, false);
298                 if (!dat)
299                 {
300                         user->WriteNumeric(ERR_ACCEPTNOT, "%s :is not on your accept list", whotoremove->nick.c_str());
301                         return false;
302                 }
303                 std::set<User*>::iterator i = dat->accepting.find(whotoremove);
304                 if (i == dat->accepting.end())
305                 {
306                         user->WriteNumeric(ERR_ACCEPTNOT, "%s :is not on your accept list", whotoremove->nick.c_str());
307                         return false;
308                 }
309
310                 dat->accepting.erase(i);
311
312                 // Look up their list to remove me.
313                 callerid_data *dat2 = extInfo.get(whotoremove, false);
314                 if (!dat2)
315                 {
316                         // How the fuck is this possible.
317                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (3)");
318                         return false;
319                 }
320
321                 std::list<callerid_data*>::iterator it = std::find(dat2->wholistsme.begin(), dat2->wholistsme.end(), dat);
322                 if (it != dat2->wholistsme.end())
323                         // Found me!
324                         dat2->wholistsme.erase(it);
325                 else
326                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (4)");
327
328
329                 user->WriteNotice(whotoremove->nick + " is no longer on your accept list");
330                 return true;
331         }
332 };
333
334 class ModuleCallerID : public Module
335 {
336         CommandAccept cmd;
337         User_g myumode;
338
339         // Configuration variables:
340         bool operoverride; // Operators can override callerid.
341         bool tracknick; // Allow ACCEPT entries to update with nick changes.
342         unsigned int notify_cooldown; // Seconds between notifications.
343
344         /** Removes a user from all accept lists
345          * @param who The user to remove from accepts
346          */
347         void RemoveFromAllAccepts(User* who)
348         {
349                 // First, find the list of people who have me on accept
350                 callerid_data *userdata = cmd.extInfo.get(who, false);
351                 if (!userdata)
352                         return;
353
354                 // Iterate over the list of people who accept me, and remove all entries
355                 for (std::list<callerid_data *>::iterator it = userdata->wholistsme.begin(); it != userdata->wholistsme.end(); it++)
356                 {
357                         callerid_data *dat = *(it);
358
359                         // Find me on their callerid list
360                         std::set<User *>::iterator it2 = dat->accepting.find(who);
361
362                         if (it2 != dat->accepting.end())
363                                 dat->accepting.erase(it2);
364                         else
365                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (5)");
366                 }
367
368                 userdata->wholistsme.clear();
369         }
370
371 public:
372         ModuleCallerID() : cmd(this), myumode(this)
373         {
374         }
375
376         Version GetVersion() CXX11_OVERRIDE
377         {
378                 return Version("Implementation of callerid, usermode +g, /accept", VF_COMMON | VF_VENDOR);
379         }
380
381         void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE
382         {
383                 tokens["CALLERID"] = "g";
384         }
385
386         ModResult PreText(User* user, User* dest, std::string& text)
387         {
388                 if (!dest->IsModeSet(myumode) || (user == dest))
389                         return MOD_RES_PASSTHRU;
390
391                 if (operoverride && user->IsOper())
392                         return MOD_RES_PASSTHRU;
393
394                 callerid_data* dat = cmd.extInfo.get(dest, true);
395                 std::set<User*>::iterator i = dat->accepting.find(user);
396
397                 if (i == dat->accepting.end())
398                 {
399                         time_t now = ServerInstance->Time();
400                         /* +g and *not* accepted */
401                         user->WriteNumeric(ERR_TARGUMODEG, "%s :is in +g mode (server-side ignore).", dest->nick.c_str());
402                         if (now > (dat->lastnotify + (time_t)notify_cooldown))
403                         {
404                                 user->WriteNumeric(RPL_TARGNOTIFY, "%s :has been informed that you messaged them.", dest->nick.c_str());
405                                 dest->SendText(":%s %03d %s %s %s@%s :is messaging you, and you have umode +g. Use /ACCEPT +%s to allow.",
406                                                 ServerInstance->Config->ServerName.c_str(), RPL_UMODEGMSG, dest->nick.c_str(), user->nick.c_str(), user->ident.c_str(), user->dhost.c_str(), user->nick.c_str());
407                                 dat->lastnotify = now;
408                         }
409                         return MOD_RES_DENY;
410                 }
411                 return MOD_RES_PASSTHRU;
412         }
413
414         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
415         {
416                 if (IS_LOCAL(user) && target_type == TYPE_USER)
417                         return PreText(user, (User*)dest, text);
418
419                 return MOD_RES_PASSTHRU;
420         }
421
422         void OnUserPostNick(User* user, const std::string& oldnick) CXX11_OVERRIDE
423         {
424                 if (!tracknick)
425                         RemoveFromAllAccepts(user);
426         }
427
428         void OnUserQuit(User* user, const std::string& message, const std::string& oper_message) CXX11_OVERRIDE
429         {
430                 RemoveFromAllAccepts(user);
431         }
432
433         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
434         {
435                 ConfigTag* tag = ServerInstance->Config->ConfValue("callerid");
436                 cmd.maxaccepts = tag->getInt("maxaccepts", 16);
437                 operoverride = tag->getBool("operoverride");
438                 tracknick = tag->getBool("tracknick");
439                 notify_cooldown = tag->getInt("cooldown", 60);
440         }
441 };
442
443 MODULE_INIT(ModuleCallerID)