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