]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
65a9f3d9fb42719a8ce39c121369934b2712e266
[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 chanuserlist Server::GetUsers(chanrec* chan)
404 {
405         chanuserlist userl;
406         userl.clear();
407         CUList *list = chan->GetUsers();
408         for (CUList::iterator i = list->begin(); i != list->end(); i++)
409                 userl.push_back(i->second);
410         return userl;
411 }
412
413 bool Server::IsUlined(const std::string &server)
414 {
415         return is_uline(server.c_str());
416 }
417
418 bool Server::CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user)
419 {
420         return ServerInstance->Parser->CallHandler(commandname,parameters,pcnt,user);
421 }
422
423 bool Server::IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user)
424 {
425         return ServerInstance->Parser->IsValidCommand(commandname, pcnt, user);
426 }
427
428 void Server::Log(int level, const std::string &s)
429 {
430         log(level,"%s",s.c_str());
431 }
432
433 void Server::AddCommand(command_t *f)
434 {
435         if (!ServerInstance->Parser->CreateCommand(f))
436         {
437                 ModuleException err("Command "+std::string(f->command)+" already exists.");
438                 throw (err);
439         }
440 }
441
442 void Server::SendMode(const char** parameters, int pcnt, userrec *user)
443 {
444         ServerInstance->ModeGrok->Process(parameters,pcnt,user,true);
445 }
446
447 bool Server::CommonChannels(userrec* u1, userrec* u2)
448 {
449         return (common_channels(u1,u2) != 0);
450 }
451
452 void Server::DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream)
453 {
454         std::string CompleteLine = LinePrefix;
455         std::string Word = "";
456         while (TextStream >> Word)
457         {
458                 if (CompleteLine.length() + Word.length() + 3 > 500)
459                 {
460                         User->WriteServ(CompleteLine);
461                         CompleteLine = LinePrefix;
462                 }
463                 CompleteLine = CompleteLine + Word + " ";
464         }
465         User->WriteServ(CompleteLine);
466 }
467
468 void Server::SendCommon(userrec* User, const std::string &text, bool IncludeSender)
469 {
470         if (IncludeSender)
471         {
472                 WriteCommon_NoFormat(User,text.c_str());
473         }
474         else
475         {
476                 WriteCommonExcept_NoFormat(User,text.c_str());
477         }
478 }
479
480 void Server::SendWallops(userrec* User, const std::string &text)
481 {
482         WriteWallOps(User,false,"%s",text.c_str());
483 }
484
485 void Server::ChangeHost(userrec* user, const std::string &host)
486 {
487         ChangeDisplayedHost(user,host.c_str());
488 }
489
490 void Server::ChangeGECOS(userrec* user, const std::string &gecos)
491 {
492         ChangeName(user,gecos.c_str());
493 }
494
495 bool Server::IsNick(const std::string &nick)
496 {
497         return (isnick(nick.c_str()) != 0);
498 }
499
500 userrec* Server::FindNick(const std::string &nick)
501 {
502         return Find(nick);
503 }
504
505 userrec* Server::FindDescriptor(int socket)
506 {
507         return (socket < 65536 ? fd_ref_table[socket] : NULL);
508 }
509
510 chanrec* Server::FindChannel(const std::string &channel)
511 {
512         return FindChan(channel.c_str());
513 }
514
515 std::string Server::ChanMode(userrec* User, chanrec* Chan)
516 {
517         return cmode(User,Chan);
518 }
519
520 std::string Server::GetServerName()
521 {
522         return Config->ServerName;
523 }
524
525 std::string Server::GetNetworkName()
526 {
527         return Config->Network;
528 }
529
530 std::string Server::GetServerDescription()
531 {
532         return Config->ServerDesc;
533 }
534
535 Admin Server::GetAdmin()
536 {
537         return Admin(Config->AdminName,Config->AdminEmail,Config->AdminNick);
538 }
539
540
541 bool Server::AddMode(ModeHandler* mh, const unsigned char mode)
542 {
543         return ServerInstance->ModeGrok->AddMode(mh,mode);
544 }
545
546 bool Server::AddModeWatcher(ModeWatcher* mw)
547 {
548         return ServerInstance->ModeGrok->AddModeWatcher(mw);
549 }
550
551 bool Server::DelModeWatcher(ModeWatcher* mw)
552 {
553         return ServerInstance->ModeGrok->DelModeWatcher(mw);
554 }
555
556 bool Server::AddResolver(Resolver* r)
557 {
558         return ServerInstance->Res->AddResolverClass(r);
559 }
560
561 int Server::CountUsers(chanrec* c)
562 {
563         return usercount(c);
564 }
565
566 bool Server::UserToPseudo(userrec* user, const std::string &message)
567 {
568         unsigned int old_fd = user->fd;
569         user->Write("ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
570         user->FlushWriteBuf();
571         user->ClearBuffer();
572         user->fd = FD_MAGIC_NUMBER;
573
574         if (find(local_users.begin(),local_users.end(),user) != local_users.end())
575         {
576                 local_users.erase(find(local_users.begin(),local_users.end(),user));
577                 log(DEBUG,"Delete local user");
578         }
579
580         ServerInstance->SE->DelFd(old_fd);
581         shutdown(old_fd,2);
582         close(old_fd);
583         return true;
584 }
585
586 bool Server::PseudoToUser(userrec* alive, userrec* zombie, const std::string &message)
587 {
588         log(DEBUG,"PseudoToUser");
589         zombie->fd = alive->fd;
590         FOREACH_MOD(I_OnUserQuit,OnUserQuit(alive,message));
591         alive->fd = FD_MAGIC_NUMBER;
592         alive->FlushWriteBuf();
593         alive->ClearBuffer();
594         // save these for later
595         std::string oldnick = alive->nick;
596         std::string oldhost = alive->host;
597         std::string oldident = alive->ident;
598         userrec::QuitUser(alive,message.c_str());
599         if (find(local_users.begin(),local_users.end(),alive) != local_users.end())
600         {
601                 local_users.erase(find(local_users.begin(),local_users.end(),alive));
602                 log(DEBUG,"Delete local user");
603         }
604         // Fix by brain - cant write the user until their fd table entry is updated
605         fd_ref_table[zombie->fd] = zombie;
606         zombie->Write(":%s!%s@%s NICK %s",oldnick.c_str(),oldident.c_str(),oldhost.c_str(),zombie->nick);
607         for (std::vector<ucrec*>::const_iterator i = zombie->chans.begin(); i != zombie->chans.end(); i++)
608         {
609                 if (((ucrec*)(*i))->channel != NULL)
610                 {
611                                 chanrec* Ptr = ((ucrec*)(*i))->channel;
612                                 zombie->WriteFrom(zombie,"JOIN %s",Ptr->name);
613                                 if (Ptr->topicset)
614                                 {
615                                         zombie->WriteServ("332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
616                                         zombie->WriteServ("333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
617                                 }
618                                 userlist(zombie,Ptr);
619                                 zombie->WriteServ("366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
620                 }
621         }
622         if ((find(local_users.begin(),local_users.end(),zombie) == local_users.end()) && (zombie->fd != FD_MAGIC_NUMBER))
623                 local_users.push_back(zombie);
624
625         return true;
626 }
627
628 void Server::AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
629 {
630         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
631         apply_lines(APPLY_GLINES);
632 }
633
634 void Server::AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname)
635 {
636         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
637         apply_lines(APPLY_QLINES);
638 }
639
640 void Server::AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr)
641 {
642         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
643         apply_lines(APPLY_ZLINES);
644 }
645
646 void Server::AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
647 {
648         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
649         apply_lines(APPLY_KLINES);
650 }
651
652 void Server::AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask)
653 {
654         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
655 }
656
657 bool Server::DelGLine(const std::string &hostmask)
658 {
659         return del_gline(hostmask.c_str());
660 }
661
662 bool Server::DelQLine(const std::string &nickname)
663 {
664         return del_qline(nickname.c_str());
665 }
666
667 bool Server::DelZLine(const std::string &ipaddr)
668 {
669         return del_zline(ipaddr.c_str());
670 }
671
672 bool Server::DelKLine(const std::string &hostmask)
673 {
674         return del_kline(hostmask.c_str());
675 }
676
677 bool Server::DelELine(const std::string &hostmask)
678 {
679         return del_eline(hostmask.c_str());
680 }
681
682 long Server::CalcDuration(const std::string &delta)
683 {
684         return duration(delta.c_str());
685 }
686
687 /*
688  * XXX why on *earth* is this in modules.cpp...? I think
689  * perhaps we need a server.cpp for Server:: stuff where possible. -- w00t
690  */
691 bool Server::IsValidMask(const std::string &mask)
692 {
693         char* dest = (char*)mask.c_str();
694         if (strchr(dest,'!')==0)
695                 return false;
696         if (strchr(dest,'@')==0)
697                 return false;
698         for (char* i = dest; *i; i++)
699                 if (*i < 32)
700                         return false;
701         for (char* i = dest; *i; i++)
702                 if (*i > 126)
703                         return false;
704         unsigned int c = 0;
705         for (char* i = dest; *i; i++)
706                 if (*i == '!')
707                         c++;
708         if (c>1)
709                 return false;
710         c = 0;
711         for (char* i = dest; *i; i++)
712                 if (*i == '@')
713                         c++;
714         if (c>1)
715                 return false;
716
717         return true;
718 }
719
720 Module* Server::FindModule(const std::string &name)
721 {
722         for (int i = 0; i <= MODCOUNT; i++)
723         {
724                 if (Config->module_names[i] == name)
725                 {
726                         return modules[i];
727                 }
728         }
729         return NULL;
730 }
731
732 ConfigReader::ConfigReader()
733 {
734         // Config->ClearStack();
735         
736         /* Is there any reason to load the entire config file again here?
737          * it's needed if they specify another config file, but using the
738          * default one we can just use the global config data - pre-parsed!
739          */
740         //~ this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
741         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
742         
743         //~ this->readerror = Config->LoadConf(CONFIG_FILE, this->cache,this->errorlog);
744         //~ if (!this->readerror)
745                 //~ this->error = CONF_FILE_NOT_FOUND;
746         
747         this->data = &Config->config_data;
748         this->privatehash = false;
749 }
750
751
752 ConfigReader::~ConfigReader()
753 {
754         //~ if (this->cache)
755                 //~ delete this->cache;
756         if (this->errorlog)
757                 DELETE(this->errorlog);
758         if(this->privatehash)
759                 DELETE(this->data);
760 }
761
762
763 ConfigReader::ConfigReader(const std::string &filename)
764 {
765         Config->ClearStack();
766         
767         this->data = new ConfigDataHash;
768         this->privatehash = true;
769         this->errorlog = new std::ostringstream(std::stringstream::in | std::stringstream::out);
770         this->readerror = Config->LoadConf(*this->data, filename, *this->errorlog);
771         if (!this->readerror)
772                 this->error = CONF_FILE_NOT_FOUND;
773 };
774
775 std::string ConfigReader::ReadValue(const std::string &tag, const std::string &name, int index)
776 {
777         /* Don't need to strlcpy() tag and name anymore, ReadConf() takes const char* */ 
778         std::string result;
779         
780         if (!Config->ConfValue(*this->data, tag, name, index, result))
781         {
782                 this->error = CONF_VALUE_NOT_FOUND;
783                 return "";
784         }
785         
786         return result;
787 }
788
789 bool ConfigReader::ReadFlag(const std::string &tag, const std::string &name, int index)
790 {
791         return Config->ConfValueBool(*this->data, tag, name, index);
792 }
793
794 long ConfigReader::ReadInteger(const std::string &tag, const std::string &name, int index, bool needs_unsigned)
795 {
796         int result;
797         
798         if(!Config->ConfValueInteger(*this->data, tag, name, index, result))
799         {
800                 this->error = CONF_VALUE_NOT_FOUND;
801                 return 0;
802         }
803         
804         if ((needs_unsigned) && (result < 0))
805         {
806                 this->error = CONF_NOT_UNSIGNED;
807                 return 0;
808         }
809         
810         return result;
811 }
812
813 long ConfigReader::GetError()
814 {
815         long olderr = this->error;
816         this->error = 0;
817         return olderr;
818 }
819
820 void ConfigReader::DumpErrors(bool bail, userrec* user)
821 {
822         /* XXX - Duplicated code */
823         
824         if (bail)
825         {
826                 printf("There were errors in your configuration:\n%s", this->errorlog->str().c_str());
827                 Exit(0);
828         }
829         else
830         {
831                 std::string errors = this->errorlog->str();
832                 std::string::size_type start;
833                 unsigned int prefixlen;
834                 
835                 start = 0;
836                 /* ":Config->ServerName NOTICE user->nick :" */
837                 prefixlen = strlen(Config->ServerName) + strlen(user->nick) + 11;
838         
839                 if (user)
840                 {
841                         user->WriteServ("NOTICE %s :There were errors in the configuration file:",user->nick);
842                         
843                         while(start < errors.length())
844                         {
845                                 user->WriteServ("NOTICE %s :%s",user->nick, errors.substr(start, 510 - prefixlen).c_str());
846                                 start += 510 - prefixlen;
847                         }
848                 }
849                 else
850                 {
851                         WriteOpers("There were errors in the configuration file:");
852                         
853                         while(start < errors.length())
854                         {
855                                 WriteOpers(errors.substr(start, 360).c_str());
856                                 start += 360;
857                         }
858                 }
859
860                 return;
861         }
862 }
863
864
865 int ConfigReader::Enumerate(const std::string &tag)
866 {
867         return Config->ConfValueEnum(*this->data, tag);
868 }
869
870 int ConfigReader::EnumerateValues(const std::string &tag, int index)
871 {
872         return Config->ConfVarEnum(*this->data, tag, index);
873 }
874
875 bool ConfigReader::Verify()
876 {
877         return this->readerror;
878 }
879
880
881 FileReader::FileReader(const std::string &filename)
882 {
883         file_cache c;
884         readfile(c,filename.c_str());
885         this->fc = c;
886         this->CalcSize();
887 }
888
889 FileReader::FileReader()
890 {
891 }
892
893 std::string FileReader::Contents()
894 {
895         std::string x = "";
896         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
897         {
898                 x.append(*a);
899                 x.append("\r\n");
900         }
901         return x;
902 }
903
904 unsigned long FileReader::ContentSize()
905 {
906         return this->contentsize;
907 }
908
909 void FileReader::CalcSize()
910 {
911         unsigned long n = 0;
912         for (file_cache::iterator a = this->fc.begin(); a != this->fc.end(); a++)
913                 n += (a->length() + 2);
914         this->contentsize = n;
915 }
916
917 void FileReader::LoadFile(const std::string &filename)
918 {
919         file_cache c;
920         readfile(c,filename.c_str());
921         this->fc = c;
922         this->CalcSize();
923 }
924
925
926 FileReader::~FileReader()
927 {
928 }
929
930 bool FileReader::Exists()
931 {
932         return (!(fc.size() == 0));
933 }
934
935 std::string FileReader::GetLine(int x)
936 {
937         if ((x<0) || ((unsigned)x>fc.size()))
938                 return "";
939         return fc[x];
940 }
941
942 int FileReader::FileSize()
943 {
944         return fc.size();
945 }
946
947
948 std::vector<Module*> modules(255);
949 std::vector<ircd_module*> factory(255);
950
951 int MODCOUNT  = -1;