]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
Squash warning
[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         /** Find a user in the UUID hash
403          * @param nick The nickname to find
404          * @return A pointer to the user, or NULL if the user does not exist
405          */
406         userrec *FindUUID(const std::string &);
407
408         /** Find a user in the UUID hash
409          * @param nick The nickname to find
410          * @return A pointer to the user, or NULL if the user does not exist
411          */
412         userrec *FindUUID(const char *);
413
414         /** Build the ISUPPORT string by triggering all modules On005Numeric events
415          */
416         void BuildISupport();
417
418         /** Number of unregistered users online right now.
419          * (Unregistered means before USER/NICK/dns)
420          */
421         int unregistered_count;
422
423         /** List of server names we've seen.
424          */
425         servernamelist servernames;
426
427         /** Time this ircd was booted
428          */
429         time_t startup_time;
430
431         /** Config file pathname specified on the commandline or via ./configure
432          */
433         char ConfigFileName[MAXBUF];
434
435         /** Mode handler, handles mode setting and removal
436          */
437         ModeParser* Modes;
438
439         /** Command parser, handles client to server commands
440          */
441         CommandParser* Parser;
442
443         /** Socket engine, handles socket activity events
444          */
445         SocketEngine* SE;
446
447         /** Stats class, holds miscellaneous stats counters
448          */
449         serverstats* stats;
450
451         /**  Server Config class, holds configuration file data
452          */
453         ServerConfig* Config;
454
455         /** Snomask manager - handles routing of snomask messages
456          * to opers.
457          */
458         SnomaskManager* SNO;
459
460         /** Client list, a hash_map containing all clients, local and remote
461          */
462         user_hash* clientlist;
463
464         /** Channel list, a hash_map containing all channels
465          */
466         chan_hash* chanlist;
467
468         /** Local client list, a vector containing only local clients
469          */
470         std::vector<userrec*> local_users;
471
472         /** Oper list, a vector containing all local and remote opered users
473          */
474         std::vector<userrec*> all_opers;
475
476         /** Map of local ip addresses for clone counting
477          */
478         clonemap local_clones;
479
480         /** Map of global ip addresses for clone counting
481          */
482         clonemap global_clones;
483
484         /** DNS class, provides resolver facilities to the core and modules
485          */
486         DNS* Res;
487
488         /** Timer manager class, triggers InspTimer timer events
489          */
490         TimerManager* Timers;
491
492         /** X-Line manager. Handles G/K/Q/E line setting, removal and matching
493          */
494         XLineManager* XLines;
495
496         /** A list of Module* module classes
497          * Note that this list is always exactly 255 in size.
498          * The actual number of loaded modules is available from GetModuleCount()
499          */
500         ModuleList modules;
501
502         /** A list of ModuleFactory* module factories
503          * Note that this list is always exactly 255 in size.
504          * The actual number of loaded modules is available from GetModuleCount()
505          */
506         FactoryList factory;
507
508         /** The time we next call our ping timeout and reg timeout checks
509          */
510         time_t next_call;
511
512         /** Set to the current signal recieved
513          */
514         int s_signal;
515
516         /** Get the current time
517          * Because this only calls time() once every time around the mainloop,
518          * it is much faster than calling time() directly.
519          * @param delta True to use the delta as an offset, false otherwise
520          * @return The current time as an epoch value (time_t)
521          */
522         time_t Time(bool delta = false);
523
524         /** Set the time offset in seconds
525          * This offset is added to Time() to offset the system time by the specified
526          * number of seconds.
527          * @param delta The number of seconds to offset
528          * @return The old time delta
529          */
530         int SetTimeDelta(int delta);
531
532         /** Add a user to the local clone map
533          * @param user The user to add
534          */
535         void AddLocalClone(userrec* user);
536
537         /** Add a user to the global clone map
538          * @param user The user to add
539          */
540         void AddGlobalClone(userrec* user);
541
542         /** Number of users with a certain mode set on them
543          */
544         int ModeCount(const char mode);
545
546         /** Get the time offset in seconds
547          * @return The current time delta (in seconds)
548          */
549         int GetTimeDelta();
550
551         /** Process a user whos socket has been flagged as active
552          * @param cu The user to process
553          * @return There is no actual return value, however upon exit, the user 'cu' may have been
554          * marked for deletion in the global CullList.
555          */
556         caller1<void, userrec*> ProcessUser;
557
558         /** Get the total number of currently loaded modules
559          * @return The number of loaded modules
560          */
561         int GetModuleCount();
562
563         /** Find a module by name, and return a Module* to it.
564          * This is preferred over iterating the module lists yourself.
565          * @param name The module name to look up
566          * @return A pointer to the module, or NULL if the module cannot be found
567          */
568         Module* FindModule(const std::string &name);
569
570         /** Bind all ports specified in the configuration file.
571          * @param bail True if the function should bail back to the shell on failure
572          * @param found_ports The actual number of ports found in the config, as opposed to the number actually bound
573          * @return The number of ports actually bound without error
574          */
575         int BindPorts(bool bail, int &found_ports, FailedPortList &failed_ports);
576
577         /** Binds a socket on an already open file descriptor
578          * @param sockfd A valid file descriptor of an open socket
579          * @param port The port number to bind to
580          * @param addr The address to bind to (IP only)
581          * @return True if the port was bound successfully
582          */
583         bool BindSocket(int sockfd, int port, char* addr, bool dolisten = true);
584
585         /** Adds a server name to the list of servers we've seen
586          * @param The servername to add
587          */
588         void AddServerName(const std::string &servername);
589
590         /** Finds a cached char* pointer of a server name,
591          * This is used to optimize userrec by storing only the pointer to the name
592          * @param The servername to find
593          * @return A pointer to this name, gauranteed to never become invalid
594          */
595         const char* FindServerNamePtr(const std::string &servername);
596
597         /** Returns true if we've seen the given server name before
598          * @param The servername to find
599          * @return True if we've seen this server name before
600          */
601         bool FindServerName(const std::string &servername);
602
603         /** Gets the GECOS (description) field of the given server.
604          * If the servername is not that of the local server, the name
605          * is passed to handling modules which will attempt to determine
606          * the GECOS that bleongs to the given servername.
607          * @param servername The servername to find the description of
608          * @return The description of this server, or of the local server
609          */
610         std::string GetServerDescription(const char* servername);
611
612         /** Write text to all opers connected to this server
613          * @param text The text format string
614          * @param ... Format args
615          */
616         void WriteOpers(const char* text, ...);
617
618         /** Write text to all opers connected to this server
619          * @param text The text to send
620          */
621         void WriteOpers(const std::string &text);
622
623         /** Find a user in the nick hash
624          * @param nick The nickname to find
625          * @return A pointer to the user, or NULL if the user does not exist
626          */
627         userrec* FindNick(const std::string &nick);
628
629         /** Find a user in the nick hash
630          * @param nick The nickname to find
631          * @return A pointer to the user, or NULL if the user does not exist
632          */
633         userrec* FindNick(const char* nick);
634
635         /** Find a channel in the channels hash
636          * @param chan The channel to find
637          * @return A pointer to the channel, or NULL if the channel does not exist
638          */
639         chanrec* FindChan(const std::string &chan);
640
641         /** Find a channel in the channels hash
642          * @param chan The channel to find
643          * @return A pointer to the channel, or NULL if the channel does not exist
644          */
645         chanrec* FindChan(const char* chan);
646
647         /** Called by the constructor to load all modules from the config file.
648          */
649         void LoadAllModules();
650
651         /** Check for a 'die' tag in the config file, and abort if found
652          * @return Depending on the configuration, this function may never return
653          */
654         void CheckDie();
655
656         /** Check we aren't running as root, and exit if we are
657          * @return Depending on the configuration, this function may never return
658          */
659         void CheckRoot();
660
661         /** Determine the right path for, and open, the logfile
662          * @param argv The argv passed to main() initially, used to calculate program path
663          * @param argc The argc passed to main() initially, used to calculate program path
664          * @return True if the log could be opened, false if otherwise
665          */
666         bool OpenLog(char** argv, int argc);
667
668         /** Close the currently open log file
669          */
670         void CloseLog();
671
672         /** Send a server notice to all local users
673          * @param text The text format string to send
674          * @param ... The format arguments
675          */
676         void ServerNoticeAll(char* text, ...);
677
678         /** Send a server message (PRIVMSG) to all local users
679          * @param text The text format string to send
680          * @param ... The format arguments
681          */
682         void ServerPrivmsgAll(char* text, ...);
683
684         /** Send text to all users with a specific set of modes
685          * @param modes The modes to check against, without a +, e.g. 'og'
686          * @param flags one of WM_OR or WM_AND. If you specify WM_OR, any one of the
687          * mode characters in the first parameter causes receipt of the message, and
688          * if you specify WM_OR, all the modes must be present.
689          * @param text The text format string to send
690          * @param ... The format arguments
691          */
692         void WriteMode(const char* modes, int flags, const char* text, ...);
693
694         /** Return true if a channel name is valid
695          * @param chname A channel name to verify
696          * @return True if the name is valid
697          */
698         bool IsChannel(const char *chname);
699
700         /** Rehash the local server
701          */
702         void Rehash();
703
704         /** Handles incoming signals after being set
705          * @param signal the signal recieved
706          */
707         void SignalHandler(int signal);
708
709         /** Sets the signal recieved    
710          * @param signal the signal recieved
711          */
712         static void SetSignal(int signal);
713
714         /** Causes the server to exit after unloading modules and
715          * closing all open file descriptors.
716          *
717          * @param The exit code to give to the operating system
718          * (See the ExitStatus enum for valid values)
719          */
720         void Exit(int status);
721
722         /** Causes the server to exit immediately with exit code 0.
723          * The status code is required for signal handlers, and ignored.
724          */
725         static void QuickExit(int status);
726
727         /** Return a count of users, unknown and known connections
728          * @return The number of users
729          */
730         int UserCount();
731
732         /** Return a count of fully registered connections only
733          * @return The number of registered users
734          */
735         int RegisteredUserCount();
736
737         /** Return a count of invisible (umode +i) users only
738          * @return The number of invisible users
739          */
740         int InvisibleUserCount();
741
742         /** Return a count of opered (umode +o) users only
743          * @return The number of opers
744          */
745         int OperCount();
746
747         /** Return a count of unregistered (before NICK/USER) users only
748          * @return The number of unregistered (unknown) connections
749          */
750         int UnregisteredUserCount();
751
752         /** Return a count of channels on the network
753          * @return The number of channels
754          */
755         long ChannelCount();
756
757         /** Return a count of local users on this server only
758          * @return The number of local users
759          */
760         long LocalUserCount();
761
762         /** Send an error notice to all local users, opered and unopered
763          * @param s The error string to send
764          */
765         void SendError(const std::string &s);
766
767         /** For use with Module::Prioritize().
768          * When the return value of this function is returned from
769          * Module::Prioritize(), this specifies that the module wishes
770          * to be ordered exactly BEFORE 'modulename'. For more information
771          * please see Module::Prioritize().
772          * @param modulename The module your module wants to be before in the call list
773          * @returns a priority ID which the core uses to relocate the module in the list
774          */
775         long PriorityBefore(const std::string &modulename);
776
777         /** For use with Module::Prioritize().
778          * When the return value of this function is returned from
779          * Module::Prioritize(), this specifies that the module wishes
780          * to be ordered exactly AFTER 'modulename'. For more information please
781          * see Module::Prioritize().
782          * @param modulename The module your module wants to be after in the call list
783          * @returns a priority ID which the core uses to relocate the module in the list
784          */
785         long PriorityAfter(const std::string &modulename);
786
787         /** Publish a 'feature'.
788          * There are two ways for a module to find another module it depends on.
789          * Either by name, using InspIRCd::FindModule, or by feature, using this
790          * function. A feature is an arbitary string which identifies something this
791          * module can do. For example, if your module provides SSL support, but other
792          * modules provide SSL support too, all the modules supporting SSL should
793          * publish an identical 'SSL' feature. This way, any module requiring use
794          * of SSL functions can just look up the 'SSL' feature using FindFeature,
795          * then use the module pointer they are given.
796          * @param FeatureName The case sensitive feature name to make available
797          * @param Mod a pointer to your module class
798          * @returns True on success, false if the feature is already published by
799          * another module.
800          */
801         bool PublishFeature(const std::string &FeatureName, Module* Mod);
802
803         /** Publish a module to an 'interface'.
804          * Modules which implement the same interface (the same way of communicating
805          * with other modules) can publish themselves to an interface, using this
806          * method. When they do so, they become part of a list of related or
807          * compatible modules, and a third module may then query for that list
808          * and know that all modules within that list offer the same API.
809          * A prime example of this is the hashing modules, which all accept the
810          * same types of Request class. Consider this to be similar to PublishFeature,
811          * except for that multiple modules may publish the same 'feature'.
812          * @param InterfaceName The case sensitive interface name to make available
813          * @param Mod a pointer to your module class
814          * @returns True on success, false on failure (there are currently no failure
815          * cases)
816          */
817         bool PublishInterface(const std::string &InterfaceName, Module* Mod);
818
819         /** Return a pair saying how many other modules are currently using the
820          * interfaces provided by module m.
821          * @param m The module to count usage for
822          * @return A pair, where the first value is the number of uses of the interface,
823          * and the second value is the interface name being used.
824          */
825         std::pair<int,std::string> GetInterfaceInstanceCount(Module* m);
826
827         /** Mark your module as using an interface.
828          * If you mark your module as using an interface, then that interface
829          * module may not unload until your module has unloaded first.
830          * This can be used to prevent crashes by ensuring code you depend on
831          * is always in memory while your module is active.
832          * @param InterfaceName The interface to use
833          */
834         void UseInterface(const std::string &InterfaceName);
835
836         /** Mark your module as finished with an interface.
837          * If you used UseInterface() above, you should use this method when
838          * your module is finished with the interface (usually in its destructor)
839          * to allow the modules which implement the given interface to be unloaded.
840          * @param InterfaceName The interface you are finished with using.
841          */
842         void DoneWithInterface(const std::string &InterfaceName);
843
844         /** Unpublish a 'feature'.
845          * When your module exits, it must call this method for every feature it
846          * is providing so that the feature table is cleaned up.
847          * @param FeatureName the feature to remove
848          */
849         bool UnpublishFeature(const std::string &FeatureName);
850
851         /** Unpublish your module from an interface
852          * When your module exits, it must call this method for every interface
853          * it is part of so that the interfaces table is cleaned up. Only when
854          * the last item is deleted from an interface does the interface get
855          * removed.
856          * @param InterfaceName the interface to be removed from
857          * @param Mod The module to remove from the interface list
858          */
859         bool UnpublishInterface(const std::string &InterfaceName, Module* Mod);
860
861         /** Find a 'feature'.
862          * There are two ways for a module to find another module it depends on.
863          * Either by name, using InspIRCd::FindModule, or by feature, using the
864          * InspIRCd::PublishFeature method. A feature is an arbitary string which
865          * identifies something this module can do. For example, if your module
866          * provides SSL support, but other modules provide SSL support too, all
867          * the modules supporting SSL should publish an identical 'SSL' feature.
868          * To find a module capable of providing the feature you want, simply
869          * call this method with the feature name you are looking for.
870          * @param FeatureName The feature name you wish to obtain the module for
871          * @returns A pointer to a valid module class on success, NULL on failure.
872          */
873         Module* FindFeature(const std::string &FeatureName);
874
875         /** Find an 'interface'.
876          * An interface is a list of modules which all implement the same API.
877          * @param InterfaceName The Interface you wish to obtain the module
878          * list of.
879          * @return A pointer to a deque of Module*, or NULL if the interface
880          * does not exist.
881          */
882         modulelist* FindInterface(const std::string &InterfaceName);
883
884         /** Given a pointer to a Module, return its filename
885          * @param m The module pointer to identify
886          * @return The module name or an empty string
887          */
888         const std::string& GetModuleName(Module* m);
889
890         /** Return true if a nickname is valid
891          * @param n A nickname to verify
892          * @return True if the nick is valid
893          */
894         caller1<bool, const char*> IsNick;
895
896         /** Return true if an ident is valid
897          * @param An ident to verify
898          * @return True if the ident is valid
899          */
900         caller1<bool, const char*> IsIdent;
901
902         /** Find a username by their file descriptor.
903          * It is preferred to use this over directly accessing the fd_ref_table array.
904          * @param socket The file descriptor of a user
905          * @return A pointer to the user if the user exists locally on this descriptor
906          */
907         caller1<userrec*, int> FindDescriptor;
908
909         /** Add a new mode to this server's mode parser
910          * @param mh The modehandler to add
911          * @param modechar The mode character this modehandler handles
912          * @return True if the mode handler was added
913          */
914         bool AddMode(ModeHandler* mh, const unsigned char modechar);
915
916         /** Add a new mode watcher to this server's mode parser
917          * @param mw The modewatcher to add
918          * @return True if the modewatcher was added
919          */
920         bool AddModeWatcher(ModeWatcher* mw);
921
922         /** Delete a mode watcher from this server's mode parser
923          * @param mw The modewatcher to delete
924          * @return True if the modewatcher was deleted
925          */
926         bool DelModeWatcher(ModeWatcher* mw);
927
928         /** Add a dns Resolver class to this server's active set
929          * @param r The resolver to add
930          * @param cached If this value is true, then the cache will
931          * be searched for the DNS result, immediately. If the value is
932          * false, then a request will be sent to the nameserver, and the
933          * result will not be immediately available. You should usually
934          * use the boolean value which you passed to the Resolver
935          * constructor, which Resolver will set appropriately depending
936          * on if cached results are available and haven't expired. It is
937          * however safe to force this value to false, forcing a remote DNS
938          * lookup, but not an update of the cache.
939          * @return True if the operation completed successfully. Note that
940          * if this method returns true, you should not attempt to access
941          * the resolver class you pass it after this call, as depending upon
942          * the request given, the object may be deleted!
943          */
944         bool AddResolver(Resolver* r, bool cached);
945
946         /** Add a command to this server's command parser
947          * @param f A command_t command handler object to add
948          * @throw ModuleException Will throw ModuleExcption if the command already exists
949          */
950         void AddCommand(command_t *f);
951
952         /** Send a modechange.
953          * The parameters provided are identical to that sent to the
954          * handler for class cmd_mode.
955          * @param parameters The mode parameters
956          * @param pcnt The number of items you have given in the first parameter
957          * @param user The user to send error messages to
958          */
959         void SendMode(const char **parameters, int pcnt, userrec *user);
960
961         /** Match two strings using pattern matching.
962          * This operates identically to the global function match(),
963          * except for that it takes std::string arguments rather than
964          * const char* ones.
965          * @param sliteral The literal string to match against
966          * @param spattern The pattern to match against. CIDR and globs are supported.
967          */
968         bool MatchText(const std::string &sliteral, const std::string &spattern);
969
970         /** Call the handler for a given command.
971          * @param commandname The command whos handler you wish to call
972          * @param parameters The mode parameters
973          * @param pcnt The number of items you have given in the first parameter
974          * @param user The user to execute the command as
975          * @return True if the command handler was called successfully
976          */
977         CmdResult CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user);
978
979         /** Return true if the command is a module-implemented command and the given parameters are valid for it
980          * @param parameters The mode parameters
981          * @param pcnt The number of items you have given in the first parameter
982          * @param user The user to test-execute the command as
983          * @return True if the command handler is a module command, and there are enough parameters and the user has permission to the command
984          */
985         bool IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user);
986
987         /** Add a gline and apply it
988          * @param duration How long the line should last
989          * @param source Who set the line
990          * @param reason The reason for the line
991          * @param hostmask The hostmask to set the line against
992          */
993         void AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
994
995         /** Add a qline and apply it
996          * @param duration How long the line should last
997          * @param source Who set the line
998          * @param reason The reason for the line
999          * @param nickname The nickmask to set the line against
1000          */
1001         void AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname);
1002
1003         /** Add a zline and apply it
1004          * @param duration How long the line should last
1005          * @param source Who set the line
1006          * @param reason The reason for the line
1007          * @param ipaddr The ip-mask to set the line against
1008          */
1009         void AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr);
1010
1011         /** Add a kline and apply it
1012          * @param duration How long the line should last
1013          * @param source Who set the line
1014          * @param reason The reason for the line
1015          * @param hostmask The hostmask to set the line against
1016          */
1017         void AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
1018
1019         /** Add an eline
1020          * @param duration How long the line should last
1021          * @param source Who set the line
1022          * @param reason The reason for the line
1023          * @param hostmask The hostmask to set the line against
1024          */
1025         void AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
1026
1027         /** Delete a gline
1028          * @param hostmask The gline to delete
1029          * @return True if the item was removed
1030          */
1031         bool DelGLine(const std::string &hostmask);
1032
1033         /** Delete a qline
1034          * @param nickname The qline to delete
1035          * @return True if the item was removed
1036          */
1037         bool DelQLine(const std::string &nickname);
1038
1039         /** Delete a zline
1040          * @param ipaddr The zline to delete
1041          * @return True if the item was removed
1042          */
1043         bool DelZLine(const std::string &ipaddr);
1044
1045         /** Delete a kline
1046          * @param hostmask The kline to delete
1047          * @return True if the item was removed
1048          */
1049         bool DelKLine(const std::string &hostmask);
1050
1051         /** Delete an eline
1052          * @param hostmask The kline to delete
1053          * @return True if the item was removed
1054          */
1055         bool DelELine(const std::string &hostmask);
1056
1057         /** Return true if the given parameter is a valid nick!user\@host mask
1058          * @param mask A nick!user\@host masak to match against
1059          * @return True i the mask is valid
1060          */
1061         bool IsValidMask(const std::string &mask);
1062
1063         /** Rehash the local server
1064          */
1065         void RehashServer();
1066
1067         /** Return the channel whos index number matches that provided
1068          * @param The index number of the channel to fetch
1069          * @return A channel record, or NUll if index < 0 or index >= InspIRCd::ChannelCount()
1070          */
1071         chanrec* GetChannelIndex(long index);
1072
1073         /** Dump text to a user target, splitting it appropriately to fit
1074          * @param User the user to dump the text to
1075          * @param LinePrefix text to prefix each complete line with
1076          * @param TextStream the text to send to the user
1077          */
1078         void DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream);
1079
1080         /** Check if the given nickmask matches too many users, send errors to the given user
1081          * @param nick A nickmask to match against
1082          * @param user A user to send error text to
1083          * @return True if the nick matches too many users
1084          */
1085         bool NickMatchesEveryone(const std::string &nick, userrec* user);
1086
1087         /** Check if the given IP mask matches too many users, send errors to the given user
1088          * @param ip An ipmask to match against
1089          * @param user A user to send error text to
1090          * @return True if the ip matches too many users
1091          */
1092         bool IPMatchesEveryone(const std::string &ip, userrec* user);
1093
1094         /** Check if the given hostmask matches too many users, send errors to the given user
1095          * @param mask A hostmask to match against
1096          * @param user A user to send error text to
1097          * @return True if the host matches too many users
1098          */
1099         bool HostMatchesEveryone(const std::string &mask, userrec* user);
1100
1101         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
1102          * @param str A string containing a time in the form 1y2w3d4h6m5s
1103          * (one year, two weeks, three days, four hours, six minutes and five seconds)
1104          * @return The total number of seconds
1105          */
1106         long Duration(const std::string &str);
1107
1108         /** Attempt to compare an oper password to a string from the config file.
1109          * This will be passed to handling modules which will compare the data
1110          * against possible hashed equivalents in the input string.
1111          * @param data The data from the config file
1112          * @param input The data input by the oper
1113          * @param tagnum the tag number of the oper's tag in the config file
1114          * @return 0 if the strings match, 1 or -1 if they do not
1115          */
1116         int OperPassCompare(const char* data,const char* input, int tagnum);
1117
1118         /** Check if a given server is a uline.
1119          * An empty string returns true, this is by design.
1120          * @param server The server to check for uline status
1121          * @return True if the server is a uline OR the string is empty
1122          */
1123         bool ULine(const char* server);
1124
1125         /** Returns true if the uline is 'silent' (doesnt generate
1126          * remote connect notices etc).
1127          */
1128         bool SilentULine(const char* server);
1129
1130         /** Returns the subversion revision ID of this ircd
1131          * @return The revision ID or an empty string
1132          */
1133         std::string GetRevision();
1134
1135         /** Returns the full version string of this ircd
1136          * @return The version string
1137          */
1138         std::string GetVersionString();
1139
1140         /** Attempt to write the process id to a given file
1141          * @param filename The PID file to attempt to write to
1142          * @return This function may bail if the file cannot be written
1143          */
1144         void WritePID(const std::string &filename);
1145
1146         /** Returns text describing the last module error
1147          * @return The last error message to occur
1148          */
1149         char* ModuleError();
1150
1151         /** Load a given module file
1152          * @param filename The file to load
1153          * @return True if the module was found and loaded
1154          */
1155         bool LoadModule(const char* filename);
1156
1157         /** Unload a given module file
1158          * @param filename The file to unload
1159          * @return True if the module was unloaded
1160          */
1161         bool UnloadModule(const char* filename);
1162
1163         /** This constructor initialises all the subsystems and reads the config file.
1164          * @param argc The argument count passed to main()
1165          * @param argv The argument list passed to main()
1166          * @throw <anything> If anything is thrown from here and makes it to
1167          * you, you should probably just give up and go home. Yes, really.
1168          * It's that bad. Higher level classes should catch any non-fatal exceptions.
1169          */
1170         InspIRCd(int argc, char** argv);
1171
1172         /** Do one iteration of the mainloop
1173          * @param process_module_sockets True if module sockets are to be processed
1174          * this time around the event loop. The is the default.
1175          */
1176         void DoOneIteration(bool process_module_sockets = true);
1177
1178         /** Output a log message to the ircd.log file
1179          * The text will only be output if the current loglevel
1180          * is less than or equal to the level you provide
1181          * @param level A log level from the DebugLevel enum
1182          * @param text Format string of to write to the log
1183          * @param ... Format arguments of text to write to the log
1184          */
1185         void Log(int level, const char* text, ...);
1186
1187         /** Output a log message to the ircd.log file
1188          * The text will only be output if the current loglevel
1189          * is less than or equal to the level you provide
1190          * @param level A log level from the DebugLevel enum
1191          * @param text Text to write to the log
1192          */
1193         void Log(int level, const std::string &text);
1194
1195         /** Send a line of WHOIS data to a user.
1196          * @param user user to send the line to
1197          * @param dest user being WHOISed
1198          * @param numeric Numeric to send
1199          * @param text Text of the numeric
1200          */
1201         void SendWhoisLine(userrec* user, userrec* dest, int numeric, const std::string &text);
1202
1203         /** Send a line of WHOIS data to a user.
1204          * @param user user to send the line to
1205          * @param dest user being WHOISed
1206          * @param numeric Numeric to send
1207          * @param format Format string for the numeric
1208          * @param ... Parameters for the format string
1209          */
1210         void SendWhoisLine(userrec* user, userrec* dest, int numeric, const char* format, ...);
1211
1212         /** Quit a user for excess flood, and if they are not
1213          * fully registered yet, temporarily zline their IP.
1214          * @param current user to quit
1215          */
1216         caller1<void, userrec*> FloodQuitUser;
1217
1218         /** Restart the server.
1219          * This function will not return. If an error occurs,
1220          * it will throw an instance of CoreException.
1221          * @param reason The restart reason to show to all clients
1222          * @throw CoreException An instance of CoreException indicating the error from execv().
1223          */
1224         void Restart(const std::string &reason);
1225
1226         /** Prepare the ircd for restart or shutdown.
1227          * This function unloads all modules which can be unloaded,
1228          * closes all open sockets, and closes the logfile.
1229          */
1230         void Cleanup();
1231
1232         /** This copies the user and channel hash_maps into new hash maps.
1233          * This frees memory used by the hash_map allocator (which it neglects
1234          * to free, most of the time, using tons of ram)
1235          */
1236         void RehashUsersAndChans();
1237
1238         /** Resets the cached max bans value on all channels.
1239          * Called by rehash.
1240          */
1241         void ResetMaxBans();
1242
1243         /** Return a time_t as a human-readable string.
1244          */
1245         std::string TimeString(time_t curtime);
1246
1247         /** Begin execution of the server.
1248          * NOTE: this function NEVER returns. Internally,
1249          * after performing some initialisation routines,
1250          * it will repeatedly call DoOneIteration in a loop.
1251          * @return The return value for this function is undefined.
1252          */
1253         int Run();
1254
1255         /** Force all InspSockets to be removed which are due to
1256          * be culled.
1257          */
1258         void InspSocketCull();
1259
1260         char* GetReadBuffer()
1261         {
1262                 return this->ReadBuffer;
1263         }
1264 };
1265
1266 #endif
1267