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