]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Optimized stuff
[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         std::vector<char*> *list = chan->GetUsers();
457         for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++)
458         {
459                 char* o = *i;
460                 userl.push_back((userrec*)o);
461         }
462         return userl;
463 }
464 void Server::ChangeUserNick(userrec* user, std::string nickname)
465 {
466         force_nickchange(user,nickname.c_str());
467 }
468
469 void Server::QuitUser(userrec* user, std::string reason)
470 {
471         send_network_quit(user->nick,reason.c_str());
472         kill_link(user,reason.c_str());
473 }
474
475 bool Server::IsUlined(std::string server)
476 {
477         return is_uline(server.c_str());
478 }
479
480 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
481 {
482         call_handler(commandname.c_str(),parameters,pcnt,user);
483 }
484
485 void Server::Log(int level, std::string s)
486 {
487         log(level,"%s",s.c_str());
488 }
489
490 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source)
491 {
492         createcommand(cmd,f,flags,minparams,source);
493 }
494
495 void Server::SendMode(char **parameters, int pcnt, userrec *user)
496 {
497         server_mode(parameters,pcnt,user);
498 }
499
500 void Server::Send(int Socket, std::string s)
501 {
502         Write(Socket,"%s",s.c_str());
503 }
504
505 void Server::SendServ(int Socket, std::string s)
506 {
507         WriteServ(Socket,"%s",s.c_str());
508 }
509
510 void Server::SendFrom(int Socket, userrec* User, std::string s)
511 {
512         WriteFrom(Socket,User,"%s",s.c_str());
513 }
514
515 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
516 {
517         if (!Source)
518         {
519                 // if source is NULL, then the message originates from the local server
520                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
521         }
522         else
523         {
524                 // otherwise it comes from the user specified
525                 WriteTo(Source,Dest,"%s",s.c_str());
526         }
527 }
528
529 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
530 {
531         if (IncludeSender)
532         {
533                 WriteChannel(Channel,User,"%s",s.c_str());
534         }
535         else
536         {
537                 ChanExceptSender(Channel,User,"%s",s.c_str());
538         }
539 }
540
541 bool Server::CommonChannels(userrec* u1, userrec* u2)
542 {
543         return (common_channels(u1,u2) != 0);
544 }
545
546 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
547 {
548         if (IncludeSender)
549         {
550                 WriteCommon(User,"%s",text.c_str());
551         }
552         else
553         {
554                 WriteCommonExcept(User,"%s",text.c_str());
555         }
556 }
557
558 void Server::SendWallops(userrec* User, std::string text)
559 {
560         WriteWallOps(User,false,"%s",text.c_str());
561 }
562
563 void Server::ChangeHost(userrec* user, std::string host)
564 {
565         ChangeDisplayedHost(user,host.c_str());
566 }
567
568 void Server::ChangeGECOS(userrec* user, std::string gecos)
569 {
570         ChangeName(user,gecos.c_str());
571 }
572
573 bool Server::IsNick(std::string nick)
574 {
575         return (isnick(nick.c_str()) != 0);
576 }
577
578 userrec* Server::FindNick(std::string nick)
579 {
580         return Find(nick);
581 }
582
583 chanrec* Server::FindChannel(std::string channel)
584 {
585         return FindChan(channel.c_str());
586 }
587
588 std::string Server::ChanMode(userrec* User, chanrec* Chan)
589 {
590         return cmode(User,Chan);
591 }
592
593 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
594 {
595         return has_channel(User,Chan);
596 }
597
598 std::string Server::GetServerName()
599 {
600         return getservername();
601 }
602
603 std::string Server::GetNetworkName()
604 {
605         return getnetworkname();
606 }
607
608 Admin Server::GetAdmin()
609 {
610         return Admin(getadminname(),getadminemail(),getadminnick());
611 }
612
613
614
615 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
616 {
617         if (type == MT_SERVER)
618         {
619                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
620                 return false;
621         }
622         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
623         {
624                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
625                 return false;
626         }
627         if ((params_when_on>1) || (params_when_off>1))
628         {
629                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
630                 return false;
631         }
632         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
633 }
634
635 bool Server::AddExtendedListMode(char modechar)
636 {
637         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
638         if (res)
639                 ModeMakeList(modechar);
640         return res;
641 }
642
643 int Server::CountUsers(chanrec* c)
644 {
645         return usercount(c);
646 }
647
648
649 bool Server::UserToPseudo(userrec* user,std::string message)
650 {
651         unsigned int old_fd = user->fd;
652         user->fd = FD_MAGIC_NUMBER;
653         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
654         close(old_fd);
655         shutdown (old_fd,2);
656 }
657
658 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message)
659 {
660         zombie->fd = alive->fd;
661         alive->fd = FD_MAGIC_NUMBER;
662         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
663         kill_link(alive,message.c_str());
664         for (int i = 0; i != MAXCHANS; i++)
665         {
666                 if (zombie->chans[i].channel != NULL)
667                 {
668                         if (zombie->chans[i].channel->name)
669                         {
670                                 chanrec* Ptr = zombie->chans[i].channel;
671                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
672                                 if (Ptr->topicset)
673                                 {
674                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
675                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
676                                 }
677                                 userlist(zombie,Ptr);
678                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
679                                 //WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
680                                 //WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
681
682                         }
683                 }
684         }
685
686 }
687
688 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask)
689 {
690         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
691 }
692
693 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname)
694 {
695         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
696 }
697
698 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr)
699 {
700         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
701 }
702
703 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask)
704 {
705         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
706 }
707
708 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask)
709 {
710         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
711 }
712
713 bool Server::DelGLine(std::string hostmask)
714 {
715         del_gline(hostmask.c_str());
716 }
717
718 bool Server::DelQLine(std::string nickname)
719 {
720         del_qline(nickname.c_str());
721 }
722
723 bool Server::DelZLine(std::string ipaddr)
724 {
725         del_zline(ipaddr.c_str());
726 }
727
728 bool Server::DelKLine(std::string hostmask)
729 {
730         del_kline(hostmask.c_str());
731 }
732
733 bool Server::DelELine(std::string hostmask)
734 {
735         del_eline(hostmask.c_str());
736 }
737
738 long Server::CalcDuration(std::string delta)
739 {
740         return duration(delta.c_str());
741 }
742
743 bool Server::IsValidMask(std::string mask)
744 {
745         const char* dest = mask.c_str();
746         if (strchr(dest,'!')==0)
747                 return false;
748         if (strchr(dest,'@')==0)
749                 return false;
750         for (int i = 0; i < strlen(dest); i++)
751                 if (dest[i] < 32)
752                         return false;
753         for (int i = 0; i < strlen(dest); i++)
754                 if (dest[i] > 126)
755                         return false;
756         int c = 0;
757         for (int i = 0; i < strlen(dest); i++)
758                 if (dest[i] == '!')
759                         c++;
760         if (c>1)
761                 return false;
762         c = 0;
763         for (int i = 0; i < strlen(dest); i++)
764                 if (dest[i] == '@')
765                         c++;
766         if (c>1)
767                 return false;
768
769         return true;
770 }
771
772 void Server::MeshSendAll(std::string text)
773 {
774         NetSendToAll((char*)text.c_str());
775 }
776
777 void Server::MeshSendCommon(userrec* user, std::string text)
778 {
779         if (user)
780                 NetSendToCommon(user,(char*)text.c_str());
781 }
782
783 void Server::MeshSendAllAlive(std::string text)
784 {
785         NetSendToAllAlive((char*)text.c_str());
786 }
787
788 void Server::MeshSendUnicast(std::string destination, std::string text)
789 {
790         NetSendToOne((char*)destination.c_str(),(char*)text.c_str());
791 }
792
793 void Server::MeshSendAllExcept(std::string target, std::string text)
794 {
795         NetSendToAllExcept(target.c_str(),(char*)text.c_str());
796 }
797
798 bool Server::MeshCheckChan(chanrec *c,std::string servername)
799 {
800         if (c)
801         {
802                 return ChanAnyOnThisServer(c,(char*)servername.c_str());
803         }
804         else return false;
805 }
806
807 bool Server::MeshCheckCommon(userrec* u,std::string servername)
808 {
809         if (u)
810         {
811                 return CommonOnThisServer(u,(char*)servername.c_str());
812         }
813         else return false;
814 }
815
816 Module* Server::FindModule(std::string name)
817 {
818         for (int i = 0; i <= MODCOUNT; i++)
819         {
820                 if (module_names[i] == name)
821                 {
822                         return modules[i];
823                 }
824         }
825         return NULL;
826 }
827
828 ConfigReader::ConfigReader()
829 {
830         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
831         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
832         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
833         if (!this->readerror)
834                 this->error = CONF_FILE_NOT_FOUND;
835 }
836
837
838 ConfigReader::~ConfigReader()
839 {
840         if (this->cache)
841                 delete this->cache;
842         if (this->errorlog)
843                 delete this->errorlog;
844 }
845
846
847 ConfigReader::ConfigReader(std::string filename)
848 {
849         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
850         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
851         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
852         if (!this->readerror)
853                 this->error = CONF_FILE_NOT_FOUND;
854 };
855
856 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
857 {
858         char val[MAXBUF];
859         char t[MAXBUF];
860         char n[MAXBUF];
861         strlcpy(t,tag.c_str(),MAXBUF);
862         strlcpy(n,name.c_str(),MAXBUF);
863         int res = ReadConf(cache,t,n,index,val);
864         if (!res)
865         {
866                 this->error = CONF_VALUE_NOT_FOUND;
867                 return "";
868         }
869         return std::string(val);
870 }
871
872 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
873 {
874         char val[MAXBUF];
875         char t[MAXBUF];
876         char n[MAXBUF];
877         strlcpy(t,tag.c_str(),MAXBUF);
878         strlcpy(n,name.c_str(),MAXBUF);
879         int res = ReadConf(cache,t,n,index,val);
880         if (!res)
881         {
882                 this->error = CONF_VALUE_NOT_FOUND;
883                 return false;
884         }
885         std::string s = val;
886         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
887 }
888
889 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
890 {
891         char val[MAXBUF];
892         char t[MAXBUF];
893         char n[MAXBUF];
894         strlcpy(t,tag.c_str(),MAXBUF);
895         strlcpy(n,name.c_str(),MAXBUF);
896         int res = ReadConf(cache,t,n,index,val);
897         if (!res)
898         {
899                 this->error = CONF_VALUE_NOT_FOUND;
900                 return 0;
901         }
902         for (int i = 0; i < strlen(val); i++)
903         {
904                 if (!isdigit(val[i]))
905                 {
906                         this->error = CONF_NOT_A_NUMBER;
907                         return 0;
908                 }
909         }
910         if ((needs_unsigned) && (atoi(val)<0))
911         {
912                 this->error = CONF_NOT_UNSIGNED;
913                 return 0;
914         }
915         return atoi(val);
916 }
917
918 long ConfigReader::GetError()
919 {
920         long olderr = this->error;
921         this->error = 0;
922         return olderr;
923 }
924
925 void ConfigReader::DumpErrors(bool bail, userrec* user)
926 {
927         if (bail)
928         {
929                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
930                 exit(0);
931         }
932         else
933         {
934                 char dataline[1024];
935                 if (user)
936                 {
937                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
938                         while (!errorlog->eof())
939                         {
940                                 errorlog->getline(dataline,1024);
941                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
942                         }
943                 }
944                 else
945                 {
946                         WriteOpers("There were errors in the configuration file:",user->nick);
947                         while (!errorlog->eof())
948                         {
949                                 errorlog->getline(dataline,1024);
950                                 WriteOpers(dataline);
951                         }
952                 }
953                 return;
954         }
955 }
956
957
958 int ConfigReader::Enumerate(std::string tag)
959 {
960         return EnumConf(cache,tag.c_str());
961 }
962
963 int ConfigReader::EnumerateValues(std::string tag, int index)
964 {
965         return EnumValues(cache, tag.c_str(), index);
966 }
967
968 bool ConfigReader::Verify()
969 {
970         return this->readerror;
971 }
972
973
974 FileReader::FileReader(std::string filename)
975 {
976         file_cache c;
977         readfile(c,filename.c_str());
978         this->fc = c;
979 }
980
981 FileReader::FileReader()
982 {
983 }
984
985 void FileReader::LoadFile(std::string filename)
986 {
987         file_cache c;
988         readfile(c,filename.c_str());
989         this->fc = c;
990 }
991
992
993 FileReader::~FileReader()
994 {
995 }
996
997 bool FileReader::Exists()
998 {
999         if (fc.size() == 0)
1000         {
1001                 return(false);
1002         }
1003         else
1004         {
1005                 return(true);
1006         }
1007 }
1008
1009 std::string FileReader::GetLine(int x)
1010 {
1011         if ((x<0) || (x>fc.size()))
1012                 return "";
1013         return fc[x];
1014 }
1015
1016 int FileReader::FileSize()
1017 {
1018         return fc.size();
1019 }
1020
1021
1022 std::vector<Module*> modules(255);
1023 std::vector<ircd_module*> factory(255);
1024
1025 int MODCOUNT  = -1;
1026
1027