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