]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Added shutdown() calls on die
[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 int LogLevel;
69 extern char ServerName[MAXBUF];
70 extern char Network[MAXBUF];
71 extern char ServerDesc[MAXBUF];
72 extern char AdminName[MAXBUF];
73 extern char AdminEmail[MAXBUF];
74 extern char AdminNick[MAXBUF];
75 extern char diepass[MAXBUF];
76 extern char restartpass[MAXBUF];
77 extern char motd[MAXBUF];
78 extern char rules[MAXBUF];
79 extern char list[MAXBUF];
80 extern char PrefixQuit[MAXBUF];
81 extern char DieValue[MAXBUF];
82
83 extern int debugging;
84 extern int WHOWAS_STALE;
85 extern int WHOWAS_MAX;
86 extern int DieDelay;
87 extern time_t startup_time;
88 extern int NetBufferSize;
89 extern int MaxWhoResults;
90 extern time_t nb_start;
91
92 extern std::vector<int> fd_reap;
93 extern std::vector<std::string> module_names;
94
95 extern int boundPortCount;
96 extern int portCount;
97 extern int UDPportCount;
98 extern int ports[MAXSOCKS];
99 extern int defaultRoute;
100
101 extern std::vector<long> auth_cookies;
102 extern std::stringstream config_f;
103
104 extern serverrec* me[32];
105
106 extern FILE *log_file;
107
108
109 namespace nspace
110 {
111 #ifdef GCC34
112         template<> struct hash<in_addr>
113 #else
114         template<> struct nspace::hash<in_addr>
115 #endif
116         {
117                 size_t operator()(const struct in_addr &a) const
118                 {
119                         size_t q;
120                         memcpy(&q,&a,sizeof(size_t));
121                         return q;
122                 }
123         };
124 #ifdef GCC34
125         template<> struct hash<string>
126 #else
127         template<> struct nspace::hash<string>
128 #endif
129         {
130                 size_t operator()(const string &s) const
131                 {
132                         char a[MAXBUF];
133                         static struct hash<const char *> strhash;
134                         strlcpy(a,s.c_str(),MAXBUF);
135                         strlower(a);
136                         return strhash(a);
137                 }
138         };
139 }
140
141 struct StrHashComp
142 {
143
144         bool operator()(const string& s1, const string& s2) const
145         {
146                 char a[MAXBUF],b[MAXBUF];
147                 strlcpy(a,s1.c_str(),MAXBUF);
148                 strlcpy(b,s2.c_str(),MAXBUF);
149                 return (strcasecmp(a,b) == 0);
150         }
151
152 };
153
154 struct InAddr_HashComp
155 {
156
157         bool operator()(const in_addr &s1, const in_addr &s2) const
158         {
159                 size_t q;
160                 size_t p;
161                 
162                 memcpy(&q,&s1,sizeof(size_t));
163                 memcpy(&p,&s2,sizeof(size_t));
164                 
165                 return (q == p);
166         }
167
168 };
169
170
171 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, StrHashComp> user_hash;
172 typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, StrHashComp> chan_hash;
173 typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, InAddr_HashComp> address_cache;
174 typedef std::deque<command_t> command_table;
175
176
177 extern user_hash clientlist;
178 extern chan_hash chanlist;
179 extern user_hash whowas;
180 extern command_table cmdlist;
181 extern file_cache MOTD;
182 extern file_cache RULES;
183 extern address_cache IP;
184
185
186 // class type for holding an extended mode character - internal to core
187
188 class ExtMode : public classbase
189 {
190 public:
191         char modechar;
192         int type;
193         int params_when_on;
194         int params_when_off;
195         bool needsoper;
196         bool list;
197         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) { };
198 };                                     
199
200 typedef std::vector<ExtMode> ExtModeList;
201 typedef ExtModeList::iterator ExtModeListIter;
202
203
204 ExtModeList EMode;
205
206 // returns true if an extended mode character is in use
207 bool ModeDefined(char modechar, int type)
208 {
209         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
210         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
211         {
212                 if ((i->modechar == modechar) && (i->type == type))
213                 {
214                         return true;
215                 }
216         }
217         return false;
218 }
219
220 bool ModeIsListMode(char modechar, int type)
221 {
222         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
223         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
224         {
225                 if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
226                 {
227                         return true;
228                 }
229         }
230         return false;
231 }
232
233 bool ModeDefinedOper(char modechar, int type)
234 {
235         log(DEBUG,"Size of extmodes vector is %d",EMode.size());
236         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
237         {
238                 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
239                 {
240                         return true;
241                 }
242         }
243         return false;
244 }
245
246 // returns number of parameters for a custom mode when it is switched on
247 int ModeDefinedOn(char modechar, int type)
248 {
249         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
250         {
251                 if ((i->modechar == modechar) && (i->type == type))
252                 {
253                         return i->params_when_on;
254                 }
255         }
256         return 0;
257 }
258
259 // returns number of parameters for a custom mode when it is switched on
260 int ModeDefinedOff(char modechar, int type)
261 {
262         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
263         {
264                 if ((i->modechar == modechar) && (i->type == type))
265                 {
266                         return i->params_when_off;
267                 }
268         }
269         return 0;
270 }
271
272 // returns true if an extended mode character is in use
273 bool DoAddExtendedMode(char modechar, int type, bool requires_oper, int params_on, int params_off)
274 {
275         if (ModeDefined(modechar,type)) {
276                 return false;
277         }
278         EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
279         return true;
280 }
281
282 // turns a mode into a listmode
283 void ModeMakeList(char modechar)
284 {
285         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
286         {
287                 if ((i->modechar == modechar) && (i->type == MT_CHANNEL))
288                 {
289                         i->list = true;
290                         return;
291                 }
292         }
293         return;
294 }
295
296 // version is a simple class for holding a modules version number
297
298 Version::Version(int major, int minor, int revision, int build) : Major(major), Minor(minor), Revision(revision), Build(build) { };
299
300 // admin is a simple class for holding a server's administrative info
301
302 Admin::Admin(std::string name, std::string email, std::string nick) : Name(name), Email(email), Nick(nick) { };
303
304 Module::Module() { }
305 Module::~Module() { }
306 void Module::OnUserConnect(userrec* user) { }
307 void Module::OnUserQuit(userrec* user) { }
308 void Module::OnUserJoin(userrec* user, chanrec* channel) { }
309 void Module::OnUserPart(userrec* user, chanrec* channel) { }
310 void Module::OnPacketTransmit(char *p) { }
311 void Module::OnPacketReceive(char *p) { }
312 void Module::OnRehash() { }
313 void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { }
314 int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; }
315 int Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; }
316 Version Module::GetVersion() { return Version(1,0,0,0); }
317 void Module::OnOper(userrec* user) { };
318 void Module::OnInfo(userrec* user) { };
319 void Module::OnWhois(userrec* source, userrec* dest) { };
320 int Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; };
321 int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
322 int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; };
323 int Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; };
324 int Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
325 string_list Module::OnUserSync(userrec* user) { string_list empty; return empty; }
326 string_list Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; }
327 void Module::On005Numeric(std::string &output) { };
328 int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
329 void Module::OnLoadModule(Module* mod,std::string name) { };
330
331
332 // server is a wrapper class that provides methods to all of the C-style
333 // exports in the core
334 //
335
336 Server::Server()
337 {
338 }
339
340 Server::~Server()
341 {
342 }
343
344 void Server::SendOpers(std::string s)
345 {
346         WriteOpers("%s",s.c_str());
347 }
348
349 bool Server::MatchText(std::string sliteral, std::string spattern)
350 {
351         char literal[MAXBUF],pattern[MAXBUF];
352         strlcpy(literal,sliteral.c_str(),MAXBUF);
353         strlcpy(pattern,spattern.c_str(),MAXBUF);
354         return match(literal,pattern);
355 }
356
357 void Server::SendToModeMask(std::string modes, int flags, std::string text)
358 {
359         WriteMode(modes.c_str(),flags,"%s",text.c_str());
360 }
361
362 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
363 {
364         return add_channel(user,cname.c_str(),key.c_str(),true);
365 }
366
367 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
368 {
369         return del_channel(user,cname.c_str(),reason.c_str(),false);
370 }
371
372 chanuserlist Server::GetUsers(chanrec* chan)
373 {
374         chanuserlist userl;
375         userl.clear();
376         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
377         {
378                 if (i->second)
379                 {
380                         if (has_channel(i->second,chan))
381                         {
382                                 if (isnick(i->second->nick))
383                                 {
384                                         userl.push_back(i->second);
385                                 }
386                         }
387                 }
388         }
389         return userl;
390 }
391 void Server::ChangeUserNick(userrec* user, std::string nickname)
392 {
393         force_nickchange(user,nickname.c_str());
394 }
395
396 void Server::QuitUser(userrec* user, std::string reason)
397 {
398         send_network_quit(user->nick,reason.c_str());
399         kill_link(user,reason.c_str());
400 }
401
402 bool Server::IsUlined(std::string server)
403 {
404         return is_uline(server.c_str());
405 }
406
407 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
408 {
409         call_handler(commandname.c_str(),parameters,pcnt,user);
410 }
411
412 void Server::Log(int level, std::string s)
413 {
414         log(level,"%s",s.c_str());
415 }
416
417 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams)
418 {
419         createcommand(cmd,f,flags,minparams);
420 }
421
422 void Server::SendMode(char **parameters, int pcnt, userrec *user)
423 {
424         server_mode(parameters,pcnt,user);
425 }
426
427 void Server::Send(int Socket, std::string s)
428 {
429         Write(Socket,"%s",s.c_str());
430 }
431
432 void Server::SendServ(int Socket, std::string s)
433 {
434         WriteServ(Socket,"%s",s.c_str());
435 }
436
437 void Server::SendFrom(int Socket, userrec* User, std::string s)
438 {
439         WriteFrom(Socket,User,"%s",s.c_str());
440 }
441
442 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
443 {
444         if (!Source)
445         {
446                 // if source is NULL, then the message originates from the local server
447                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
448         }
449         else
450         {
451                 // otherwise it comes from the user specified
452                 WriteTo(Source,Dest,"%s",s.c_str());
453         }
454 }
455
456 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
457 {
458         if (IncludeSender)
459         {
460                 WriteChannel(Channel,User,"%s",s.c_str());
461         }
462         else
463         {
464                 ChanExceptSender(Channel,User,"%s",s.c_str());
465         }
466 }
467
468 bool Server::CommonChannels(userrec* u1, userrec* u2)
469 {
470         return (common_channels(u1,u2) != 0);
471 }
472
473 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
474 {
475         if (IncludeSender)
476         {
477                 WriteCommon(User,"%s",text.c_str());
478         }
479         else
480         {
481                 WriteCommonExcept(User,"%s",text.c_str());
482         }
483 }
484
485 void Server::SendWallops(userrec* User, std::string text)
486 {
487         WriteWallOps(User,false,"%s",text.c_str());
488 }
489
490 void Server::ChangeHost(userrec* user, std::string host)
491 {
492         ChangeDisplayedHost(user,host.c_str());
493 }
494
495 void Server::ChangeGECOS(userrec* user, std::string gecos)
496 {
497         ChangeName(user,gecos.c_str());
498 }
499
500 bool Server::IsNick(std::string nick)
501 {
502         return (isnick(nick.c_str()) != 0);
503 }
504
505 userrec* Server::FindNick(std::string nick)
506 {
507         return Find(nick);
508 }
509
510 chanrec* Server::FindChannel(std::string channel)
511 {
512         return FindChan(channel.c_str());
513 }
514
515 std::string Server::ChanMode(userrec* User, chanrec* Chan)
516 {
517         return cmode(User,Chan);
518 }
519
520 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
521 {
522         return has_channel(User,Chan);
523 }
524
525 std::string Server::GetServerName()
526 {
527         return getservername();
528 }
529
530 std::string Server::GetNetworkName()
531 {
532         return getnetworkname();
533 }
534
535 Admin Server::GetAdmin()
536 {
537         return Admin(getadminname(),getadminemail(),getadminnick());
538 }
539
540
541
542 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
543 {
544         if (type == MT_SERVER)
545         {
546                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
547                 return false;
548         }
549         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
550         {
551                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
552                 return false;
553         }
554         if ((params_when_on>1) || (params_when_off>1))
555         {
556                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
557                 return false;
558         }
559         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
560 }
561
562 bool Server::AddExtendedListMode(char modechar)
563 {
564         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
565         if (res)
566                 ModeMakeList(modechar);
567         return res;
568 }
569
570 int Server::CountUsers(chanrec* c)
571 {
572         return usercount(c);
573 }
574
575
576 ConfigReader::ConfigReader()
577 {
578         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
579         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
580         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
581         if (!this->readerror)
582                 this->error = CONF_FILE_NOT_FOUND;
583 }
584
585
586 ConfigReader::~ConfigReader()
587 {
588         if (this->cache)
589                 delete this->cache;
590         if (this->errorlog)
591                 delete this->errorlog;
592 }
593
594
595 ConfigReader::ConfigReader(std::string filename)
596 {
597         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
598         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
599         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
600         if (!this->readerror)
601                 this->error = CONF_FILE_NOT_FOUND;
602 };
603
604 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
605 {
606         char val[MAXBUF];
607         char t[MAXBUF];
608         char n[MAXBUF];
609         strlcpy(t,tag.c_str(),MAXBUF);
610         strlcpy(n,name.c_str(),MAXBUF);
611         int res = ReadConf(cache,t,n,index,val);
612         if (!res)
613         {
614                 this->error = CONF_VALUE_NOT_FOUND;
615                 return "";
616         }
617         return std::string(val);
618 }
619
620 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
621 {
622         char val[MAXBUF];
623         char t[MAXBUF];
624         char n[MAXBUF];
625         strlcpy(t,tag.c_str(),MAXBUF);
626         strlcpy(n,name.c_str(),MAXBUF);
627         int res = ReadConf(cache,t,n,index,val);
628         if (!res)
629         {
630                 this->error = CONF_VALUE_NOT_FOUND;
631                 return false;
632         }
633         std::string s = val;
634         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
635 }
636
637 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
638 {
639         char val[MAXBUF];
640         char t[MAXBUF];
641         char n[MAXBUF];
642         strlcpy(t,tag.c_str(),MAXBUF);
643         strlcpy(n,name.c_str(),MAXBUF);
644         int res = ReadConf(cache,t,n,index,val);
645         if (!res)
646         {
647                 this->error = CONF_VALUE_NOT_FOUND;
648                 return 0;
649         }
650         for (int i = 0; i < strlen(val); i++)
651         {
652                 if (!isdigit(val[i]))
653                 {
654                         this->error = CONF_NOT_A_NUMBER;
655                         return 0;
656                 }
657         }
658         if ((needs_unsigned) && (atoi(val)<0))
659         {
660                 this->error = CONF_NOT_UNSIGNED;
661                 return 0;
662         }
663         return atoi(val);
664 }
665
666 long ConfigReader::GetError()
667 {
668         long olderr = this->error;
669         this->error = 0;
670         return olderr;
671 }
672
673 void ConfigReader::DumpErrors(bool bail, userrec* user)
674 {
675         if (bail)
676         {
677                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
678                 exit(0);
679         }
680         else
681         {
682                 char dataline[1024];
683                 if (user)
684                 {
685                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
686                         while (!errorlog->eof())
687                         {
688                                 errorlog->getline(dataline,1024);
689                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
690                         }
691                 }
692                 else
693                 {
694                         WriteOpers("There were errors in the configuration file:",user->nick);
695                         while (!errorlog->eof())
696                         {
697                                 errorlog->getline(dataline,1024);
698                                 WriteOpers(dataline);
699                         }
700                 }
701                 return;
702         }
703 }
704
705
706 int ConfigReader::Enumerate(std::string tag)
707 {
708         return EnumConf(cache,tag.c_str());
709 }
710
711 int ConfigReader::EnumerateValues(std::string tag, int index)
712 {
713         return EnumValues(cache, tag.c_str(), index);
714 }
715
716 bool ConfigReader::Verify()
717 {
718         return this->readerror;
719 }
720
721
722 FileReader::FileReader(std::string filename)
723 {
724         file_cache c;
725         readfile(c,filename.c_str());
726         this->fc = c;
727 }
728
729 FileReader::FileReader()
730 {
731 }
732
733 void FileReader::LoadFile(std::string filename)
734 {
735         file_cache c;
736         readfile(c,filename.c_str());
737         this->fc = c;
738 }
739
740
741 FileReader::~FileReader()
742 {
743 }
744
745 bool FileReader::Exists()
746 {
747         if (fc.size() == 0)
748         {
749                 return(false);
750         }
751         else
752         {
753                 return(true);
754         }
755 }
756
757 std::string FileReader::GetLine(int x)
758 {
759         if ((x<0) || (x>fc.size()))
760                 return "";
761         return fc[x];
762 }
763
764 int FileReader::FileSize()
765 {
766         return fc.size();
767 }
768
769
770 std::vector<Module*> modules(255);
771 std::vector<ircd_module*> factory(255);
772
773 int MODCOUNT  = -1;
774
775