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