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