]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Added missing ;
[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
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                 Module::Module() { }
307                 Module::~Module() { }
308 void            Module::OnUserConnect(userrec* user) { }
309 void            Module::OnUserQuit(userrec* user, std::string message) { }
310 void            Module::OnUserDisconnect(userrec* user) { }
311 void            Module::OnUserJoin(userrec* user, chanrec* channel) { }
312 void            Module::OnUserPart(userrec* user, chanrec* channel) { }
313 void            Module::OnPacketTransmit(std::string &data, std::string serv) { }
314 void            Module::OnPacketReceive(std::string &data, std::string serv) { }
315 void            Module::OnRehash() { }
316 void            Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
317 int             Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
318 int             Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
319 void            Module::OnMode(userrec* user, void* dest, int target_type, std::string text) { };
320 Version         Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
321 void            Module::OnOper(userrec* user, std::string opertype) { };
322 void            Module::OnInfo(userrec* user) { };
323 void            Module::OnWhois(userrec* source, userrec* dest) { };
324 int             Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
325 int             Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
326 int             Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
327 int             Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
328 void            Module::OnUserPostNick(userrec* user, std::string oldnick) { };
329 int             Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
330 string_list     Module::OnUserSync(userrec* user) { string_list empty; return empty; }
331 string_list     Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; }
332 void            Module::On005Numeric(std::string &output) { };
333 int             Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
334 void            Module::OnLoadModule(Module* mod,std::string name) { };
335 void            Module::OnUnloadModule(Module* mod,std::string name) { };
336 void            Module::OnBackgroundTimer(time_t curtime) { };
337 void            Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
338 int             Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) { return 0; };
339 bool            Module::OnCheckReady(userrec* user) { return true; };
340 void            Module::OnUserRegister(userrec* user) { };
341 int             Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; };
342 void            Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { };
343 int             Module::OnRawMode(userrec* user, chanrec* chan, char mode, std::string param, bool adding, int pcnt) { return 0; };
344 int             Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
345 int             Module::OnCheckKey(userrec* user, chanrec* chan, std::string keygiven) { return 0; };
346 int             Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
347 int             Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
348 void            Module::OnStats(char symbol) { };
349 int             Module::OnChangeLocalUserHost(userrec* user, std::string newhost) { return 0; };
350 int             Module::OnChangeLocalUserGECOS(userrec* user, std::string newhost) { return 0; };
351 int             Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { return 0; };
352 void            Module::OnEvent(Event* event) { return; };
353 char*           Module::OnRequest(Request* request) { return NULL; };
354 int             Module::OnOperCompare(std::string password, std::string input) { return 0; };
355 void            Module::OnGlobalOper(userrec* user) { };
356 void            Module::OnGlobalConnect(userrec* user) { };
357 int             Module::OnAddBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
358 int             Module::OnDelBan(userrec* source, chanrec* channel,std::string banmask) { return 0; };
359 void            Module::OnRawSocketAccept(int fd, std::string ip, int localport) { };
360 int             Module::OnRawSocketWrite(int fd, char* buffer, int count) { return 0; };
361 void            Module::OnRawSocketClose(int fd) { };
362 int             Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; };
363 void            Module::OnUserMessage(userrec* user, void* dest, int target_type, std::string text) { };
364 void            Module::OnUserNotice(userrec* user, void* dest, int target_type, std::string text) { };
365 void            Module::OnRemoteKill(userrec* source, userrec* dest, std::string reason) { };
366 void            Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
367 void            Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { };
368
369 // server is a wrapper class that provides methods to all of the C-style
370 // exports in the core
371 //
372
373 Server::Server()
374 {
375 }
376
377 Server::~Server()
378 {
379 }
380
381 void Server::AddSocket(InspSocket* sock)
382 {
383         module_sockets.push_back(sock);
384 }
385
386 void Server::DelSocket(InspSocket* sock)
387 {
388         for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
389         {
390                 if (*a == sock)
391                 {
392                         module_sockets.erase(a);
393                         return;
394                 }
395         }
396 }
397
398 void Server::SendOpers(std::string s)
399 {
400         WriteOpers("%s",s.c_str());
401 }
402
403 bool Server::MatchText(std::string sliteral, std::string spattern)
404 {
405         char literal[MAXBUF],pattern[MAXBUF];
406         strlcpy(literal,sliteral.c_str(),MAXBUF);
407         strlcpy(pattern,spattern.c_str(),MAXBUF);
408         return match(literal,pattern);
409 }
410
411 void Server::SendToModeMask(std::string modes, int flags, std::string text)
412 {
413         WriteMode(modes.c_str(),flags,"%s",text.c_str());
414 }
415
416 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
417 {
418         return add_channel(user,cname.c_str(),key.c_str(),false);
419 }
420
421 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
422 {
423         return del_channel(user,cname.c_str(),reason.c_str(),false);
424 }
425
426 chanuserlist Server::GetUsers(chanrec* chan)
427 {
428         chanuserlist userl;
429         userl.clear();
430         std::vector<char*> *list = chan->GetUsers();
431         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
432         {
433                 char* o = *i;
434                 userl.push_back((userrec*)o);
435         }
436         return userl;
437 }
438 void Server::ChangeUserNick(userrec* user, std::string nickname)
439 {
440         force_nickchange(user,nickname.c_str());
441 }
442
443 void Server::QuitUser(userrec* user, std::string reason)
444 {
445         kill_link(user,reason.c_str());
446 }
447
448 bool Server::IsUlined(std::string server)
449 {
450         return is_uline(server.c_str());
451 }
452
453 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
454 {
455         call_handler(commandname.c_str(),parameters,pcnt,user);
456 }
457
458 void Server::Log(int level, std::string s)
459 {
460         log(level,"%s",s.c_str());
461 }
462
463 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source)
464 {
465         createcommand(cmd,f,flags,minparams,source);
466 }
467
468 void Server::SendMode(char **parameters, int pcnt, userrec *user)
469 {
470         server_mode(parameters,pcnt,user);
471 }
472
473 void Server::Send(int Socket, std::string s)
474 {
475         Write(Socket,"%s",s.c_str());
476 }
477
478 void Server::SendServ(int Socket, std::string s)
479 {
480         WriteServ(Socket,"%s",s.c_str());
481 }
482
483 void Server::SendFrom(int Socket, userrec* User, std::string s)
484 {
485         WriteFrom(Socket,User,"%s",s.c_str());
486 }
487
488 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
489 {
490         if (!Source)
491         {
492                 // if source is NULL, then the message originates from the local server
493                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
494         }
495         else
496         {
497                 // otherwise it comes from the user specified
498                 WriteTo(Source,Dest,"%s",s.c_str());
499         }
500 }
501
502 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text)
503 {
504         WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str());
505 }
506
507 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
508 {
509         if (IncludeSender)
510         {
511                 WriteChannel(Channel,User,"%s",s.c_str());
512         }
513         else
514         {
515                 ChanExceptSender(Channel,User,"%s",s.c_str());
516         }
517 }
518
519 bool Server::CommonChannels(userrec* u1, userrec* u2)
520 {
521         return (common_channels(u1,u2) != 0);
522 }
523
524 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
525 {
526         if (IncludeSender)
527         {
528                 WriteCommon(User,"%s",text.c_str());
529         }
530         else
531         {
532                 WriteCommonExcept(User,"%s",text.c_str());
533         }
534 }
535
536 void Server::SendWallops(userrec* User, std::string text)
537 {
538         WriteWallOps(User,false,"%s",text.c_str());
539 }
540
541 void Server::ChangeHost(userrec* user, std::string host)
542 {
543         ChangeDisplayedHost(user,host.c_str());
544 }
545
546 void Server::ChangeGECOS(userrec* user, std::string gecos)
547 {
548         ChangeName(user,gecos.c_str());
549 }
550
551 bool Server::IsNick(std::string nick)
552 {
553         return (isnick(nick.c_str()) != 0);
554 }
555
556 userrec* Server::FindNick(std::string nick)
557 {
558         return Find(nick);
559 }
560
561 userrec* Server::FindDescriptor(int socket)
562 {
563         return (socket < 65536 ? fd_ref_table[socket] : NULL);
564 }
565
566 chanrec* Server::FindChannel(std::string channel)
567 {
568         return FindChan(channel.c_str());
569 }
570
571 std::string Server::ChanMode(userrec* User, chanrec* Chan)
572 {
573         return cmode(User,Chan);
574 }
575
576 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
577 {
578         return has_channel(User,Chan);
579 }
580
581 std::string Server::GetServerName()
582 {
583         return getservername();
584 }
585
586 std::string Server::GetNetworkName()
587 {
588         return getnetworkname();
589 }
590
591 std::string Server::GetServerDescription()
592 {
593         return getserverdesc();
594 }
595
596 Admin Server::GetAdmin()
597 {
598         return Admin(getadminname(),getadminemail(),getadminnick());
599 }
600
601
602
603 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
604 {
605         if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z')))
606         {
607                 if (type == MT_SERVER)
608                 {
609                         log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
610                         return false;
611                 }
612                 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
613                 {
614                         log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
615                         return false;
616                 }
617                 if ((params_when_on>1) || (params_when_off>1))
618                 {
619                         log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
620                         return false;
621                 }
622                 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
623         }
624         else
625         {
626                 log(DEBUG,"*** API ERROR *** Muppet modechar detected.");
627         }
628         return false;
629 }
630
631 bool Server::AddExtendedListMode(char modechar)
632 {
633         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
634         if (res)
635                 ModeMakeList(modechar);
636         return res;
637 }
638
639 int Server::CountUsers(chanrec* c)
640 {
641         return usercount(c);
642 }
643
644
645 bool Server::UserToPseudo(userrec* user,std::string message)
646 {
647         unsigned int old_fd = user->fd;
648         user->fd = FD_MAGIC_NUMBER;
649         user->ClearBuffer();
650         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
651 #ifdef USE_KQUEUE
652         struct kevent ke;
653         EV_SET(&ke, old_fd, EVFILT_READ, EV_DELETE, 0, 0, NULL);
654         int i = kevent(kq, &ke, 1, 0, 0, NULL);
655         if (i == -1)
656         {
657                 log(DEBUG,"kqueue: Failed to remove user from queue!");
658         }
659 #endif
660 #ifdef USE_EPOLL
661         struct epoll_event ev;
662         ev.events = EPOLLIN | EPOLLET;
663         ev.data.fd = old_fd;
664         int i = epoll_ctl(ep, EPOLL_CTL_DEL, old_fd, &ev);
665         if (i < 0)
666         {
667                 log(DEBUG,"epoll: List deletion failure!");
668         }
669 #endif
670
671         shutdown(old_fd,2);
672         close(old_fd);
673         return true;
674 }
675
676 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
677 {
678         zombie->fd = alive->fd;
679         alive->fd = FD_MAGIC_NUMBER;
680         alive->ClearBuffer();
681         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
682         kill_link(alive,message.c_str());
683         fd_ref_table[zombie->fd] = zombie;
684         for (int i = 0; i != MAXCHANS; i++)
685         {
686                 if (zombie->chans[i].channel != NULL)
687                 {
688                         if (zombie->chans[i].channel->name)
689                         {
690                                 chanrec* Ptr = zombie->chans[i].channel;
691                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
692                                 if (Ptr->topicset)
693                                 {
694                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
695                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
696                                 }
697                                 userlist(zombie,Ptr);
698                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
699
700                         }
701                 }
702         }
703         return true;
704 }
705
706 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
707 {
708         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
709 }
710
711 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
712 {
713         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
714 }
715
716 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
717 {
718         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
719 }
720
721 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
722 {
723         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
724 }
725
726 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
727 {
728         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
729 }
730
731 bool Server::DelGLine(std::string hostmask)
732 {
733         return del_gline(hostmask.c_str());
734 }
735
736 bool Server::DelQLine(std::string nickname)
737 {
738         return del_qline(nickname.c_str());
739 }
740
741 bool Server::DelZLine(std::string ipaddr)
742 {
743         return del_zline(ipaddr.c_str());
744 }
745
746 bool Server::DelKLine(std::string hostmask)
747 {
748         return del_kline(hostmask.c_str());
749 }
750
751 bool Server::DelELine(std::string hostmask)
752 {
753         return del_eline(hostmask.c_str());
754 }
755
756 long Server::CalcDuration(std::string delta)
757 {
758         return duration(delta.c_str());
759 }
760
761 bool Server::IsValidMask(std::string mask)
762 {
763         const char* dest = mask.c_str();
764         if (strchr(dest,'!')==0)
765                 return false;
766         if (strchr(dest,'@')==0)
767                 return false;
768         for (unsigned int i = 0; i < strlen(dest); i++)
769                 if (dest[i] < 32)
770                         return false;
771         for (unsigned int i = 0; i < strlen(dest); i++)
772                 if (dest[i] > 126)
773                         return false;
774         unsigned int c = 0;
775         for (unsigned int i = 0; i < strlen(dest); i++)
776                 if (dest[i] == '!')
777                         c++;
778         if (c>1)
779                 return false;
780         c = 0;
781         for (unsigned int i = 0; i < strlen(dest); i++)
782                 if (dest[i] == '@')
783                         c++;
784         if (c>1)
785                 return false;
786
787         return true;
788 }
789
790 Module* Server::FindModule(std::string name)
791 {
792         for (int i = 0; i <= MODCOUNT; i++)
793         {
794                 if (module_names[i] == name)
795                 {
796                         return modules[i];
797                 }
798         }
799         return NULL;
800 }
801
802 ConfigReader::ConfigReader()
803 {
804         include_stack.clear();
805         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
806         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
807         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
808         if (!this->readerror)
809                 this->error = CONF_FILE_NOT_FOUND;
810 }
811
812
813 ConfigReader::~ConfigReader()
814 {
815         if (this->cache)
816                 delete this->cache;
817         if (this->errorlog)
818                 delete this->errorlog;
819 }
820
821
822 ConfigReader::ConfigReader(std::string filename)
823 {
824         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
825         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
826         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
827         if (!this->readerror)
828                 this->error = CONF_FILE_NOT_FOUND;
829 };
830
831 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
832 {
833         char val[MAXBUF];
834         char t[MAXBUF];
835         char n[MAXBUF];
836         strlcpy(t,tag.c_str(),MAXBUF);
837         strlcpy(n,name.c_str(),MAXBUF);
838         int res = ReadConf(cache,t,n,index,val);
839         if (!res)
840         {
841                 this->error = CONF_VALUE_NOT_FOUND;
842                 return "";
843         }
844         return val;
845 }
846
847 bool ConfigReader::ReadFlag(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 false;
859         }
860         std::string s = val;
861         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
862 }
863
864 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
865 {
866         char val[MAXBUF];
867         char t[MAXBUF];
868         char n[MAXBUF];
869         strlcpy(t,tag.c_str(),MAXBUF);
870         strlcpy(n,name.c_str(),MAXBUF);
871         int res = ReadConf(cache,t,n,index,val);
872         if (!res)
873         {
874                 this->error = CONF_VALUE_NOT_FOUND;
875                 return 0;
876         }
877         for (unsigned int i = 0; i < strlen(val); i++)
878         {
879                 if (!isdigit(val[i]))
880                 {
881                         this->error = CONF_NOT_A_NUMBER;
882                         return 0;
883                 }
884         }
885         if ((needs_unsigned) && (atoi(val)<0))
886         {
887                 this->error = CONF_NOT_UNSIGNED;
888                 return 0;
889         }
890         return atoi(val);
891 }
892
893 long ConfigReader::GetError()
894 {
895         long olderr = this->error;
896         this->error = 0;
897         return olderr;
898 }
899
900 void ConfigReader::DumpErrors(bool bail, userrec* user)
901 {
902         if (bail)
903         {
904                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
905                 exit(0);
906         }
907         else
908         {
909                 char dataline[1024];
910                 if (user)
911                 {
912                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
913                         while (!errorlog->eof())
914                         {
915                                 errorlog->getline(dataline,1024);
916                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
917                         }
918                 }
919                 else
920                 {
921                         WriteOpers("There were errors in the configuration file:",user->nick);
922                         while (!errorlog->eof())
923                         {
924                                 errorlog->getline(dataline,1024);
925                                 WriteOpers(dataline);
926                         }
927                 }
928                 return;
929         }
930 }
931
932
933 int ConfigReader::Enumerate(std::string tag)
934 {
935         return EnumConf(cache,tag.c_str());
936 }
937
938 int ConfigReader::EnumerateValues(std::string tag, int index)
939 {
940         return EnumValues(cache, tag.c_str(), index);
941 }
942
943 bool ConfigReader::Verify()
944 {
945         return this->readerror;
946 }
947
948
949 FileReader::FileReader(std::string filename)
950 {
951         file_cache c;
952         readfile(c,filename.c_str());
953         this->fc = c;
954 }
955
956 FileReader::FileReader()
957 {
958 }
959
960 void FileReader::LoadFile(std::string filename)
961 {
962         file_cache c;
963         readfile(c,filename.c_str());
964         this->fc = c;
965 }
966
967
968 FileReader::~FileReader()
969 {
970 }
971
972 bool FileReader::Exists()
973 {
974         if (fc.size() == 0)
975         {
976                 return(false);
977         }
978         else
979         {
980                 return(true);
981         }
982 }
983
984 std::string FileReader::GetLine(int x)
985 {
986         if ((x<0) || ((unsigned)x>fc.size()))
987                 return "";
988         return fc[x];
989 }
990
991 int FileReader::FileSize()
992 {
993         return fc.size();
994 }
995
996
997 std::vector<Module*> modules(255);
998 std::vector<ircd_module*> factory(255);
999
1000 int MODCOUNT  = -1;
1001
1002