]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
8b7f277310c504d6f9d0e3b56630bac4d18210d1
[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 // These declarations define the behavours of the base class Module (which does nothing at all)
359                 Module::Module() { }
360                 Module::~Module() { }
361 void            Module::OnUserConnect(userrec* user) { }
362 void            Module::OnUserQuit(userrec* user) { }
363 void            Module::OnUserDisconnect(userrec* user) { }
364 void            Module::OnUserJoin(userrec* user, chanrec* channel) { }
365 void            Module::OnUserPart(userrec* user, chanrec* channel) { }
366 void            Module::OnPacketTransmit(std::string &data, std::string serv) { }
367 void            Module::OnPacketReceive(std::string &data, std::string serv) { }
368 void            Module::OnRehash() { }
369 void            Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
370 int             Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
371 int             Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
372 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
373 void            Module::OnOper(userrec* user) { };
374 void            Module::OnInfo(userrec* user) { };
375 void            Module::OnWhois(userrec* source, userrec* dest) { };
376 int             Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
377 int             Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
378 int             Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
379 int             Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
380 void            Module::OnUserPostNick(userrec* user, std::string oldnick) { };
381 int             Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
382 string_list     Module::OnUserSync(userrec* user) { string_list empty; return empty; }
383 string_list     Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; }
384 void            Module::On005Numeric(std::string &output) { };
385 int             Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
386 void            Module::OnLoadModule(Module* mod,std::string name) { };
387 void            Module::OnBackgroundTimer(time_t curtime) { };
388 void            Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
389 int             Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) { return 0; };
390 bool            Module::OnCheckReady(userrec* user) { return true; };
391 void            Module::OnUserRegister(userrec* user) { };
392 int             Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; };
393 void            Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { };
394 int             Module::OnRawMode(userrec* user, chanrec* chan, char mode, std::string param, bool adding, int pcnt) { return 0; };
395 int             Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
396 int             Module::OnCheckKey(userrec* user, chanrec* chan, std::string keygiven) { return 0; };
397 int             Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
398 int             Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
399 void            Module::OnStats(char symbol) { };
400 int             Module::OnChangeLocalUserHost(userrec* user, std::string newhost) { return 0; };
401 int             Module::OnChangeLocalUserGECOS(userrec* user, std::string newhost) { return 0; };
402 int             Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { return 0; };
403 int             Module::OnMeshToken(char token,string_list params,serverrec* source,serverrec* reply, std::string tcp_host,std::string ipaddr,int port) { return 0; };
404 void            Module::OnEvent(Event* event) { return; };
405 char*           Module::OnRequest(Request* request) { return NULL; };
406 int             Module::OnOperCompare(std::string password, std::string input) { return 0; };
407 void            Module::OnGlobalOper(userrec* user) { };
408 void            Module::OnGlobalConnect(userrec* user) { };
409 int             Module::OnAddBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
410 int             Module::OnDelBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
411 void            Module::OnRawSocketAccept(int fd, std::string ip, int localport) { };
412 int             Module::OnRawSocketWrite(int fd, char* buffer, int count) { return 0; };
413 void            Module::OnRawSocketClose(int fd) { };
414 int             Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
415
416 // server is a wrapper class that provides methods to all of the C-style
417 // exports in the core
418 //
419
420 Server::Server()
421 {
422 }
423
424 Server::~Server()
425 {
426 }
427
428 void Server::SendOpers(std::string s)
429 {
430         WriteOpers("%s",s.c_str());
431 }
432
433 bool Server::MatchText(std::string sliteral, std::string spattern)
434 {
435         char literal[MAXBUF],pattern[MAXBUF];
436         strlcpy(literal,sliteral.c_str(),MAXBUF);
437         strlcpy(pattern,spattern.c_str(),MAXBUF);
438         return match(literal,pattern);
439 }
440
441 void Server::SendToModeMask(std::string modes, int flags, std::string text)
442 {
443         WriteMode(modes.c_str(),flags,"%s",text.c_str());
444 }
445
446 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
447 {
448         return add_channel(user,cname.c_str(),key.c_str(),true);
449 }
450
451 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
452 {
453         return del_channel(user,cname.c_str(),reason.c_str(),false);
454 }
455
456 chanuserlist Server::GetUsers(chanrec* chan)
457 {
458         chanuserlist userl;
459         userl.clear();
460         std::vector<char*> *list = chan->GetUsers();
461         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
462         {
463                 char* o = *i;
464                 userl.push_back((userrec*)o);
465         }
466         return userl;
467 }
468 void Server::ChangeUserNick(userrec* user, std::string nickname)
469 {
470         force_nickchange(user,nickname.c_str());
471 }
472
473 void Server::QuitUser(userrec* user, std::string reason)
474 {
475         send_network_quit(user->nick,reason.c_str());
476         kill_link(user,reason.c_str());
477 }
478
479 bool Server::IsUlined(std::string server)
480 {
481         return is_uline(server.c_str());
482 }
483
484 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
485 {
486         call_handler(commandname.c_str(),parameters,pcnt,user);
487 }
488
489 void Server::Log(int level, std::string s)
490 {
491         log(level,"%s",s.c_str());
492 }
493
494 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source)
495 {
496         createcommand(cmd,f,flags,minparams,source);
497 }
498
499 void Server::SendMode(char **parameters, int pcnt, userrec *user)
500 {
501         server_mode(parameters,pcnt,user);
502 }
503
504 void Server::Send(int Socket, std::string s)
505 {
506         Write(Socket,"%s",s.c_str());
507 }
508
509 void Server::SendServ(int Socket, std::string s)
510 {
511         WriteServ(Socket,"%s",s.c_str());
512 }
513
514 void Server::SendFrom(int Socket, userrec* User, std::string s)
515 {
516         WriteFrom(Socket,User,"%s",s.c_str());
517 }
518
519 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
520 {
521         if (!Source)
522         {
523                 // if source is NULL, then the message originates from the local server
524                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
525         }
526         else
527         {
528                 // otherwise it comes from the user specified
529                 WriteTo(Source,Dest,"%s",s.c_str());
530         }
531 }
532
533 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text)
534 {
535         WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str());
536 }
537
538 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
539 {
540         if (IncludeSender)
541         {
542                 WriteChannel(Channel,User,"%s",s.c_str());
543         }
544         else
545         {
546                 ChanExceptSender(Channel,User,"%s",s.c_str());
547         }
548 }
549
550 bool Server::CommonChannels(userrec* u1, userrec* u2)
551 {
552         return (common_channels(u1,u2) != 0);
553 }
554
555 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
556 {
557         if (IncludeSender)
558         {
559                 WriteCommon(User,"%s",text.c_str());
560         }
561         else
562         {
563                 WriteCommonExcept(User,"%s",text.c_str());
564         }
565 }
566
567 void Server::SendWallops(userrec* User, std::string text)
568 {
569         WriteWallOps(User,false,"%s",text.c_str());
570 }
571
572 void Server::ChangeHost(userrec* user, std::string host)
573 {
574         ChangeDisplayedHost(user,host.c_str());
575 }
576
577 void Server::ChangeGECOS(userrec* user, std::string gecos)
578 {
579         ChangeName(user,gecos.c_str());
580 }
581
582 bool Server::IsNick(std::string nick)
583 {
584         return (isnick(nick.c_str()) != 0);
585 }
586
587 userrec* Server::FindNick(std::string nick)
588 {
589         return Find(nick);
590 }
591
592 chanrec* Server::FindChannel(std::string channel)
593 {
594         return FindChan(channel.c_str());
595 }
596
597 std::string Server::ChanMode(userrec* User, chanrec* Chan)
598 {
599         return cmode(User,Chan);
600 }
601
602 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
603 {
604         return has_channel(User,Chan);
605 }
606
607 std::string Server::GetServerName()
608 {
609         return getservername();
610 }
611
612 std::string Server::GetNetworkName()
613 {
614         return getnetworkname();
615 }
616
617 Admin Server::GetAdmin()
618 {
619         return Admin(getadminname(),getadminemail(),getadminnick());
620 }
621
622
623
624 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
625 {
626         if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
627         {
628                 if (type == MT_SERVER)
629                 {
630                         log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
631                         return false;
632                 }
633                 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
634                 {
635                         log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
636                         return false;
637                 }
638                 if ((params_when_on>1) || (params_when_off>1))
639                 {
640                         log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
641                         return false;
642                 }
643                 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
644         }
645         else
646         {
647                 log(DEBUG,"*** API ERROR *** Muppet modechar detected.");
648         }
649         return false;
650 }
651
652 bool Server::AddExtendedListMode(char modechar)
653 {
654         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
655         if (res)
656                 ModeMakeList(modechar);
657         return res;
658 }
659
660 int Server::CountUsers(chanrec* c)
661 {
662         return usercount(c);
663 }
664
665
666 bool Server::UserToPseudo(userrec* user,std::string message)
667 {
668         unsigned int old_fd = user->fd;
669         user->fd = FD_MAGIC_NUMBER;
670         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
671         close(old_fd);
672         shutdown (old_fd,2);
673 }
674
675 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
676 {
677         zombie->fd = alive->fd;
678         alive->fd = FD_MAGIC_NUMBER;
679         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
680         kill_link(alive,message.c_str());
681         for (int i = 0; i != MAXCHANS; i++)
682         {
683                 if (zombie->chans[i].channel != NULL)
684                 {
685                         if (zombie->chans[i].channel->name)
686                         {
687                                 chanrec* Ptr = zombie->chans[i].channel;
688                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
689                                 if (Ptr->topicset)
690                                 {
691                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
692                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
693                                 }
694                                 userlist(zombie,Ptr);
695                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
696                                 //WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
697                                 //WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
698
699                         }
700                 }
701         }
702
703 }
704
705 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
706 {
707         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
708 }
709
710 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
711 {
712         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
713 }
714
715 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
716 {
717         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
718 }
719
720 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
721 {
722         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
723 }
724
725 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
726 {
727         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
728 }
729
730 bool Server::DelGLine(std::string hostmask)
731 {
732         del_gline(hostmask.c_str());
733 }
734
735 bool Server::DelQLine(std::string nickname)
736 {
737         del_qline(nickname.c_str());
738 }
739
740 bool Server::DelZLine(std::string ipaddr)
741 {
742         del_zline(ipaddr.c_str());
743 }
744
745 bool Server::DelKLine(std::string hostmask)
746 {
747         del_kline(hostmask.c_str());
748 }
749
750 bool Server::DelELine(std::string hostmask)
751 {
752         del_eline(hostmask.c_str());
753 }
754
755 long Server::CalcDuration(std::string delta)
756 {
757         return duration(delta.c_str());
758 }
759
760 bool Server::IsValidMask(std::string mask)
761 {
762         const char* dest = mask.c_str();
763         if (strchr(dest,'!')==0)
764                 return false;
765         if (strchr(dest,'@')==0)
766                 return false;
767         for (int i = 0; i < strlen(dest); i++)
768                 if (dest[i] < 32)
769                         return false;
770         for (int i = 0; i < strlen(dest); i++)
771                 if (dest[i] > 126)
772                         return false;
773         int c = 0;
774         for (int i = 0; i < strlen(dest); i++)
775                 if (dest[i] == '!')
776                         c++;
777         if (c>1)
778                 return false;
779         c = 0;
780         for (int i = 0; i < strlen(dest); i++)
781                 if (dest[i] == '@')
782                         c++;
783         if (c>1)
784                 return false;
785
786         return true;
787 }
788
789 void Server::MeshSendAll(std::string text)
790 {
791         NetSendToAll((char*)text.c_str());
792 }
793
794 void Server::MeshSendCommon(userrec* user, std::string text)
795 {
796         if (user)
797                 NetSendToCommon(user,(char*)text.c_str());
798 }
799
800 void Server::MeshSendAllAlive(std::string text)
801 {
802         NetSendToAllAlive((char*)text.c_str());
803 }
804
805 void Server::MeshSendUnicast(std::string destination, std::string text)
806 {
807         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
808 }
809
810 void Server::MeshSendAllExcept(std::string target, std::string text)
811 {
812         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
813 }
814
815 bool Server::MeshCheckChan(chanrec *c,std::string servername)
816 {
817         if (c)
818         {
819                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
820         }
821         else return false;
822 }
823
824 bool Server::MeshCheckCommon(userrec* u,std::string servername)
825 {
826         if (u)
827         {
828                 return CommonOnThisServer(u,(char*)servername.c_str());
829         }
830         else return false;
831 }
832
833 Module* Server::FindModule(std::string name)
834 {
835         for (int i = 0; i <= MODCOUNT; i++)
836         {
837                 if (module_names[i] == name)
838                 {
839                         return modules[i];
840                 }
841         }
842         return NULL;
843 }
844
845 ConfigReader::ConfigReader()
846 {
847         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
848         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
849         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
850         if (!this->readerror)
851                 this->error = CONF_FILE_NOT_FOUND;
852 }
853
854
855 ConfigReader::~ConfigReader()
856 {
857         if (this->cache)
858                 delete this->cache;
859         if (this->errorlog)
860                 delete this->errorlog;
861 }
862
863
864 ConfigReader::ConfigReader(std::string filename)
865 {
866         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
867         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
868         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
869         if (!this->readerror)
870                 this->error = CONF_FILE_NOT_FOUND;
871 };
872
873 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
874 {
875         char val[MAXBUF];
876         char t[MAXBUF];
877         char n[MAXBUF];
878         strlcpy(t,tag.c_str(),MAXBUF);
879         strlcpy(n,name.c_str(),MAXBUF);
880         int res = ReadConf(cache,t,n,index,val);
881         if (!res)
882         {
883                 this->error = CONF_VALUE_NOT_FOUND;
884                 return "";
885         }
886         return std::string(val);
887 }
888
889 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
890 {
891         char val[MAXBUF];
892         char t[MAXBUF];
893         char n[MAXBUF];
894         strlcpy(t,tag.c_str(),MAXBUF);
895         strlcpy(n,name.c_str(),MAXBUF);
896         int res = ReadConf(cache,t,n,index,val);
897         if (!res)
898         {
899                 this->error = CONF_VALUE_NOT_FOUND;
900                 return false;
901         }
902         std::string s = val;
903         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
904 }
905
906 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
907 {
908         char val[MAXBUF];
909         char t[MAXBUF];
910         char n[MAXBUF];
911         strlcpy(t,tag.c_str(),MAXBUF);
912         strlcpy(n,name.c_str(),MAXBUF);
913         int res = ReadConf(cache,t,n,index,val);
914         if (!res)
915         {
916                 this->error = CONF_VALUE_NOT_FOUND;
917                 return 0;
918         }
919         for (int i = 0; i < strlen(val); i++)
920         {
921                 if (!isdigit(val[i]))
922                 {
923                         this->error = CONF_NOT_A_NUMBER;
924                         return 0;
925                 }
926         }
927         if ((needs_unsigned) && (atoi(val)<0))
928         {
929                 this->error = CONF_NOT_UNSIGNED;
930                 return 0;
931         }
932         return atoi(val);
933 }
934
935 long ConfigReader::GetError()
936 {
937         long olderr = this->error;
938         this->error = 0;
939         return olderr;
940 }
941
942 void ConfigReader::DumpErrors(bool bail, userrec* user)
943 {
944         if (bail)
945         {
946                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
947                 exit(0);
948         }
949         else
950         {
951                 char dataline[1024];
952                 if (user)
953                 {
954                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
955                         while (!errorlog->eof())
956                         {
957                                 errorlog->getline(dataline,1024);
958                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
959                         }
960                 }
961                 else
962                 {
963                         WriteOpers("There were errors in the configuration file:",user->nick);
964                         while (!errorlog->eof())
965                         {
966                                 errorlog->getline(dataline,1024);
967                                 WriteOpers(dataline);
968                         }
969                 }
970                 return;
971         }
972 }
973
974
975 int ConfigReader::Enumerate(std::string tag)
976 {
977         return EnumConf(cache,tag.c_str());
978 }
979
980 int ConfigReader::EnumerateValues(std::string tag, int index)
981 {
982         return EnumValues(cache, tag.c_str(), index);
983 }
984
985 bool ConfigReader::Verify()
986 {
987         return this->readerror;
988 }
989
990
991 FileReader::FileReader(std::string filename)
992 {
993         file_cache c;
994         readfile(c,filename.c_str());
995         this->fc = c;
996 }
997
998 FileReader::FileReader()
999 {
1000 }
1001
1002 void FileReader::LoadFile(std::string filename)
1003 {
1004         file_cache c;
1005         readfile(c,filename.c_str());
1006         this->fc = c;
1007 }
1008
1009
1010 FileReader::~FileReader()
1011 {
1012 }
1013
1014 bool FileReader::Exists()
1015 {
1016         if (fc.size() == 0)
1017         {
1018                 return(false);
1019         }
1020         else
1021         {
1022                 return(true);
1023         }
1024 }
1025
1026 std::string FileReader::GetLine(int x)
1027 {
1028         if ((x<0) || (x>fc.size()))
1029                 return "";
1030         return fc[x];
1031 }
1032
1033 int FileReader::FileSize()
1034 {
1035         return fc.size();
1036 }
1037
1038
1039 std::vector<Module*> modules(255);
1040 std::vector<ircd_module*> factory(255);
1041
1042 int MODCOUNT  = -1;
1043
1044