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