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