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