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