]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Added:
[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
111 namespace nspace
112 {
113 #ifdef GCC34
114         template<> struct hash<in_addr>
115 #else
116         template<> struct nspace::hash<in_addr>
117 #endif
118         {
119                 size_t operator()(const struct in_addr &a) const
120                 {
121                         size_t q;
122                         memcpy(&q,&a,sizeof(size_t));
123                         return q;
124                 }
125         };
126 #ifdef GCC34
127         template<> struct hash<string>
128 #else
129         template<> struct nspace::hash<string>
130 #endif
131         {
132                 size_t operator()(const string &s) const
133                 {
134                         char a[MAXBUF];
135                         static struct hash<const char *> strhash;
136                         strlcpy(a,s.c_str(),MAXBUF);
137                         strlower(a);
138                         return strhash(a);
139                 }
140         };
141 }
142
143 struct StrHashComp
144 {
145
146         bool operator()(const string& s1, const string& s2) const
147         {
148                 char a[MAXBUF],b[MAXBUF];
149                 strlcpy(a,s1.c_str(),MAXBUF);
150                 strlcpy(b,s2.c_str(),MAXBUF);
151                 return (strcasecmp(a,b) == 0);
152         }
153
154 };
155
156 struct InAddr_HashComp
157 {
158
159         bool operator()(const in_addr &s1, const in_addr &s2) const
160         {
161                 size_t q;
162                 size_t p;
163                 
164                 memcpy(&q,&s1,sizeof(size_t));
165                 memcpy(&p,&s2,sizeof(size_t));
166                 
167                 return (q == p);
168         }
169
170 };
171
172
173 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash;
174 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash;
175 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, InAddr_HashComp> address_cache;
176 typedef std::deque<command_t> command_table;
177
178
179 extern user_hash clientlist;
180 extern chan_hash chanlist;
181 extern user_hash whowas;
182 extern command_table cmdlist;
183 extern file_cache MOTD;
184 extern file_cache RULES;
185 extern address_cache IP;
186
187
188 // class type for holding an extended mode character - internal to core
189
190 class ExtMode : public classbase
191 {
192 public:
193         char modechar;
194         int type;
195         int params_when_on;
196         int params_when_off;
197         bool needsoper;
198         bool list;
199         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) { };
200 };                                     
201
202 typedef std::vector<ExtMode> ExtModeList;
203 typedef ExtModeList::iterator ExtModeListIter;
204
205
206 ExtModeList EMode;
207
208 // returns true if an extended mode character is in use
209 bool ModeDefined(char modechar, int type)
210 {
211         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
212         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
213         {
214                 if ((i->modechar == modechar) && (i->type == type))
215                 {
216                         return true;
217                 }
218         }
219         return false;
220 }
221
222 bool ModeIsListMode(char modechar, int type)
223 {
224         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
225         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
226         {
227                 if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
228                 {
229                         return true;
230                 }
231         }
232         return false;
233 }
234
235 bool ModeDefinedOper(char modechar, int type)
236 {
237         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
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 Module::Module() { }
307 Module::~Module() { }
308 void Module::OnUserConnect(userrec* user) { }
309 void Module::OnUserQuit(userrec* user) { }
310 void Module::OnUserJoin(userrec* user, chanrec* channel) { }
311 void Module::OnUserPart(userrec* user, chanrec* channel) { }
312 void Module::OnPacketTransmit(std::string &data, std::string serv) { }
313 void Module::OnPacketReceive(std::string &data, std::string serv) { }
314 void Module::OnRehash() { }
315 void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
316 int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
317 int Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
318 Version Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); }
319 void Module::OnOper(userrec* user) { };
320 void Module::OnInfo(userrec* user) { };
321 void Module::OnWhois(userrec* source, userrec* dest) { };
322 int Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
323 int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
324 int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
325 int Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
326 void Module::OnUserPostNick(userrec* user, std::string oldnick) { };
327 int Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
328 string_list Module::OnUserSync(userrec* user) { string_list empty; return empty; }
329 string_list Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; }
330 void Module::On005Numeric(std::string &output) { };
331 int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
332 void Module::OnLoadModule(Module* mod,std::string name) { };
333 void Module::OnBackgroundTimer(time_t curtime) { };
334 void Module::OnSendList(userrec* user, chanrec* channel, char mode) { };
335 int Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) { return 0; };
336 bool Module::OnCheckReady(userrec* user) { return true; };
337 void Module::OnUserRegister(userrec* user) { };
338 int Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; };
339 void Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { };
340 int Module::OnRawMode(userrec* user, chanrec* chan, char mode, std::string param, bool adding, int pcnt) { return 0; };
341 int Module::OnCheckInvite(userrec* user, chanrec* chan) { return 0; };
342 int Module::OnCheckKey(userrec* user, chanrec* chan, std::string keygiven) { return 0; };
343 int Module::OnCheckLimit(userrec* user, chanrec* chan) { return 0; };
344 int Module::OnCheckBan(userrec* user, chanrec* chan) { return 0; };
345 void Module::OnStats(char symbol) { };
346 int Module::OnChangeLocalUserHost(userrec* user, std::string newhost) { return 0; };
347 int Module::OnChangeLocalUserGECOS(userrec* user, std::string newhost) { return 0; };
348 int Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { return 0; };
349 int Module::OnMeshToken(char token,string_list params,serverrec* source,serverrec* reply, std::string tcp_host,std::string ipaddr,int port) { return 0; };
350
351 // server is a wrapper class that provides methods to all of the C-style
352 // exports in the core
353 //
354
355 Server::Server()
356 {
357 }
358
359 Server::~Server()
360 {
361 }
362
363 void Server::SendOpers(std::string s)
364 {
365         WriteOpers("%s",s.c_str());
366 }
367
368 bool Server::MatchText(std::string sliteral, std::string spattern)
369 {
370         char literal[MAXBUF],pattern[MAXBUF];
371         strlcpy(literal,sliteral.c_str(),MAXBUF);
372         strlcpy(pattern,spattern.c_str(),MAXBUF);
373         return match(literal,pattern);
374 }
375
376 void Server::SendToModeMask(std::string modes, int flags, std::string text)
377 {
378         WriteMode(modes.c_str(),flags,"%s",text.c_str());
379 }
380
381 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
382 {
383         return add_channel(user,cname.c_str(),key.c_str(),true);
384 }
385
386 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
387 {
388         return del_channel(user,cname.c_str(),reason.c_str(),false);
389 }
390
391 chanuserlist Server::GetUsers(chanrec* chan)
392 {
393         chanuserlist userl;
394         userl.clear();
395         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
396         {
397                 if (i->second)
398                 {
399                         if (has_channel(i->second,chan))
400                         {
401                                 if (isnick(i->second->nick))
402                                 {
403                                         userl.push_back(i->second);
404                                 }
405                         }
406                 }
407         }
408         return userl;
409 }
410 void Server::ChangeUserNick(userrec* user, std::string nickname)
411 {
412         force_nickchange(user,nickname.c_str());
413 }
414
415 void Server::QuitUser(userrec* user, std::string reason)
416 {
417         send_network_quit(user->nick,reason.c_str());
418         kill_link(user,reason.c_str());
419 }
420
421 bool Server::IsUlined(std::string server)
422 {
423         return is_uline(server.c_str());
424 }
425
426 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
427 {
428         call_handler(commandname.c_str(),parameters,pcnt,user);
429 }
430
431 void Server::Log(int level, std::string s)
432 {
433         log(level,"%s",s.c_str());
434 }
435
436 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source)
437 {
438         createcommand(cmd,f,flags,minparams,source);
439 }
440
441 void Server::SendMode(char **parameters, int pcnt, userrec *user)
442 {
443         server_mode(parameters,pcnt,user);
444 }
445
446 void Server::Send(int Socket, std::string s)
447 {
448         Write(Socket,"%s",s.c_str());
449 }
450
451 void Server::SendServ(int Socket, std::string s)
452 {
453         WriteServ(Socket,"%s",s.c_str());
454 }
455
456 void Server::SendFrom(int Socket, userrec* User, std::string s)
457 {
458         WriteFrom(Socket,User,"%s",s.c_str());
459 }
460
461 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
462 {
463         if (!Source)
464         {
465                 // if source is NULL, then the message originates from the local server
466                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
467         }
468         else
469         {
470                 // otherwise it comes from the user specified
471                 WriteTo(Source,Dest,"%s",s.c_str());
472         }
473 }
474
475 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
476 {
477         if (IncludeSender)
478         {
479                 WriteChannel(Channel,User,"%s",s.c_str());
480         }
481         else
482         {
483                 ChanExceptSender(Channel,User,"%s",s.c_str());
484         }
485 }
486
487 bool Server::CommonChannels(userrec* u1, userrec* u2)
488 {
489         return (common_channels(u1,u2) != 0);
490 }
491
492 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
493 {
494         if (IncludeSender)
495         {
496                 WriteCommon(User,"%s",text.c_str());
497         }
498         else
499         {
500                 WriteCommonExcept(User,"%s",text.c_str());
501         }
502 }
503
504 void Server::SendWallops(userrec* User, std::string text)
505 {
506         WriteWallOps(User,false,"%s",text.c_str());
507 }
508
509 void Server::ChangeHost(userrec* user, std::string host)
510 {
511         ChangeDisplayedHost(user,host.c_str());
512 }
513
514 void Server::ChangeGECOS(userrec* user, std::string gecos)
515 {
516         ChangeName(user,gecos.c_str());
517 }
518
519 bool Server::IsNick(std::string nick)
520 {
521         return (isnick(nick.c_str()) != 0);
522 }
523
524 userrec* Server::FindNick(std::string nick)
525 {
526         return Find(nick);
527 }
528
529 chanrec* Server::FindChannel(std::string channel)
530 {
531         return FindChan(channel.c_str());
532 }
533
534 std::string Server::ChanMode(userrec* User, chanrec* Chan)
535 {
536         return cmode(User,Chan);
537 }
538
539 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
540 {
541         return has_channel(User,Chan);
542 }
543
544 std::string Server::GetServerName()
545 {
546         return getservername();
547 }
548
549 std::string Server::GetNetworkName()
550 {
551         return getnetworkname();
552 }
553
554 Admin Server::GetAdmin()
555 {
556         return Admin(getadminname(),getadminemail(),getadminnick());
557 }
558
559
560
561 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
562 {
563         if (type == MT_SERVER)
564         {
565                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
566                 return false;
567         }
568         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
569         {
570                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
571                 return false;
572         }
573         if ((params_when_on>1) || (params_when_off>1))
574         {
575                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
576                 return false;
577         }
578         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
579 }
580
581 bool Server::AddExtendedListMode(char modechar)
582 {
583         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
584         if (res)
585                 ModeMakeList(modechar);
586         return res;
587 }
588
589 int Server::CountUsers(chanrec* c)
590 {
591         return usercount(c);
592 }
593
594
595 bool Server::UserToPseudo(userrec* user,std::string message)
596 {
597         unsigned int old_fd = user->fd;
598         user->fd = FD_MAGIC_NUMBER;
599         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
600         close(old_fd);
601         shutdown (old_fd,2);
602 }
603
604 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
605 {
606         zombie->fd = alive->fd;
607         alive->fd = FD_MAGIC_NUMBER;
608         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
609         kill_link(alive,message.c_str());
610         for (int i = 0; i != MAXCHANS; i++)
611         {
612                 if (zombie->chans[i].channel != NULL)
613                 {
614                         if (zombie->chans[i].channel->name)
615                         {
616                                 chanrec* Ptr = zombie->chans[i].channel;
617                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
618                                 if (Ptr->topicset)
619                                 {
620                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
621                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
622                                 }
623                                 userlist(zombie,Ptr);
624                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
625                                 WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
626                                 WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
627
628                         }
629                 }
630         }
631
632 }
633
634 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
635 {
636         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
637 }
638
639 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
640 {
641         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
642 }
643
644 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
645 {
646         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
647 }
648
649 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
650 {
651         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
652 }
653
654 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
655 {
656         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
657 }
658
659 bool Server::DelGLine(std::string hostmask)
660 {
661         del_gline(hostmask.c_str());
662 }
663
664 bool Server::DelQLine(std::string nickname)
665 {
666         del_qline(nickname.c_str());
667 }
668
669 bool Server::DelZLine(std::string ipaddr)
670 {
671         del_zline(ipaddr.c_str());
672 }
673
674 bool Server::DelKLine(std::string hostmask)
675 {
676         del_kline(hostmask.c_str());
677 }
678
679 bool Server::DelELine(std::string hostmask)
680 {
681         del_eline(hostmask.c_str());
682 }
683
684 long Server::CalcDuration(std::string delta)
685 {
686         return duration(delta.c_str());
687 }
688
689 bool Server::IsValidMask(std::string mask)
690 {
691         const char* dest = mask.c_str();
692         if (strchr(dest,'!')==0)
693                 return false;
694         if (strchr(dest,'@')==0)
695                 return false;
696         for (int i = 0; i < strlen(dest); i++)
697                 if (dest[i] < 32)
698                         return false;
699         for (int i = 0; i < strlen(dest); i++)
700                 if (dest[i] > 126)
701                         return false;
702         int c = 0;
703         for (int i = 0; i < strlen(dest); i++)
704                 if (dest[i] == '!')
705                         c++;
706         if (c>1)
707                 return false;
708         c = 0;
709         for (int i = 0; i < strlen(dest); i++)
710                 if (dest[i] == '@')
711                         c++;
712         if (c>1)
713                 return false;
714
715         return true;
716 }
717
718 void Server::MeshSendAll(std::string text)
719 {
720         NetSendToAll((char*)text.c_str());
721 }
722
723 void Server::MeshSendCommon(userrec* user, std::string text)
724 {
725         if (user)
726                 NetSendToCommon(user,(char*)text.c_str());
727 }
728
729 void Server::MeshSendAllAlive(std::string text)
730 {
731         NetSendToAllAlive((char*)text.c_str());
732 }
733
734 void Server::MeshSendUnicast(std::string destination, std::string text)
735 {
736         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
737 }
738
739 void Server::MeshSendAllExcept(std::string target, std::string text)
740 {
741         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
742 }
743
744 bool Server::MeshCheckChan(chanrec *c,std::string servername)
745 {
746         if (c)
747         {
748                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
749         }
750         else return false;
751 }
752
753 bool Server::MeshCheckCommon(userrec* u,std::string servername)
754 {
755         if (u)
756         {
757                 return CommonOnThisServer(u,(char*)servername.c_str());
758         }
759         else return false;
760 }
761
762 ConfigReader::ConfigReader()
763 {
764         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
765         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
766         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
767         if (!this->readerror)
768                 this->error = CONF_FILE_NOT_FOUND;
769 }
770
771
772 ConfigReader::~ConfigReader()
773 {
774         if (this->cache)
775                 delete this->cache;
776         if (this->errorlog)
777                 delete this->errorlog;
778 }
779
780
781 ConfigReader::ConfigReader(std::string filename)
782 {
783         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
784         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
785         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
786         if (!this->readerror)
787                 this->error = CONF_FILE_NOT_FOUND;
788 };
789
790 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
791 {
792         char val[MAXBUF];
793         char t[MAXBUF];
794         char n[MAXBUF];
795         strlcpy(t,tag.c_str(),MAXBUF);
796         strlcpy(n,name.c_str(),MAXBUF);
797         int res = ReadConf(cache,t,n,index,val);
798         if (!res)
799         {
800                 this->error = CONF_VALUE_NOT_FOUND;
801                 return "";
802         }
803         return std::string(val);
804 }
805
806 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
807 {
808         char val[MAXBUF];
809         char t[MAXBUF];
810         char n[MAXBUF];
811         strlcpy(t,tag.c_str(),MAXBUF);
812         strlcpy(n,name.c_str(),MAXBUF);
813         int res = ReadConf(cache,t,n,index,val);
814         if (!res)
815         {
816                 this->error = CONF_VALUE_NOT_FOUND;
817                 return false;
818         }
819         std::string s = val;
820         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
821 }
822
823 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
824 {
825         char val[MAXBUF];
826         char t[MAXBUF];
827         char n[MAXBUF];
828         strlcpy(t,tag.c_str(),MAXBUF);
829         strlcpy(n,name.c_str(),MAXBUF);
830         int res = ReadConf(cache,t,n,index,val);
831         if (!res)
832         {
833                 this->error = CONF_VALUE_NOT_FOUND;
834                 return 0;
835         }
836         for (int i = 0; i < strlen(val); i++)
837         {
838                 if (!isdigit(val[i]))
839                 {
840                         this->error = CONF_NOT_A_NUMBER;
841                         return 0;
842                 }
843         }
844         if ((needs_unsigned) && (atoi(val)<0))
845         {
846                 this->error = CONF_NOT_UNSIGNED;
847                 return 0;
848         }
849         return atoi(val);
850 }
851
852 long ConfigReader::GetError()
853 {
854         long olderr = this->error;
855         this->error = 0;
856         return olderr;
857 }
858
859 void ConfigReader::DumpErrors(bool bail, userrec* user)
860 {
861         if (bail)
862         {
863                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
864                 exit(0);
865         }
866         else
867         {
868                 char dataline[1024];
869                 if (user)
870                 {
871                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
872                         while (!errorlog->eof())
873                         {
874                                 errorlog->getline(dataline,1024);
875                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
876                         }
877                 }
878                 else
879                 {
880                         WriteOpers("There were errors in the configuration file:",user->nick);
881                         while (!errorlog->eof())
882                         {
883                                 errorlog->getline(dataline,1024);
884                                 WriteOpers(dataline);
885                         }
886                 }
887                 return;
888         }
889 }
890
891
892 int ConfigReader::Enumerate(std::string tag)
893 {
894         return EnumConf(cache,tag.c_str());
895 }
896
897 int ConfigReader::EnumerateValues(std::string tag, int index)
898 {
899         return EnumValues(cache, tag.c_str(), index);
900 }
901
902 bool ConfigReader::Verify()
903 {
904         return this->readerror;
905 }
906
907
908 FileReader::FileReader(std::string filename)
909 {
910         file_cache c;
911         readfile(c,filename.c_str());
912         this->fc = c;
913 }
914
915 FileReader::FileReader()
916 {
917 }
918
919 void FileReader::LoadFile(std::string filename)
920 {
921         file_cache c;
922         readfile(c,filename.c_str());
923         this->fc = c;
924 }
925
926
927 FileReader::~FileReader()
928 {
929 }
930
931 bool FileReader::Exists()
932 {
933         if (fc.size() == 0)
934         {
935                 return(false);
936         }
937         else
938         {
939                 return(true);
940         }
941 }
942
943 std::string FileReader::GetLine(int x)
944 {
945         if ((x<0) || (x>fc.size()))
946                 return "";
947         return fc[x];
948 }
949
950 int FileReader::FileSize()
951 {
952         return fc.size();
953 }
954
955
956 std::vector<Module*> modules(255);
957 std::vector<ircd_module*> factory(255);
958
959 int MODCOUNT  = -1;
960
961