]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
13b66ade7536fb0ca9354581a4eed8499fc08b61
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __INSPIRCD_H__
15 #define __INSPIRCD_H__
16
17 #ifndef WIN32
18 #define DllExport 
19 #define CoreExport 
20 #define printf_c printf
21 #else
22 #include "inspircd_win32wrapper.h"
23 /** Windows defines these already */
24 #undef DELETE
25 #undef ERROR
26 #endif
27
28 #include <time.h>
29 #include <string>
30 #include <sstream>
31 #include "inspircd_config.h"
32 #include "users.h"
33 #include "channels.h"
34 #include "socket.h"
35 #include "mode.h"
36 #include "socketengine.h"
37 #include "command_parse.h"
38 #include "snomasks.h"
39 #include "cull_list.h"
40 #include "filelogger.h"
41 #include "caller.h"
42
43 /**
44  * Used to define the maximum number of parameters a command may have.
45  */
46 #define MAXPARAMETERS 127
47
48 /** Returned by some functions to indicate failure.
49  */
50 #define ERROR -1
51
52 /** Support for librodent -
53  * see http://www.chatspike.net/index.php?z=64
54  */
55 #define ETIREDHAMSTERS EAGAIN
56
57 /**
58  * This define is used in place of strcmp when we
59  * want to check if a char* string contains only one
60  * letter. Pretty fast, its just two compares and an
61  * addition.
62  */
63 #define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) )
64
65
66
67 /** Delete a pointer, and NULL its value
68  */
69 template<typename T> inline void DELETE(T* x)
70 {
71         delete x;
72         x = NULL;
73 }
74
75 /** Template function to convert any input type to std::string
76  */
77 template<typename T> inline std::string ConvNumeric(const T &in)
78 {
79         if (in == 0) return "0";
80         char res[MAXBUF];
81         char* out = res;
82         T quotient = in;
83         while (quotient) {
84                 *out = "0123456789"[ std::abs( (long)quotient % 10 ) ];
85                 ++out;
86                 quotient /= 10;
87         }
88         if ( in < 0)
89                 *out++ = '-';
90         *out = 0;
91         std::reverse(res,out);
92         return res;
93 }
94
95 /** Template function to convert any input type to std::string
96  */
97 inline std::string ConvToStr(const int in)
98 {
99         return ConvNumeric(in);
100 }
101
102 /** Template function to convert any input type to std::string
103  */
104 inline std::string ConvToStr(const long in)
105 {
106         return ConvNumeric(in);
107 }
108
109 /** Template function to convert any input type to std::string
110  */
111 inline std::string ConvToStr(const unsigned long in)
112 {
113         return ConvNumeric(in);
114 }
115
116 /** Template function to convert any input type to std::string
117  */
118 inline std::string ConvToStr(const char* in)
119 {
120         return in;
121 }
122
123 /** Template function to convert any input type to std::string
124  */
125 inline std::string ConvToStr(const bool in)
126 {
127         return (in ? "1" : "0");
128 }
129
130 /** Template function to convert any input type to std::string
131  */
132 inline std::string ConvToStr(char in)
133 {
134         return std::string(in,1);
135 }
136
137 /** Template function to convert any input type to std::string
138  */
139 template <class T> inline std::string ConvToStr(const T &in)
140 {
141         std::stringstream tmp;
142         if (!(tmp << in)) return std::string();
143         return tmp.str();
144 }
145
146 /** Template function to convert any input type to any other type
147  * (usually an integer or numeric type)
148  */
149 template<typename T> inline long ConvToInt(const T &in)
150 {
151         std::stringstream tmp;
152         if (!(tmp << in)) return 0;
153         return atoi(tmp.str().c_str());
154 }
155
156 /** Template function to convert integer to char, storing result in *res and
157  * also returning the pointer to res. Based on Stuart Lowe's C/C++ Pages.
158  * @param T input value
159  * @param V result value
160  * @param R base to convert to
161  */
162 template<typename T, typename V, typename R> inline char* itoa(const T &in, V *res, R base)
163 {
164         if (base < 2 || base > 16) { *res = 0; return res; }
165         char* out = res;
166         int quotient = in;
167         while (quotient) {
168                 *out = "0123456789abcdef"[ std::abs( quotient % base ) ];
169                 ++out;
170                 quotient /= base;
171         }
172         if ( in < 0 && base == 10) *out++ = '-';
173         std::reverse( res, out );
174         *out = 0;
175         return res;
176 }
177
178 /** This class contains various STATS counters
179  * It is used by the InspIRCd class, which internally
180  * has an instance of it.
181  */
182 class serverstats : public classbase
183 {
184   public:
185         /** Number of accepted connections
186          */
187         unsigned long statsAccept;
188         /** Number of failed accepts
189          */
190         unsigned long statsRefused;
191         /** Number of unknown commands seen
192          */
193         unsigned long statsUnknown;
194         /** Number of nickname collisions handled
195          */
196         unsigned long statsCollisions;
197         /** Number of DNS queries sent out
198          */
199         unsigned long statsDns;
200         /** Number of good DNS replies received
201          * NOTE: This may not tally to the number sent out,
202          * due to timeouts and other latency issues.
203          */
204         unsigned long statsDnsGood;
205         /** Number of bad (negative) DNS replies received
206          * NOTE: This may not tally to the number sent out,
207          * due to timeouts and other latency issues.
208          */
209         unsigned long statsDnsBad;
210         /** Number of inbound connections seen
211          */
212         unsigned long statsConnects;
213         /** Total bytes of data transmitted
214          */
215         double statsSent;
216         /** Total bytes of data received
217          */
218         double statsRecv;
219         /** Cpu usage at last sample
220          */
221         timeval LastCPU;
222         /** Time last sample was read
223          */
224         timeval LastSampled;
225         /** The constructor initializes all the counts to zero
226          */
227         serverstats()
228                 : statsAccept(0), statsRefused(0), statsUnknown(0), statsCollisions(0), statsDns(0),
229                 statsDnsGood(0), statsDnsBad(0), statsConnects(0), statsSent(0.0), statsRecv(0.0)
230         {
231         }
232 };
233
234 /** A list of failed port bindings, used for informational purposes on startup */
235 typedef std::vector<std::pair<std::string, long> > FailedPortList;
236
237 /** A list of ip addresses cross referenced against clone counts */
238 typedef std::map<irc::string, unsigned int> clonemap;
239
240 class InspIRCd;
241
242 DEFINE_HANDLER1(IsNickHandler, bool, const char*);
243 DEFINE_HANDLER1(IsIdentHandler, bool, const char*);
244 DEFINE_HANDLER1(FindDescriptorHandler, userrec*, int);
245
246 /* Forward declaration - required */
247 class XLineManager;
248
249 /** The main class of the irc server.
250  * This class contains instances of all the other classes
251  * in this software, with the exception of the base class,
252  * classbase. Amongst other things, it contains a ModeParser,
253  * a DNS object, a CommandParser object, and a list of active
254  * Module objects, and facilities for Module objects to
255  * interact with the core system it implements. You should
256  * NEVER attempt to instantiate a class of type InspIRCd
257  * yourself. If you do, this is equivalent to spawning a second
258  * IRC server, and could have catastrophic consequences for the
259  * program in terms of ram usage (basically, you could create
260  * an obese forkbomb built from recursively spawning irc servers!)
261  */
262 class CoreExport InspIRCd : public classbase
263 {
264  private:
265         /** Holds a string describing the last module error to occur
266          */
267         char MODERR[MAXBUF];
268
269         /** Remove a ModuleFactory pointer
270          * @param j Index number of the ModuleFactory to remove
271          */
272         void EraseFactory(int j);
273
274         /** Remove a Module pointer
275          * @param j Index number of the Module to remove
276          */
277         void EraseModule(int j);
278
279         /** Move a given module to a specific slot in the list
280          * @param modulename The module name to relocate
281          * @param slot The slot to move the module into
282          */
283         void MoveTo(std::string modulename,int slot);
284
285         /** Set up the signal handlers
286          */
287         void SetSignals();
288
289         /** Daemonize the ircd and close standard input/output streams
290          * @return True if the program daemonized succesfully
291          */
292         bool DaemonSeed();
293
294         /** Moves the given module to the last slot in the list
295          * @param modulename The module name to relocate
296          */
297         void MoveToLast(std::string modulename);
298
299         /** Moves the given module to the first slot in the list
300          * @param modulename The module name to relocate
301          */
302         void MoveToFirst(std::string modulename);
303
304         /** Moves one module to be placed after another in the list
305          * @param modulename The module name to relocate
306          * @param after The module name to place the module after
307          */
308         void MoveAfter(std::string modulename, std::string after);
309
310         /** Moves one module to be placed before another in the list
311          * @param modulename The module name to relocate
312          * @param after The module name to place the module before
313          */
314         void MoveBefore(std::string modulename, std::string before);
315
316         /** Iterate the list of InspSocket objects, removing ones which have timed out
317          * @param TIME the current time
318          */
319         void DoSocketTimeouts(time_t TIME);
320
321         /** Perform background user events such as PING checks
322          * @param TIME the current time
323          */
324         void DoBackgroundUserStuff(time_t TIME);
325
326         /** Returns true when all modules have done pre-registration checks on a user
327          * @param user The user to verify
328          * @return True if all modules have finished checking this user
329          */
330         bool AllModulesReportReady(userrec* user);
331
332         /** Total number of modules loaded into the ircd, minus one
333          */
334         int ModCount;
335
336         /** Logfile pathname specified on the commandline, or empty string
337          */
338         char LogFileName[MAXBUF];
339
340         /** The feature names published by various modules
341          */
342         featurelist Features;
343
344         /** The interface names published by various modules
345          */
346         interfacelist Interfaces;
347
348         /** The current time, updated in the mainloop
349          */
350         time_t TIME;
351
352         /** The time that was recorded last time around the mainloop
353          */
354         time_t OLDTIME;
355
356         /** A 64k buffer used to read client lines into
357          */
358         char ReadBuffer[65535];
359
360         /** Used when connecting clients
361          */
362         insp_sockaddr client, server;
363
364         /** Used when connecting clients
365          */
366         socklen_t length;
367
368         /** Nonblocking file writer
369          */
370         FileLogger* Logger;
371
372         /** Time offset in seconds
373          * This offset is added to all calls to Time(). Use SetTimeDelta() to update
374          */
375         int time_delta;
376
377  public:
378
379         /** Global cull list, will be processed on next iteration
380          */
381         CullList GlobalCulls;
382
383
384         /**** Functors ****/
385
386         IsNickHandler HandleIsNick;
387         IsIdentHandler HandleIsIdent;
388         FindDescriptorHandler HandleFindDescriptor;
389
390         /** InspSocket classes pending deletion after being closed.
391          * We don't delete these immediately as this may cause a segmentation fault.
392          */
393         std::map<InspSocket*,InspSocket*> SocketCull;
394
395         /** Build the ISUPPORT string by triggering all modules On005Numeric events
396          */
397         void BuildISupport();
398
399         /** Number of unregistered users online right now.
400          * (Unregistered means before USER/NICK/dns)
401          */
402         int unregistered_count;
403
404         /** List of server names we've seen.
405          */
406         servernamelist servernames;
407
408         /** Time this ircd was booted
409          */
410         time_t startup_time;
411
412         /** Config file pathname specified on the commandline or via ./configure
413          */
414         char ConfigFileName[MAXBUF];
415
416         /** Mode handler, handles mode setting and removal
417          */
418         ModeParser* Modes;
419
420         /** Command parser, handles client to server commands
421          */
422         CommandParser* Parser;
423
424         /** Socket engine, handles socket activity events
425          */
426         SocketEngine* SE;
427
428         /** Stats class, holds miscellaneous stats counters
429          */
430         serverstats* stats;
431
432         /**  Server Config class, holds configuration file data
433          */
434         ServerConfig* Config;
435
436         /** Snomask manager - handles routing of snomask messages
437          * to opers.
438          */
439         SnomaskManager* SNO;
440
441         /** Client list, a hash_map containing all clients, local and remote
442          */
443         user_hash* clientlist;
444
445         /** Channel list, a hash_map containing all channels
446          */
447         chan_hash* chanlist;
448
449         /** Local client list, a vector containing only local clients
450          */
451         std::vector<userrec*> local_users;
452
453         /** Oper list, a vector containing all local and remote opered users
454          */
455         std::vector<userrec*> all_opers;
456
457         /** Map of local ip addresses for clone counting
458          */
459         clonemap local_clones;
460
461         /** Map of global ip addresses for clone counting
462          */
463         clonemap global_clones;
464
465         /** DNS class, provides resolver facilities to the core and modules
466          */
467         DNS* Res;
468
469         /** Timer manager class, triggers InspTimer timer events
470          */
471         TimerManager* Timers;
472
473         /** X-Line manager. Handles G/K/Q/E line setting, removal and matching
474          */
475         XLineManager* XLines;
476
477         /** A list of Module* module classes
478          * Note that this list is always exactly 255 in size.
479          * The actual number of loaded modules is available from GetModuleCount()
480          */
481         ModuleList modules;
482
483         /** A list of ModuleFactory* module factories
484          * Note that this list is always exactly 255 in size.
485          * The actual number of loaded modules is available from GetModuleCount()
486          */
487         FactoryList factory;
488
489         /** The time we next call our ping timeout and reg timeout checks
490          */
491         time_t next_call;
492
493         /** Get the current time
494          * Because this only calls time() once every time around the mainloop,
495          * it is much faster than calling time() directly.
496          * @param delta True to use the delta as an offset, false otherwise
497          * @return The current time as an epoch value (time_t)
498          */
499         time_t Time(bool delta = false);
500
501         /** Set the time offset in seconds
502          * This offset is added to Time() to offset the system time by the specified
503          * number of seconds.
504          * @param delta The number of seconds to offset
505          * @return The old time delta
506          */
507         int SetTimeDelta(int delta);
508
509         /** Add a user to the local clone map
510          * @param user The user to add
511          */
512         void AddLocalClone(userrec* user);
513
514         /** Add a user to the global clone map
515          * @param user The user to add
516          */
517         void AddGlobalClone(userrec* user);
518
519         /** Number of users with a certain mode set on them
520          */
521         int ModeCount(const char mode);
522
523         /** Get the time offset in seconds
524          * @return The current time delta (in seconds)
525          */
526         int GetTimeDelta();
527
528         /** Process a user whos socket has been flagged as active
529          * @param cu The user to process
530          * @return There is no actual return value, however upon exit, the user 'cu' may have been
531          * marked for deletion in the global CullList.
532          */
533         void ProcessUser(userrec* cu);
534
535         /** Get the total number of currently loaded modules
536          * @return The number of loaded modules
537          */
538         int GetModuleCount();
539
540         /** Find a module by name, and return a Module* to it.
541          * This is preferred over iterating the module lists yourself.
542          * @param name The module name to look up
543          * @return A pointer to the module, or NULL if the module cannot be found
544          */
545         Module* FindModule(const std::string &name);
546
547         /** Bind all ports specified in the configuration file.
548          * @param bail True if the function should bail back to the shell on failure
549          * @param found_ports The actual number of ports found in the config, as opposed to the number actually bound
550          * @return The number of ports actually bound without error
551          */
552         int BindPorts(bool bail, int &found_ports, FailedPortList &failed_ports);
553
554         /** Binds a socket on an already open file descriptor
555          * @param sockfd A valid file descriptor of an open socket
556          * @param port The port number to bind to
557          * @param addr The address to bind to (IP only)
558          * @return True if the port was bound successfully
559          */
560         bool BindSocket(int sockfd, int port, char* addr, bool dolisten = true);
561
562         /** Adds a server name to the list of servers we've seen
563          * @param The servername to add
564          */
565         void AddServerName(const std::string &servername);
566
567         /** Finds a cached char* pointer of a server name,
568          * This is used to optimize userrec by storing only the pointer to the name
569          * @param The servername to find
570          * @return A pointer to this name, gauranteed to never become invalid
571          */
572         const char* FindServerNamePtr(const std::string &servername);
573
574         /** Returns true if we've seen the given server name before
575          * @param The servername to find
576          * @return True if we've seen this server name before
577          */
578         bool FindServerName(const std::string &servername);
579
580         /** Gets the GECOS (description) field of the given server.
581          * If the servername is not that of the local server, the name
582          * is passed to handling modules which will attempt to determine
583          * the GECOS that bleongs to the given servername.
584          * @param servername The servername to find the description of
585          * @return The description of this server, or of the local server
586          */
587         std::string GetServerDescription(const char* servername);
588
589         /** Write text to all opers connected to this server
590          * @param text The text format string
591          * @param ... Format args
592          */
593         void WriteOpers(const char* text, ...);
594
595         /** Write text to all opers connected to this server
596          * @param text The text to send
597          */
598         void WriteOpers(const std::string &text);
599
600         /** Find a nickname in the nick hash
601          * @param nick The nickname to find
602          * @return A pointer to the user, or NULL if the user does not exist
603          */
604         userrec* FindNick(const std::string &nick);
605
606         /** Find a nickname in the nick hash
607          * @param nick The nickname to find
608          * @return A pointer to the user, or NULL if the user does not exist
609          */
610         userrec* FindNick(const char* nick);
611
612         /** Find a channel in the channels hash
613          * @param chan The channel to find
614          * @return A pointer to the channel, or NULL if the channel does not exist
615          */
616         chanrec* FindChan(const std::string &chan);
617
618         /** Find a channel in the channels hash
619          * @param chan The channel to find
620          * @return A pointer to the channel, or NULL if the channel does not exist
621          */
622         chanrec* FindChan(const char* chan);
623
624         /** Called by the constructor to load all modules from the config file.
625          */
626         void LoadAllModules();
627
628         /** Check for a 'die' tag in the config file, and abort if found
629          * @return Depending on the configuration, this function may never return
630          */
631         void CheckDie();
632
633         /** Check we aren't running as root, and exit if we are
634          * @return Depending on the configuration, this function may never return
635          */
636         void CheckRoot();
637
638         /** Determine the right path for, and open, the logfile
639          * @param argv The argv passed to main() initially, used to calculate program path
640          * @param argc The argc passed to main() initially, used to calculate program path
641          */
642         void OpenLog(char** argv, int argc);
643
644         /** Close the currently open log file
645          */
646         void CloseLog();
647
648         /** Send a server notice to all local users
649          * @param text The text format string to send
650          * @param ... The format arguments
651          */
652         void ServerNoticeAll(char* text, ...);
653
654         /** Send a server message (PRIVMSG) to all local users
655          * @param text The text format string to send
656          * @param ... The format arguments
657          */
658         void ServerPrivmsgAll(char* text, ...);
659
660         /** Send text to all users with a specific set of modes
661          * @param modes The modes to check against, without a +, e.g. 'og'
662          * @param flags one of WM_OR or WM_AND. If you specify WM_OR, any one of the
663          * mode characters in the first parameter causes receipt of the message, and
664          * if you specify WM_OR, all the modes must be present.
665          * @param text The text format string to send
666          * @param ... The format arguments
667          */
668         void WriteMode(const char* modes, int flags, const char* text, ...);
669
670         /** Return true if a channel name is valid
671          * @param chname A channel name to verify
672          * @return True if the name is valid
673          */
674         bool IsChannel(const char *chname);
675
676         /** Rehash the local server
677          * @param status This value is unused, and required for signal handler functions
678          */
679         static void Rehash(int status);
680
681         /** Causes the server to exit after unloading modules and
682          * closing all open file descriptors.
683          *
684          * @param The exit code to give to the operating system
685          * (See the ExitStatus enum for valid values)
686          */
687         static void Exit(int status);
688
689         /** Causes the server to exit immediately with exit code 0.
690          * The status code is required for signal handlers, and ignored.
691          */
692         static void QuickExit(int status);
693
694         /** Return a count of users, unknown and known connections
695          * @return The number of users
696          */
697         int UserCount();
698
699         /** Return a count of fully registered connections only
700          * @return The number of registered users
701          */
702         int RegisteredUserCount();
703
704         /** Return a count of invisible (umode +i) users only
705          * @return The number of invisible users
706          */
707         int InvisibleUserCount();
708
709         /** Return a count of opered (umode +o) users only
710          * @return The number of opers
711          */
712         int OperCount();
713
714         /** Return a count of unregistered (before NICK/USER) users only
715          * @return The number of unregistered (unknown) connections
716          */
717         int UnregisteredUserCount();
718
719         /** Return a count of channels on the network
720          * @return The number of channels
721          */
722         long ChannelCount();
723
724         /** Return a count of local users on this server only
725          * @return The number of local users
726          */
727         long LocalUserCount();
728
729         /** Send an error notice to all local users, opered and unopered
730          * @param s The error string to send
731          */
732         void SendError(const std::string &s);
733
734         /** For use with Module::Prioritize().
735          * When the return value of this function is returned from
736          * Module::Prioritize(), this specifies that the module wishes
737          * to be ordered exactly BEFORE 'modulename'. For more information
738          * please see Module::Prioritize().
739          * @param modulename The module your module wants to be before in the call list
740          * @returns a priority ID which the core uses to relocate the module in the list
741          */
742         long PriorityBefore(const std::string &modulename);
743
744         /** For use with Module::Prioritize().
745          * When the return value of this function is returned from
746          * Module::Prioritize(), this specifies that the module wishes
747          * to be ordered exactly AFTER 'modulename'. For more information please
748          * see Module::Prioritize().
749          * @param modulename The module your module wants to be after in the call list
750          * @returns a priority ID which the core uses to relocate the module in the list
751          */
752         long PriorityAfter(const std::string &modulename);
753
754         /** Publish a 'feature'.
755          * There are two ways for a module to find another module it depends on.
756          * Either by name, using InspIRCd::FindModule, or by feature, using this
757          * function. A feature is an arbitary string which identifies something this
758          * module can do. For example, if your module provides SSL support, but other
759          * modules provide SSL support too, all the modules supporting SSL should
760          * publish an identical 'SSL' feature. This way, any module requiring use
761          * of SSL functions can just look up the 'SSL' feature using FindFeature,
762          * then use the module pointer they are given.
763          * @param FeatureName The case sensitive feature name to make available
764          * @param Mod a pointer to your module class
765          * @returns True on success, false if the feature is already published by
766          * another module.
767          */
768         bool PublishFeature(const std::string &FeatureName, Module* Mod);
769
770         /** Publish a module to an 'interface'.
771          * Modules which implement the same interface (the same way of communicating
772          * with other modules) can publish themselves to an interface, using this
773          * method. When they do so, they become part of a list of related or
774          * compatible modules, and a third module may then query for that list
775          * and know that all modules within that list offer the same API.
776          * A prime example of this is the hashing modules, which all accept the
777          * same types of Request class. Consider this to be similar to PublishFeature,
778          * except for that multiple modules may publish the same 'feature'.
779          * @param InterfaceName The case sensitive interface name to make available
780          * @param Mod a pointer to your module class
781          * @returns True on success, false on failure (there are currently no failure
782          * cases)
783          */
784         bool PublishInterface(const std::string &InterfaceName, Module* Mod);
785
786         /** Return a pair saying how many other modules are currently using the
787          * interfaces provided by module m.
788          * @param m The module to count usage for
789          * @return A pair, where the first value is the number of uses of the interface,
790          * and the second value is the interface name being used.
791          */
792         std::pair<int,std::string> GetInterfaceInstanceCount(Module* m);
793
794         /** Mark your module as using an interface.
795          * If you mark your module as using an interface, then that interface
796          * module may not unload until your module has unloaded first.
797          * This can be used to prevent crashes by ensuring code you depend on
798          * is always in memory while your module is active.
799          * @param InterfaceName The interface to use
800          */
801         void UseInterface(const std::string &InterfaceName);
802
803         /** Mark your module as finished with an interface.
804          * If you used UseInterface() above, you should use this method when
805          * your module is finished with the interface (usually in its destructor)
806          * to allow the modules which implement the given interface to be unloaded.
807          * @param InterfaceName The interface you are finished with using.
808          */
809         void DoneWithInterface(const std::string &InterfaceName);
810
811         /** Unpublish a 'feature'.
812          * When your module exits, it must call this method for every feature it
813          * is providing so that the feature table is cleaned up.
814          * @param FeatureName the feature to remove
815          */
816         bool UnpublishFeature(const std::string &FeatureName);
817
818         /** Unpublish your module from an interface
819          * When your module exits, it must call this method for every interface
820          * it is part of so that the interfaces table is cleaned up. Only when
821          * the last item is deleted from an interface does the interface get
822          * removed.
823          * @param InterfaceName the interface to be removed from
824          * @param Mod The module to remove from the interface list
825          */
826         bool UnpublishInterface(const std::string &InterfaceName, Module* Mod);
827
828         /** Find a 'feature'.
829          * There are two ways for a module to find another module it depends on.
830          * Either by name, using InspIRCd::FindModule, or by feature, using the
831          * InspIRCd::PublishFeature method. A feature is an arbitary string which
832          * identifies something this module can do. For example, if your module
833          * provides SSL support, but other modules provide SSL support too, all
834          * the modules supporting SSL should publish an identical 'SSL' feature.
835          * To find a module capable of providing the feature you want, simply
836          * call this method with the feature name you are looking for.
837          * @param FeatureName The feature name you wish to obtain the module for
838          * @returns A pointer to a valid module class on success, NULL on failure.
839          */
840         Module* FindFeature(const std::string &FeatureName);
841
842         /** Find an 'interface'.
843          * An interface is a list of modules which all implement the same API.
844          * @param InterfaceName The Interface you wish to obtain the module
845          * list of.
846          * @return A pointer to a deque of Module*, or NULL if the interface
847          * does not exist.
848          */
849         modulelist* FindInterface(const std::string &InterfaceName);
850
851         /** Given a pointer to a Module, return its filename
852          * @param m The module pointer to identify
853          * @return The module name or an empty string
854          */
855         const std::string& GetModuleName(Module* m);
856
857         /** Return true if a nickname is valid
858          * @param n A nickname to verify
859          * @return True if the nick is valid
860          */
861         caller1<bool, const char*> IsNick;
862
863         /** Return true if an ident is valid
864          * @param An ident to verify
865          * @return True if the ident is valid
866          */
867         caller1<bool, const char*> IsIdent;
868
869         /** Find a username by their file descriptor.
870          * It is preferred to use this over directly accessing the fd_ref_table array.
871          * @param socket The file descriptor of a user
872          * @return A pointer to the user if the user exists locally on this descriptor
873          */
874         caller1<userrec*, int> FindDescriptor;
875
876         /** Add a new mode to this server's mode parser
877          * @param mh The modehandler to add
878          * @param modechar The mode character this modehandler handles
879          * @return True if the mode handler was added
880          */
881         bool AddMode(ModeHandler* mh, const unsigned char modechar);
882
883         /** Add a new mode watcher to this server's mode parser
884          * @param mw The modewatcher to add
885          * @return True if the modewatcher was added
886          */
887         bool AddModeWatcher(ModeWatcher* mw);
888
889         /** Delete a mode watcher from this server's mode parser
890          * @param mw The modewatcher to delete
891          * @return True if the modewatcher was deleted
892          */
893         bool DelModeWatcher(ModeWatcher* mw);
894
895         /** Add a dns Resolver class to this server's active set
896          * @param r The resolver to add
897          * @param cached If this value is true, then the cache will
898          * be searched for the DNS result, immediately. If the value is
899          * false, then a request will be sent to the nameserver, and the
900          * result will not be immediately available. You should usually
901          * use the boolean value which you passed to the Resolver
902          * constructor, which Resolver will set appropriately depending
903          * on if cached results are available and haven't expired. It is
904          * however safe to force this value to false, forcing a remote DNS
905          * lookup, but not an update of the cache.
906          * @return True if the operation completed successfully. Note that
907          * if this method returns true, you should not attempt to access
908          * the resolver class you pass it after this call, as depending upon
909          * the request given, the object may be deleted!
910          */
911         bool AddResolver(Resolver* r, bool cached);
912
913         /** Add a command to this server's command parser
914          * @param f A command_t command handler object to add
915          * @throw ModuleException Will throw ModuleExcption if the command already exists
916          */
917         void AddCommand(command_t *f);
918
919         /** Send a modechange.
920          * The parameters provided are identical to that sent to the
921          * handler for class cmd_mode.
922          * @param parameters The mode parameters
923          * @param pcnt The number of items you have given in the first parameter
924          * @param user The user to send error messages to
925          */
926         void SendMode(const char **parameters, int pcnt, userrec *user);
927
928         /** Match two strings using pattern matching.
929          * This operates identically to the global function match(),
930          * except for that it takes std::string arguments rather than
931          * const char* ones.
932          * @param sliteral The literal string to match against
933          * @param spattern The pattern to match against. CIDR and globs are supported.
934          */
935         bool MatchText(const std::string &sliteral, const std::string &spattern);
936
937         /** Call the handler for a given command.
938          * @param commandname The command whos handler you wish to call
939          * @param parameters The mode parameters
940          * @param pcnt The number of items you have given in the first parameter
941          * @param user The user to execute the command as
942          * @return True if the command handler was called successfully
943          */
944         CmdResult CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user);
945
946         /** Return true if the command is a module-implemented command and the given parameters are valid for it
947          * @param parameters The mode parameters
948          * @param pcnt The number of items you have given in the first parameter
949          * @param user The user to test-execute the command as
950          * @return True if the command handler is a module command, and there are enough parameters and the user has permission to the command
951          */
952         bool IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user);
953
954         /** Add a gline and apply it
955          * @param duration How long the line should last
956          * @param source Who set the line
957          * @param reason The reason for the line
958          * @param hostmask The hostmask to set the line against
959          */
960         void AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
961
962         /** Add a qline and apply it
963          * @param duration How long the line should last
964          * @param source Who set the line
965          * @param reason The reason for the line
966          * @param nickname The nickmask to set the line against
967          */
968         void AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname);
969
970         /** Add a zline and apply it
971          * @param duration How long the line should last
972          * @param source Who set the line
973          * @param reason The reason for the line
974          * @param ipaddr The ip-mask to set the line against
975          */
976         void AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr);
977
978         /** Add a kline and apply it
979          * @param duration How long the line should last
980          * @param source Who set the line
981          * @param reason The reason for the line
982          * @param hostmask The hostmask to set the line against
983          */
984         void AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
985
986         /** Add an eline
987          * @param duration How long the line should last
988          * @param source Who set the line
989          * @param reason The reason for the line
990          * @param hostmask The hostmask to set the line against
991          */
992         void AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
993
994         /** Delete a gline
995          * @param hostmask The gline to delete
996          * @return True if the item was removed
997          */
998         bool DelGLine(const std::string &hostmask);
999
1000         /** Delete a qline
1001          * @param nickname The qline to delete
1002          * @return True if the item was removed
1003          */
1004         bool DelQLine(const std::string &nickname);
1005
1006         /** Delete a zline
1007          * @param ipaddr The zline to delete
1008          * @return True if the item was removed
1009          */
1010         bool DelZLine(const std::string &ipaddr);
1011
1012         /** Delete a kline
1013          * @param hostmask The kline to delete
1014          * @return True if the item was removed
1015          */
1016         bool DelKLine(const std::string &hostmask);
1017
1018         /** Delete an eline
1019          * @param hostmask The kline to delete
1020          * @return True if the item was removed
1021          */
1022         bool DelELine(const std::string &hostmask);
1023
1024         /** Return true if the given parameter is a valid nick!user\@host mask
1025          * @param mask A nick!user\@host masak to match against
1026          * @return True i the mask is valid
1027          */
1028         bool IsValidMask(const std::string &mask);
1029
1030         /** Rehash the local server
1031          */
1032         void RehashServer();
1033
1034         /** Return the channel whos index number matches that provided
1035          * @param The index number of the channel to fetch
1036          * @return A channel record, or NUll if index < 0 or index >= InspIRCd::ChannelCount()
1037          */
1038         chanrec* GetChannelIndex(long index);
1039
1040         /** Dump text to a user target, splitting it appropriately to fit
1041          * @param User the user to dump the text to
1042          * @param LinePrefix text to prefix each complete line with
1043          * @param TextStream the text to send to the user
1044          */
1045         void DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream);
1046
1047         /** Check if the given nickmask matches too many users, send errors to the given user
1048          * @param nick A nickmask to match against
1049          * @param user A user to send error text to
1050          * @return True if the nick matches too many users
1051          */
1052         bool NickMatchesEveryone(const std::string &nick, userrec* user);
1053
1054         /** Check if the given IP mask matches too many users, send errors to the given user
1055          * @param ip An ipmask to match against
1056          * @param user A user to send error text to
1057          * @return True if the ip matches too many users
1058          */
1059         bool IPMatchesEveryone(const std::string &ip, userrec* user);
1060
1061         /** Check if the given hostmask matches too many users, send errors to the given user
1062          * @param mask A hostmask to match against
1063          * @param user A user to send error text to
1064          * @return True if the host matches too many users
1065          */
1066         bool HostMatchesEveryone(const std::string &mask, userrec* user);
1067
1068         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
1069          * @param str A string containing a time in the form 1y2w3d4h6m5s
1070          * (one year, two weeks, three days, four hours, six minutes and five seconds)
1071          * @return The total number of seconds
1072          */
1073         long Duration(const std::string &str);
1074
1075         /** Attempt to compare an oper password to a string from the config file.
1076          * This will be passed to handling modules which will compare the data
1077          * against possible hashed equivalents in the input string.
1078          * @param data The data from the config file
1079          * @param input The data input by the oper
1080          * @param tagnum the tag number of the oper's tag in the config file
1081          * @return 0 if the strings match, 1 or -1 if they do not
1082          */
1083         int OperPassCompare(const char* data,const char* input, int tagnum);
1084
1085         /** Check if a given server is a uline.
1086          * An empty string returns true, this is by design.
1087          * @param server The server to check for uline status
1088          * @return True if the server is a uline OR the string is empty
1089          */
1090         bool ULine(const char* server);
1091
1092         /** Returns true if the uline is 'silent' (doesnt generate
1093          * remote connect notices etc).
1094          */
1095         bool SilentULine(const char* server);
1096
1097         /** Returns the subversion revision ID of this ircd
1098          * @return The revision ID or an empty string
1099          */
1100         std::string GetRevision();
1101
1102         /** Returns the full version string of this ircd
1103          * @return The version string
1104          */
1105         std::string GetVersionString();
1106
1107         /** Attempt to write the process id to a given file
1108          * @param filename The PID file to attempt to write to
1109          * @return This function may bail if the file cannot be written
1110          */
1111         void WritePID(const std::string &filename);
1112
1113         /** Returns text describing the last module error
1114          * @return The last error message to occur
1115          */
1116         char* ModuleError();
1117
1118         /** Load a given module file
1119          * @param filename The file to load
1120          * @return True if the module was found and loaded
1121          */
1122         bool LoadModule(const char* filename);
1123
1124         /** Unload a given module file
1125          * @param filename The file to unload
1126          * @return True if the module was unloaded
1127          */
1128         bool UnloadModule(const char* filename);
1129
1130         /** This constructor initialises all the subsystems and reads the config file.
1131          * @param argc The argument count passed to main()
1132          * @param argv The argument list passed to main()
1133          * @throw <anything> If anything is thrown from here and makes it to
1134          * you, you should probably just give up and go home. Yes, really.
1135          * It's that bad. Higher level classes should catch any non-fatal exceptions.
1136          */
1137         InspIRCd(int argc, char** argv);
1138
1139         /** Do one iteration of the mainloop
1140          * @param process_module_sockets True if module sockets are to be processed
1141          * this time around the event loop. The is the default.
1142          */
1143         void DoOneIteration(bool process_module_sockets = true);
1144
1145         /** Output a log message to the ircd.log file
1146          * The text will only be output if the current loglevel
1147          * is less than or equal to the level you provide
1148          * @param level A log level from the DebugLevel enum
1149          * @param text Format string of to write to the log
1150          * @param ... Format arguments of text to write to the log
1151          */
1152         void Log(int level, const char* text, ...);
1153
1154         /** Output a log message to the ircd.log file
1155          * The text will only be output if the current loglevel
1156          * is less than or equal to the level you provide
1157          * @param level A log level from the DebugLevel enum
1158          * @param text Text to write to the log
1159          */
1160         void Log(int level, const std::string &text);
1161
1162         /** Send a line of WHOIS data to a user.
1163          * @param user user to send the line to
1164          * @param dest user being WHOISed
1165          * @param numeric Numeric to send
1166          * @param text Text of the numeric
1167          */
1168         void SendWhoisLine(userrec* user, userrec* dest, int numeric, const std::string &text);
1169
1170         /** Send a line of WHOIS data to a user.
1171          * @param user user to send the line to
1172          * @param dest user being WHOISed
1173          * @param numeric Numeric to send
1174          * @param format Format string for the numeric
1175          * @param ... Parameters for the format string
1176          */
1177         void SendWhoisLine(userrec* user, userrec* dest, int numeric, const char* format, ...);
1178
1179         /** Quit a user for excess flood, and if they are not
1180          * fully registered yet, temporarily zline their IP.
1181          * @param current user to quit
1182          */
1183         void FloodQuitUser(userrec* current);
1184
1185         /** Restart the server.
1186          * This function will not return. If an error occurs,
1187          * it will throw an instance of CoreException.
1188          * @param reason The restart reason to show to all clients
1189          * @throw CoreException An instance of CoreException indicating the error from execv().
1190          */
1191         void Restart(const std::string &reason);
1192
1193         /** Prepare the ircd for restart or shutdown.
1194          * This function unloads all modules which can be unloaded,
1195          * closes all open sockets, and closes the logfile.
1196          */
1197         void Cleanup();
1198
1199         /** This copies the user and channel hash_maps into new hash maps.
1200          * This frees memory used by the hash_map allocator (which it neglects
1201          * to free, most of the time, using tons of ram)
1202          */
1203         void RehashUsersAndChans();
1204
1205         /** Resets the cached max bans value on all channels.
1206          * Called by rehash.
1207          */
1208         void ResetMaxBans();
1209
1210         /** Return a time_t as a human-readable string.
1211          */
1212         std::string TimeString(time_t curtime);
1213
1214         /** Begin execution of the server.
1215          * NOTE: this function NEVER returns. Internally,
1216          * after performing some initialisation routines,
1217          * it will repeatedly call DoOneIteration in a loop.
1218          * @return The return value for this function is undefined.
1219          */
1220         int Run();
1221
1222         /** Force all InspSockets to be removed which are due to
1223          * be culled.
1224          */
1225         void InspSocketCull();
1226 };
1227
1228 #endif
1229