]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules.cpp
Added the module method OnUserPostNick for capturing a nickchange AFTER it has taken...
[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 void Module::OnUserPostNick(userrec* user, std::string oldnick) { };
325 int Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; };
326 string_list Module::OnUserSync(userrec* user) { string_list empty; return empty; }
327 string_list Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; }
328 void Module::On005Numeric(std::string &output) { };
329 int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; };
330 void Module::OnLoadModule(Module* mod,std::string name) { };
331
332
333 // server is a wrapper class that provides methods to all of the C-style
334 // exports in the core
335 //
336
337 Server::Server()
338 {
339 }
340
341 Server::~Server()
342 {
343 }
344
345 void Server::SendOpers(std::string s)
346 {
347         WriteOpers("%s",s.c_str());
348 }
349
350 bool Server::MatchText(std::string sliteral, std::string spattern)
351 {
352         char literal[MAXBUF],pattern[MAXBUF];
353         strlcpy(literal,sliteral.c_str(),MAXBUF);
354         strlcpy(pattern,spattern.c_str(),MAXBUF);
355         return match(literal,pattern);
356 }
357
358 void Server::SendToModeMask(std::string modes, int flags, std::string text)
359 {
360         WriteMode(modes.c_str(),flags,"%s",text.c_str());
361 }
362
363 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key)
364 {
365         return add_channel(user,cname.c_str(),key.c_str(),true);
366 }
367
368 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason)
369 {
370         return del_channel(user,cname.c_str(),reason.c_str(),false);
371 }
372
373 chanuserlist Server::GetUsers(chanrec* chan)
374 {
375         chanuserlist userl;
376         userl.clear();
377         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
378         {
379                 if (i->second)
380                 {
381                         if (has_channel(i->second,chan))
382                         {
383                                 if (isnick(i->second->nick))
384                                 {
385                                         userl.push_back(i->second);
386                                 }
387                         }
388                 }
389         }
390         return userl;
391 }
392 void Server::ChangeUserNick(userrec* user, std::string nickname)
393 {
394         force_nickchange(user,nickname.c_str());
395 }
396
397 void Server::QuitUser(userrec* user, std::string reason)
398 {
399         send_network_quit(user->nick,reason.c_str());
400         kill_link(user,reason.c_str());
401 }
402
403 bool Server::IsUlined(std::string server)
404 {
405         return is_uline(server.c_str());
406 }
407
408 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user)
409 {
410         call_handler(commandname.c_str(),parameters,pcnt,user);
411 }
412
413 void Server::Log(int level, std::string s)
414 {
415         log(level,"%s",s.c_str());
416 }
417
418 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams)
419 {
420         createcommand(cmd,f,flags,minparams);
421 }
422
423 void Server::SendMode(char **parameters, int pcnt, userrec *user)
424 {
425         server_mode(parameters,pcnt,user);
426 }
427
428 void Server::Send(int Socket, std::string s)
429 {
430         Write(Socket,"%s",s.c_str());
431 }
432
433 void Server::SendServ(int Socket, std::string s)
434 {
435         WriteServ(Socket,"%s",s.c_str());
436 }
437
438 void Server::SendFrom(int Socket, userrec* User, std::string s)
439 {
440         WriteFrom(Socket,User,"%s",s.c_str());
441 }
442
443 void Server::SendTo(userrec* Source, userrec* Dest, std::string s)
444 {
445         if (!Source)
446         {
447                 // if source is NULL, then the message originates from the local server
448                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
449         }
450         else
451         {
452                 // otherwise it comes from the user specified
453                 WriteTo(Source,Dest,"%s",s.c_str());
454         }
455 }
456
457 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender)
458 {
459         if (IncludeSender)
460         {
461                 WriteChannel(Channel,User,"%s",s.c_str());
462         }
463         else
464         {
465                 ChanExceptSender(Channel,User,"%s",s.c_str());
466         }
467 }
468
469 bool Server::CommonChannels(userrec* u1, userrec* u2)
470 {
471         return (common_channels(u1,u2) != 0);
472 }
473
474 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender)
475 {
476         if (IncludeSender)
477         {
478                 WriteCommon(User,"%s",text.c_str());
479         }
480         else
481         {
482                 WriteCommonExcept(User,"%s",text.c_str());
483         }
484 }
485
486 void Server::SendWallops(userrec* User, std::string text)
487 {
488         WriteWallOps(User,false,"%s",text.c_str());
489 }
490
491 void Server::ChangeHost(userrec* user, std::string host)
492 {
493         ChangeDisplayedHost(user,host.c_str());
494 }
495
496 void Server::ChangeGECOS(userrec* user, std::string gecos)
497 {
498         ChangeName(user,gecos.c_str());
499 }
500
501 bool Server::IsNick(std::string nick)
502 {
503         return (isnick(nick.c_str()) != 0);
504 }
505
506 userrec* Server::FindNick(std::string nick)
507 {
508         return Find(nick);
509 }
510
511 chanrec* Server::FindChannel(std::string channel)
512 {
513         return FindChan(channel.c_str());
514 }
515
516 std::string Server::ChanMode(userrec* User, chanrec* Chan)
517 {
518         return cmode(User,Chan);
519 }
520
521 bool Server::IsOnChannel(userrec* User, chanrec* Chan)
522 {
523         return has_channel(User,Chan);
524 }
525
526 std::string Server::GetServerName()
527 {
528         return getservername();
529 }
530
531 std::string Server::GetNetworkName()
532 {
533         return getnetworkname();
534 }
535
536 Admin Server::GetAdmin()
537 {
538         return Admin(getadminname(),getadminemail(),getadminnick());
539 }
540
541
542
543 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)
544 {
545         if (type == MT_SERVER)
546         {
547                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
548                 return false;
549         }
550         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
551         {
552                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
553                 return false;
554         }
555         if ((params_when_on>1) || (params_when_off>1))
556         {
557                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
558                 return false;
559         }
560         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
561 }
562
563 bool Server::AddExtendedListMode(char modechar)
564 {
565         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
566         if (res)
567                 ModeMakeList(modechar);
568         return res;
569 }
570
571 int Server::CountUsers(chanrec* c)
572 {
573         return usercount(c);
574 }
575
576
577 ConfigReader::ConfigReader()
578 {
579         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
580         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
581         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
582         if (!this->readerror)
583                 this->error = CONF_FILE_NOT_FOUND;
584 }
585
586
587 ConfigReader::~ConfigReader()
588 {
589         if (this->cache)
590                 delete this->cache;
591         if (this->errorlog)
592                 delete this->errorlog;
593 }
594
595
596 ConfigReader::ConfigReader(std::string filename)
597 {
598         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
599         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
600         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
601         if (!this->readerror)
602                 this->error = CONF_FILE_NOT_FOUND;
603 };
604
605 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index)
606 {
607         char val[MAXBUF];
608         char t[MAXBUF];
609         char n[MAXBUF];
610         strlcpy(t,tag.c_str(),MAXBUF);
611         strlcpy(n,name.c_str(),MAXBUF);
612         int res = ReadConf(cache,t,n,index,val);
613         if (!res)
614         {
615                 this->error = CONF_VALUE_NOT_FOUND;
616                 return "";
617         }
618         return std::string(val);
619 }
620
621 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)
622 {
623         char val[MAXBUF];
624         char t[MAXBUF];
625         char n[MAXBUF];
626         strlcpy(t,tag.c_str(),MAXBUF);
627         strlcpy(n,name.c_str(),MAXBUF);
628         int res = ReadConf(cache,t,n,index,val);
629         if (!res)
630         {
631                 this->error = CONF_VALUE_NOT_FOUND;
632                 return false;
633         }
634         std::string s = val;
635         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
636 }
637
638 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned)
639 {
640         char val[MAXBUF];
641         char t[MAXBUF];
642         char n[MAXBUF];
643         strlcpy(t,tag.c_str(),MAXBUF);
644         strlcpy(n,name.c_str(),MAXBUF);
645         int res = ReadConf(cache,t,n,index,val);
646         if (!res)
647         {
648                 this->error = CONF_VALUE_NOT_FOUND;
649                 return 0;
650         }
651         for (int i = 0; i < strlen(val); i++)
652         {
653                 if (!isdigit(val[i]))
654                 {
655                         this->error = CONF_NOT_A_NUMBER;
656                         return 0;
657                 }
658         }
659         if ((needs_unsigned) && (atoi(val)<0))
660         {
661                 this->error = CONF_NOT_UNSIGNED;
662                 return 0;
663         }
664         return atoi(val);
665 }
666
667 long ConfigReader::GetError()
668 {
669         long olderr = this->error;
670         this->error = 0;
671         return olderr;
672 }
673
674 void ConfigReader::DumpErrors(bool bail, userrec* user)
675 {
676         if (bail)
677         {
678                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
679                 exit(0);
680         }
681         else
682         {
683                 char dataline[1024];
684                 if (user)
685                 {
686                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
687                         while (!errorlog->eof())
688                         {
689                                 errorlog->getline(dataline,1024);
690                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
691                         }
692                 }
693                 else
694                 {
695                         WriteOpers("There were errors in the configuration file:",user->nick);
696                         while (!errorlog->eof())
697                         {
698                                 errorlog->getline(dataline,1024);
699                                 WriteOpers(dataline);
700                         }
701                 }
702                 return;
703         }
704 }
705
706
707 int ConfigReader::Enumerate(std::string tag)
708 {
709         return EnumConf(cache,tag.c_str());
710 }
711
712 int ConfigReader::EnumerateValues(std::string tag, int index)
713 {
714         return EnumValues(cache, tag.c_str(), index);
715 }
716
717 bool ConfigReader::Verify()
718 {
719         return this->readerror;
720 }
721
722
723 FileReader::FileReader(std::string filename)
724 {
725         file_cache c;
726         readfile(c,filename.c_str());
727         this->fc = c;
728 }
729
730 FileReader::FileReader()
731 {
732 }
733
734 void FileReader::LoadFile(std::string filename)
735 {
736         file_cache c;
737         readfile(c,filename.c_str());
738         this->fc = c;
739 }
740
741
742 FileReader::~FileReader()
743 {
744 }
745
746 bool FileReader::Exists()
747 {
748         if (fc.size() == 0)
749         {
750                 return(false);
751         }
752         else
753         {
754                 return(true);
755         }
756 }
757
758 std::string FileReader::GetLine(int x)
759 {
760         if ((x<0) || (x>fc.size()))
761                 return "";
762         return fc[x];
763 }
764
765 int FileReader::FileSize()
766 {
767         return fc.size();
768 }
769
770
771 std::vector<Module*> modules(255);
772 std::vector<ircd_module*> factory(255);
773
774 int MODCOUNT  = -1;
775
776