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