]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
9c9609530b0cc867e8be250be0750ae61b3b0d8a
[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 nick The nickname to find
352          * @return A pointer to the user, or NULL if the user does not exist
353          */
354         User* FindUUID(const std::string &);
355
356         /** Find a user in the UUID hash
357          * @param nick The nickname to find
358          * @return A pointer to the user, or NULL if the user does not exist
359          */
360         User* FindUUID(const char *);
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          * @return True if the port was bound successfully
502          */
503         bool BindSocket(int sockfd, int port, const char* addr, bool dolisten = true);
504
505         /** Gets the GECOS (description) field of the given server.
506          * If the servername is not that of the local server, the name
507          * is passed to handling modules which will attempt to determine
508          * the GECOS that bleongs to the given servername.
509          * @param servername The servername to find the description of
510          * @return The description of this server, or of the local server
511          */
512         std::string GetServerDescription(const std::string& servername);
513
514         /** Find a user in the nick hash.
515          * If the user cant be found in the nick hash check the uuid hash
516          * @param nick The nickname to find
517          * @return A pointer to the user, or NULL if the user does not exist
518          */
519         User* FindNick(const std::string &nick);
520
521         /** Find a user in the nick hash.
522          * If the user cant be found in the nick hash check the uuid hash
523          * @param nick The nickname to find
524          * @return A pointer to the user, or NULL if the user does not exist
525          */
526         User* FindNick(const char* nick);
527
528         /** Find a user in the nick hash ONLY
529          */
530         User* FindNickOnly(const char* nick);
531
532         /** Find a user in the nick hash ONLY
533          */
534         User* FindNickOnly(const std::string &nick);
535
536         /** Find a channel in the channels hash
537          * @param chan The channel to find
538          * @return A pointer to the channel, or NULL if the channel does not exist
539          */
540         Channel* FindChan(const std::string &chan);
541
542         /** Find a channel in the channels hash
543          * @param chan The channel to find
544          * @return A pointer to the channel, or NULL if the channel does not exist
545          */
546         Channel* FindChan(const char* chan);
547
548         /** Check we aren't running as root, and exit if we are
549          * @return Depending on the configuration, this function may never return
550          */
551         void CheckRoot();
552
553         /** Determine the right path for, and open, the logfile
554          * @param argv The argv passed to main() initially, used to calculate program path
555          * @param argc The argc passed to main() initially, used to calculate program path
556          * @return True if the log could be opened, false if otherwise
557          */
558         bool OpenLog(char** argv, int argc);
559
560         /** Return true if a channel name is valid
561          * @param chname A channel name to verify
562          * @return True if the name is valid
563          */
564         caller2<bool, const char*, size_t> IsChannel;
565
566         /** Return true if str looks like a server ID
567          * @param string to check against
568          */
569         caller1<bool, const std::string&> IsSID;
570
571         /** Rehash the local server
572          */
573         caller1<void, const std::string&> Rehash;
574
575         /** Handles incoming signals after being set
576          * @param signal the signal recieved
577          */
578         void SignalHandler(int signal);
579
580         /** Sets the signal recieved
581          * @param signal the signal recieved
582          */
583         static void SetSignal(int signal);
584
585         /** Causes the server to exit after unloading modules and
586          * closing all open file descriptors.
587          *
588          * @param The exit code to give to the operating system
589          * (See the ExitStatus enum for valid values)
590          */
591         void Exit(int status);
592
593         /** Causes the server to exit immediately with exit code 0.
594          * The status code is required for signal handlers, and ignored.
595          */
596         static void QuickExit(int status);
597
598         /** Return a count of channels on the network
599          * @return The number of channels
600          */
601         long ChannelCount();
602
603         /** Send an error notice to all local users, opered and unopered
604          * @param s The error string to send
605          */
606         void SendError(const std::string &s);
607
608         /** Return true if a nickname is valid
609          * @param n A nickname to verify
610          * @return True if the nick is valid
611          */
612         caller2<bool, const char*, size_t> IsNick;
613
614         /** Return true if an ident is valid
615          * @param An ident to verify
616          * @return True if the ident is valid
617          */
618         caller1<bool, const char*> IsIdent;
619
620         /** Add a dns Resolver class to this server's active set
621          * @param r The resolver to add
622          * @param cached If this value is true, then the cache will
623          * be searched for the DNS result, immediately. If the value is
624          * false, then a request will be sent to the nameserver, and the
625          * result will not be immediately available. You should usually
626          * use the boolean value which you passed to the Resolver
627          * constructor, which Resolver will set appropriately depending
628          * on if cached results are available and haven't expired. It is
629          * however safe to force this value to false, forcing a remote DNS
630          * lookup, but not an update of the cache.
631          * @return True if the operation completed successfully. Note that
632          * if this method returns true, you should not attempt to access
633          * the resolver class you pass it after this call, as depending upon
634          * the request given, the object may be deleted!
635          */
636         bool AddResolver(Resolver* r, bool cached);
637
638         /** Add a command to this server's command parser
639          * @param f A Command command handler object to add
640          * @throw ModuleException Will throw ModuleExcption if the command already exists
641          */
642         inline void AddCommand(Command *f)
643         {
644                 Modules->AddService(*f);
645         }
646
647         /** Send a modechange.
648          * The parameters provided are identical to that sent to the
649          * handler for class cmd_mode.
650          * @param parameters The mode parameters
651          * @param user The user to send error messages to
652          */
653         void SendMode(const std::vector<std::string>& parameters, User *user);
654
655         /** Send a modechange and route it to the network.
656          * The parameters provided are identical to that sent to the
657          * handler for class cmd_mode.
658          * @param parameters The mode parameters
659          * @param user The user to send error messages to
660          */
661         void SendGlobalMode(const std::vector<std::string>& parameters, User *user);
662
663         /** Match two strings using pattern matching, optionally, with a map
664          * to check case against (may be NULL). If map is null, match will be case insensitive.
665          * @param str The literal string to match against
666          * @param mask The glob pattern to match against.
667          */
668         static bool Match(const std::string &str, const std::string &mask, unsigned const char *map = NULL);
669         static bool Match(const  char *str, const char *mask, unsigned const char *map = NULL);
670
671         /** Match two strings using pattern matching, optionally, with a map
672          * to check case against (may be NULL). If map is null, match will be case insensitive.
673          * Supports CIDR patterns as well as globs.
674          * @param str The literal string to match against
675          * @param mask The glob or CIDR pattern to match against.
676          */
677         static bool MatchCIDR(const std::string &str, const std::string &mask, unsigned const char *map = NULL);
678         static bool MatchCIDR(const  char *str, const char *mask, unsigned const char *map = NULL);
679
680         /** Call the handler for a given command.
681          * @param commandname The command whos handler you wish to call
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 execute the command as
685          * @return True if the command handler was called successfully
686          */
687         CmdResult CallCommandHandler(const std::string &commandname, const std::vector<std::string>& parameters, User* user);
688
689         /** Return true if the command is a module-implemented command and the given parameters are valid for it
690          * @param parameters The mode parameters
691          * @param pcnt The number of items you have given in the first parameter
692          * @param user The user to test-execute the command as
693          * @return True if the command handler is a module command, and there are enough parameters and the user has permission to the command
694          */
695         bool IsValidModuleCommand(const std::string &commandname, int pcnt, User* user);
696
697         /** Return true if the given parameter is a valid nick!user\@host mask
698          * @param mask A nick!user\@host masak to match against
699          * @return True i the mask is valid
700          */
701         bool IsValidMask(const std::string &mask);
702
703         /** Rehash the local server
704          */
705         void RehashServer();
706
707         /** Check if the given nickmask matches too many users, send errors to the given user
708          * @param nick A nickmask to match against
709          * @param user A user to send error text to
710          * @return True if the nick matches too many users
711          */
712         bool NickMatchesEveryone(const std::string &nick, User* user);
713
714         /** Check if the given IP mask matches too many users, send errors to the given user
715          * @param ip An ipmask to match against
716          * @param user A user to send error text to
717          * @return True if the ip matches too many users
718          */
719         bool IPMatchesEveryone(const std::string &ip, User* user);
720
721         /** Check if the given hostmask matches too many users, send errors to the given user
722          * @param mask A hostmask to match against
723          * @param user A user to send error text to
724          * @return True if the host matches too many users
725          */
726         bool HostMatchesEveryone(const std::string &mask, User* user);
727
728         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
729          * @param str A string containing a time in the form 1y2w3d4h6m5s
730          * (one year, two weeks, three days, four hours, six minutes and five seconds)
731          * @return The total number of seconds
732          */
733         long Duration(const std::string &str);
734
735         /** Attempt to compare a password to a string from the config file.
736          * This will be passed to handling modules which will compare the data
737          * against possible hashed equivalents in the input string.
738          * @param ex The object (user, server, whatever) causing the comparison.
739          * @param data The data from the config file
740          * @param input The data input by the oper
741          * @param hashtype The hash from the config file
742          * @return 0 if the strings match, 1 or -1 if they do not
743          */
744         int PassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype);
745
746         /** Check if a given server is a uline.
747          * An empty string returns true, this is by design.
748          * @param server The server to check for uline status
749          * @return True if the server is a uline OR the string is empty
750          */
751         bool ULine(const std::string& server);
752
753         /** Returns true if the uline is 'silent' (doesnt generate
754          * remote connect notices etc).
755          */
756         bool SilentULine(const std::string& server);
757
758         /** Returns the full version string of this ircd
759          * @return The version string
760          */
761         std::string GetVersionString(bool rawversion = false);
762
763         /** Attempt to write the process id to a given file
764          * @param filename The PID file to attempt to write to
765          * @return This function may bail if the file cannot be written
766          */
767         void WritePID(const std::string &filename);
768
769         /** This constructor initialises all the subsystems and reads the config file.
770          * @param argc The argument count passed to main()
771          * @param argv The argument list passed to main()
772          * @throw <anything> If anything is thrown from here and makes it to
773          * you, you should probably just give up and go home. Yes, really.
774          * It's that bad. Higher level classes should catch any non-fatal exceptions.
775          */
776         InspIRCd(int argc, char** argv);
777
778         /** Send a line of WHOIS data to a user.
779          * @param user user to send the line to
780          * @param dest user being WHOISed
781          * @param numeric Numeric to send
782          * @param text Text of the numeric
783          */
784         void SendWhoisLine(User* user, User* dest, int numeric, const std::string &text);
785
786         /** Send a line of WHOIS data to a user.
787          * @param user user to send the line to
788          * @param dest user being WHOISed
789          * @param numeric Numeric to send
790          * @param format Format string for the numeric
791          * @param ... Parameters for the format string
792          */
793         void SendWhoisLine(User* user, User* dest, int numeric, const char* format, ...) CUSTOM_PRINTF(5, 6);
794
795         /** Handle /STATS
796          */
797         void DoStats(char statschar, User* user, string_list &results);
798
799         /** Handle /WHOIS
800          */
801         void DoWhois(User* user, User* dest,unsigned long signon, unsigned long idle, const char* nick);
802
803         /** Quit a user for excess flood, and if they are not
804          * fully registered yet, temporarily zline their IP.
805          * @param current user to quit
806          */
807         caller1<void, User*> FloodQuitUser;
808
809         /** Called to check whether a channel restriction mode applies to a user
810          * @param User that is attempting some action
811          * @param Channel that the action is being performed on
812          * @param Action name
813          */
814         caller3<ModResult, User*, Channel*, const std::string&> OnCheckExemption;
815
816         /** Restart the server.
817          * This function will not return. If an error occurs,
818          * it will throw an instance of CoreException.
819          * @param reason The restart reason to show to all clients
820          * @throw CoreException An instance of CoreException indicating the error from execv().
821          */
822         void Restart(const std::string &reason);
823
824         /** Prepare the ircd for restart or shutdown.
825          * This function unloads all modules which can be unloaded,
826          * closes all open sockets, and closes the logfile.
827          */
828         void Cleanup();
829
830         /** This copies the user and channel hash_maps into new hash maps.
831          * This frees memory used by the hash_map allocator (which it neglects
832          * to free, most of the time, using tons of ram)
833          */
834         void RehashUsersAndChans();
835
836         /** Resets the cached max bans value on all channels.
837          * Called by rehash.
838          */
839         void ResetMaxBans();
840
841         /** Return a time_t as a human-readable string.
842          */
843         std::string TimeString(time_t curtime);
844
845         /** Begin execution of the server.
846          * NOTE: this function NEVER returns. Internally,
847          * it will repeatedly loop.
848          * @return The return value for this function is undefined.
849          */
850         int Run();
851
852         /** Adds an extban char to the 005 token.
853          */
854         void AddExtBanChar(char c);
855
856         char* GetReadBuffer()
857         {
858                 return this->ReadBuffer;
859         }
860
861         friend class TestSuite;
862 };
863
864 ENTRYPOINT;
865
866 template<class Cmd>
867 class CommandModule : public Module
868 {
869         Cmd cmd;
870  public:
871         CommandModule() : cmd(this)
872         {
873         }
874
875         void init()
876         {
877                 ServerInstance->Modules->AddService(cmd);
878         }
879
880         Version GetVersion()
881         {
882                 return Version(cmd.name, VF_VENDOR|VF_CORE);
883         }
884 };
885
886 #endif