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