]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
e79a56f53387e6f3e873292381c3f46e543da2aa
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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 #define _FILE_OFFSET_BITS 64
18 #ifndef _LARGEFILE_SOURCE
19 #define _LARGEFILE_SOURCE
20 #endif
21
22 #ifndef WIN32
23 #define DllExport
24 #define CoreExport
25 #define printf_c printf
26 #else
27 #include "inspircd_win32wrapper.h"
28 /** Windows defines these already */
29 #undef DELETE
30 #undef ERROR
31 #endif
32
33 #ifdef __GNUC__
34 #define CUSTOM_PRINTF(STRING, FIRST) __attribute__((format(printf, STRING, FIRST)))
35 #else
36 #define CUSTOM_PRINTF(STRING, FIRST)
37 #endif
38
39 // Required system headers.
40 #include <ctime>
41 #include <cstdarg>
42 #include <algorithm>
43 #include <cmath>
44 #include <cstring>
45 #include <climits>
46 #include <cstdio>
47
48 #include <sstream>
49 #include <string>
50 #include <vector>
51 #include <list>
52 #include <deque>
53 #include <map>
54 #include <bitset>
55 #include <set>
56
57 /** A list of failed port bindings, used for informational purposes on startup */
58 typedef std::vector<std::pair<std::string, std::string> > FailedPortList;
59
60 class InspIRCd;
61 CoreExport extern InspIRCd* ServerInstance;
62
63 #include "inspircd_config.h"
64 #include "inspircd_version.h"
65 #include "caller.h"
66 #include "cull_list.h"
67 #include "extensible.h"
68 #include "numerics.h"
69 #include "uid.h"
70 #include "users.h"
71 #include "channels.h"
72 #include "timer.h"
73 #include "hashcomp.h"
74 #include "typedefs.h"
75 #include "logger.h"
76 #include "usermanager.h"
77 #include "socket.h"
78 #include "ctables.h"
79 #include "command_parse.h"
80 #include "mode.h"
81 #include "socketengine.h"
82 #include "snomasks.h"
83 #include "filelogger.h"
84 #include "caller.h"
85 #include "modules.h"
86 #include "configreader.h"
87 #include "inspstring.h"
88 #include "protocol.h"
89 #include "threadengine.h"
90
91 #ifndef PATH_MAX
92 #warning Potentially broken system, PATH_MAX undefined
93 #define PATH_MAX 4096
94 #endif
95
96 /**
97  * Used to define the maximum number of parameters a command may have.
98  */
99 #define MAXPARAMETERS 127
100
101 /** Returned by some functions to indicate failure.
102  */
103 #define ERROR -1
104
105 /** Support for librodent -
106  * see http://www.chatspike.net/index.php?z=64
107  */
108 #define ETIREDHAMSTERS EAGAIN
109
110 /** Template function to convert any input type to std::string
111  */
112 template<typename T> inline std::string ConvNumeric(const T &in)
113 {
114         if (in == 0) return "0";
115         char res[MAXBUF];
116         char* out = res;
117         T quotient = in;
118         while (quotient) {
119                 *out = "0123456789"[ std::abs( (long)quotient % 10 ) ];
120                 ++out;
121                 quotient /= 10;
122         }
123         if (in < 0)
124                 *out++ = '-';
125         *out = 0;
126         std::reverse(res,out);
127         return res;
128 }
129
130 /** Template function to convert any input type to std::string
131  */
132 inline std::string ConvToStr(const int in)
133 {
134         return ConvNumeric(in);
135 }
136
137 /** Template function to convert any input type to std::string
138  */
139 inline std::string ConvToStr(const long in)
140 {
141         return ConvNumeric(in);
142 }
143
144 /** Template function to convert any input type to std::string
145  */
146 inline std::string ConvToStr(const char* in)
147 {
148         return in;
149 }
150
151 /** Template function to convert any input type to std::string
152  */
153 inline std::string ConvToStr(const bool in)
154 {
155         return (in ? "1" : "0");
156 }
157
158 /** Template function to convert any input type to std::string
159  */
160 inline std::string ConvToStr(char in)
161 {
162         return std::string(in,1);
163 }
164
165 /** Template function to convert any input type to std::string
166  */
167 template <class T> inline std::string ConvToStr(const T &in)
168 {
169         std::stringstream tmp;
170         if (!(tmp << in)) return std::string();
171         return tmp.str();
172 }
173
174 /** Template function to convert any input type to any other type
175  * (usually an integer or numeric type)
176  */
177 template<typename T> inline long ConvToInt(const T &in)
178 {
179         std::stringstream tmp;
180         if (!(tmp << in)) return 0;
181         return atol(tmp.str().c_str());
182 }
183
184 /** This class contains various STATS counters
185  * It is used by the InspIRCd class, which internally
186  * has an instance of it.
187  */
188 class serverstats
189 {
190   public:
191         /** Number of accepted connections
192          */
193         unsigned long statsAccept;
194         /** Number of failed accepts
195          */
196         unsigned long statsRefused;
197         /** Number of unknown commands seen
198          */
199         unsigned long statsUnknown;
200         /** Number of nickname collisions handled
201          */
202         unsigned long statsCollisions;
203         /** Number of DNS queries sent out
204          */
205         unsigned long statsDns;
206         /** Number of good DNS replies received
207          * NOTE: This may not tally to the number sent out,
208          * due to timeouts and other latency issues.
209          */
210         unsigned long statsDnsGood;
211         /** Number of bad (negative) DNS replies received
212          * NOTE: This may not tally to the number sent out,
213          * due to timeouts and other latency issues.
214          */
215         unsigned long statsDnsBad;
216         /** Number of inbound connections seen
217          */
218         unsigned long statsConnects;
219         /** Total bytes of data transmitted
220          */
221         double statsSent;
222         /** Total bytes of data received
223          */
224         double statsRecv;
225         /** Cpu usage at last sample
226          */
227         timeval LastCPU;
228         /** Time last sample was read
229          */
230         timeval LastSampled;
231         /** The constructor initializes all the counts to zero
232          */
233         serverstats()
234                 : statsAccept(0), statsRefused(0), statsUnknown(0), statsCollisions(0), statsDns(0),
235                 statsDnsGood(0), statsDnsBad(0), statsConnects(0), statsSent(0.0), statsRecv(0.0)
236         {
237         }
238 };
239
240 class InspIRCd;
241
242 DEFINE_HANDLER2(IsNickHandler, bool, const char*, size_t);
243 DEFINE_HANDLER1(IsIdentHandler, bool, const char*);
244 DEFINE_HANDLER1(FloodQuitUserHandler, void, User*);
245 DEFINE_HANDLER2(IsChannelHandler, bool, const char*, size_t);
246 DEFINE_HANDLER1(IsSIDHandler, bool, const std::string&);
247 DEFINE_HANDLER1(RehashHandler, void, const std::string&);
248
249 /* Forward declaration - required */
250 class XLineManager;
251 class BanCacheManager;
252
253 /** The background thread for config reading, so that reading from executable includes
254  * does not block.
255  */
256 class CoreExport ConfigReaderThread : public Thread
257 {
258         ServerConfig* Config;
259         bool done;
260  public:
261         std::string TheUserUID;
262         ConfigReaderThread(const std::string &useruid)
263                 : Thread(), done(false), TheUserUID(useruid)
264         {
265         }
266
267         virtual ~ConfigReaderThread()
268         {
269         }
270
271         void Run();
272         /** Run in the main thread to apply the configuration */
273         void Finish();
274         bool IsDone() { return done; }
275 };
276
277 /** The main class of the irc server.
278  * This class contains instances of all the other classes in this software.
279  * Amongst other things, it contains a ModeParser, a DNS object, a CommandParser
280  * object, and a list of active Module objects, and facilities for Module
281  * objects to interact with the core system it implements.
282  */
283 class CoreExport InspIRCd
284 {
285  private:
286         /** Holds the current UID. Used to generate the next one.
287          */
288         char current_uid[UUID_LENGTH];
289
290         /** Set up the signal handlers
291          */
292         void SetSignals();
293
294         /** Daemonize the ircd and close standard input/output streams
295          * @return True if the program daemonized succesfully
296          */
297         bool DaemonSeed();
298
299         /** Iterate the list of BufferedSocket objects, removing ones which have timed out
300          * @param TIME the current time
301          */
302         void DoSocketTimeouts(time_t TIME);
303
304         /** Increments the current UID by one.
305          */
306         void IncrementUID(int pos);
307
308         /** Perform background user events such as PING checks
309          */
310         void DoBackgroundUserStuff();
311
312         /** Returns true when all modules have done pre-registration checks on a user
313          * @param user The user to verify
314          * @return True if all modules have finished checking this user
315          */
316         bool AllModulesReportReady(LocalUser* user);
317
318         /** Logfile pathname specified on the commandline, or empty string
319          */
320         char LogFileName[MAXBUF];
321
322         /** The current time, updated in the mainloop
323          */
324         time_t TIME;
325
326         /** The time that was recorded last time around the mainloop
327          */
328         time_t OLDTIME;
329
330         /** A 64k buffer used to read socket data into
331          * NOTE: update ValidateNetBufferSize if you change this
332          */
333         char ReadBuffer[65535];
334
335 #ifdef WIN32
336         IPC* WindowsIPC;
337 #endif
338
339  public:
340
341         /** Global cull list, will be processed on next iteration
342          */
343         CullList GlobalCulls;
344         /** Actions that must happen outside of the current call stack */
345         ActionList AtomicActions;
346
347         /**** Functors ****/
348
349         IsNickHandler HandleIsNick;
350         IsIdentHandler HandleIsIdent;
351         FloodQuitUserHandler HandleFloodQuitUser;
352         IsChannelHandler HandleIsChannel;
353         IsSIDHandler HandleIsSID;
354         RehashHandler HandleRehash;
355
356         /** Globally accessible fake user record. This is used to force mode changes etc across s2s, etc.. bit ugly, but.. better than how this was done in 1.1
357          * Reason for it:
358          * kludge alert!
359          * SendMode expects a User* to send the numeric replies
360          * back to, so we create it a fake user that isnt in the user
361          * hash and set its descriptor to FD_MAGIC_NUMBER so the data
362          * falls into the abyss :p
363          */
364         FakeUser* FakeClient;
365
366         /** Returns the next available UID for this server.
367          */
368         std::string GetUID();
369
370         /** Find a user in the UUID hash
371          * @param nick The nickname to find
372          * @return A pointer to the user, or NULL if the user does not exist
373          */
374         User* FindUUID(const std::string &);
375
376         /** Find a user in the UUID hash
377          * @param nick The nickname to find
378          * @return A pointer to the user, or NULL if the user does not exist
379          */
380         User* FindUUID(const char *);
381
382         /** Build the ISUPPORT string by triggering all modules On005Numeric events
383          */
384         void BuildISupport();
385
386         /** Time this ircd was booted
387          */
388         time_t startup_time;
389
390         /** Config file pathname specified on the commandline or via ./configure
391          */
392         std::string ConfigFileName;
393
394         ExtensionManager Extensions;
395
396         /** Mode handler, handles mode setting and removal
397          */
398         ModeParser* Modes;
399
400         /** Command parser, handles client to server commands
401          */
402         CommandParser* Parser;
403
404         /** Socket engine, handles socket activity events
405          */
406         SocketEngine* SE;
407
408         /** Thread engine, Handles threading where required
409          */
410         ThreadEngine* Threads;
411
412         /** The thread/class used to read config files in REHASH and on startup
413          */
414         ConfigReaderThread* ConfigThread;
415
416         /** LogManager handles logging.
417          */
418         LogManager *Logs;
419
420         /** ModuleManager contains everything related to loading/unloading
421          * modules.
422          */
423         ModuleManager* Modules;
424
425         /** BanCacheManager is used to speed up checking of restrictions on connection
426          * to the IRCd.
427          */
428         BanCacheManager *BanCache;
429
430         /** Stats class, holds miscellaneous stats counters
431          */
432         serverstats* stats;
433
434         /**  Server Config class, holds configuration file data
435          */
436         ServerConfig* Config;
437
438         /** Snomask manager - handles routing of snomask messages
439          * to opers.
440          */
441         SnomaskManager* SNO;
442
443         /** DNS class, provides resolver facilities to the core and modules
444          */
445         DNS* Res;
446
447         /** Timer manager class, triggers Timer timer events
448          */
449         TimerManager* Timers;
450
451         /** X-Line manager. Handles G/K/Q/E line setting, removal and matching
452          */
453         XLineManager* XLines;
454
455         /** User manager. Various methods and data associated with users.
456          */
457         UserManager *Users;
458
459         /** Channel list, a hash_map containing all channels XXX move to channel manager class
460          */
461         chan_hash* chanlist;
462
463         /** List of the open ports
464          */
465         std::vector<ListenSocketBase *> ports;
466
467         /** Set to the current signal recieved
468          */
469         int s_signal;
470
471         /** Protocol interface, overridden by server protocol modules
472          */
473         ProtocolInterface* PI;
474
475         /** Holds extensible for user nickforced
476          */
477         LocalIntExt NICKForced;
478
479         /** Holds extensible for user operquit
480          */
481         LocalStringExt OperQuit;
482
483         /** Get the current time
484          * Because this only calls time() once every time around the mainloop,
485          * it is much faster than calling time() directly.
486          * @return The current time as an epoch value (time_t)
487          */
488         time_t Time();
489
490         /** Bind all ports specified in the configuration file.
491          * @return The number of ports bound without error
492          */
493         int BindPorts(FailedPortList &failed_ports);
494
495         /** Binds a socket on an already open file descriptor
496          * @param sockfd A valid file descriptor of an open socket
497          * @param port The port number to bind to
498          * @param addr The address to bind to (IP only)
499          * @return True if the port was bound successfully
500          */
501         bool BindSocket(int sockfd, int port, const char* addr, bool dolisten = true);
502
503         /** Gets the GECOS (description) field of the given server.
504          * If the servername is not that of the local server, the name
505          * is passed to handling modules which will attempt to determine
506          * the GECOS that bleongs to the given servername.
507          * @param servername The servername to find the description of
508          * @return The description of this server, or of the local server
509          */
510         std::string GetServerDescription(const std::string& servername);
511
512         /** Find a user in the nick hash.
513          * If the user cant be found in the nick hash check the uuid hash
514          * @param nick The nickname to find
515          * @return A pointer to the user, or NULL if the user does not exist
516          */
517         User* FindNick(const std::string &nick);
518
519         /** Find a user in the nick hash.
520          * If the user cant be found in the nick hash check the uuid hash
521          * @param nick The nickname to find
522          * @return A pointer to the user, or NULL if the user does not exist
523          */
524         User* FindNick(const char* nick);
525
526         /** Find a user in the nick hash ONLY
527          */
528         User* FindNickOnly(const char* nick);
529
530         /** Find a user in the nick hash ONLY
531          */
532         User* FindNickOnly(const std::string &nick);
533
534         /** Find a channel in the channels hash
535          * @param chan The channel to find
536          * @return A pointer to the channel, or NULL if the channel does not exist
537          */
538         Channel* FindChan(const std::string &chan);
539
540         /** Find a channel in the channels hash
541          * @param chan The channel to find
542          * @return A pointer to the channel, or NULL if the channel does not exist
543          */
544         Channel* FindChan(const char* chan);
545
546         /** Check we aren't running as root, and exit if we are
547          * @return Depending on the configuration, this function may never return
548          */
549         void CheckRoot();
550
551         /** Determine the right path for, and open, the logfile
552          * @param argv The argv passed to main() initially, used to calculate program path
553          * @param argc The argc passed to main() initially, used to calculate program path
554          * @return True if the log could be opened, false if otherwise
555          */
556         bool OpenLog(char** argv, int argc);
557
558         /** Return true if a channel name is valid
559          * @param chname A channel name to verify
560          * @return True if the name is valid
561          */
562         caller2<bool, const char*, size_t> IsChannel;
563
564         /** Return true if str looks like a server ID
565          * @param string to check against
566          */
567         caller1<bool, const std::string&> IsSID;
568
569         /** Rehash the local server
570          */
571         caller1<void, const std::string&> Rehash;
572
573         /** Handles incoming signals after being set
574          * @param signal the signal recieved
575          */
576         void SignalHandler(int signal);
577
578         /** Sets the signal recieved
579          * @param signal the signal recieved
580          */
581         static void SetSignal(int signal);
582
583         /** Causes the server to exit after unloading modules and
584          * closing all open file descriptors.
585          *
586          * @param The exit code to give to the operating system
587          * (See the ExitStatus enum for valid values)
588          */
589         void Exit(int status);
590
591         /** Causes the server to exit immediately with exit code 0.
592          * The status code is required for signal handlers, and ignored.
593          */
594         static void QuickExit(int status);
595
596         /** Return a count of channels on the network
597          * @return The number of channels
598          */
599         long ChannelCount();
600
601         /** Send an error notice to all local users, opered and unopered
602          * @param s The error string to send
603          */
604         void SendError(const std::string &s);
605
606         /** Return true if a nickname is valid
607          * @param n A nickname to verify
608          * @return True if the nick is valid
609          */
610         caller2<bool, const char*, size_t> IsNick;
611
612         /** Return true if an ident is valid
613          * @param An ident to verify
614          * @return True if the ident is valid
615          */
616         caller1<bool, const char*> IsIdent;
617
618         /** Add a dns Resolver class to this server's active set
619          * @param r The resolver to add
620          * @param cached If this value is true, then the cache will
621          * be searched for the DNS result, immediately. If the value is
622          * false, then a request will be sent to the nameserver, and the
623          * result will not be immediately available. You should usually
624          * use the boolean value which you passed to the Resolver
625          * constructor, which Resolver will set appropriately depending
626          * on if cached results are available and haven't expired. It is
627          * however safe to force this value to false, forcing a remote DNS
628          * lookup, but not an update of the cache.
629          * @return True if the operation completed successfully. Note that
630          * if this method returns true, you should not attempt to access
631          * the resolver class you pass it after this call, as depending upon
632          * the request given, the object may be deleted!
633          */
634         bool AddResolver(Resolver* r, bool cached);
635
636         /** Add a command to this server's command parser
637          * @param f A Command command handler object to add
638          * @throw ModuleException Will throw ModuleExcption if the command already exists
639          */
640         void AddCommand(Command *f);
641
642         /** Send a modechange.
643          * The parameters provided are identical to that sent to the
644          * handler for class cmd_mode.
645          * @param parameters The mode parameters
646          * @param user The user to send error messages to
647          */
648         void SendMode(const std::vector<std::string>& parameters, User *user);
649
650         /** Match two strings using pattern matching, optionally, with a map
651          * to check case against (may be NULL). If map is null, match will be case insensitive.
652          * @param str The literal string to match against
653          * @param mask The glob pattern to match against.
654          */
655         static bool Match(const std::string &str, const std::string &mask, unsigned const char *map = NULL);
656         static bool Match(const  char *str, const char *mask, unsigned const char *map = NULL);
657
658         /** Match two strings using pattern matching, optionally, with a map
659          * to check case against (may be NULL). If map is null, match will be case insensitive.
660          * Supports CIDR patterns as well as globs.
661          * @param str The literal string to match against
662          * @param mask The glob or CIDR pattern to match against.
663          */
664         static bool MatchCIDR(const std::string &str, const std::string &mask, unsigned const char *map = NULL);
665         static bool MatchCIDR(const  char *str, const char *mask, unsigned const char *map = NULL);
666
667         /** Call the handler for a given command.
668          * @param commandname The command whos handler you wish to call
669          * @param parameters The mode parameters
670          * @param pcnt The number of items you have given in the first parameter
671          * @param user The user to execute the command as
672          * @return True if the command handler was called successfully
673          */
674         CmdResult CallCommandHandler(const std::string &commandname, const std::vector<std::string>& parameters, User* user);
675
676         /** Return true if the command is a module-implemented command and the given parameters are valid for it
677          * @param parameters The mode parameters
678          * @param pcnt The number of items you have given in the first parameter
679          * @param user The user to test-execute the command as
680          * @return True if the command handler is a module command, and there are enough parameters and the user has permission to the command
681          */
682         bool IsValidModuleCommand(const std::string &commandname, int pcnt, User* user);
683
684         /** Return true if the given parameter is a valid nick!user\@host mask
685          * @param mask A nick!user\@host masak to match against
686          * @return True i the mask is valid
687          */
688         bool IsValidMask(const std::string &mask);
689
690         /** Rehash the local server
691          */
692         void RehashServer();
693
694         /** Check if the given nickmask matches too many users, send errors to the given user
695          * @param nick A nickmask to match against
696          * @param user A user to send error text to
697          * @return True if the nick matches too many users
698          */
699         bool NickMatchesEveryone(const std::string &nick, User* user);
700
701         /** Check if the given IP mask matches too many users, send errors to the given user
702          * @param ip An ipmask to match against
703          * @param user A user to send error text to
704          * @return True if the ip matches too many users
705          */
706         bool IPMatchesEveryone(const std::string &ip, User* user);
707
708         /** Check if the given hostmask matches too many users, send errors to the given user
709          * @param mask A hostmask to match against
710          * @param user A user to send error text to
711          * @return True if the host matches too many users
712          */
713         bool HostMatchesEveryone(const std::string &mask, User* user);
714
715         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
716          * @param str A string containing a time in the form 1y2w3d4h6m5s
717          * (one year, two weeks, three days, four hours, six minutes and five seconds)
718          * @return The total number of seconds
719          */
720         long Duration(const std::string &str);
721
722         /** Attempt to compare a password to a string from the config file.
723          * This will be passed to handling modules which will compare the data
724          * against possible hashed equivalents in the input string.
725          * @param ex The object (user, server, whatever) causing the comparison.
726          * @param data The data from the config file
727          * @param input The data input by the oper
728          * @param hashtype The hash from the config file
729          * @return 0 if the strings match, 1 or -1 if they do not
730          */
731         int PassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype);
732
733         /** Check if a given server is a uline.
734          * An empty string returns true, this is by design.
735          * @param server The server to check for uline status
736          * @return True if the server is a uline OR the string is empty
737          */
738         bool ULine(const std::string& server);
739
740         /** Returns true if the uline is 'silent' (doesnt generate
741          * remote connect notices etc).
742          */
743         bool SilentULine(const std::string& server);
744
745         /** Returns the subversion revision ID of this ircd
746          * @return The revision ID or an empty string
747          */
748         std::string GetRevision();
749
750         /** Returns the full version string of this ircd
751          * @return The version string
752          */
753         std::string GetVersionString();
754
755         /** Attempt to write the process id to a given file
756          * @param filename The PID file to attempt to write to
757          * @return This function may bail if the file cannot be written
758          */
759         void WritePID(const std::string &filename);
760
761         /** This constructor initialises all the subsystems and reads the config file.
762          * @param argc The argument count passed to main()
763          * @param argv The argument list passed to main()
764          * @throw <anything> If anything is thrown from here and makes it to
765          * you, you should probably just give up and go home. Yes, really.
766          * It's that bad. Higher level classes should catch any non-fatal exceptions.
767          */
768         InspIRCd(int argc, char** argv);
769
770         /** Send a line of WHOIS data to a user.
771          * @param user user to send the line to
772          * @param dest user being WHOISed
773          * @param numeric Numeric to send
774          * @param text Text of the numeric
775          */
776         void SendWhoisLine(User* user, User* dest, int numeric, const std::string &text);
777
778         /** Send a line of WHOIS data to a user.
779          * @param user user to send the line to
780          * @param dest user being WHOISed
781          * @param numeric Numeric to send
782          * @param format Format string for the numeric
783          * @param ... Parameters for the format string
784          */
785         void SendWhoisLine(User* user, User* dest, int numeric, const char* format, ...) CUSTOM_PRINTF(5, 6);
786
787         /** Handle /STATS
788          */
789         void DoStats(char statschar, User* user, string_list &results);
790
791         /** Handle /WHOIS
792          */
793         void DoWhois(User* user, User* dest,unsigned long signon, unsigned long idle, const char* nick);
794
795         /** Quit a user for excess flood, and if they are not
796          * fully registered yet, temporarily zline their IP.
797          * @param current user to quit
798          */
799         caller1<void, User*> FloodQuitUser;
800
801         /** Restart the server.
802          * This function will not return. If an error occurs,
803          * it will throw an instance of CoreException.
804          * @param reason The restart reason to show to all clients
805          * @throw CoreException An instance of CoreException indicating the error from execv().
806          */
807         void Restart(const std::string &reason);
808
809         /** Prepare the ircd for restart or shutdown.
810          * This function unloads all modules which can be unloaded,
811          * closes all open sockets, and closes the logfile.
812          */
813         void Cleanup();
814
815         /** This copies the user and channel hash_maps into new hash maps.
816          * This frees memory used by the hash_map allocator (which it neglects
817          * to free, most of the time, using tons of ram)
818          */
819         void RehashUsersAndChans();
820
821         /** Resets the cached max bans value on all channels.
822          * Called by rehash.
823          */
824         void ResetMaxBans();
825
826         /** Return a time_t as a human-readable string.
827          */
828         std::string TimeString(time_t curtime);
829
830         /** Begin execution of the server.
831          * NOTE: this function NEVER returns. Internally,
832          * it will repeatedly loop.
833          * @return The return value for this function is undefined.
834          */
835         int Run();
836
837         /** Adds an extban char to the 005 token.
838          */
839         void AddExtBanChar(char c);
840
841         char* GetReadBuffer()
842         {
843                 return this->ReadBuffer;
844         }
845 };
846
847 ENTRYPOINT;
848
849 template<class Cmd>
850 class CommandModule : public Module
851 {
852         Cmd cmd;
853  public:
854         CommandModule() : cmd(this)
855         {
856                 ServerInstance->AddCommand(&cmd);
857         }
858
859         Version GetVersion()
860         {
861                 return Version(cmd.command, VF_VENDOR|VF_CORE);
862         }
863 };
864
865 #endif