]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/xline.cpp
Fix parsing anticaps mode parameters.
[user/henk/code/inspircd.git] / src / xline.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2005-2009 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2004-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
8  *   Copyright (C) 2007 John Brooks <john.brooks@dereferenced.net>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25 #include "xline.h"
26 #include "modules/stats.h"
27
28 /** An XLineFactory specialized to generate GLine* pointers
29  */
30 class GLineFactory : public XLineFactory
31 {
32  public:
33         GLineFactory() : XLineFactory("G") { }
34
35         /** Generate a GLine
36          */
37         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
38         {
39                 IdentHostPair ih = ServerInstance->XLines->IdentSplit(xline_specific_mask);
40                 return new GLine(set_time, duration, source, reason, ih.first, ih.second);
41         }
42 };
43
44 /** An XLineFactory specialized to generate ELine* pointers
45  */
46 class ELineFactory : public XLineFactory
47 {
48  public:
49         ELineFactory() : XLineFactory("E") { }
50
51         /** Generate an ELine
52          */
53         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
54         {
55                 IdentHostPair ih = ServerInstance->XLines->IdentSplit(xline_specific_mask);
56                 return new ELine(set_time, duration, source, reason, ih.first, ih.second);
57         }
58 };
59
60 /** An XLineFactory specialized to generate KLine* pointers
61  */
62 class KLineFactory : public XLineFactory
63 {
64  public:
65         KLineFactory() : XLineFactory("K") { }
66
67         /** Generate a KLine
68          */
69         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
70         {
71                 IdentHostPair ih = ServerInstance->XLines->IdentSplit(xline_specific_mask);
72                 return new KLine(set_time, duration, source, reason, ih.first, ih.second);
73         }
74 };
75
76 /** An XLineFactory specialized to generate QLine* pointers
77  */
78 class QLineFactory : public XLineFactory
79 {
80  public:
81         QLineFactory() : XLineFactory("Q") { }
82
83         /** Generate a QLine
84          */
85         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
86         {
87                 return new QLine(set_time, duration, source, reason, xline_specific_mask);
88         }
89 };
90
91 /** An XLineFactory specialized to generate ZLine* pointers
92  */
93 class ZLineFactory : public XLineFactory
94 {
95  public:
96         ZLineFactory() : XLineFactory("Z") { }
97
98         /** Generate a ZLine
99          */
100         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
101         {
102                 return new ZLine(set_time, duration, source, reason, xline_specific_mask);
103         }
104 };
105
106
107 /*
108  * This is now version 3 of the XLine subsystem, let's see if we can get it as nice and
109  * efficient as we can this time so we can close this file and never ever touch it again ..
110  *
111  * Background:
112  *  Version 1 stored all line types in one list (one for g, one for z, etc). This was fine,
113  *  but both version 1 and 2 suck at applying lines efficiently. That is, every time a new line
114  *  was added, it iterated every existing line for every existing user. Ow. Expiry was also
115  *  expensive, as the lists were NOT sorted.
116  *
117  *  Version 2 moved permanent lines into a seperate list from non-permanent to help optimize
118  *  matching speed, but matched in the same way.
119  *  Expiry was also sped up by sorting the list by expiry (meaning just remove the items at the
120  *  head of the list that are outdated.)
121  *
122  * This was fine and good, but it looked less than ideal in code, and matching was still slower
123  * than it could have been, something which we address here.
124  *
125  * VERSION 3:
126  *  All lines are (as in v1) stored together -- no seperation of perm and non-perm. They are stored in
127  *  a map of maps (first map is line type, second map is for quick lookup on add/delete/etc).
128  *
129  *  Expiry is *no longer* performed on a timer, and no longer uses a sorted list of any variety. This
130  *  is now done by only checking for expiry when a line is accessed, meaning that expiry is no longer
131  *  a resource intensive problem.
132  *
133  *  Application no longer tries to apply every single line on every single user - instead, now only lines
134  *  added since the previous application are applied. This keeps S2S ADDLINE during burst nice and fast,
135  *  while at the same time not slowing things the fuck down when we try adding a ban with lots of preexisting
136  *  bans. :)
137  */
138
139 bool XLine::Matches(User *u)
140 {
141         return false;
142 }
143
144 /*
145  * Checks what users match a given vector of ELines and sets their ban exempt flag accordingly.
146  */
147 void XLineManager::CheckELines()
148 {
149         ContainerIter n = lookup_lines.find("E");
150
151         if (n == lookup_lines.end())
152                 return;
153
154         XLineLookup& ELines = n->second;
155
156         if (ELines.empty())
157                 return;
158
159         const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
160         for (UserManager::LocalList::const_iterator u2 = list.begin(); u2 != list.end(); u2++)
161         {
162                 LocalUser* u = *u2;
163                 u->exempt = false;
164
165                 /* This uses safe iteration to ensure that if a line expires here, it doenst trash the iterator */
166                 LookupIter safei;
167
168                 for (LookupIter i = ELines.begin(); i != ELines.end(); )
169                 {
170                         safei = i;
171                         safei++;
172
173                         XLine *e = i->second;
174                         if ((!e->duration || ServerInstance->Time() < e->expiry) && e->Matches(u))
175                                 u->exempt = true;
176
177                         i = safei;
178                 }
179         }
180 }
181
182
183 XLineLookup* XLineManager::GetAll(const std::string &type)
184 {
185         ContainerIter n = lookup_lines.find(type);
186
187         if (n == lookup_lines.end())
188                 return NULL;
189
190         LookupIter safei;
191         const time_t current = ServerInstance->Time();
192
193         /* Expire any dead ones, before sending */
194         for (LookupIter x = n->second.begin(); x != n->second.end(); )
195         {
196                 safei = x;
197                 safei++;
198                 if (x->second->duration && current > x->second->expiry)
199                 {
200                         ExpireLine(n, x);
201                 }
202                 x = safei;
203         }
204
205         return &(n->second);
206 }
207
208 void XLineManager::DelAll(const std::string &type)
209 {
210         ContainerIter n = lookup_lines.find(type);
211
212         if (n == lookup_lines.end())
213                 return;
214
215         LookupIter x;
216
217         /* Delete all of a given type (this should probably use DelLine, but oh well) */
218         while ((x = n->second.begin()) != n->second.end())
219         {
220                 ExpireLine(n, x);
221         }
222 }
223
224 std::vector<std::string> XLineManager::GetAllTypes()
225 {
226         std::vector<std::string> items;
227         for (ContainerIter x = lookup_lines.begin(); x != lookup_lines.end(); ++x)
228                 items.push_back(x->first);
229         return items;
230 }
231
232 IdentHostPair XLineManager::IdentSplit(const std::string &ident_and_host)
233 {
234         IdentHostPair n = std::make_pair<std::string,std::string>("*","*");
235         std::string::size_type x = ident_and_host.find('@');
236         if (x != std::string::npos)
237         {
238                 n.second = ident_and_host.substr(x + 1,ident_and_host.length());
239                 n.first = ident_and_host.substr(0, x);
240                 if (!n.first.length())
241                         n.first.assign("*");
242                 if (!n.second.length())
243                         n.second.assign("*");
244         }
245         else
246         {
247                 n.first.clear();
248                 n.second = ident_and_host;
249         }
250
251         return n;
252 }
253
254 // adds a line
255
256 bool XLineManager::AddLine(XLine* line, User* user)
257 {
258         if (line->duration && ServerInstance->Time() > line->expiry)
259                 return false; // Don't apply expired XLines.
260
261         /* Don't apply duplicate xlines */
262         ContainerIter x = lookup_lines.find(line->type);
263         if (x != lookup_lines.end())
264         {
265                 LookupIter i = x->second.find(line->Displayable());
266                 if (i != x->second.end())
267                 {
268                         // XLine propagation bug was here, if the line to be added already exists and
269                         // it's expired then expire it and add the new one instead of returning false
270                         if ((!i->second->duration) || (ServerInstance->Time() < i->second->expiry))
271                                 return false;
272
273                         ExpireLine(x, i);
274                 }
275         }
276
277         /*ELine* item = new ELine(ServerInstance->Time(), duration, source, reason, ih.first.c_str(), ih.second.c_str());*/
278         XLineFactory* xlf = GetFactory(line->type);
279         if (!xlf)
280                 return false;
281
282         ServerInstance->BanCache.RemoveEntries(line->type, false); // XXX perhaps remove ELines here?
283
284         if (xlf->AutoApplyToUserList(line))
285                 pending_lines.push_back(line);
286
287         lookup_lines[line->type][line->Displayable()] = line;
288         line->OnAdd();
289
290         FOREACH_MOD(OnAddLine, (user, line));
291
292         return true;
293 }
294
295 // deletes a line, returns true if the line existed and was removed
296
297 bool XLineManager::DelLine(const char* hostmask, const std::string& type, std::string& reason, User* user, bool simulate)
298 {
299         ContainerIter x = lookup_lines.find(type);
300
301         if (x == lookup_lines.end())
302                 return false;
303
304         LookupIter y = x->second.find(hostmask);
305
306         if (y == x->second.end())
307                 return false;
308
309         reason.assign(y->second->reason);
310
311         if (simulate)
312                 return true;
313
314         ServerInstance->BanCache.RemoveEntries(y->second->type, true);
315
316         FOREACH_MOD(OnDelLine, (user, y->second));
317
318         y->second->Unset();
319
320         stdalgo::erase(pending_lines, y->second);
321
322         delete y->second;
323         x->second.erase(y);
324
325         return true;
326 }
327
328
329 void ELine::Unset()
330 {
331         ServerInstance->XLines->CheckELines();
332 }
333
334 // returns a pointer to the reason if a nickname matches a Q-line, NULL if it didn't match
335
336 XLine* XLineManager::MatchesLine(const std::string &type, User* user)
337 {
338         ContainerIter x = lookup_lines.find(type);
339
340         if (x == lookup_lines.end())
341                 return NULL;
342
343         const time_t current = ServerInstance->Time();
344
345         LookupIter safei;
346
347         for (LookupIter i = x->second.begin(); i != x->second.end(); )
348         {
349                 safei = i;
350                 safei++;
351
352                 if (i->second->duration && current > i->second->expiry)
353                 {
354                         /* Expire the line, proceed to next one */
355                         ExpireLine(x, i);
356                         i = safei;
357                         continue;
358                 }
359
360                 if (i->second->Matches(user))
361                 {
362                         return i->second;
363                 }
364
365                 i = safei;
366         }
367         return NULL;
368 }
369
370 XLine* XLineManager::MatchesLine(const std::string &type, const std::string &pattern)
371 {
372         ContainerIter x = lookup_lines.find(type);
373
374         if (x == lookup_lines.end())
375                 return NULL;
376
377         const time_t current = ServerInstance->Time();
378
379          LookupIter safei;
380
381         for (LookupIter i = x->second.begin(); i != x->second.end(); )
382         {
383                 safei = i;
384                 safei++;
385
386                 if (i->second->Matches(pattern))
387                 {
388                         if (i->second->duration && current > i->second->expiry)
389                         {
390                                 /* Expire the line, return nothing */
391                                 ExpireLine(x, i);
392                                 /* See above */
393                                 i = safei;
394                                 continue;
395                         }
396                         else
397                                 return i->second;
398                 }
399
400                 i = safei;
401         }
402         return NULL;
403 }
404
405 // removes lines that have expired
406 void XLineManager::ExpireLine(ContainerIter container, LookupIter item)
407 {
408         FOREACH_MOD(OnExpireLine, (item->second));
409
410         item->second->DisplayExpiry();
411         item->second->Unset();
412
413         /* TODO: Can we skip this loop by having a 'pending' field in the XLine class, which is set when a line
414          * is pending, cleared when it is no longer pending, so we skip over this loop if its not pending?
415          * -- Brain
416          */
417         stdalgo::erase(pending_lines, item->second);
418
419         delete item->second;
420         container->second.erase(item);
421 }
422
423
424 // applies lines, removing clients and changing nicks etc as applicable
425 void XLineManager::ApplyLines()
426 {
427         const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
428         for (UserManager::LocalList::const_iterator j = list.begin(); j != list.end(); ++j)
429         {
430                 LocalUser* u = *j;
431
432                 // Don't ban people who are exempt.
433                 if (u->exempt)
434                         continue;
435
436                 for (std::vector<XLine *>::iterator i = pending_lines.begin(); i != pending_lines.end(); i++)
437                 {
438                         XLine *x = *i;
439                         if (x->Matches(u))
440                                 x->Apply(u);
441                 }
442         }
443
444         pending_lines.clear();
445 }
446
447 void XLineManager::InvokeStats(const std::string& type, unsigned int numeric, Stats::Context& stats)
448 {
449         ContainerIter n = lookup_lines.find(type);
450
451         time_t current = ServerInstance->Time();
452
453         LookupIter safei;
454
455         if (n != lookup_lines.end())
456         {
457                 XLineLookup& list = n->second;
458                 for (LookupIter i = list.begin(); i != list.end(); )
459                 {
460                         safei = i;
461                         safei++;
462
463                         if (i->second->duration && current > i->second->expiry)
464                         {
465                                 ExpireLine(n, i);
466                         }
467                         else
468                                 stats.AddRow(numeric, i->second->Displayable()+" "+
469                                         ConvToStr(i->second->set_time)+" "+ConvToStr(i->second->duration)+" "+i->second->source+" :"+i->second->reason);
470                         i = safei;
471                 }
472         }
473 }
474
475
476 XLineManager::XLineManager()
477 {
478         GLineFactory* GFact;
479         ELineFactory* EFact;
480         KLineFactory* KFact;
481         QLineFactory* QFact;
482         ZLineFactory* ZFact;
483
484
485         GFact = new GLineFactory;
486         EFact = new ELineFactory;
487         KFact = new KLineFactory;
488         QFact = new QLineFactory;
489         ZFact = new ZLineFactory;
490
491         RegisterFactory(GFact);
492         RegisterFactory(EFact);
493         RegisterFactory(KFact);
494         RegisterFactory(QFact);
495         RegisterFactory(ZFact);
496 }
497
498 XLineManager::~XLineManager()
499 {
500         const char gekqz[] = "GEKQZ";
501         for(unsigned int i=0; i < sizeof(gekqz); i++)
502         {
503                 XLineFactory* xlf = GetFactory(std::string(1, gekqz[i]));
504                 delete xlf;
505         }
506
507         // Delete all existing XLines
508         for (XLineContainer::iterator i = lookup_lines.begin(); i != lookup_lines.end(); i++)
509         {
510                 for (XLineLookup::iterator j = i->second.begin(); j != i->second.end(); j++)
511                 {
512                         delete j->second;
513                 }
514         }
515 }
516
517 void XLine::Apply(User* u)
518 {
519 }
520
521 bool XLine::IsBurstable()
522 {
523         return !from_config;
524 }
525
526 void XLine::DefaultApply(User* u, const std::string &line, bool bancache)
527 {
528         const std::string banReason = line + "-lined: " + reason;
529
530         if (!ServerInstance->Config->XLineMessage.empty())
531                 u->WriteNumeric(ERR_YOUREBANNEDCREEP, ServerInstance->Config->XLineMessage);
532
533         if (ServerInstance->Config->HideBans)
534                 ServerInstance->Users->QuitUser(u, line + "-lined", &banReason);
535         else
536                 ServerInstance->Users->QuitUser(u, banReason);
537
538
539         if (bancache)
540         {
541                 ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCache: Adding positive hit (" + line + ") for " + u->GetIPString());
542                 ServerInstance->BanCache.AddHit(u->GetIPString(), this->type, banReason, this->duration);
543         }
544 }
545
546 bool KLine::Matches(User *u)
547 {
548         LocalUser* lu = IS_LOCAL(u);
549         if (lu && lu->exempt)
550                 return false;
551
552         if (InspIRCd::Match(u->ident, this->identmask, ascii_case_insensitive_map))
553         {
554                 if (InspIRCd::MatchCIDR(u->GetRealHost(), this->hostmask, ascii_case_insensitive_map) ||
555                     InspIRCd::MatchCIDR(u->GetIPString(), this->hostmask, ascii_case_insensitive_map))
556                 {
557                         return true;
558                 }
559         }
560
561         return false;
562 }
563
564 void KLine::Apply(User* u)
565 {
566         DefaultApply(u, "K", (this->identmask ==  "*") ? true : false);
567 }
568
569 bool GLine::Matches(User *u)
570 {
571         LocalUser* lu = IS_LOCAL(u);
572         if (lu && lu->exempt)
573                 return false;
574
575         if (InspIRCd::Match(u->ident, this->identmask, ascii_case_insensitive_map))
576         {
577                 if (InspIRCd::MatchCIDR(u->GetRealHost(), this->hostmask, ascii_case_insensitive_map) ||
578                     InspIRCd::MatchCIDR(u->GetIPString(), this->hostmask, ascii_case_insensitive_map))
579                 {
580                         return true;
581                 }
582         }
583
584         return false;
585 }
586
587 void GLine::Apply(User* u)
588 {
589         DefaultApply(u, "G", (this->identmask == "*") ? true : false);
590 }
591
592 bool ELine::Matches(User *u)
593 {
594         if (InspIRCd::Match(u->ident, this->identmask, ascii_case_insensitive_map))
595         {
596                 if (InspIRCd::MatchCIDR(u->GetRealHost(), this->hostmask, ascii_case_insensitive_map) ||
597                     InspIRCd::MatchCIDR(u->GetIPString(), this->hostmask, ascii_case_insensitive_map))
598                 {
599                         return true;
600                 }
601         }
602
603         return false;
604 }
605
606 bool ZLine::Matches(User *u)
607 {
608         LocalUser* lu = IS_LOCAL(u);
609         if (lu && lu->exempt)
610                 return false;
611
612         if (InspIRCd::MatchCIDR(u->GetIPString(), this->ipaddr))
613                 return true;
614         else
615                 return false;
616 }
617
618 void ZLine::Apply(User* u)
619 {
620         DefaultApply(u, "Z", true);
621 }
622
623
624 bool QLine::Matches(User *u)
625 {
626         if (InspIRCd::Match(u->nick, this->nick))
627                 return true;
628
629         return false;
630 }
631
632 void QLine::Apply(User* u)
633 {
634         /* Force to uuid on apply of Q-line, no need to disconnect anymore :) */
635         u->ChangeNick(u->uuid);
636 }
637
638
639 bool ZLine::Matches(const std::string &str)
640 {
641         if (InspIRCd::MatchCIDR(str, this->ipaddr))
642                 return true;
643         else
644                 return false;
645 }
646
647 bool QLine::Matches(const std::string &str)
648 {
649         if (InspIRCd::Match(str, this->nick))
650                 return true;
651
652         return false;
653 }
654
655 bool ELine::Matches(const std::string &str)
656 {
657         return (InspIRCd::MatchCIDR(str, matchtext));
658 }
659
660 bool KLine::Matches(const std::string &str)
661 {
662         return (InspIRCd::MatchCIDR(str.c_str(), matchtext));
663 }
664
665 bool GLine::Matches(const std::string &str)
666 {
667         return (InspIRCd::MatchCIDR(str, matchtext));
668 }
669
670 void ELine::OnAdd()
671 {
672         /* When adding one E-line, only check the one E-line */
673         const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
674         for (UserManager::LocalList::const_iterator u2 = list.begin(); u2 != list.end(); u2++)
675         {
676                 LocalUser* u = *u2;
677                 if (this->Matches(u))
678                         u->exempt = true;
679         }
680 }
681
682 void XLine::DisplayExpiry()
683 {
684         bool onechar = (type.length() == 1);
685         ServerInstance->SNO->WriteToSnoMask('x', "Removing expired %s%s %s (set by %s %ld seconds ago): %s",
686                 type.c_str(), (onechar ? "-line" : ""), Displayable().c_str(), source.c_str(), (long)(ServerInstance->Time() - set_time), reason.c_str());
687 }
688
689 const std::string& ELine::Displayable()
690 {
691         return matchtext;
692 }
693
694 const std::string& KLine::Displayable()
695 {
696         return matchtext;
697 }
698
699 const std::string& GLine::Displayable()
700 {
701         return matchtext;
702 }
703
704 const std::string& ZLine::Displayable()
705 {
706         return ipaddr;
707 }
708
709 const std::string& QLine::Displayable()
710 {
711         return nick;
712 }
713
714 bool KLine::IsBurstable()
715 {
716         return false;
717 }
718
719 bool XLineManager::RegisterFactory(XLineFactory* xlf)
720 {
721         XLineFactMap::iterator n = line_factory.find(xlf->GetType());
722
723         if (n != line_factory.end())
724                 return false;
725
726         line_factory[xlf->GetType()] = xlf;
727
728         return true;
729 }
730
731 bool XLineManager::UnregisterFactory(XLineFactory* xlf)
732 {
733         XLineFactMap::iterator n = line_factory.find(xlf->GetType());
734
735         if (n == line_factory.end())
736                 return false;
737
738         line_factory.erase(n);
739
740         return true;
741 }
742
743 XLineFactory* XLineManager::GetFactory(const std::string &type)
744 {
745         XLineFactMap::iterator n = line_factory.find(type);
746
747         if (n == line_factory.end())
748                 return NULL;
749
750         return n->second;
751 }
752
753 void XLineManager::ClearConfigLines()
754 {
755         // Nothing to do.
756         if (lookup_lines.empty())
757                 return;
758
759         ServerInstance->SNO->WriteToSnoMask('x', "Server rehashing; expiring lines defined in the server config ...");
760         for (ContainerIter type = lookup_lines.begin(); type != lookup_lines.end(); ++type)
761         {
762                 for (LookupIter xline = type->second.begin(); xline != type->second.end(); )
763                 {
764                         // We cache this to avoid iterator invalidation.
765                         LookupIter cachedxline = xline++;
766                         if (cachedxline->second->from_config)
767                         {
768                                 ExpireLine(type, cachedxline);
769                         }
770                 }
771         }
772 }