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