]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Added OnAddBan and OnDelBan module api calls, and fixed glitch which required them...
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "inspircd.h"
18 #include "inspircd_io.h"
19 #include "inspircd_util.h"
20 #include "inspircd_config.h"
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <sys/errno.h>
24 #include <sys/ioctl.h>
25 #include <sys/utsname.h>
26 #include <cstdio>
27 #include <time.h>
28 #include <string>
29 #ifdef GCC3
30 #include <ext/hash_map>
31 #else
32 #include <hash_map>
33 #endif
34 #include <map>
35 #include <sstream>
36 #include <vector>
37 #include <errno.h>
38 #include <deque>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <sched.h>
42 #include "connection.h"
43 #include "users.h"
44 #include "servers.h"
45 #include "ctables.h"
46 #include "globals.h"
47 #include "modules.h"
48 #include "dynamic.h"
49 #include "wildcard.h"
50 #include "message.h"
51 #include "mode.h"
52 #include "xline.h"
53 #include "commands.h"
54 #include "inspstring.h"
55
56 #ifdef GCC3
57 #define nspace __gnu_cxx
58 #else
59 #define nspace std
60 #endif
61
62 using namespace std;
63
64 extern int MODCOUNT;
65 extern std::vector<Module*> modules;
66 extern std::vector<ircd_module*> factory;
67
68 extern time_t TIME;
69
70 extern int LogLevel;
71 extern char ServerName[MAXBUF];
72 extern char Network[MAXBUF];
73 extern char ServerDesc[MAXBUF];
74 extern char AdminName[MAXBUF];
75 extern char AdminEmail[MAXBUF];
76 extern char AdminNick[MAXBUF];
77 extern char diepass[MAXBUF];
78 extern char restartpass[MAXBUF];
79 extern char motd[MAXBUF];
80 extern char rules[MAXBUF];
81 extern char list[MAXBUF];
82 extern char PrefixQuit[MAXBUF];
83 extern char DieValue[MAXBUF];
84
85 extern int debugging;
86 extern int WHOWAS_STALE;
87 extern int WHOWAS_MAX;
88 extern int DieDelay;
89 extern time_t startup_time;
90 extern int NetBufferSize;
91 extern int MaxWhoResults;
92 extern time_t nb_start;
93
94 extern std::vector<int> fd_reap;
95 extern std::vector<std::string> module_names;
96
97 extern int boundPortCount;
98 extern int portCount;
99 extern int UDPportCount;
100 extern int ports[MAXSOCKS];
101 extern int defaultRoute;
102
103 extern std::vector<long> auth_cookies;
104 extern std::stringstream config_f;
105
106 extern serverrec* me[32];
107
108 extern FILE *log_file;
109
110
111 namespace nspace
112 {
113 #ifdef GCC34
114         template<> struct hash<in_addr>
115 #else
116         template<> struct nspace::hash<in_addr>
117 #endif
118         {
119                 size_t operator()(const struct in_addr &a) const
120                 {
121                         size_t q;
122                         memcpy(&q,&a,sizeof(size_t));
123                         return q;
124                 }
125         };
126 #ifdef GCC34
127         template<> struct hash<string>
128 #else
129         template<> struct nspace::hash<string>
130 #endif
131         {
132                 size_t operator()(const string &s) const
133                 {
134                         char a[MAXBUF];
135                         static struct hash<const char *> strhash;
136                         strlcpy(a,s.c_str(),MAXBUF);
137                         strlower(a);
138                         return strhash(a);
139                 }
140         };
141 }
142
143 struct StrHashComp
144 {
145
146         bool operator()(const string& s1, const string& s2) const
147         {
148                 char a[MAXBUF],b[MAXBUF];
149                 strlcpy(a,s1.c_str(),MAXBUF);
150                 strlcpy(b,s2.c_str(),MAXBUF);
151                 strlower(a);
152                 strlower(b);
153                 return (strcasecmp(a,b) == 0);
154         }
155
156 };
157
158 struct InAddr_HashComp
159 {
160
161         bool operator()(const in_addr &s1, const in_addr &s2) const
162         {
163                 size_t q;
164                 size_t p;
165                 
166                 memcpy(&q,&s1,sizeof(size_t));
167                 memcpy(&p,&s2,sizeof(size_t));
168                 
169                 return (q == p);
170         }
171
172 };
173
174
175 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash;
176 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash;
177 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, InAddr_HashComp> address_cache;
178 typedef std::deque<command_t> command_table;
179
180
181 extern user_hash clientlist;
182 extern chan_hash chanlist;
183 extern user_hash whowas;
184 extern command_table cmdlist;
185 extern file_cache MOTD;
186 extern file_cache RULES;
187 extern address_cache IP;
188
189
190 // class type for holding an extended mode character - internal to core
191
192 class ExtMode : public classbase
193 {
194 public:
195         char modechar;
196         int type;
197         int params_when_on;
198         int params_when_off;
199         bool needsoper;
200         bool list;
201         ExtMode(char mc, int ty, bool oper, int p_on, int p_off) : modechar(mc), type(ty), needsoper(oper), params_when_on(p_on), params_when_off(p_off) { };
202 };                                     
203
204 typedef std::vector<ExtMode> ExtModeList;
205 typedef ExtModeList::iterator ExtModeListIter;
206
207
208 ExtModeList EMode;
209
210 // returns true if an extended mode character is in use
211 bool ModeDefined(char modechar, int type)
212 {
213         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
214         {
215                 if ((i->modechar == modechar) && (i->type == type))
216                 {
217                         return true;
218                 }
219         }
220         return false;
221 }
222
223 bool ModeIsListMode(char modechar, int type)
224 {
225         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
226         {
227                 if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
228                 {
229                         return true;
230                 }
231         }
232         return false;
233 }
234
235 bool ModeDefinedOper(char modechar, int type)
236 {
237         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
238         {
239                 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
240                 {
241                         return true;
242                 }
243         }
244         return false;
245 }
246
247 // returns number of parameters for a custom mode when it is switched on
248 int ModeDefinedOn(char modechar, int type)
249 {
250         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
251         {
252                 if ((i->modechar == modechar) && (i->type == type))
253                 {
254                         return i->params_when_on;
255                 }
256         }
257         return 0;
258 }
259
260 // returns number of parameters for a custom mode when it is switched on
261 int ModeDefinedOff(char modechar, int type)
262 {
263         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
264         {
265                 if ((i->modechar == modechar) && (i->type == type))
266                 {
267                         return i->params_when_off;
268                 }
269         }
270         return 0;
271 }
272
273 // returns true if an extended mode character is in use
274 bool DoAddExtendedMode(char modechar, int type, bool requires_oper, int params_on, int params_off)
275 {
276         if (ModeDefined(modechar,type)) {
277                 return false;
278         }
279         EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
280         return true;
281 }
282
283 // turns a mode into a listmode
284 void ModeMakeList(char modechar)
285 {
286         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
287         {
288                 if ((i->modechar == modechar) && (i->type == MT_CHANNEL))
289                 {
290                         i->list = true;
291                         return;
292                 }
293         }
294         return;
295 }
296
297 // version is a simple class for holding a modules version number
298
299 Version::Version(int major, int minor, int revision, int build, int flags) : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags) { };
300
301 // admin is a simple class for holding a server's administrative info
302
303 Admin::Admin(std::string name, std::string email, std::string nick) : Name(name), Email(email), Nick(nick) { };
304
305 Request::Request(char* anydata, Module* src, Module* dst) : data(anydata), source(src), dest(dst) { };
306
307 char* Request::GetData()
308 {
309         return this->data;
310 }
311
312 Module* Request::GetSource()
313 {
314         return this->source;
315 }
316
317 Module* Request::GetDest()
318 {
319         return this->dest;
320 }
321
322 char* Request::Send()
323 {
324         if (this->dest)
325         {
326                 return dest->OnRequest(this);
327         }
328         else
329         {
330                 return NULL;
331         }
332 }
333
334 Event::Event(char* anydata, Module* src, std::string eventid) : data(anydata), source(src), id(eventid) { };
335
336 char* Event::GetData()
337 {
338         return this->data;
339 }
340
341 Module* Event::GetSource()
342 {
343         return this->source;
344 }
345
346 char* Event::Send()
347 {
348         FOREACH_MOD OnEvent(this);
349         return NULL;
350 }
351
352 std::string Event::GetEventID()
353 {
354         return this->id;
355 }
356
357
358 Module::Module() { }
359 Module::~Module() { }
360 void Module::OnUserConnect(userrec* user) { }
361 void Module::OnUserQuit(userrec* user) { }
362 void Module::OnUserDisconnect(userrec* user) { }
363 void Module::OnUserJoin(userrec* user, chanrec* channel) { }
364 void Module::OnUserPart(userrec* user, chanrec* channel) { }
365 void Module::OnPacketTransmit(std::string &data, std::string serv) { }
366 void Module::OnPacketReceive(std::string &data, std::string serv) { }
367 void Module::OnRehash() { }
368 void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
369 int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
370 int Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
371 Version Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
372 void Module::OnOper(userrec* user) { };
373 void Module::OnInfo(userrec* user) { };
374 void Module::OnWhois(userrec* source, userrec* dest) { };
375 int Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
376 int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
377 int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
378 int Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
379 void Module::OnUserPostNick(userrec* user, std::string oldnick) { };
380 int Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
381 string_list Module::OnUserSync(userrec* user) { string_list empty; return empty; }
382 string_list Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; }
383 void Module::On005Numeric(std::string &output) { };
384 int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
385 void Module::OnLoadModule(Module* mod,std::string name) { };
386 void Module::OnBackgroundTimer(time_t curtime) { };
387 void Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
388 int Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) { return 0; };
389 bool Module::OnCheckReady(userrec* user) { return true; };
390 void Module::OnUserRegister(userrec* user) { };
391 int Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; };
392 void Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { };
393 int Module::OnRawMode(userrec* user, chanrec* chan, char mode, std::string param, bool adding, int pcnt) { return 0; };
394 int Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
395 int Module::OnCheckKey(userrec* user, chanrec* chan, std::string keygiven) { return 0; };
396 int Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
397 int Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
398 void Module::OnStats(char symbol) { };
399 int Module::OnChangeLocalUserHost(userrec* user, std::string newhost) { return 0; };
400 int Module::OnChangeLocalUserGECOS(userrec* user, std::string newhost) { return 0; };
401 int Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { return 0; };
402 int Module::OnMeshToken(char token,string_list params,serverrec* source,serverrec* reply, std::string tcp_host,std::string ipaddr,int port) { return 0; };
403 void Module::OnEvent(Event* event) { return; };
404 char* Module::OnRequest(Request* request) { return NULL; };
405 int Module::OnOperCompare(std::string password, std::string input) { return 0; };
406 void Module::OnGlobalOper(userrec* user) { };
407 void Module::OnGlobalConnect(userrec* user) { };
408 int Module::OnAddBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
409 int Module::OnDelBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
410
411 // server is a wrapper class that provides methods to all of the C-style
412 // exports in the core
413 //
414
415 Server::Server()
416 {
417 }
418
419 Server::~Server()
420 {
421 }
422
423 void Server::SendOpers(std::string s)
424 {
425         WriteOpers("%s",s.c_str());
426 }
427
428 bool Server::MatchText(std::string sliteral, std::string spattern)
429 {
430         char literal[MAXBUF],pattern[MAXBUF];
431         strlcpy(literal,sliteral.c_str(),MAXBUF);
432         strlcpy(pattern,spattern.c_str(),MAXBUF);
433         return match(literal,pattern);
434 }
435
436 void Server::SendToModeMask(std::string modes, int flags, std::string text)
437 {
438         WriteMode(modes.c_str(),flags,"%s",text.c_str());
439 }
440
441 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
442 {
443         return add_channel(user,cname.c_str(),key.c_str(),true);
444 }
445
446 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
447 {
448         return del_channel(user,cname.c_str(),reason.c_str(),false);
449 }
450
451 chanuserlist Server::GetUsers(chanrec* chan)
452 {
453         chanuserlist userl;
454         userl.clear();
455         std::vector<char*> *list = chan->GetUsers();
456         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
457         {
458                 char* o = *i;
459                 userl.push_back((userrec*)o);
460         }
461         return userl;
462 }
463 void Server::ChangeUserNick(userrec* user, std::string nickname)
464 {
465         force_nickchange(user,nickname.c_str());
466 }
467
468 void Server::QuitUser(userrec* user, std::string reason)
469 {
470         send_network_quit(user->nick,reason.c_str());
471         kill_link(user,reason.c_str());
472 }
473
474 bool Server::IsUlined(std::string server)
475 {
476         return is_uline(server.c_str());
477 }
478
479 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
480 {
481         call_handler(commandname.c_str(),parameters,pcnt,user);
482 }
483
484 void Server::Log(int level, std::string s)
485 {
486         log(level,"%s",s.c_str());
487 }
488
489 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source)
490 {
491         createcommand(cmd,f,flags,minparams,source);
492 }
493
494 void Server::SendMode(char **parameters, int pcnt, userrec *user)
495 {
496         server_mode(parameters,pcnt,user);
497 }
498
499 void Server::Send(int Socket, std::string s)
500 {
501         Write(Socket,"%s",s.c_str());
502 }
503
504 void Server::SendServ(int Socket, std::string s)
505 {
506         WriteServ(Socket,"%s",s.c_str());
507 }
508
509 void Server::SendFrom(int Socket, userrec* User, std::string s)
510 {
511         WriteFrom(Socket,User,"%s",s.c_str());
512 }
513
514 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
515 {
516         if (!Source)
517         {
518                 // if source is NULL, then the message originates from the local server
519                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
520         }
521         else
522         {
523                 // otherwise it comes from the user specified
524                 WriteTo(Source,Dest,"%s",s.c_str());
525         }
526 }
527
528 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text)
529 {
530         WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str());
531 }
532
533 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
534 {
535         if (IncludeSender)
536         {
537                 WriteChannel(Channel,User,"%s",s.c_str());
538         }
539         else
540         {
541                 ChanExceptSender(Channel,User,"%s",s.c_str());
542         }
543 }
544
545 bool Server::CommonChannels(userrec* u1, userrec* u2)
546 {
547         return (common_channels(u1,u2) != 0);
548 }
549
550 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
551 {
552         if (IncludeSender)
553         {
554                 WriteCommon(User,"%s",text.c_str());
555         }
556         else
557         {
558                 WriteCommonExcept(User,"%s",text.c_str());
559         }
560 }
561
562 void Server::SendWallops(userrec* User, std::string text)
563 {
564         WriteWallOps(User,false,"%s",text.c_str());
565 }
566
567 void Server::ChangeHost(userrec* user, std::string host)
568 {
569         ChangeDisplayedHost(user,host.c_str());
570 }
571
572 void Server::ChangeGECOS(userrec* user, std::string gecos)
573 {
574         ChangeName(user,gecos.c_str());
575 }
576
577 bool Server::IsNick(std::string nick)
578 {
579         return (isnick(nick.c_str()) != 0);
580 }
581
582 userrec* Server::FindNick(std::string nick)
583 {
584         return Find(nick);
585 }
586
587 chanrec* Server::FindChannel(std::string channel)
588 {
589         return FindChan(channel.c_str());
590 }
591
592 std::string Server::ChanMode(userrec* User, chanrec* Chan)
593 {
594         return cmode(User,Chan);
595 }
596
597 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
598 {
599         return has_channel(User,Chan);
600 }
601
602 std::string Server::GetServerName()
603 {
604         return getservername();
605 }
606
607 std::string Server::GetNetworkName()
608 {
609         return getnetworkname();
610 }
611
612 Admin Server::GetAdmin()
613 {
614         return Admin(getadminname(),getadminemail(),getadminnick());
615 }
616
617
618
619 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
620 {
621         if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
622         {
623                 if (type == MT_SERVER)
624                 {
625                         log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
626                         return false;
627                 }
628                 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
629                 {
630                         log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
631                         return false;
632                 }
633                 if ((params_when_on>1) || (params_when_off>1))
634                 {
635                         log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
636                         return false;
637                 }
638                 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
639         }
640         else
641         {
642                 log(DEBUG,"*** API ERROR *** Muppet modechar detected.");
643         }
644         return false;
645 }
646
647 bool Server::AddExtendedListMode(char modechar)
648 {
649         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
650         if (res)
651                 ModeMakeList(modechar);
652         return res;
653 }
654
655 int Server::CountUsers(chanrec* c)
656 {
657         return usercount(c);
658 }
659
660
661 bool Server::UserToPseudo(userrec* user,std::string message)
662 {
663         unsigned int old_fd = user->fd;
664         user->fd = FD_MAGIC_NUMBER;
665         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
666         close(old_fd);
667         shutdown (old_fd,2);
668 }
669
670 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
671 {
672         zombie->fd = alive->fd;
673         alive->fd = FD_MAGIC_NUMBER;
674         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
675         kill_link(alive,message.c_str());
676         for (int i = 0; i != MAXCHANS; i++)
677         {
678                 if (zombie->chans[i].channel != NULL)
679                 {
680                         if (zombie->chans[i].channel->name)
681                         {
682                                 chanrec* Ptr = zombie->chans[i].channel;
683                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
684                                 if (Ptr->topicset)
685                                 {
686                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
687                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
688                                 }
689                                 userlist(zombie,Ptr);
690                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
691                                 //WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
692                                 //WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
693
694                         }
695                 }
696         }
697
698 }
699
700 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
701 {
702         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
703 }
704
705 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
706 {
707         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
708 }
709
710 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
711 {
712         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
713 }
714
715 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
716 {
717         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
718 }
719
720 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
721 {
722         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
723 }
724
725 bool Server::DelGLine(std::string hostmask)
726 {
727         del_gline(hostmask.c_str());
728 }
729
730 bool Server::DelQLine(std::string nickname)
731 {
732         del_qline(nickname.c_str());
733 }
734
735 bool Server::DelZLine(std::string ipaddr)
736 {
737         del_zline(ipaddr.c_str());
738 }
739
740 bool Server::DelKLine(std::string hostmask)
741 {
742         del_kline(hostmask.c_str());
743 }
744
745 bool Server::DelELine(std::string hostmask)
746 {
747         del_eline(hostmask.c_str());
748 }
749
750 long Server::CalcDuration(std::string delta)
751 {
752         return duration(delta.c_str());
753 }
754
755 bool Server::IsValidMask(std::string mask)
756 {
757         const char* dest = mask.c_str();
758         if (strchr(dest,'!')==0)
759                 return false;
760         if (strchr(dest,'@')==0)
761                 return false;
762         for (int i = 0; i < strlen(dest); i++)
763                 if (dest[i] < 32)
764                         return false;
765         for (int i = 0; i < strlen(dest); i++)
766                 if (dest[i] > 126)
767                         return false;
768         int c = 0;
769         for (int i = 0; i < strlen(dest); i++)
770                 if (dest[i] == '!')
771                         c++;
772         if (c>1)
773                 return false;
774         c = 0;
775         for (int i = 0; i < strlen(dest); i++)
776                 if (dest[i] == '@')
777                         c++;
778         if (c>1)
779                 return false;
780
781         return true;
782 }
783
784 void Server::MeshSendAll(std::string text)
785 {
786         NetSendToAll((char*)text.c_str());
787 }
788
789 void Server::MeshSendCommon(userrec* user, std::string text)
790 {
791         if (user)
792                 NetSendToCommon(user,(char*)text.c_str());
793 }
794
795 void Server::MeshSendAllAlive(std::string text)
796 {
797         NetSendToAllAlive((char*)text.c_str());
798 }
799
800 void Server::MeshSendUnicast(std::string destination, std::string text)
801 {
802         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
803 }
804
805 void Server::MeshSendAllExcept(std::string target, std::string text)
806 {
807         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
808 }
809
810 bool Server::MeshCheckChan(chanrec *c,std::string servername)
811 {
812         if (c)
813         {
814                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
815         }
816         else return false;
817 }
818
819 bool Server::MeshCheckCommon(userrec* u,std::string servername)
820 {
821         if (u)
822         {
823                 return CommonOnThisServer(u,(char*)servername.c_str());
824         }
825         else return false;
826 }
827
828 Module* Server::FindModule(std::string name)
829 {
830         for (int i = 0; i <= MODCOUNT; i++)
831         {
832                 if (module_names[i] == name)
833                 {
834                         return modules[i];
835                 }
836         }
837         return NULL;
838 }
839
840 ConfigReader::ConfigReader()
841 {
842         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
843         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
844         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
845         if (!this->readerror)
846                 this->error = CONF_FILE_NOT_FOUND;
847 }
848
849
850 ConfigReader::~ConfigReader()
851 {
852         if (this->cache)
853                 delete this->cache;
854         if (this->errorlog)
855                 delete this->errorlog;
856 }
857
858
859 ConfigReader::ConfigReader(std::string filename)
860 {
861         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
862         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
863         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
864         if (!this->readerror)
865                 this->error = CONF_FILE_NOT_FOUND;
866 };
867
868 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
869 {
870         char val[MAXBUF];
871         char t[MAXBUF];
872         char n[MAXBUF];
873         strlcpy(t,tag.c_str(),MAXBUF);
874         strlcpy(n,name.c_str(),MAXBUF);
875         int res = ReadConf(cache,t,n,index,val);
876         if (!res)
877         {
878                 this->error = CONF_VALUE_NOT_FOUND;
879                 return "";
880         }
881         return std::string(val);
882 }
883
884 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
885 {
886         char val[MAXBUF];
887         char t[MAXBUF];
888         char n[MAXBUF];
889         strlcpy(t,tag.c_str(),MAXBUF);
890         strlcpy(n,name.c_str(),MAXBUF);
891         int res = ReadConf(cache,t,n,index,val);
892         if (!res)
893         {
894                 this->error = CONF_VALUE_NOT_FOUND;
895                 return false;
896         }
897         std::string s = val;
898         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
899 }
900
901 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
902 {
903         char val[MAXBUF];
904         char t[MAXBUF];
905         char n[MAXBUF];
906         strlcpy(t,tag.c_str(),MAXBUF);
907         strlcpy(n,name.c_str(),MAXBUF);
908         int res = ReadConf(cache,t,n,index,val);
909         if (!res)
910         {
911                 this->error = CONF_VALUE_NOT_FOUND;
912                 return 0;
913         }
914         for (int i = 0; i < strlen(val); i++)
915         {
916                 if (!isdigit(val[i]))
917                 {
918                         this->error = CONF_NOT_A_NUMBER;
919                         return 0;
920                 }
921         }
922         if ((needs_unsigned) && (atoi(val)<0))
923         {
924                 this->error = CONF_NOT_UNSIGNED;
925                 return 0;
926         }
927         return atoi(val);
928 }
929
930 long ConfigReader::GetError()
931 {
932         long olderr = this->error;
933         this->error = 0;
934         return olderr;
935 }
936
937 void ConfigReader::DumpErrors(bool bail, userrec* user)
938 {
939         if (bail)
940         {
941                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
942                 exit(0);
943         }
944         else
945         {
946                 char dataline[1024];
947                 if (user)
948                 {
949                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
950                         while (!errorlog->eof())
951                         {
952                                 errorlog->getline(dataline,1024);
953                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
954                         }
955                 }
956                 else
957                 {
958                         WriteOpers("There were errors in the configuration file:",user->nick);
959                         while (!errorlog->eof())
960                         {
961                                 errorlog->getline(dataline,1024);
962                                 WriteOpers(dataline);
963                         }
964                 }
965                 return;
966         }
967 }
968
969
970 int ConfigReader::Enumerate(std::string tag)
971 {
972         return EnumConf(cache,tag.c_str());
973 }
974
975 int ConfigReader::EnumerateValues(std::string tag, int index)
976 {
977         return EnumValues(cache, tag.c_str(), index);
978 }
979
980 bool ConfigReader::Verify()
981 {
982         return this->readerror;
983 }
984
985
986 FileReader::FileReader(std::string filename)
987 {
988         file_cache c;
989         readfile(c,filename.c_str());
990         this->fc = c;
991 }
992
993 FileReader::FileReader()
994 {
995 }
996
997 void FileReader::LoadFile(std::string filename)
998 {
999         file_cache c;
1000         readfile(c,filename.c_str());
1001         this->fc = c;
1002 }
1003
1004
1005 FileReader::~FileReader()
1006 {
1007 }
1008
1009 bool FileReader::Exists()
1010 {
1011         if (fc.size() == 0)
1012         {
1013                 return(false);
1014         }
1015         else
1016         {
1017                 return(true);
1018         }
1019 }
1020
1021 std::string FileReader::GetLine(int x)
1022 {
1023         if ((x<0) || (x>fc.size()))
1024                 return "";
1025         return fc[x];
1026 }
1027
1028 int FileReader::FileSize()
1029 {
1030         return fc.size();
1031 }
1032
1033
1034 std::vector<Module*> modules(255);
1035 std::vector<ircd_module*> factory(255);
1036
1037 int MODCOUNT  = -1;
1038
1039