]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_callerid.cpp
Show a better warning when certtool/openssl are missing.
[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 /* $ModDesc: Implementation of callerid, usermode +g, /accept */
26
27 class callerid_data
28 {
29  public:
30         time_t lastnotify;
31
32         /** Users I accept messages from
33          */
34         std::set<User*> accepting;
35
36         /** Users who list me as accepted
37          */
38         std::list<callerid_data *> wholistsme;
39
40         callerid_data() : lastnotify(0) { }
41
42         std::string ToString(SerializeFormat format) const
43         {
44                 std::ostringstream oss;
45                 oss << lastnotify;
46                 for (std::set<User*>::const_iterator i = accepting.begin(); i != accepting.end(); ++i)
47                 {
48                         User* u = *i;
49                         // Encode UIDs.
50                         oss << "," << (format == FORMAT_USER ? u->nick : u->uuid);
51                 }
52                 return oss.str();
53         }
54 };
55
56 struct CallerIDExtInfo : public ExtensionItem
57 {
58         CallerIDExtInfo(Module* parent)
59                 : ExtensionItem("callerid_data", parent)
60         {
61         }
62
63         std::string serialize(SerializeFormat format, const Extensible* container, void* item) const
64         {
65                 callerid_data* dat = static_cast<callerid_data*>(item);
66                 return dat->ToString(format);
67         }
68
69         void unserialize(SerializeFormat format, Extensible* container, const std::string& value)
70         {
71                 callerid_data* dat = new callerid_data;
72                 irc::commasepstream s(value);
73                 std::string tok;
74                 if (s.GetToken(tok))
75                         dat->lastnotify = ConvToInt(tok);
76
77                 while (s.GetToken(tok))
78                 {
79                         if (tok.empty())
80                                 continue;
81
82                         User *u = ServerInstance->FindNick(tok);
83                         if ((u) && (u->registered == REG_ALL) && (!u->quitting) && (!IS_SERVER(u)))
84                         {
85                                 if (dat->accepting.insert(u).second)
86                                 {
87                                         callerid_data* other = this->get(u, true);
88                                         other->wholistsme.push_back(dat);
89                                 }
90                         }
91                 }
92
93                 void* old = set_raw(container, dat);
94                 if (old)
95                         this->free(old);
96         }
97
98         callerid_data* get(User* user, bool create)
99         {
100                 callerid_data* dat = static_cast<callerid_data*>(get_raw(user));
101                 if (create && !dat)
102                 {
103                         dat = new callerid_data;
104                         set_raw(user, dat);
105                 }
106                 return dat;
107         }
108
109         void free(void* item)
110         {
111                 callerid_data* dat = static_cast<callerid_data*>(item);
112
113                 // We need to walk the list of users on our accept list, and remove ourselves from their wholistsme.
114                 for (std::set<User *>::iterator it = dat->accepting.begin(); it != dat->accepting.end(); it++)
115                 {
116                         callerid_data *targ = this->get(*it, false);
117
118                         if (!targ)
119                         {
120                                 ServerInstance->Logs->Log("m_callerid", DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (1)");
121                                 continue; // shouldn't happen, but oh well.
122                         }
123
124                         std::list<callerid_data*>::iterator it2 = std::find(targ->wholistsme.begin(), targ->wholistsme.end(), dat);
125                         if (it2 != targ->wholistsme.end())
126                                 targ->wholistsme.erase(it2);
127                         else
128                                 ServerInstance->Logs->Log("m_callerid", DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (2)");
129                 }
130                 delete dat;
131         }
132 };
133
134 class User_g : public SimpleUserModeHandler
135 {
136 public:
137         User_g(Module* Creator) : SimpleUserModeHandler(Creator, "callerid", 'g') { }
138 };
139
140 class CommandAccept : public Command
141 {
142 public:
143         CallerIDExtInfo extInfo;
144         unsigned int maxaccepts;
145         CommandAccept(Module* Creator) : Command(Creator, "ACCEPT", 1),
146                 extInfo(Creator)
147         {
148                 allow_empty_last_param = false;
149                 syntax = "*|(+|-)<nick>[,(+|-)<nick> ...]";
150                 TRANSLATE2(TR_CUSTOM, TR_END);
151         }
152
153         virtual void EncodeParameter(std::string& parameter, int index)
154         {
155                 if (index != 0)
156                         return;
157                 std::string out;
158                 irc::commasepstream nicks(parameter);
159                 std::string tok;
160                 while (nicks.GetToken(tok))
161                 {
162                         if (tok == "*")
163                         {
164                                 continue; // Drop list requests, since remote servers ignore them anyway.
165                         }
166                         if (!out.empty())
167                                 out.append(",");
168                         bool dash = false;
169                         if (tok[0] == '-')
170                         {
171                                 dash = true;
172                                 tok.erase(0, 1); // Remove the dash.
173                         }
174                         else if (tok[0] == '+')
175                                 tok.erase(0, 1);
176
177                         User* u = ServerInstance->FindNick(tok);
178                         if ((!u) || (u->registered != REG_ALL) || (u->quitting) || (IS_SERVER(u)))
179                                 continue;
180
181                         if (dash)
182                                 out.append("-");
183                         out.append(u->uuid);
184                 }
185                 parameter = out;
186         }
187
188         /** Will take any number of nicks (up to MaxTargets), which can be seperated by commas.
189          * - in front of any nick removes, and an * lists. This effectively means you can do:
190          * /accept nick1,nick2,nick3,*
191          * to add 3 nicks and then show your list
192          */
193         CmdResult Handle(const std::vector<std::string> &parameters, User* user)
194         {
195                 if (ServerInstance->Parser->LoopCall(user, this, parameters, 0))
196                         return CMD_SUCCESS;
197                 /* Even if callerid mode is not set, we let them manage their ACCEPT list so that if they go +g they can
198                  * have a list already setup. */
199
200                 const std::string& tok = parameters[0];
201
202                 if (tok == "*")
203                 {
204                         if (IS_LOCAL(user))
205                                 ListAccept(user);
206                         return CMD_SUCCESS;
207                 }
208                 else if (tok[0] == '-')
209                 {
210                         User* whotoremove;
211                         if (IS_LOCAL(user))
212                                 whotoremove = ServerInstance->FindNickOnly(tok.substr(1));
213                         else
214                                 whotoremove = ServerInstance->FindNick(tok.substr(1));
215
216                         if (whotoremove)
217                                 return (RemoveAccept(user, whotoremove) ? CMD_SUCCESS : CMD_FAILURE);
218                         else
219                                 return CMD_FAILURE;
220                 }
221                 else
222                 {
223                         const std::string target = (tok[0] == '+' ? tok.substr(1) : tok);
224                         User* whotoadd;
225                         if (IS_LOCAL(user))
226                                 whotoadd = ServerInstance->FindNickOnly(target);
227                         else
228                                 whotoadd = ServerInstance->FindNick(target);
229
230                         if ((whotoadd) && (whotoadd->registered == REG_ALL) && (!whotoadd->quitting) && (!IS_SERVER(whotoadd)))
231                                 return (AddAccept(user, whotoadd) ? CMD_SUCCESS : CMD_FAILURE);
232                         else
233                         {
234                                 user->WriteNumeric(401, "%s %s :No such nick/channel", user->nick.c_str(), tok.c_str());
235                                 return CMD_FAILURE;
236                         }
237                 }
238         }
239
240         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
241         {
242                 return ROUTE_BROADCAST;
243         }
244
245         void ListAccept(User* user)
246         {
247                 callerid_data* dat = extInfo.get(user, false);
248                 if (dat)
249                 {
250                         for (std::set<User*>::iterator i = dat->accepting.begin(); i != dat->accepting.end(); ++i)
251                                 user->WriteNumeric(281, "%s %s", user->nick.c_str(), (*i)->nick.c_str());
252                 }
253                 user->WriteNumeric(282, "%s :End of ACCEPT list", user->nick.c_str());
254         }
255
256         bool AddAccept(User* user, User* whotoadd)
257         {
258                 // Add this user to my accept list first, so look me up..
259                 callerid_data* dat = extInfo.get(user, true);
260                 if (dat->accepting.size() >= maxaccepts)
261                 {
262                         user->WriteNumeric(456, "%s :Accept list is full (limit is %d)", user->nick.c_str(), maxaccepts);
263                         return false;
264                 }
265                 if (!dat->accepting.insert(whotoadd).second)
266                 {
267                         user->WriteNumeric(457, "%s %s :is already on your accept list", user->nick.c_str(), whotoadd->nick.c_str());
268                         return false;
269                 }
270
271                 // Now, look them up, and add me to their list
272                 callerid_data *targ = extInfo.get(whotoadd, true);
273                 targ->wholistsme.push_back(dat);
274
275                 user->WriteServ("NOTICE %s :%s is now on your accept list", user->nick.c_str(), whotoadd->nick.c_str());
276                 return true;
277         }
278
279         bool RemoveAccept(User* user, User* whotoremove)
280         {
281                 // Remove them from my list, so look up my list..
282                 callerid_data* dat = extInfo.get(user, false);
283                 if (!dat)
284                 {
285                         user->WriteNumeric(458, "%s %s :is not on your accept list", user->nick.c_str(), whotoremove->nick.c_str());
286                         return false;
287                 }
288                 std::set<User*>::iterator i = dat->accepting.find(whotoremove);
289                 if (i == dat->accepting.end())
290                 {
291                         user->WriteNumeric(458, "%s %s :is not on your accept list", user->nick.c_str(), whotoremove->nick.c_str());
292                         return false;
293                 }
294
295                 dat->accepting.erase(i);
296
297                 // Look up their list to remove me.
298                 callerid_data *dat2 = extInfo.get(whotoremove, false);
299                 if (!dat2)
300                 {
301                         // How the fuck is this possible.
302                         ServerInstance->Logs->Log("m_callerid", DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (3)");
303                         return false;
304                 }
305
306                 std::list<callerid_data*>::iterator it = std::find(dat2->wholistsme.begin(), dat2->wholistsme.end(), dat);
307                 if (it != dat2->wholistsme.end())
308                         // Found me!
309                         dat2->wholistsme.erase(it);
310                 else
311                         ServerInstance->Logs->Log("m_callerid", DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (4)");
312
313
314                 user->WriteServ("NOTICE %s :%s is no longer on your accept list", user->nick.c_str(), whotoremove->nick.c_str());
315                 return true;
316         }
317 };
318
319 class ModuleCallerID : public Module
320 {
321 private:
322         CommandAccept cmd;
323         User_g myumode;
324
325         // Configuration variables:
326         bool operoverride; // Operators can override callerid.
327         bool tracknick; // Allow ACCEPT entries to update with nick changes.
328         unsigned int notify_cooldown; // Seconds between notifications.
329
330         /** Removes a user from all accept lists
331          * @param who The user to remove from accepts
332          */
333         void RemoveFromAllAccepts(User* who)
334         {
335                 // First, find the list of people who have me on accept
336                 callerid_data *userdata = cmd.extInfo.get(who, false);
337                 if (!userdata)
338                         return;
339
340                 // Iterate over the list of people who accept me, and remove all entries
341                 for (std::list<callerid_data *>::iterator it = userdata->wholistsme.begin(); it != userdata->wholistsme.end(); it++)
342                 {
343                         callerid_data *dat = *(it);
344
345                         // Find me on their callerid list
346                         std::set<User *>::iterator it2 = dat->accepting.find(who);
347
348                         if (it2 != dat->accepting.end())
349                                 dat->accepting.erase(it2);
350                         else
351                                 ServerInstance->Logs->Log("m_callerid", DEFAULT, "ERROR: Inconsistency detected in callerid state, please report (5)");
352                 }
353
354                 userdata->wholistsme.clear();
355         }
356
357 public:
358         ModuleCallerID() : cmd(this), myumode(this)
359         {
360         }
361
362         void init()
363         {
364                 OnRehash(NULL);
365
366                 ServerInstance->Modules->AddService(myumode);
367                 ServerInstance->Modules->AddService(cmd);
368                 ServerInstance->Modules->AddService(cmd.extInfo);
369
370                 Implementation eventlist[] = { I_OnRehash, I_OnUserPostNick, I_OnUserQuit, I_On005Numeric, I_OnUserPreNotice, I_OnUserPreMessage };
371                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
372         }
373
374         virtual ~ModuleCallerID()
375         {
376         }
377
378         virtual Version GetVersion()
379         {
380                 return Version("Implementation of callerid, usermode +g, /accept", VF_COMMON | VF_VENDOR);
381         }
382
383         virtual void On005Numeric(std::string& output)
384         {
385                 output += " CALLERID=g";
386         }
387
388         ModResult PreText(User* user, User* dest, std::string& text)
389         {
390                 if (!dest->IsModeSet('g') || (user == dest))
391                         return MOD_RES_PASSTHRU;
392
393                 if (operoverride && IS_OPER(user))
394                         return MOD_RES_PASSTHRU;
395
396                 callerid_data* dat = cmd.extInfo.get(dest, true);
397                 std::set<User*>::iterator i = dat->accepting.find(user);
398
399                 if (i == dat->accepting.end())
400                 {
401                         time_t now = ServerInstance->Time();
402                         /* +g and *not* accepted */
403                         user->WriteNumeric(716, "%s %s :is in +g mode (server-side ignore).", user->nick.c_str(), dest->nick.c_str());
404                         if (now > (dat->lastnotify + (time_t)notify_cooldown))
405                         {
406                                 user->WriteNumeric(717, "%s %s :has been informed that you messaged them.", user->nick.c_str(), dest->nick.c_str());
407                                 dest->SendText(":%s 718 %s %s %s@%s :is messaging you, and you have umode +g. Use /ACCEPT +%s to allow.",
408                                         ServerInstance->Config->ServerName.c_str(), dest->nick.c_str(), user->nick.c_str(), user->ident.c_str(), user->dhost.c_str(), user->nick.c_str());
409                                 dat->lastnotify = now;
410                         }
411                         return MOD_RES_DENY;
412                 }
413                 return MOD_RES_PASSTHRU;
414         }
415
416         virtual ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList &exempt_list)
417         {
418                 if (IS_LOCAL(user) && target_type == TYPE_USER)
419                         return PreText(user, (User*)dest, text);
420
421                 return MOD_RES_PASSTHRU;
422         }
423
424         virtual ModResult OnUserPreNotice(User* user, void* dest, int target_type, std::string& text, char status, CUList &exempt_list)
425         {
426                 if (IS_LOCAL(user) && target_type == TYPE_USER)
427                         return PreText(user, (User*)dest, text);
428
429                 return MOD_RES_PASSTHRU;
430         }
431
432         void OnUserPostNick(User* user, const std::string& oldnick)
433         {
434                 if (!tracknick)
435                         RemoveFromAllAccepts(user);
436         }
437
438         void OnUserQuit(User* user, const std::string& message, const std::string& oper_message)
439         {
440                 RemoveFromAllAccepts(user);
441         }
442
443         virtual void OnRehash(User* user)
444         {
445                 ConfigTag* tag = ServerInstance->Config->ConfValue("callerid");
446                 cmd.maxaccepts = tag->getInt("maxaccepts", 16);
447                 operoverride = tag->getBool("operoverride");
448                 tracknick = tag->getBool("tracknick");
449                 notify_cooldown = tag->getInt("cooldown", 60);
450         }
451 };
452
453 MODULE_INIT(ModuleCallerID)
454
455