]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Fixed off-by-one error in client read() (improbable due to size of buffer but fixed...
[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 UDPportCount;
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(),true);
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         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
676         close(old_fd);
677         shutdown (old_fd,2);
678 }
679
680 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
681 {
682         zombie->fd = alive->fd;
683         alive->fd = FD_MAGIC_NUMBER;
684         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
685         kill_link(alive,message.c_str());
686         for (int i = 0; i != MAXCHANS; i++)
687         {
688                 if (zombie->chans[i].channel != NULL)
689                 {
690                         if (zombie->chans[i].channel->name)
691                         {
692                                 chanrec* Ptr = zombie->chans[i].channel;
693                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
694                                 if (Ptr->topicset)
695                                 {
696                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
697                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
698                                 }
699                                 userlist(zombie,Ptr);
700                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
701                                 //WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
702                                 //WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
703
704                         }
705                 }
706         }
707
708 }
709
710 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
711 {
712         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
713 }
714
715 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
716 {
717         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
718 }
719
720 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
721 {
722         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
723 }
724
725 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
726 {
727         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
728 }
729
730 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
731 {
732         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
733 }
734
735 bool Server::DelGLine(std::string hostmask)
736 {
737         del_gline(hostmask.c_str());
738 }
739
740 bool Server::DelQLine(std::string nickname)
741 {
742         del_qline(nickname.c_str());
743 }
744
745 bool Server::DelZLine(std::string ipaddr)
746 {
747         del_zline(ipaddr.c_str());
748 }
749
750 bool Server::DelKLine(std::string hostmask)
751 {
752         del_kline(hostmask.c_str());
753 }
754
755 bool Server::DelELine(std::string hostmask)
756 {
757         del_eline(hostmask.c_str());
758 }
759
760 long Server::CalcDuration(std::string delta)
761 {
762         return duration(delta.c_str());
763 }
764
765 bool Server::IsValidMask(std::string mask)
766 {
767         const char* dest = mask.c_str();
768         if (strchr(dest,'!')==0)
769                 return false;
770         if (strchr(dest,'@')==0)
771                 return false;
772         for (int i = 0; i < strlen(dest); i++)
773                 if (dest[i] < 32)
774                         return false;
775         for (int i = 0; i < strlen(dest); i++)
776                 if (dest[i] > 126)
777                         return false;
778         int c = 0;
779         for (int i = 0; i < strlen(dest); i++)
780                 if (dest[i] == '!')
781                         c++;
782         if (c>1)
783                 return false;
784         c = 0;
785         for (int i = 0; i < strlen(dest); i++)
786                 if (dest[i] == '@')
787                         c++;
788         if (c>1)
789                 return false;
790
791         return true;
792 }
793
794 void Server::MeshSendAll(std::string text)
795 {
796         NetSendToAll((char*)text.c_str());
797 }
798
799 void Server::MeshSendCommon(userrec* user, std::string text)
800 {
801         if (user)
802                 NetSendToCommon(user,(char*)text.c_str());
803 }
804
805 void Server::MeshSendAllAlive(std::string text)
806 {
807         NetSendToAllAlive((char*)text.c_str());
808 }
809
810 void Server::MeshSendUnicast(std::string destination, std::string text)
811 {
812         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
813 }
814
815 void Server::MeshSendAllExcept(std::string target, std::string text)
816 {
817         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
818 }
819
820 bool Server::MeshCheckChan(chanrec *c,std::string servername)
821 {
822         if (c)
823         {
824                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
825         }
826         else return false;
827 }
828
829 bool Server::MeshCheckCommon(userrec* u,std::string servername)
830 {
831         if (u)
832         {
833                 return CommonOnThisServer(u,(char*)servername.c_str());
834         }
835         else return false;
836 }
837
838 Module* Server::FindModule(std::string name)
839 {
840         for (int i = 0; i <= MODCOUNT; i++)
841         {
842                 if (module_names[i] == name)
843                 {
844                         return modules[i];
845                 }
846         }
847         return NULL;
848 }
849
850 ConfigReader::ConfigReader()
851 {
852         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
853         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
854         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
855         if (!this->readerror)
856                 this->error = CONF_FILE_NOT_FOUND;
857 }
858
859
860 ConfigReader::~ConfigReader()
861 {
862         if (this->cache)
863                 delete this->cache;
864         if (this->errorlog)
865                 delete this->errorlog;
866 }
867
868
869 ConfigReader::ConfigReader(std::string filename)
870 {
871         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
872         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
873         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
874         if (!this->readerror)
875                 this->error = CONF_FILE_NOT_FOUND;
876 };
877
878 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
879 {
880         char val[MAXBUF];
881         char t[MAXBUF];
882         char n[MAXBUF];
883         strlcpy(t,tag.c_str(),MAXBUF);
884         strlcpy(n,name.c_str(),MAXBUF);
885         int res = ReadConf(cache,t,n,index,val);
886         if (!res)
887         {
888                 this->error = CONF_VALUE_NOT_FOUND;
889                 return "";
890         }
891         return std::string(val);
892 }
893
894 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
895 {
896         char val[MAXBUF];
897         char t[MAXBUF];
898         char n[MAXBUF];
899         strlcpy(t,tag.c_str(),MAXBUF);
900         strlcpy(n,name.c_str(),MAXBUF);
901         int res = ReadConf(cache,t,n,index,val);
902         if (!res)
903         {
904                 this->error = CONF_VALUE_NOT_FOUND;
905                 return false;
906         }
907         std::string s = val;
908         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
909 }
910
911 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
912 {
913         char val[MAXBUF];
914         char t[MAXBUF];
915         char n[MAXBUF];
916         strlcpy(t,tag.c_str(),MAXBUF);
917         strlcpy(n,name.c_str(),MAXBUF);
918         int res = ReadConf(cache,t,n,index,val);
919         if (!res)
920         {
921                 this->error = CONF_VALUE_NOT_FOUND;
922                 return 0;
923         }
924         for (int i = 0; i < strlen(val); i++)
925         {
926                 if (!isdigit(val[i]))
927                 {
928                         this->error = CONF_NOT_A_NUMBER;
929                         return 0;
930                 }
931         }
932         if ((needs_unsigned) && (atoi(val)<0))
933         {
934                 this->error = CONF_NOT_UNSIGNED;
935                 return 0;
936         }
937         return atoi(val);
938 }
939
940 long ConfigReader::GetError()
941 {
942         long olderr = this->error;
943         this->error = 0;
944         return olderr;
945 }
946
947 void ConfigReader::DumpErrors(bool bail, userrec* user)
948 {
949         if (bail)
950         {
951                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
952                 exit(0);
953         }
954         else
955         {
956                 char dataline[1024];
957                 if (user)
958                 {
959                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
960                         while (!errorlog->eof())
961                         {
962                                 errorlog->getline(dataline,1024);
963                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
964                         }
965                 }
966                 else
967                 {
968                         WriteOpers("There were errors in the configuration file:",user->nick);
969                         while (!errorlog->eof())
970                         {
971                                 errorlog->getline(dataline,1024);
972                                 WriteOpers(dataline);
973                         }
974                 }
975                 return;
976         }
977 }
978
979
980 int ConfigReader::Enumerate(std::string tag)
981 {
982         return EnumConf(cache,tag.c_str());
983 }
984
985 int ConfigReader::EnumerateValues(std::string tag, int index)
986 {
987         return EnumValues(cache, tag.c_str(), index);
988 }
989
990 bool ConfigReader::Verify()
991 {
992         return this->readerror;
993 }
994
995
996 FileReader::FileReader(std::string filename)
997 {
998         file_cache c;
999         readfile(c,filename.c_str());
1000         this->fc = c;
1001 }
1002
1003 FileReader::FileReader()
1004 {
1005 }
1006
1007 void FileReader::LoadFile(std::string filename)
1008 {
1009         file_cache c;
1010         readfile(c,filename.c_str());
1011         this->fc = c;
1012 }
1013
1014
1015 FileReader::~FileReader()
1016 {
1017 }
1018
1019 bool FileReader::Exists()
1020 {
1021         if (fc.size() == 0)
1022         {
1023                 return(false);
1024         }
1025         else
1026         {
1027                 return(true);
1028         }
1029 }
1030
1031 std::string FileReader::GetLine(int x)
1032 {
1033         if ((x<0) || (x>fc.size()))
1034                 return "";
1035         return fc[x];
1036 }
1037
1038 int FileReader::FileSize()
1039 {
1040         return fc.size();
1041 }
1042
1043
1044 std::vector<Module*> modules(255);
1045 std::vector<ircd_module*> factory(255);
1046
1047 int MODCOUNT  = -1;
1048
1049