]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
2297db53b18f000cab3415e0daa6c3d50545174b
[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         static std::string nothing = ""; /* Prevent compiler warning */
298         for (int i = 0; i <= MODCOUNT; i++)
299         {
300                 if (modules[i] == m)
301                 {
302                         return Config->module_names[i];
303                 }
304         }
305         return nothing; /* As above */
306 }
307
308 void Server::RehashServer()
309 {
310         WriteOpers("*** Rehashing config file");
311         Config->Read(false,NULL);
312 }
313
314 ServerConfig* Server::GetConfig()
315 {
316         return Config;
317 }
318
319 std::string Server::GetVersion()
320 {
321         return ServerInstance->GetVersionString();
322 }
323
324 void Server::DelSocket(InspSocket* sock)
325 {
326         for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
327         {
328                 if (*a == sock)
329                 {
330                         module_sockets.erase(a);
331                         return;
332                 }
333         }
334 }
335
336 long Server::GetChannelCount()
337 {
338         return (long)chanlist.size();
339 }
340
341 /* This is ugly, yes, but hash_map's arent designed to be
342  * addressed in this manner, and this is a bit of a kludge.
343  * Luckily its a specialist function and rarely used by
344  * many modules (in fact, it was specially created to make
345  * m_safelist possible, initially).
346  */
347
348 chanrec* Server::GetChannelIndex(long index)
349 {
350         int target = 0;
351         for (chan_hash::iterator n = chanlist.begin(); n != chanlist.end(); n++, target++)
352         {
353                 if (index == target)
354                         return n->second;
355         }
356         return NULL;
357 }
358
359 void Server::AddTimer(InspTimer* T)
360 {
361         ::AddTimer(T);
362 }
363
364 void Server::SendOpers(const std::string &s)
365 {
366         WriteOpers("%s",s.c_str());
367 }
368
369 bool Server::MatchText(const std::string &sliteral, const std::string &spattern)
370 {
371         return match(sliteral.c_str(),spattern.c_str());
372 }
373
374 void Server::SendToModeMask(const std::string &modes, int flags, const std::string &text)
375 {
376         WriteMode(modes.c_str(),flags,"%s",text.c_str());
377 }
378
379 chanrec* Server::JoinUserToChannel(userrec* user, const std::string &cname, const std::string &key)
380 {
381         return add_channel(user,cname.c_str(),key.c_str(),false);
382 }
383
384 chanrec* Server::PartUserFromChannel(userrec* user, const std::string &cname, const std::string &reason)
385 {
386         return del_channel(user,cname.c_str(),reason.c_str(),false);
387 }
388
389 chanuserlist Server::GetUsers(chanrec* chan)
390 {
391         chanuserlist userl;
392         userl.clear();
393         CUList *list = chan->GetUsers();
394         for (CUList::iterator i = list->begin(); i != list->end(); i++)
395                 userl.push_back(i->second);
396         return userl;
397 }
398 void Server::ChangeUserNick(userrec* user, const std::string &nickname)
399 {
400         force_nickchange(user,nickname.c_str());
401 }
402
403 void Server::KickUser(userrec* source, userrec* target, chanrec* chan, const std::string &reason)
404 {
405         if (source)
406         {
407                 kick_channel(source,target,chan,(char*)reason.c_str());
408         }
409         else
410         {
411                 server_kick_channel(target,chan,(char*)reason.c_str(),true);
412         }
413 }
414
415 void Server::QuitUser(userrec* user, const std::string &reason)
416 {
417         kill_link(user,reason.c_str());
418 }
419
420 bool Server::IsUlined(const std::string &server)
421 {
422         return is_uline(server.c_str());
423 }
424
425 bool Server::CallCommandHandler(const std::string &commandname, char** parameters, int pcnt, userrec* user)
426 {
427         return ServerInstance->Parser->CallHandler(commandname,parameters,pcnt,user);
428 }
429
430 bool Server::IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user)
431 {
432         return ServerInstance->Parser->IsValidCommand(commandname, pcnt, user);
433 }
434
435 void Server::Log(int level, const std::string &s)
436 {
437         log(level,"%s",s.c_str());
438 }
439
440 void Server::AddCommand(command_t *f)
441 {
442         if (!ServerInstance->Parser->CreateCommand(f))
443         {
444                 ModuleException err("Command "+std::string(f->command)+" already exists.");
445                 throw (err);
446         }
447 }
448
449 void Server::SendMode(char **parameters, int pcnt, userrec *user)
450 {
451         //ServerInstance->ModeGrok->ServerMode(parameters,pcnt,user);
452 }
453
454 void Server::Send(int Socket, const std::string &s)
455 {
456         Write_NoFormat(Socket,s.c_str());
457 }
458
459 void Server::SendServ(int Socket, const std::string &s)
460 {
461         WriteServ_NoFormat(Socket,s.c_str());
462 }
463
464 void Server::SendFrom(int Socket, userrec* User, const std::string &s)
465 {
466         WriteFrom_NoFormat(Socket,User,s.c_str());
467 }
468
469 void Server::SendTo(userrec* Source, userrec* Dest, const std::string &s)
470 {
471         if (!Source)
472         {
473                 // if source is NULL, then the message originates from the local server
474                 WriteServ_NoFormat(Dest->fd,s.c_str());
475         }
476         else
477         {
478                 // otherwise it comes from the user specified
479                 WriteTo_NoFormat(Source,Dest,s.c_str());
480         }
481 }
482
483 void Server::SendChannelServerNotice(const std::string &ServName, chanrec* Channel, const std::string &text)
484 {
485         WriteChannelWithServ_NoFormat((char*)ServName.c_str(), Channel, text.c_str());
486 }
487
488 void Server::SendChannel(userrec* User, chanrec* Channel, const std::string &s, bool IncludeSender)
489 {
490         if (IncludeSender)
491         {
492                 WriteChannel_NoFormat(Channel,User,s.c_str());
493         }
494         else
495         {
496                 ChanExceptSender_NoFormat(Channel,User,0,s.c_str());
497         }
498 }
499
500 bool Server::CommonChannels(userrec* u1, userrec* u2)
501 {
502         return (common_channels(u1,u2) != 0);
503 }
504
505 void Server::DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream)
506 {
507         std::string CompleteLine = LinePrefix;
508         std::string Word = "";
509         while (TextStream >> Word)
510         {
511                 if (CompleteLine.length() + Word.length() + 3 > 500)
512                 {
513                         WriteServ_NoFormat(User->fd,CompleteLine.c_str());
514                         CompleteLine = LinePrefix;
515                 }
516                 CompleteLine = CompleteLine + Word + " ";
517         }
518         WriteServ_NoFormat(User->fd,CompleteLine.c_str());
519 }
520
521 void Server::SendCommon(userrec* User, const std::string &text, bool IncludeSender)
522 {
523         if (IncludeSender)
524         {
525                 WriteCommon_NoFormat(User,text.c_str());
526         }
527         else
528         {
529                 WriteCommonExcept_NoFormat(User,text.c_str());
530         }
531 }
532
533 void Server::SendWallops(userrec* User, const std::string &text)
534 {
535         WriteWallOps(User,false,"%s",text.c_str());
536 }
537
538 void Server::ChangeHost(userrec* user, const std::string &host)
539 {
540         ChangeDisplayedHost(user,host.c_str());
541 }
542
543 void Server::ChangeGECOS(userrec* user, const std::string &gecos)
544 {
545         ChangeName(user,gecos.c_str());
546 }
547
548 bool Server::IsNick(const std::string &nick)
549 {
550         return (isnick(nick.c_str()) != 0);
551 }
552
553 userrec* Server::FindNick(const std::string &nick)
554 {
555         return Find(nick);
556 }
557
558 userrec* Server::FindDescriptor(int socket)
559 {
560         return (socket < 65536 ? fd_ref_table[socket] : NULL);
561 }
562
563 chanrec* Server::FindChannel(const std::string &channel)
564 {
565         return FindChan(channel.c_str());
566 }
567
568 std::string Server::ChanMode(userrec* User, chanrec* Chan)
569 {
570         return cmode(User,Chan);
571 }
572
573 std::string Server::GetServerName()
574 {
575         return Config->ServerName;
576 }
577
578 std::string Server::GetNetworkName()
579 {
580         return Config->Network;
581 }
582
583 std::string Server::GetServerDescription()
584 {
585         return Config->ServerDesc;
586 }
587
588 Admin Server::GetAdmin()
589 {
590         return Admin(Config->AdminName,Config->AdminEmail,Config->AdminNick);
591 }
592
593
594 bool Server::AddMode(ModeHandler* mh, const unsigned char mode)
595 {
596         return ServerInstance->ModeGrok->AddMode(mh,mode);
597 }
598
599 bool Server::AddModeWatcher(ModeWatcher* mw)
600 {
601         return ServerInstance->ModeGrok->AddModeWatcher(mw);
602 }
603
604 bool Server::DelModeWatcher(ModeWatcher* mw)
605 {
606         return ServerInstance->ModeGrok->DelModeWatcher(mw);
607 }
608
609 int Server::CountUsers(chanrec* c)
610 {
611         return usercount(c);
612 }
613
614 bool Server::UserToPseudo(userrec* user, const std::string &message)
615 {
616         unsigned int old_fd = user->fd;
617         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
618         user->FlushWriteBuf();
619         user->ClearBuffer();
620         user->fd = FD_MAGIC_NUMBER;
621
622         if (find(local_users.begin(),local_users.end(),user) != local_users.end())
623         {
624                 local_users.erase(find(local_users.begin(),local_users.end(),user));
625                 log(DEBUG,"Delete local user");
626         }
627
628         ServerInstance->SE->DelFd(old_fd);
629         shutdown(old_fd,2);
630         close(old_fd);
631         return true;
632 }
633
634 bool Server::PseudoToUser(userrec* alive, userrec* zombie, const std::string &message)
635 {
636         log(DEBUG,"PseudoToUser");
637         zombie->fd = alive->fd;
638         FOREACH_MOD(I_OnUserQuit,OnUserQuit(alive,message));
639         alive->fd = FD_MAGIC_NUMBER;
640         alive->FlushWriteBuf();
641         alive->ClearBuffer();
642         // save these for later
643         std::string oldnick = alive->nick;
644         std::string oldhost = alive->host;
645         std::string oldident = alive->ident;
646         kill_link(alive,message.c_str());
647         if (find(local_users.begin(),local_users.end(),alive) != local_users.end())
648         {
649                 local_users.erase(find(local_users.begin(),local_users.end(),alive));
650                 log(DEBUG,"Delete local user");
651         }
652         // Fix by brain - cant write the user until their fd table entry is updated
653         fd_ref_table[zombie->fd] = zombie;
654         Write(zombie->fd,":%s!%s@%s NICK %s",oldnick.c_str(),oldident.c_str(),oldhost.c_str(),zombie->nick);
655         for (std::vector<ucrec*>::const_iterator i = zombie->chans.begin(); i != zombie->chans.end(); i++)
656         {
657                 if (((ucrec*)(*i))->channel != NULL)
658                 {
659                                 chanrec* Ptr = ((ucrec*)(*i))->channel;
660                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
661                                 if (Ptr->topicset)
662                                 {
663                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
664                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
665                                 }
666                                 userlist(zombie,Ptr);
667                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
668                 }
669         }
670         if ((find(local_users.begin(),local_users.end(),zombie) == local_users.end()) && (zombie->fd != FD_MAGIC_NUMBER))
671                 local_users.push_back(zombie);
672
673         return true;
674 }
675
676 void Server::AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
677 {
678         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
679         apply_lines(APPLY_GLINES);
680 }
681
682 void Server::AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname)
683 {
684         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
685         apply_lines(APPLY_QLINES);
686 }
687
688 void Server::AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr)
689 {
690         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
691         apply_lines(APPLY_ZLINES);
692 }
693
694 void Server::AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
695 {
696         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
697         apply_lines(APPLY_KLINES);
698 }
699
700 void Server::AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
701 {
702         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
703 }
704
705 bool Server::DelGLine(const std::string &hostmask)
706 {
707         return del_gline(hostmask.c_str());
708 }
709
710 bool Server::DelQLine(const std::string &nickname)
711 {
712         return del_qline(nickname.c_str());
713 }
714
715 bool Server::DelZLine(const std::string &ipaddr)
716 {
717         return del_zline(ipaddr.c_str());
718 }
719
720 bool Server::DelKLine(const std::string &hostmask)
721 {
722         return del_kline(hostmask.c_str());
723 }
724
725 bool Server::DelELine(const std::string &hostmask)
726 {
727         return del_eline(hostmask.c_str());
728 }
729
730 long Server::CalcDuration(const std::string &delta)
731 {
732         return duration(delta.c_str());
733 }
734
735 /*
736  * XXX why on *earth* is this in modules.cpp...? I think
737  * perhaps we need a server.cpp for Server:: stuff where possible. -- w00t
738  */
739 bool Server::IsValidMask(const std::string &mask)
740 {
741         char* dest = (char*)mask.c_str();
742         if (strchr(dest,'!')==0)
743                 return false;
744         if (strchr(dest,'@')==0)
745                 return false;
746         for (char* i = dest; *i; i++)
747                 if (*i < 32)
748                         return false;
749         for (char* i = dest; *i; i++)
750                 if (*i > 126)
751                         return false;
752         unsigned int c = 0;
753         for (char* i = dest; *i; i++)
754                 if (*i == '!')
755                         c++;
756         if (c>1)
757                 return false;
758         c = 0;
759         for (char* i = dest; *i; i++)
760                 if (*i == '@')
761                         c++;
762         if (c>1)
763                 return false;
764
765         return true;
766 }
767
768 Module* Server::FindModule(const std::string &name)
769 {
770         for (int i = 0; i <= MODCOUNT; i++)
771         {
772                 if (Config->module_names[i] == name)
773                 {
774                         return modules[i];
775                 }
776         }
777         return NULL;
778 }
779
780 ConfigReader::ConfigReader()
781 {
782         // Config->ClearStack();
783         
784         /* Is there any reason to load the entire config file again here?
785          * it's needed if they specify another config file, but using the
786          * default one we can just use the global config data - pre-parsed!
787          */
788         //~ this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
789         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
790         
791         //~ this->readerror = Config->LoadConf(CONFIG_FILE, this->cache,this->errorlog);
792         //~ if (!this->readerror)
793                 //~ this->error = CONF_FILE_NOT_FOUND;
794         
795         this->data = &Config->config_data;
796         this->privatehash = false;
797 }
798
799
800 ConfigReader::~ConfigReader()
801 {
802         //~ if (this->cache)
803                 //~ delete this->cache;
804         if (this->errorlog)
805                 DELETE(this->errorlog);
806         if(this->privatehash)
807                 DELETE(this->data);
808 }
809
810
811 ConfigReader::ConfigReader(const std::string &filename)
812 {
813         Config->ClearStack();
814         
815         this->data = new ConfigDataHash;
816         this->privatehash = true;
817         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
818         this->readerror = Config->LoadConf(*this->data, filename, *this->errorlog);
819         if (!this->readerror)
820                 this->error = CONF_FILE_NOT_FOUND;
821 };
822
823 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index)
824 {
825         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
826         std::string result;
827         
828         if (!Config->ConfValue(*this->data, tag, name, index, result))
829         {
830                 this->error = CONF_VALUE_NOT_FOUND;
831                 return "";
832         }
833         
834         return result;
835 }
836
837 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
838 {
839         return Config->ConfValueBool(*this->data, tag, name, index);
840 }
841
842 long ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool needs_unsigned)
843 {
844         int result;
845         
846         if(!Config->ConfValueInteger(*this->data, tag, name, index, result))
847         {
848                 this->error = CONF_VALUE_NOT_FOUND;
849                 return 0;
850         }
851         
852         if ((needs_unsigned) && (result < 0))
853         {
854                 this->error = CONF_NOT_UNSIGNED;
855                 return 0;
856         }
857         
858         return result;
859 }
860
861 long ConfigReader::GetError()
862 {
863         long olderr = this->error;
864         this->error = 0;
865         return olderr;
866 }
867
868 void ConfigReader::DumpErrors(bool bail, userrec* user)
869 {
870         /* XXX - Duplicated code */
871         
872         if (bail)
873         {
874                 printf("There were errors in your configuration:\n%s", this->errorlog->str().c_str());
875                 Exit(0);
876         }
877         else
878         {
879                 std::string errors = this->errorlog->str();
880                 std::string::size_type start;
881                 unsigned int prefixlen;
882                 
883                 start = 0;
884                 /* ":Config->ServerName NOTICE user->nick :" */
885                 prefixlen = strlen(Config->ServerName) + strlen(user->nick) + 11;
886         
887                 if (user)
888                 {
889                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
890                         
891                         while(start < errors.length())
892                         {
893                                 WriteServ(user->fd, "NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
894                                 start += 510 - prefixlen;
895                         }
896                 }
897                 else
898                 {
899                         WriteOpers("There were errors in the configuration file:");
900                         
901                         while(start < errors.length())
902                         {
903                                 WriteOpers(errors.substr(start, 360).c_str());
904                                 start += 360;
905                         }
906                 }
907
908                 return;
909         }
910 }
911
912
913 int ConfigReader::Enumerate(const std::string &tag)
914 {
915         return Config->ConfValueEnum(*this->data, tag);
916 }
917
918 int ConfigReader::EnumerateValues(const std::string &tag, int index)
919 {
920         return Config->ConfVarEnum(*this->data, tag, index);
921 }
922
923 bool ConfigReader::Verify()
924 {
925         return this->readerror;
926 }
927
928
929 FileReader::FileReader(const std::string &filename)
930 {
931         file_cache c;
932         readfile(c,filename.c_str());
933         this->fc = c;
934         this->CalcSize();
935 }
936
937 FileReader::FileReader()
938 {
939 }
940
941 std::string FileReader::Contents()
942 {
943         std::string x = "";
944         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
945         {
946                 x.append(*a);
947                 x.append("\r\n");
948         }
949         return x;
950 }
951
952 unsigned long FileReader::ContentSize()
953 {
954         return this->contentsize;
955 }
956
957 void FileReader::CalcSize()
958 {
959         unsigned long n = 0;
960         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
961                 n += (a->length() + 2);
962         this->contentsize = n;
963 }
964
965 void FileReader::LoadFile(const std::string &filename)
966 {
967         file_cache c;
968         readfile(c,filename.c_str());
969         this->fc = c;
970         this->CalcSize();
971 }
972
973
974 FileReader::~FileReader()
975 {
976 }
977
978 bool FileReader::Exists()
979 {
980         return (!(fc.size() == 0));
981 }
982
983 std::string FileReader::GetLine(int x)
984 {
985         if ((x<0) || ((unsigned)x>fc.size()))
986                 return "";
987         return fc[x];
988 }
989
990 int FileReader::FileSize()
991 {
992         return fc.size();
993 }
994
995
996 std::vector<Module*> modules(255);
997 std::vector<ircd_module*> factory(255);
998
999 int MODCOUNT  = -1;