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