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