]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_filter.cpp
94dc2f134e755480db417e45f8911a2d7677c109
[user/henk/code/inspircd.git] / src / modules / m_filter.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "xline.h"
16 #include "m_regex.h"
17
18 /* $ModDesc: Text (spam) filtering */
19
20 static std::string RegexEngine = "";
21 static Module* rxengine = NULL;
22
23 enum FilterFlags
24 {
25         FLAG_PART = 2,
26         FLAG_QUIT = 4,
27         FLAG_PRIVMSG = 8,
28         FLAG_NOTICE = 16
29 };
30
31 class FilterResult : public classbase
32 {
33  public:
34         std::string freeform;
35         std::string reason;
36         std::string action;
37         long gline_time;
38         std::string flags;
39
40         bool flag_no_opers;
41         bool flag_part_message;
42         bool flag_quit_message;
43         bool flag_privmsg;
44         bool flag_notice;
45
46         FilterResult(const std::string free, const std::string &rea, const std::string &act, long gt, const std::string &fla) :
47                         freeform(free), reason(rea), action(act), gline_time(gt), flags(fla)
48         {
49                 this->FillFlags(fla);
50         }
51
52         int FillFlags(const std::string &fl)
53         {
54                 flags = fl;
55                 flag_no_opers = flag_part_message = flag_quit_message = flag_privmsg = flag_notice = false;
56                 size_t x = 0;
57
58                 for (std::string::const_iterator n = flags.begin(); n != flags.end(); ++n, ++x)
59                 {
60                         switch (*n)
61                         {
62                                 case 'o':
63                                         flag_no_opers = true;
64                                 break;
65                                 case 'P':
66                                         flag_part_message = true;
67                                 break;
68                                 case 'q':
69                                         flag_quit_message = true;
70                                 break;
71                                 case 'p':
72                                         flag_privmsg = true;
73                                 break;
74                                 case 'n':
75                                         flag_notice = true;
76                                 break;
77                                 case '*':
78                                         flag_no_opers = flag_part_message = flag_quit_message =
79                                                 flag_privmsg = flag_notice = true;
80                                 break;
81                                 default:
82                                         return x;
83                                 break;
84                         }
85                 }
86                 return 0;
87         }
88
89         FilterResult()
90         {
91         }
92
93         virtual ~FilterResult()
94         {
95         }
96 };
97
98 class CommandFilter;
99
100 class FilterBase : public Module
101 {
102         CommandFilter* filtcommand;
103         int flags;
104 protected:
105         std::vector<std::string> exemptfromfilter; // List of channel names excluded from filtering.
106  public:
107         FilterBase(InspIRCd* Me, const std::string &source);
108         virtual ~FilterBase();
109         virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
110         virtual FilterResult* FilterMatch(User* user, const std::string &text, int flags) = 0;
111         virtual bool DeleteFilter(const std::string &freeform) = 0;
112         virtual void SyncFilters(Module* proto, void* opaque) = 0;
113         virtual void SendFilter(Module* proto, void* opaque, FilterResult* iter);
114         virtual std::pair<bool, std::string> AddFilter(const std::string &freeform, const std::string &type, const std::string &reason, long duration, const std::string &flags) = 0;
115         virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list);
116         virtual void OnRehash(User* user, const std::string &parameter);
117         virtual Version GetVersion();
118         std::string EncodeFilter(FilterResult* filter);
119         FilterResult DecodeFilter(const std::string &data);
120         virtual void OnSyncOtherMetaData(Module* proto, void* opaque, bool displayable = false);
121         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata);
122         virtual int OnStats(char symbol, User* user, string_list &results) = 0;
123         virtual int OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line);
124         bool AppliesToMe(User* user, FilterResult* filter, int flags);
125         void OnLoadModule(Module* mod, const std::string& name);
126         virtual void ReadFilters(ConfigReader &MyConf) = 0;
127 };
128
129 class CommandFilter : public Command
130 {
131         FilterBase* Base;
132  public:
133         CommandFilter(FilterBase* f, InspIRCd* Me, const std::string &ssource) : Command(Me, "FILTER", "o", 1, 5), Base(f)
134         {
135                 this->source = ssource;
136                 this->syntax = "<filter-definition> <action> <flags> [<gline-duration>] :<reason>";
137         }
138
139         CmdResult Handle(const std::vector<std::string> &parameters, User *user)
140         {
141                 if (parameters.size() == 1)
142                 {
143                         /* Deleting a filter */
144                         if (Base->DeleteFilter(parameters[0]))
145                         {
146                                 user->WriteServ("NOTICE %s :*** Removed filter '%s'", user->nick.c_str(), parameters[0].c_str());
147                                 ServerInstance->SNO->WriteGlobalSno('a', std::string("FILTER: ")+user->nick+" removed filter '"+parameters[0]+"'");
148                                 return CMD_SUCCESS;
149                         }
150                         else
151                         {
152                                 user->WriteServ("NOTICE %s :*** Filter '%s' not found in list, try /stats s.", user->nick.c_str(), parameters[0].c_str());
153                                 return CMD_FAILURE;
154                         }
155                 }
156                 else
157                 {
158                         /* Adding a filter */
159                         if (parameters.size() >= 4)
160                         {
161                                 std::string freeform = parameters[0];
162                                 std::string type = parameters[1];
163                                 std::string flags = parameters[2];
164                                 std::string reason;
165                                 long duration = 0;
166
167
168                                 if ((type != "gline") && (type != "none") && (type != "block") && (type != "kill") && (type != "silent"))
169                                 {
170                                         user->WriteServ("NOTICE %s :*** Invalid filter type '%s'. Supported types are 'gline', 'none', 'block', 'silent' and 'kill'.", user->nick.c_str(), type.c_str());
171                                         return CMD_FAILURE;
172                                 }
173
174                                 if (type == "gline")
175                                 {
176                                         if (parameters.size() >= 5)
177                                         {
178                                                 duration = ServerInstance->Duration(parameters[3]);
179                                                 reason = parameters[4];
180                                         }
181                                         else
182                                         {
183                                                 this->TooFewParams(user, ": When setting a gline type filter, a gline duration must be specified as the third parameter.");
184                                                 return CMD_FAILURE;
185                                         }
186                                 }
187                                 else
188                                 {
189                                         reason = parameters[3];
190                                 }
191                                 std::pair<bool, std::string> result = Base->AddFilter(freeform, type, reason, duration, flags);
192                                 if (result.first)
193                                 {
194                                         user->WriteServ("NOTICE %s :*** Added filter '%s', type '%s'%s%s, flags '%s', reason: '%s'", user->nick.c_str(), freeform.c_str(),
195                                                         type.c_str(), (duration ? ", duration " : ""), (duration ? parameters[3].c_str() : ""),
196                                                         flags.c_str(), reason.c_str());
197
198                                         ServerInstance->SNO->WriteGlobalSno('a', std::string("FILTER: ")+user->nick+" added filter '"+freeform+"', type '"+type+"', "+(duration ? "duration "+parameters[3]+", " : "")+"flags '"+flags+"', reason: "+reason);
199
200                                         return CMD_SUCCESS;
201                                 }
202                                 else
203                                 {
204                                         user->WriteServ("NOTICE %s :*** Filter '%s' could not be added: %s", user->nick.c_str(), freeform.c_str(), result.second.c_str());
205                                         return CMD_FAILURE;
206                                 }
207                         }
208                         else
209                         {
210                                 this->TooFewParams(user, ".");
211                                 return CMD_FAILURE;
212                         }
213
214                 }
215         }
216
217         void TooFewParams(User* user, const std::string &extra_text)
218         {
219                 user->WriteServ("NOTICE %s :*** Not enough parameters%s", user->nick.c_str(), extra_text.c_str());
220         }
221 };
222
223 bool FilterBase::AppliesToMe(User* user, FilterResult* filter, int iflags)
224 {
225         if ((filter->flag_no_opers) && IS_OPER(user))
226                 return false;
227         if ((iflags & FLAG_PRIVMSG) && (!filter->flag_privmsg))
228                 return false;
229         if ((iflags & FLAG_NOTICE) && (!filter->flag_notice))
230                 return false;
231         if ((iflags & FLAG_QUIT)   && (!filter->flag_quit_message))
232                 return false;
233         if ((iflags & FLAG_PART)   && (!filter->flag_part_message))
234                 return false;
235         return true;
236 }
237
238 FilterBase::FilterBase(InspIRCd* Me, const std::string &source) : Module(Me)
239 {
240         Me->Modules->UseInterface("RegularExpression");
241         filtcommand = new CommandFilter(this, Me, source);
242         ServerInstance->AddCommand(filtcommand);
243         Implementation eventlist[] = { I_OnPreCommand, I_OnStats, I_OnSyncOtherMetaData, I_OnDecodeMetaData, I_OnUserPreMessage, I_OnUserPreNotice, I_OnRehash, I_OnLoadModule };
244         ServerInstance->Modules->Attach(eventlist, this, 8);
245 }
246
247 FilterBase::~FilterBase()
248 {
249         ServerInstance->Modules->DoneWithInterface("RegularExpression");
250 }
251
252 int FilterBase::OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
253 {
254         flags = FLAG_PRIVMSG;
255         return OnUserPreNotice(user,dest,target_type,text,status,exempt_list);
256 }
257
258 int FilterBase::OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
259 {
260         if (!flags)
261                 flags = FLAG_NOTICE;
262
263         /* Leave ulines alone */
264         if ((ServerInstance->ULine(user->server)) || (!IS_LOCAL(user)))
265                 return 0;
266
267         FilterResult* f = this->FilterMatch(user, text, flags);
268         if (f)
269         {
270                 std::string target = "";
271                 if (target_type == TYPE_USER)
272                 {
273                         User* t = (User*)dest;
274                         target = std::string(t->nick);
275                 }
276                 else if (target_type == TYPE_CHANNEL)
277                 {
278                         Channel* t = (Channel*)dest;
279                         target = std::string(t->name);
280                         std::vector<std::string>::iterator i = find(exemptfromfilter.begin(), exemptfromfilter.end(), target);
281                         if (i != exemptfromfilter.end()) return 0;
282                 }
283                 if (f->action == "block")
284                 {
285                         ServerInstance->SNO->WriteGlobalSno('a', std::string("FILTER: ")+user->nick+" had their message filtered, target was "+target+": "+f->reason);
286                         if (target_type == TYPE_CHANNEL)
287                                 user->WriteNumeric(404, "%s %s :Message to channel blocked and opers notified (%s)",user->nick.c_str(), target.c_str(), f->reason.c_str());
288                         else
289                                 user->WriteServ("NOTICE "+std::string(user->nick)+" :Your message to "+target+" was blocked and opers notified: "+f->reason);
290                 }
291                 if (f->action == "silent")
292                 {
293                         if (target_type == TYPE_CHANNEL)
294                                 user->WriteNumeric(404, "%s %s :Message to channel blocked (%s)",user->nick.c_str(), target.c_str(), f->reason.c_str());
295                         else
296                                 user->WriteServ("NOTICE "+std::string(user->nick)+" :Your message to "+target+" was blocked: "+f->reason);
297                 }
298                 if (f->action == "kill")
299                 {
300                         ServerInstance->Users->QuitUser(user, "Filtered: " + f->reason);
301                 }
302                 if (f->action == "gline")
303                 {
304                         GLine* gl = new GLine(ServerInstance, ServerInstance->Time(), f->gline_time, ServerInstance->Config->ServerName, f->reason.c_str(), "*", user->GetIPString());
305                         if (ServerInstance->XLines->AddLine(gl,NULL))
306                         {
307                                 ServerInstance->XLines->ApplyLines();
308                         }
309                         else
310                                 delete gl;
311                 }
312
313                 ServerInstance->Logs->Log("FILTER",DEFAULT,"FILTER: "+ user->nick + " had their message filtered, target was " + target + ": " + f->reason + " Action: " + f->action);
314                 return 1;
315         }
316         return 0;
317 }
318
319 int FilterBase::OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
320 {
321         flags = 0;
322         if (validated && IS_LOCAL(user))
323         {
324                 std::string checkline;
325                 int replacepoint = 0;
326                 bool parting = false;
327
328                 if (command == "QUIT")
329                 {
330                         /* QUIT with no reason: nothing to do */
331                         if (parameters.size() < 1)
332                                 return 0;
333
334                         checkline = parameters[0];
335                         replacepoint = 0;
336                         parting = false;
337                         flags = FLAG_QUIT;
338                 }
339                 else if (command == "PART")
340                 {
341                         /* PART with no reason: nothing to do */
342                         if (parameters.size() < 2)
343                                 return 0;
344
345                         std::vector<std::string>::iterator i = find(exemptfromfilter.begin(), exemptfromfilter.end(), parameters[0]);
346                         if (i != exemptfromfilter.end()) return 0;
347                         checkline = parameters[1];
348                         replacepoint = 1;
349                         parting = true;
350                         flags = FLAG_PART;
351                 }
352                 else
353                         /* We're only messing with PART and QUIT */
354                         return 0;
355
356                 FilterResult* f = NULL;
357
358                 if (flags)
359                         f = this->FilterMatch(user, checkline, flags);
360
361                 if (!f)
362                         /* PART or QUIT reason doesnt match a filter */
363                         return 0;
364
365                 /* We cant block a part or quit, so instead we change the reason to 'Reason filtered' */
366                 Command* c = ServerInstance->Parser->GetHandler(command);
367                 if (c)
368                 {
369                         std::vector<std::string> params;
370                         for (int item = 0; item < (int)parameters.size(); item++)
371                                 params.push_back(parameters[item]);
372                         params[replacepoint] = "Reason filtered";
373
374                         /* We're blocking, OR theyre quitting and its a KILL action
375                          * (we cant kill someone whos already quitting, so filter them anyway)
376                          */
377                         if ((f->action == "block") || (((!parting) && (f->action == "kill"))) || (f->action == "silent"))
378                         {
379                                 c->Handle(params, user);
380                                 return 1;
381                         }
382                         else
383                         {
384                                 /* Are they parting, if so, kill is applicable */
385                                 if ((parting) && (f->action == "kill"))
386                                 {
387                                         user->WriteServ("NOTICE %s :*** Your PART message was filtered: %s", user->nick.c_str(), f->reason.c_str());
388                                         ServerInstance->Users->QuitUser(user, "Filtered: " + f->reason);
389                                 }
390                                 if (f->action == "gline")
391                                 {
392                                         /* Note: We gline *@IP so that if their host doesnt resolve the gline still applies. */
393                                         GLine* gl = new GLine(ServerInstance, ServerInstance->Time(), f->gline_time, ServerInstance->Config->ServerName, f->reason.c_str(), "*", user->GetIPString());
394                                         if (ServerInstance->XLines->AddLine(gl,NULL))
395                                         {
396                                                 ServerInstance->XLines->ApplyLines();
397                                         }
398                                         else
399                                                 delete gl;
400                                 }
401                                 return 1;
402                         }
403                 }
404                 return 0;
405         }
406         return 0;
407 }
408
409 void FilterBase::OnRehash(User* user, const std::string &parameter)
410 {
411         ConfigReader MyConf(ServerInstance);
412         std::vector<std::string>().swap(exemptfromfilter);
413         for (int index = 0; index < MyConf.Enumerate("exemptfromfilter"); ++index)
414         {
415                 std::string chan = MyConf.ReadValue("exemptfromfilter", "channel", index);
416                 if (!chan.empty()) {
417                         exemptfromfilter.push_back(chan);
418                 }
419         }
420         std::string newrxengine = MyConf.ReadValue("filteropts", "engine", 0);
421         if (!RegexEngine.empty())
422         {
423                 if (RegexEngine == newrxengine)
424                         return;
425
426                 ServerInstance->SNO->WriteGlobalSno('a', "Dumping all filters due to regex engine change (was '%s', now '%s')", RegexEngine.c_str(), newrxengine.c_str());
427                 //ServerInstance->XLines->DelAll("R");
428         }
429         rxengine = NULL;
430
431         RegexEngine = newrxengine;
432         modulelist* ml = ServerInstance->Modules->FindInterface("RegularExpression");
433         if (ml)
434         {
435                 for (modulelist::iterator i = ml->begin(); i != ml->end(); ++i)
436                 {
437                         if (RegexNameRequest(this, *i).Send() == newrxengine)
438                         {
439                                 ServerInstance->SNO->WriteGlobalSno('a', "Filter now using engine '%s'", RegexEngine.c_str());
440                                 rxengine = *i;
441                         }
442                 }
443         }
444         if (!rxengine)
445         {
446                 ServerInstance->SNO->WriteGlobalSno('a', "WARNING: Regex engine '%s' is not loaded - Filter functionality disabled until this is corrected.", RegexEngine.c_str());
447         }
448 }
449
450 void FilterBase::OnLoadModule(Module* mod, const std::string& name)
451 {
452         if (ServerInstance->Modules->ModuleHasInterface(mod, "RegularExpression"))
453         {
454                 std::string rxname = RegexNameRequest(this, mod).Send();
455                 if (rxname == RegexEngine)
456                 {
457                         rxengine = mod;
458                         /* Force a rehash to make sure that any filters that couldnt be applied from the conf
459                          * on startup or on load are applied right now.
460                          */
461                         ConfigReader Config(ServerInstance);
462                         ServerInstance->SNO->WriteGlobalSno('a', "Found and activated regex module '%s' for m_filter.so.", RegexEngine.c_str());
463                         ReadFilters(Config);
464                 }
465         }
466 }
467
468
469 Version FilterBase::GetVersion()
470 {
471         return Version("$Id$", VF_VENDOR | VF_COMMON, API_VERSION);
472 }
473
474
475 std::string FilterBase::EncodeFilter(FilterResult* filter)
476 {
477         std::ostringstream stream;
478         std::string x = filter->freeform;
479
480         /* Hax to allow spaces in the freeform without changing the design of the irc protocol */
481         for (std::string::iterator n = x.begin(); n != x.end(); n++)
482                 if (*n == ' ')
483                         *n = '\7';
484
485         stream << x << " " << filter->action << " " << (filter->flags.empty() ? "-" : filter->flags) << " " << filter->gline_time << " :" << filter->reason;
486         return stream.str();
487 }
488
489 FilterResult FilterBase::DecodeFilter(const std::string &data)
490 {
491         FilterResult res;
492         irc::tokenstream tokens(data);
493         tokens.GetToken(res.freeform);
494         tokens.GetToken(res.action);
495         tokens.GetToken(res.flags);
496         if (res.flags == "-")
497                 res.flags = "";
498         res.FillFlags(res.flags);
499         tokens.GetToken(res.gline_time);
500         tokens.GetToken(res.reason);
501
502         /* Hax to allow spaces in the freeform without changing the design of the irc protocol */
503         for (std::string::iterator n = res.freeform.begin(); n != res.freeform.end(); n++)
504                 if (*n == '\7')
505                         *n = ' ';
506
507         return res;
508 }
509
510 void FilterBase::OnSyncOtherMetaData(Module* proto, void* opaque, bool displayable)
511 {
512         this->SyncFilters(proto, opaque);
513 }
514
515 void FilterBase::SendFilter(Module* proto, void* opaque, FilterResult* iter)
516 {
517         proto->ProtoSendMetaData(opaque, TYPE_OTHER, NULL, "filter", EncodeFilter(iter));
518 }
519
520 void FilterBase::OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata)
521 {
522         if ((target_type == TYPE_OTHER) && (extname == "filter"))
523         {
524                 FilterResult data = DecodeFilter(extdata);
525                 this->AddFilter(data.freeform, data.action, data.reason, data.gline_time, data.flags);
526         }
527 }
528
529 class ImplFilter : public FilterResult
530 {
531  public:
532         Regex* regex;
533
534         ImplFilter(Module* mymodule, const std::string &rea, const std::string &act, long glinetime, const std::string &pat, const std::string &flgs)
535                 : FilterResult(pat, rea, act, glinetime, flgs)
536         {
537                 if (!rxengine)
538                         throw ModuleException("Regex module implementing '"+RegexEngine+"' is not loaded!");
539
540                 regex = RegexFactoryRequest(mymodule, rxengine, pat).Create();
541         }
542
543         ImplFilter()
544         {
545         }
546 };
547
548 class ModuleFilter : public FilterBase
549 {
550         std::vector<ImplFilter> filters;
551         const char *error;
552         int erroffset;
553         ImplFilter fr;
554
555  public:
556         ModuleFilter(InspIRCd* Me)
557         : FilterBase(Me, "m_filter.so")
558         {
559                 OnRehash(NULL,"");
560         }
561
562         virtual ~ModuleFilter()
563         {
564         }
565
566         virtual FilterResult* FilterMatch(User* user, const std::string &text, int flgs)
567         {
568                 for (std::vector<ImplFilter>::iterator index = filters.begin(); index != filters.end(); index++)
569                 {
570                         /* Skip ones that dont apply to us */
571                         if (!FilterBase::AppliesToMe(user, dynamic_cast<FilterResult*>(&(*index)), flgs))
572                                 continue;
573
574                         //ServerInstance->Logs->Log("m_filter", DEBUG, "Match '%s' against '%s'", text.c_str(), index->freeform.c_str());
575                         if (index->regex->Matches(text))
576                         {
577                                 //ServerInstance->Logs->Log("m_filter", DEBUG, "MATCH");
578                                 fr = *index;
579                                 if (index != filters.begin())
580                                 {
581                                         /* Move to head of list for efficiency */
582                                         filters.erase(index);
583                                         filters.insert(filters.begin(), fr);
584                                 }
585                                 return &fr;
586                         }
587                         //ServerInstance->Logs->Log("m_filter", DEBUG, "NO MATCH");
588                 }
589                 return NULL;
590         }
591
592         virtual bool DeleteFilter(const std::string &freeform)
593         {
594                 for (std::vector<ImplFilter>::iterator i = filters.begin(); i != filters.end(); i++)
595                 {
596                         if (i->freeform == freeform)
597                         {
598                                 delete i->regex;
599                                 filters.erase(i);
600                                 return true;
601                         }
602                 }
603                 return false;
604         }
605
606         virtual void SyncFilters(Module* proto, void* opaque)
607         {
608                 for (std::vector<ImplFilter>::iterator i = filters.begin(); i != filters.end(); i++)
609                 {
610                         this->SendFilter(proto, opaque, &(*i));
611                 }
612         }
613
614         virtual std::pair<bool, std::string> AddFilter(const std::string &freeform, const std::string &type, const std::string &reason, long duration, const std::string &flgs)
615         {
616                 for (std::vector<ImplFilter>::iterator i = filters.begin(); i != filters.end(); i++)
617                 {
618                         if (i->freeform == freeform)
619                         {
620                                 return std::make_pair(false, "Filter already exists");
621                         }
622                 }
623
624                 try
625                 {
626                         filters.push_back(ImplFilter(this, reason, type, duration, freeform, flgs));
627                 }
628                 catch (ModuleException &e)
629                 {
630                         ServerInstance->Logs->Log("m_filter", DEFAULT, "Error in regular expression '%s': %s", freeform.c_str(), e.GetReason());
631                         return std::make_pair(false, e.GetReason());
632                 }
633                 return std::make_pair(true, "");
634         }
635
636         virtual void OnRehash(User* user, const std::string &parameter)
637         {
638                 ConfigReader MyConf(ServerInstance);
639                 FilterBase::OnRehash(user, parameter);
640                 ReadFilters(MyConf);
641         }
642
643         void ReadFilters(ConfigReader &MyConf)
644         {
645                 for (int index = 0; index < MyConf.Enumerate("keyword"); index++)
646                 {
647                         this->DeleteFilter(MyConf.ReadValue("keyword", "pattern", index));
648
649                         std::string pattern = MyConf.ReadValue("keyword", "pattern", index);
650                         std::string reason = MyConf.ReadValue("keyword", "reason", index);
651                         std::string action = MyConf.ReadValue("keyword", "action", index);
652                         std::string flgs = MyConf.ReadValue("keyword", "flags", index);
653                         long gline_time = ServerInstance->Duration(MyConf.ReadValue("keyword", "duration", index));
654                         if (action.empty())
655                                 action = "none";
656                         if (flgs.empty())
657                                 flgs = "*";
658
659                         try
660                         {
661                                 filters.push_back(ImplFilter(this, reason, action, gline_time, pattern, flgs));
662                                 ServerInstance->Logs->Log("m_filter", DEFAULT, "Regular expression %s loaded.", pattern.c_str());
663                         }
664                         catch (ModuleException &e)
665                         {
666                                 ServerInstance->Logs->Log("m_filter", DEFAULT, "Error in regular expression '%s': %s", pattern.c_str(), e.GetReason());
667                         }
668                 }
669         }
670
671         virtual int OnStats(char symbol, User* user, string_list &results)
672         {
673                 if (symbol == 's')
674                 {
675                         std::string sn = ServerInstance->Config->ServerName;
676                         for (std::vector<ImplFilter>::iterator i = filters.begin(); i != filters.end(); i++)
677                         {
678                                 results.push_back(sn+" 223 "+user->nick+" :"+RegexEngine+":"+i->freeform+" "+i->flags+" "+i->action+" "+ConvToStr(i->gline_time)+" :"+i->reason);
679                         }
680                         for (std::vector<std::string>::iterator i = exemptfromfilter.begin(); i != exemptfromfilter.end(); ++i)
681                         {
682                                 results.push_back(sn+" 223 "+user->nick+" :EXEMPT "+(*i));
683                         }
684                 }
685                 return 0;
686         }
687 };
688
689 MODULE_INIT(ModuleFilter)