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