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