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