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