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