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