]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Moved some stuff out to userprocess.cpp
[user/henk/code/inspircd.git] / src / modules.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 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 using namespace std;
18
19 #include "inspircd_config.h"
20 #include "inspircd.h"
21 #include "inspircd_io.h"
22 #include "inspircd_util.h"
23 #include <unistd.h>
24 #include <sys/errno.h>
25 #include <time.h>
26 #include <string>
27 #ifdef GCC3
28 #include <ext/hash_map>
29 #else
30 #include <hash_map>
31 #endif
32 #include <map>
33 #include <sstream>
34 #include <vector>
35 #include <deque>
36 #include "users.h"
37 #include "ctables.h"
38 #include "globals.h"
39 #include "modules.h"
40 #include "dynamic.h"
41 #include "wildcard.h"
42 #include "message.h"
43 #include "mode.h"
44 #include "xline.h"
45 #include "commands.h"
46 #include "inspstring.h"
47 #include "helperfuncs.h"
48 #include "hashcomp.h"
49 #include "socket.h"
50 #include "socketengine.h"
51
52 extern SocketEngine* SE;
53 extern int MODCOUNT;
54 extern std::vector<Module*> modules;
55 extern std::vector<ircd_module*> factory;
56
57 extern std::vector<std::string> include_stack;
58
59 extern std::vector<InspSocket*> module_sockets;
60
61 extern time_t TIME;
62
63 extern int LogLevel;
64 extern char ServerName[MAXBUF];
65 extern char Network[MAXBUF];
66 extern char ServerDesc[MAXBUF];
67 extern char AdminName[MAXBUF];
68 extern char AdminEmail[MAXBUF];
69 extern char AdminNick[MAXBUF];
70 extern char diepass[MAXBUF];
71 extern char restartpass[MAXBUF];
72 extern char motd[MAXBUF];
73 extern char rules[MAXBUF];
74 extern char list[MAXBUF];
75 extern char PrefixQuit[MAXBUF];
76 extern char DieValue[MAXBUF];
77
78 extern int debugging;
79 extern int WHOWAS_STALE;
80 extern int WHOWAS_MAX;
81 extern int DieDelay;
82 extern time_t startup_time;
83 extern int NetBufferSize;
84 extern int MaxWhoResults;
85 extern time_t nb_start;
86
87 extern std::vector<std::string> module_names;
88
89 extern int boundPortCount;
90 extern int portCount;
91
92 extern int ports[MAXSOCKS];
93
94 class Server;
95
96 extern std::stringstream config_f;
97
98
99
100 extern FILE *log_file;
101
102 extern userrec* fd_ref_table[65536];
103
104 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
105 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;
106 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, irc::InAddr_HashComp> address_cache;
107 typedef nspace::hash_map<std::string, WhoWasUser*, nspace::hash<string>, irc::StrHashComp> whowas_hash;
108 typedef std::deque<command_t> command_table;
109
110
111 extern user_hash clientlist;
112 extern chan_hash chanlist;
113 extern whowas_hash whowas;
114 extern command_table cmdlist;
115 extern file_cache MOTD;
116 extern file_cache RULES;
117 extern address_cache IP;
118
119
120 // class type for holding an extended mode character - internal to core
121
122 class ExtMode : public classbase
123 {
124 public:
125         char modechar;
126         int type;
127         bool needsoper;
128         int params_when_on;
129         int params_when_off;
130         bool list;
131         ExtMode(char mc, int ty, bool oper, int p_on, int p_off) : modechar(mc), type(ty), needsoper(oper), params_when_on(p_on), params_when_off(p_off) { };
132 };                                     
133
134 typedef std::vector<ExtMode> ExtModeList;
135 typedef ExtModeList::iterator ExtModeListIter;
136
137
138 ExtModeList EMode;
139
140 // returns true if an extended mode character is in use
141 bool ModeDefined(char modechar, int type)
142 {
143         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
144         {
145                 if ((i->modechar == modechar) && (i->type == type))
146                 {
147                         return true;
148                 }
149         }
150         return false;
151 }
152
153 bool ModeIsListMode(char modechar, int type)
154 {
155         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
156         {
157                 if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
158                 {
159                         return true;
160                 }
161         }
162         return false;
163 }
164
165 bool ModeDefinedOper(char modechar, int type)
166 {
167         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
168         {
169                 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
170                 {
171                         return true;
172                 }
173         }
174         return false;
175 }
176
177 // returns number of parameters for a custom mode when it is switched on
178 int ModeDefinedOn(char modechar, int type)
179 {
180         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
181         {
182                 if ((i->modechar == modechar) && (i->type == type))
183                 {
184                         return i->params_when_on;
185                 }
186         }
187         return 0;
188 }
189
190 // returns number of parameters for a custom mode when it is switched on
191 int ModeDefinedOff(char modechar, int type)
192 {
193         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
194         {
195                 if ((i->modechar == modechar) && (i->type == type))
196                 {
197                         return i->params_when_off;
198                 }
199         }
200         return 0;
201 }
202
203 // returns true if an extended mode character is in use
204 bool DoAddExtendedMode(char modechar, int type, bool requires_oper, int params_on, int params_off)
205 {
206         if (ModeDefined(modechar,type)) {
207                 return false;
208         }
209         EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
210         return true;
211 }
212
213 // turns a mode into a listmode
214 void ModeMakeList(char modechar)
215 {
216         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
217         {
218                 if ((i->modechar == modechar) && (i->type == MT_CHANNEL))
219                 {
220                         i->list = true;
221                         return;
222                 }
223         }
224         return;
225 }
226
227 // version is a simple class for holding a modules version number
228
229 Version::Version(int major, int minor, int revision, int build, int flags) : Major(major), Minor(minor), Revision(revision), Build(build), Flags(flags) { };
230
231 // admin is a simple class for holding a server's administrative info
232
233 Admin::Admin(std::string name, std::string email, std::string nick) : Name(name), Email(email), Nick(nick) { };
234
235 Request::Request(char* anydata, Module* src, Module* dst) : data(anydata), source(src), dest(dst) { };
236
237 char* Request::GetData()
238 {
239         return this->data;
240 }
241
242 Module* Request::GetSource()
243 {
244         return this->source;
245 }
246
247 Module* Request::GetDest()
248 {
249         return this->dest;
250 }
251
252 char* Request::Send()
253 {
254         if (this->dest)
255         {
256                 return dest->OnRequest(this);
257         }
258         else
259         {
260                 return NULL;
261         }
262 }
263
264 Event::Event(char* anydata, Module* src, std::string eventid) : data(anydata), source(src), id(eventid) { };
265
266 char* Event::GetData()
267 {
268         return this->data;
269 }
270
271 Module* Event::GetSource()
272 {
273         return this->source;
274 }
275
276 char* Event::Send()
277 {
278         FOREACH_MOD OnEvent(this);
279         return NULL;
280 }
281
282 std::string Event::GetEventID()
283 {
284         return this->id;
285 }
286
287
288 // These declarations define the behavours of the base class Module (which does nothing at all)
289
290                 Module::Module(Server* Me) { }
291                 Module::~Module() { }
292 void            Module::OnUserConnect(userrec* user) { }
293 void            Module::OnUserQuit(userrec* user, std::string message) { }
294 void            Module::OnUserDisconnect(userrec* user) { }
295 void            Module::OnUserJoin(userrec* user, chanrec* channel) { }
296 void            Module::OnUserPart(userrec* user, chanrec* channel) { }
297 void            Module::OnRehash(std::string parameter) { }
298 void            Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
299 int             Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
300 int             Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
301 void            Module::OnMode(userrec* user, void* dest, int target_type, std::string text) { };
302 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
303 void            Module::OnOper(userrec* user, std::string opertype) { };
304 void            Module::OnInfo(userrec* user) { };
305 void            Module::OnWhois(userrec* source, userrec* dest) { };
306 int             Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
307 int             Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
308 int             Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
309 int             Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
310 void            Module::OnUserPostNick(userrec* user, std::string oldnick) { };
311 int             Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
312 void            Module::On005Numeric(std::string &output) { };
313 int             Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
314 void            Module::OnLoadModule(Module* mod,std::string name) { };
315 void            Module::OnUnloadModule(Module* mod,std::string name) { };
316 void            Module::OnBackgroundTimer(time_t curtime) { };
317 void            Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
318 int             Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) { return 0; };
319 bool            Module::OnCheckReady(userrec* user) { return true; };
320 void            Module::OnUserRegister(userrec* user) { };
321 int             Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; };
322 void            Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { };
323 int             Module::OnRawMode(userrec* user, chanrec* chan, char mode, std::string param, bool adding, int pcnt) { return 0; };
324 int             Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
325 int             Module::OnCheckKey(userrec* user, chanrec* chan, std::string keygiven) { return 0; };
326 int             Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
327 int             Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
328 void            Module::OnStats(char symbol) { };
329 int             Module::OnChangeLocalUserHost(userrec* user, std::string newhost) { return 0; };
330 int             Module::OnChangeLocalUserGECOS(userrec* user, std::string newhost) { return 0; };
331 int             Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { return 0; };
332 void            Module::OnEvent(Event* event) { return; };
333 char*           Module::OnRequest(Request* request) { return NULL; };
334 int             Module::OnOperCompare(std::string password, std::string input) { return 0; };
335 void            Module::OnGlobalOper(userrec* user) { };
336 void            Module::OnGlobalConnect(userrec* user) { };
337 int             Module::OnAddBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
338 int             Module::OnDelBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
339 void            Module::OnRawSocketAccept(int fd, std::string ip, int localport) { };
340 int             Module::OnRawSocketWrite(int fd, char* buffer, int count) { return 0; };
341 void            Module::OnRawSocketClose(int fd) { };
342 int             Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
343 void            Module::OnUserMessage(userrec* user, void* dest, int target_type, std::string text) { };
344 void            Module::OnUserNotice(userrec* user, void* dest, int target_type, std::string text) { };
345 void            Module::OnRemoteKill(userrec* source, userrec* dest, std::string reason) { };
346 void            Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
347 void            Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { };
348 void            Module::OnGetServerDescription(std::string servername,std::string &description) { };
349 void            Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { };
350 void            Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { };
351 void            Module::ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline) { };
352 void            Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, std::string extname) { };
353 void            Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, std::string extname) { };
354 void            Module::OnDecodeMetaData(int target_type, void* target, std::string extname, std::string extdata) { };
355 void            Module::ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata) { };
356 void            Module::OnWallops(userrec* user, std::string text) { };
357 void            Module::OnChangeHost(userrec* user, std::string newhost) { };
358 void            Module::OnChangeName(userrec* user, std::string gecos) { };
359 void            Module::OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask) { };
360 void            Module::OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask) { };
361 void            Module::OnAddKLine(long duration, userrec* source, std::string reason, std::string hostmask) { };
362 void            Module::OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask) { };
363 void            Module::OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask) { };
364 void            Module::OnDelGLine(userrec* source, std::string hostmask) { };
365 void            Module::OnDelZLine(userrec* source, std::string ipmask) { };
366 void            Module::OnDelKLine(userrec* source, std::string hostmask) { };
367 void            Module::OnDelQLine(userrec* source, std::string nickmask) { };
368 void            Module::OnDelELine(userrec* source, std::string hostmask) { };
369 void            Module::OnCleanup(int target_type, void* item) { };
370
371 /* server is a wrapper class that provides methods to all of the C-style
372  * exports in the core
373  */
374
375 Server::Server()
376 {
377 }
378
379 Server::~Server()
380 {
381 }
382
383 void Server::AddSocket(InspSocket* sock)
384 {
385         module_sockets.push_back(sock);
386 }
387
388 void Server::RehashServer()
389 {
390         WriteOpers("*** Rehashing config file");
391         ReadConfig(false,NULL);
392 }
393
394 void Server::DelSocket(InspSocket* sock)
395 {
396         for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
397         {
398                 if (*a == sock)
399                 {
400                         module_sockets.erase(a);
401                         return;
402                 }
403         }
404 }
405
406 void Server::SendOpers(std::string s)
407 {
408         WriteOpers("%s",s.c_str());
409 }
410
411 bool Server::MatchText(std::string sliteral, std::string spattern)
412 {
413         char literal[MAXBUF],pattern[MAXBUF];
414         strlcpy(literal,sliteral.c_str(),MAXBUF);
415         strlcpy(pattern,spattern.c_str(),MAXBUF);
416         return match(literal,pattern);
417 }
418
419 void Server::SendToModeMask(std::string modes, int flags, std::string text)
420 {
421         WriteMode(modes.c_str(),flags,"%s",text.c_str());
422 }
423
424 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
425 {
426         return add_channel(user,cname.c_str(),key.c_str(),false);
427 }
428
429 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
430 {
431         return del_channel(user,cname.c_str(),reason.c_str(),false);
432 }
433
434 chanuserlist Server::GetUsers(chanrec* chan)
435 {
436         chanuserlist userl;
437         userl.clear();
438         std::vector<char*> *list = chan->GetUsers();
439         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
440         {
441                 char* o = *i;
442                 userl.push_back((userrec*)o);
443         }
444         return userl;
445 }
446 void Server::ChangeUserNick(userrec* user, std::string nickname)
447 {
448         force_nickchange(user,nickname.c_str());
449 }
450
451 void Server::QuitUser(userrec* user, std::string reason)
452 {
453         kill_link(user,reason.c_str());
454 }
455
456 bool Server::IsUlined(std::string server)
457 {
458         return is_uline(server.c_str());
459 }
460
461 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
462 {
463         call_handler(commandname.c_str(),parameters,pcnt,user);
464 }
465
466 bool Server::IsValidModuleCommand(std::string commandname, int pcnt, userrec* user)
467 {
468         return is_valid_cmd(commandname.c_str(), pcnt, user);
469 }
470
471 void Server::Log(int level, std::string s)
472 {
473         log(level,"%s",s.c_str());
474 }
475
476 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source)
477 {
478         createcommand(cmd,f,flags,minparams,source);
479 }
480
481 void Server::SendMode(char **parameters, int pcnt, userrec *user)
482 {
483         server_mode(parameters,pcnt,user);
484 }
485
486 void Server::Send(int Socket, std::string s)
487 {
488         Write(Socket,"%s",s.c_str());
489 }
490
491 void Server::SendServ(int Socket, std::string s)
492 {
493         WriteServ(Socket,"%s",s.c_str());
494 }
495
496 void Server::SendFrom(int Socket, userrec* User, std::string s)
497 {
498         WriteFrom(Socket,User,"%s",s.c_str());
499 }
500
501 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
502 {
503         if (!Source)
504         {
505                 // if source is NULL, then the message originates from the local server
506                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
507         }
508         else
509         {
510                 // otherwise it comes from the user specified
511                 WriteTo(Source,Dest,"%s",s.c_str());
512         }
513 }
514
515 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text)
516 {
517         WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str());
518 }
519
520 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
521 {
522         if (IncludeSender)
523         {
524                 WriteChannel(Channel,User,"%s",s.c_str());
525         }
526         else
527         {
528                 ChanExceptSender(Channel,User,"%s",s.c_str());
529         }
530 }
531
532 bool Server::CommonChannels(userrec* u1, userrec* u2)
533 {
534         return (common_channels(u1,u2) != 0);
535 }
536
537 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
538 {
539         if (IncludeSender)
540         {
541                 WriteCommon(User,"%s",text.c_str());
542         }
543         else
544         {
545                 WriteCommonExcept(User,"%s",text.c_str());
546         }
547 }
548
549 void Server::SendWallops(userrec* User, std::string text)
550 {
551         WriteWallOps(User,false,"%s",text.c_str());
552 }
553
554 void Server::ChangeHost(userrec* user, std::string host)
555 {
556         ChangeDisplayedHost(user,host.c_str());
557 }
558
559 void Server::ChangeGECOS(userrec* user, std::string gecos)
560 {
561         ChangeName(user,gecos.c_str());
562 }
563
564 bool Server::IsNick(std::string nick)
565 {
566         return (isnick(nick.c_str()) != 0);
567 }
568
569 userrec* Server::FindNick(std::string nick)
570 {
571         return Find(nick);
572 }
573
574 userrec* Server::FindDescriptor(int socket)
575 {
576         return (socket < 65536 ? fd_ref_table[socket] : NULL);
577 }
578
579 chanrec* Server::FindChannel(std::string channel)
580 {
581         return FindChan(channel.c_str());
582 }
583
584 std::string Server::ChanMode(userrec* User, chanrec* Chan)
585 {
586         return cmode(User,Chan);
587 }
588
589 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
590 {
591         return has_channel(User,Chan);
592 }
593
594 std::string Server::GetServerName()
595 {
596         return getservername();
597 }
598
599 std::string Server::GetNetworkName()
600 {
601         return getnetworkname();
602 }
603
604 std::string Server::GetServerDescription()
605 {
606         return getserverdesc();
607 }
608
609 Admin Server::GetAdmin()
610 {
611         return Admin(getadminname(),getadminemail(),getadminnick());
612 }
613
614
615
616 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
617 {
618         if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
619         {
620                 if (type == MT_SERVER)
621                 {
622                         log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
623                         return false;
624                 }
625                 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
626                 {
627                         log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
628                         return false;
629                 }
630                 if ((params_when_on>1) || (params_when_off>1))
631                 {
632                         log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
633                         return false;
634                 }
635                 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
636         }
637         else
638         {
639                 log(DEBUG,"*** API ERROR *** Muppet modechar detected.");
640         }
641         return false;
642 }
643
644 bool Server::AddExtendedListMode(char modechar)
645 {
646         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
647         if (res)
648                 ModeMakeList(modechar);
649         return res;
650 }
651
652 int Server::CountUsers(chanrec* c)
653 {
654         return usercount(c);
655 }
656
657
658 bool Server::UserToPseudo(userrec* user,std::string message)
659 {
660         unsigned int old_fd = user->fd;
661         user->fd = FD_MAGIC_NUMBER;
662         user->ClearBuffer();
663         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
664         SE->DelFd(old_fd);
665         shutdown(old_fd,2);
666         close(old_fd);
667         return true;
668 }
669
670 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
671 {
672         zombie->fd = alive->fd;
673         alive->fd = FD_MAGIC_NUMBER;
674         alive->ClearBuffer();
675         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
676         kill_link(alive,message.c_str());
677         fd_ref_table[zombie->fd] = zombie;
678         for (int i = 0; i != MAXCHANS; i++)
679         {
680                 if (zombie->chans[i].channel != NULL)
681                 {
682                         if (zombie->chans[i].channel->name)
683                         {
684                                 chanrec* Ptr = zombie->chans[i].channel;
685                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
686                                 if (Ptr->topicset)
687                                 {
688                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
689                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
690                                 }
691                                 userlist(zombie,Ptr);
692                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
693
694                         }
695                 }
696         }
697         return true;
698 }
699
700 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
701 {
702         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
703 }
704
705 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
706 {
707         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
708 }
709
710 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
711 {
712         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
713 }
714
715 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
716 {
717         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
718 }
719
720 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
721 {
722         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
723 }
724
725 bool Server::DelGLine(std::string hostmask)
726 {
727         return del_gline(hostmask.c_str());
728 }
729
730 bool Server::DelQLine(std::string nickname)
731 {
732         return del_qline(nickname.c_str());
733 }
734
735 bool Server::DelZLine(std::string ipaddr)
736 {
737         return del_zline(ipaddr.c_str());
738 }
739
740 bool Server::DelKLine(std::string hostmask)
741 {
742         return del_kline(hostmask.c_str());
743 }
744
745 bool Server::DelELine(std::string hostmask)
746 {
747         return del_eline(hostmask.c_str());
748 }
749
750 long Server::CalcDuration(std::string delta)
751 {
752         return duration(delta.c_str());
753 }
754
755 bool Server::IsValidMask(std::string mask)
756 {
757         const char* dest = mask.c_str();
758         if (strchr(dest,'!')==0)
759                 return false;
760         if (strchr(dest,'@')==0)
761                 return false;
762         for (unsigned int i = 0; i < strlen(dest); i++)
763                 if (dest[i] < 32)
764                         return false;
765         for (unsigned int i = 0; i < strlen(dest); i++)
766                 if (dest[i] > 126)
767                         return false;
768         unsigned int c = 0;
769         for (unsigned int i = 0; i < strlen(dest); i++)
770                 if (dest[i] == '!')
771                         c++;
772         if (c>1)
773                 return false;
774         c = 0;
775         for (unsigned int i = 0; i < strlen(dest); i++)
776                 if (dest[i] == '@')
777                         c++;
778         if (c>1)
779                 return false;
780
781         return true;
782 }
783
784 Module* Server::FindModule(std::string name)
785 {
786         for (int i = 0; i <= MODCOUNT; i++)
787         {
788                 if (module_names[i] == name)
789                 {
790                         return modules[i];
791                 }
792         }
793         return NULL;
794 }
795
796 ConfigReader::ConfigReader()
797 {
798         include_stack.clear();
799         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
800         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
801         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
802         if (!this->readerror)
803                 this->error = CONF_FILE_NOT_FOUND;
804 }
805
806
807 ConfigReader::~ConfigReader()
808 {
809         if (this->cache)
810                 delete this->cache;
811         if (this->errorlog)
812                 delete this->errorlog;
813 }
814
815
816 ConfigReader::ConfigReader(std::string filename)
817 {
818         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
819         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
820         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
821         if (!this->readerror)
822                 this->error = CONF_FILE_NOT_FOUND;
823 };
824
825 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
826 {
827         char val[MAXBUF];
828         char t[MAXBUF];
829         char n[MAXBUF];
830         strlcpy(t,tag.c_str(),MAXBUF);
831         strlcpy(n,name.c_str(),MAXBUF);
832         int res = ReadConf(cache,t,n,index,val);
833         if (!res)
834         {
835                 this->error = CONF_VALUE_NOT_FOUND;
836                 return "";
837         }
838         return val;
839 }
840
841 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
842 {
843         char val[MAXBUF];
844         char t[MAXBUF];
845         char n[MAXBUF];
846         strlcpy(t,tag.c_str(),MAXBUF);
847         strlcpy(n,name.c_str(),MAXBUF);
848         int res = ReadConf(cache,t,n,index,val);
849         if (!res)
850         {
851                 this->error = CONF_VALUE_NOT_FOUND;
852                 return false;
853         }
854         std::string s = val;
855         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
856 }
857
858 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
859 {
860         char val[MAXBUF];
861         char t[MAXBUF];
862         char n[MAXBUF];
863         strlcpy(t,tag.c_str(),MAXBUF);
864         strlcpy(n,name.c_str(),MAXBUF);
865         int res = ReadConf(cache,t,n,index,val);
866         if (!res)
867         {
868                 this->error = CONF_VALUE_NOT_FOUND;
869                 return 0;
870         }
871         for (unsigned int i = 0; i < strlen(val); i++)
872         {
873                 if (!isdigit(val[i]))
874                 {
875                         this->error = CONF_NOT_A_NUMBER;
876                         return 0;
877                 }
878         }
879         if ((needs_unsigned) && (atoi(val)<0))
880         {
881                 this->error = CONF_NOT_UNSIGNED;
882                 return 0;
883         }
884         return atoi(val);
885 }
886
887 long ConfigReader::GetError()
888 {
889         long olderr = this->error;
890         this->error = 0;
891         return olderr;
892 }
893
894 void ConfigReader::DumpErrors(bool bail, userrec* user)
895 {
896         if (bail)
897         {
898                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
899                 exit(0);
900         }
901         else
902         {
903                 char dataline[1024];
904                 if (user)
905                 {
906                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
907                         while (!errorlog->eof())
908                         {
909                                 errorlog->getline(dataline,1024);
910                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
911                         }
912                 }
913                 else
914                 {
915                         WriteOpers("There were errors in the configuration file:",user->nick);
916                         while (!errorlog->eof())
917                         {
918                                 errorlog->getline(dataline,1024);
919                                 WriteOpers(dataline);
920                         }
921                 }
922                 return;
923         }
924 }
925
926
927 int ConfigReader::Enumerate(std::string tag)
928 {
929         return EnumConf(cache,tag.c_str());
930 }
931
932 int ConfigReader::EnumerateValues(std::string tag, int index)
933 {
934         return EnumValues(cache, tag.c_str(), index);
935 }
936
937 bool ConfigReader::Verify()
938 {
939         return this->readerror;
940 }
941
942
943 FileReader::FileReader(std::string filename)
944 {
945         file_cache c;
946         readfile(c,filename.c_str());
947         this->fc = c;
948 }
949
950 FileReader::FileReader()
951 {
952 }
953
954 void FileReader::LoadFile(std::string filename)
955 {
956         file_cache c;
957         readfile(c,filename.c_str());
958         this->fc = c;
959 }
960
961
962 FileReader::~FileReader()
963 {
964 }
965
966 bool FileReader::Exists()
967 {
968         if (fc.size() == 0)
969         {
970                 return(false);
971         }
972         else
973         {
974                 return(true);
975         }
976 }
977
978 std::string FileReader::GetLine(int x)
979 {
980         if ((x<0) || ((unsigned)x>fc.size()))
981                 return "";
982         return fc[x];
983 }
984
985 int FileReader::FileSize()
986 {
987         return fc.size();
988 }
989
990
991 std::vector<Module*> modules(255);
992 std::vector<ircd_module*> factory(255);
993
994 int MODCOUNT  = -1;
995
996