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