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