]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
Various rehash fixes that it seems were introduced by untested code.
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __INSPIRCD_H__
15 #define __INSPIRCD_H__
16
17 #define _FILE_OFFSET_BITS 64
18 #ifndef _LARGEFILE_SOURCE
19 #define _LARGEFILE_SOURCE
20 #endif
21
22 #ifndef WIN32
23 #define DllExport
24 #define CoreExport
25 #define printf_c printf
26 #else
27 #include "inspircd_win32wrapper.h"
28 /** Windows defines these already */
29 #undef DELETE
30 #undef ERROR
31 #endif
32
33 #ifdef __GNUC__
34 #define CUSTOM_PRINTF(STRING, FIRST) __attribute__((format(printf, STRING, FIRST)))
35 #else
36 #define CUSTOM_PRINTF(STRING, FIRST)
37 #endif
38
39 // Required system headers.
40 #include <ctime>
41 #include <cstdarg>
42 #include <algorithm>
43 #include <cmath>
44 #include <cstring>
45 #include <climits>
46 #include <cstdio>
47
48 #include <sstream>
49 #include <string>
50 #include <vector>
51 #include <list>
52 #include <deque>
53 #include <map>
54 #include <bitset>
55 #include <set>
56
57 /** A list of failed port bindings, used for informational purposes on startup */
58 typedef std::vector<std::pair<std::string, std::string> > FailedPortList;
59
60 /** A cached text file stored with its contents as lines
61  */
62 typedef std::deque< std::string > file_cache;
63
64 /** A configuration key and value pair
65  */
66 typedef std::pair< std::string, std::string > KeyVal;
67
68 /** A list of related configuration keys and values
69  */
70 typedef std::vector< KeyVal > KeyValList;
71
72 /** An entire config file, built up of KeyValLists
73  */
74 typedef std::multimap< std::string, KeyValList > ConfigDataHash;
75
76 #include "inspircd_config.h"
77 #include "numerics.h"
78 #include "uid.h"
79 #include "users.h"
80 #include "channels.h"
81 #include "timer.h"
82 #include "hashcomp.h"
83 #include "typedefs.h"
84 #include "logger.h"
85 #include "usermanager.h"
86 #include "socket.h"
87 #include "ctables.h"
88 #include "command_parse.h"
89 #include "mode.h"
90 #include "socketengine.h"
91 #include "snomasks.h"
92 #include "cull_list.h"
93 #include "filelogger.h"
94 #include "caller.h"
95 #include "modules.h"
96 #include "configreader.h"
97 #include "inspstring.h"
98 #include "protocol.h"
99 #include "threadengine.h"
100 #include "fakeuser.h"
101
102 #ifndef PATH_MAX
103 #warning Potentially broken system, PATH_MAX undefined
104 #define PATH_MAX 4096
105 #endif
106
107 /**
108  * Used to define the maximum number of parameters a command may have.
109  */
110 #define MAXPARAMETERS 127
111
112 /** Returned by some functions to indicate failure.
113  */
114 #define ERROR -1
115
116 /** Support for librodent -
117  * see http://www.chatspike.net/index.php?z=64
118  */
119 #define ETIREDHAMSTERS EAGAIN
120
121 /** Template function to convert any input type to std::string
122  */
123 template<typename T> inline std::string ConvNumeric(const T &in)
124 {
125         if (in == 0) return "0";
126         char res[MAXBUF];
127         char* out = res;
128         T quotient = in;
129         while (quotient) {
130                 *out = "0123456789"[ std::abs( (long)quotient % 10 ) ];
131                 ++out;
132                 quotient /= 10;
133         }
134         if (in < 0)
135                 *out++ = '-';
136         *out = 0;
137         std::reverse(res,out);
138         return res;
139 }
140
141 /** Template function to convert any input type to std::string
142  */
143 inline std::string ConvToStr(const int in)
144 {
145         return ConvNumeric(in);
146 }
147
148 /** Template function to convert any input type to std::string
149  */
150 inline std::string ConvToStr(const long in)
151 {
152         return ConvNumeric(in);
153 }
154
155 /** Template function to convert any input type to std::string
156  */
157 inline std::string ConvToStr(const char* in)
158 {
159         return in;
160 }
161
162 /** Template function to convert any input type to std::string
163  */
164 inline std::string ConvToStr(const bool in)
165 {
166         return (in ? "1" : "0");
167 }
168
169 /** Template function to convert any input type to std::string
170  */
171 inline std::string ConvToStr(char in)
172 {
173         return std::string(in,1);
174 }
175
176 /** Template function to convert any input type to std::string
177  */
178 template <class T> inline std::string ConvToStr(const T &in)
179 {
180         std::stringstream tmp;
181         if (!(tmp << in)) return std::string();
182         return tmp.str();
183 }
184
185 /** Template function to convert any input type to any other type
186  * (usually an integer or numeric type)
187  */
188 template<typename T> inline long ConvToInt(const T &in)
189 {
190         std::stringstream tmp;
191         if (!(tmp << in)) return 0;
192         return atoi(tmp.str().c_str());
193 }
194
195 /** Template function to convert integer to char, storing result in *res and
196  * also returning the pointer to res. Based on Stuart Lowe's C/C++ Pages.
197  * @param T input value
198  * @param V result value
199  * @param R base to convert to
200  */
201 template<typename T, typename V, typename R> inline char* itoa(const T &in, V *res, R base)
202 {
203         if (base < 2 || base > 16) { *res = 0; return res; }
204         char* out = res;
205         int quotient = in;
206         while (quotient) {
207                 *out = "0123456789abcdef"[ std::abs( quotient % base ) ];
208                 ++out;
209                 quotient /= base;
210         }
211         if ( in < 0 && base == 10) *out++ = '-';
212         std::reverse( res, out );
213         *out = 0;
214         return res;
215 }
216
217 /** This class contains various STATS counters
218  * It is used by the InspIRCd class, which internally
219  * has an instance of it.
220  */
221 class serverstats : public classbase
222 {
223   public:
224         /** Number of accepted connections
225          */
226         unsigned long statsAccept;
227         /** Number of failed accepts
228          */
229         unsigned long statsRefused;
230         /** Number of unknown commands seen
231          */
232         unsigned long statsUnknown;
233         /** Number of nickname collisions handled
234          */
235         unsigned long statsCollisions;
236         /** Number of DNS queries sent out
237          */
238         unsigned long statsDns;
239         /** Number of good DNS replies received
240          * NOTE: This may not tally to the number sent out,
241          * due to timeouts and other latency issues.
242          */
243         unsigned long statsDnsGood;
244         /** Number of bad (negative) DNS replies received
245          * NOTE: This may not tally to the number sent out,
246          * due to timeouts and other latency issues.
247          */
248         unsigned long statsDnsBad;
249         /** Number of inbound connections seen
250          */
251         unsigned long statsConnects;
252         /** Total bytes of data transmitted
253          */
254         double statsSent;
255         /** Total bytes of data received
256          */
257         double statsRecv;
258         /** Cpu usage at last sample
259          */
260         timeval LastCPU;
261         /** Time last sample was read
262          */
263         timeval LastSampled;
264         /** The constructor initializes all the counts to zero
265          */
266         serverstats()
267                 : statsAccept(0), statsRefused(0), statsUnknown(0), statsCollisions(0), statsDns(0),
268                 statsDnsGood(0), statsDnsBad(0), statsConnects(0), statsSent(0.0), statsRecv(0.0)
269         {
270         }
271 };
272
273 class InspIRCd;
274
275 DEFINE_HANDLER1(ProcessUserHandler, void, User*);
276 DEFINE_HANDLER2(IsNickHandler, bool, const char*, size_t);
277 DEFINE_HANDLER1(IsIdentHandler, bool, const char*);
278 DEFINE_HANDLER1(FloodQuitUserHandler, void, User*);
279 DEFINE_HANDLER2(IsChannelHandler, bool, const char*, size_t);
280 DEFINE_HANDLER1(IsSIDHandler, bool, const std::string&);
281 DEFINE_HANDLER1(RehashHandler, void, const std::string&);
282
283 /* Forward declaration - required */
284 class XLineManager;
285 class BanCacheManager;
286
287 /** The background thread for config reading, so that reading from executable includes
288  * does not block.
289  */
290 class CoreExport ConfigReaderThread : public Thread
291 {
292         InspIRCd* ServerInstance;
293         ServerConfig* Config;
294         bool done;
295  public:
296         std::string TheUserUID;
297         ConfigReaderThread(InspIRCd* Instance, const std::string &useruid)
298                 : Thread(), ServerInstance(Instance), done(false), TheUserUID(useruid)
299         {
300         }
301
302         virtual ~ConfigReaderThread()
303         {
304         }
305
306         void Run();
307         /** Run in the main thread to apply the configuration */
308         void Finish();
309         bool IsDone() { return done; }
310 };
311
312 /** The main class of the irc server.
313  * This class contains instances of all the other classes
314  * in this software, with the exception of the base class,
315  * classbase. Amongst other things, it contains a ModeParser,
316  * a DNS object, a CommandParser object, and a list of active
317  * Module objects, and facilities for Module objects to
318  * interact with the core system it implements.
319  */
320 class CoreExport InspIRCd : public classbase
321 {
322  private:
323         /** Holds the current UID. Used to generate the next one.
324          */
325         char current_uid[UUID_LENGTH];
326
327         /** Set up the signal handlers
328          */
329         void SetSignals();
330
331         /** Daemonize the ircd and close standard input/output streams
332          * @return True if the program daemonized succesfully
333          */
334         bool DaemonSeed();
335
336         /** Iterate the list of BufferedSocket objects, removing ones which have timed out
337          * @param TIME the current time
338          */
339         void DoSocketTimeouts(time_t TIME);
340
341         /** Increments the current UID by one.
342          */
343         void IncrementUID(int pos);
344
345         /** Perform background user events such as PING checks
346          */
347         void DoBackgroundUserStuff();
348
349         /** Returns true when all modules have done pre-registration checks on a user
350          * @param user The user to verify
351          * @return True if all modules have finished checking this user
352          */
353         bool AllModulesReportReady(User* user);
354
355         /** Logfile pathname specified on the commandline, or empty string
356          */
357         char LogFileName[MAXBUF];
358
359         /** The current time, updated in the mainloop
360          */
361         time_t TIME;
362
363         /** The time that was recorded last time around the mainloop
364          */
365         time_t OLDTIME;
366
367         /** A 64k buffer used to read socket data into
368          * NOTE: update ValidateNetBufferSize if you change this
369          */
370         char ReadBuffer[65535];
371
372         /** Used when connecting clients
373          */
374         irc::sockets::insp_sockaddr client, server;
375
376         /** Used when connecting clients
377          */
378         socklen_t length;
379
380 #ifdef WIN32
381         IPC* WindowsIPC;
382 #endif
383
384  public:
385
386         /** Global cull list, will be processed on next iteration
387          */
388         CullList GlobalCulls;
389
390         /**** Functors ****/
391
392         ProcessUserHandler HandleProcessUser;
393         IsNickHandler HandleIsNick;
394         IsIdentHandler HandleIsIdent;
395         FloodQuitUserHandler HandleFloodQuitUser;
396         IsChannelHandler HandleIsChannel;
397         IsSIDHandler HandleIsSID;
398         RehashHandler HandleRehash;
399
400         /** BufferedSocket classes pending deletion after being closed.
401          * We don't delete these immediately as this may cause a segmentation fault.
402          */
403         std::map<BufferedSocket*,BufferedSocket*> SocketCull;
404
405         /** 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
406          * Reason for it:
407          * kludge alert!
408          * SendMode expects a User* to send the numeric replies
409          * back to, so we create it a fake user that isnt in the user
410          * hash and set its descriptor to FD_MAGIC_NUMBER so the data
411          * falls into the abyss :p
412          */
413         FakeUser* FakeClient;
414
415         /** Returns the next available UID for this server.
416          */
417         std::string GetUID();
418
419         /** Find a user in the UUID hash
420          * @param nick The nickname to find
421          * @return A pointer to the user, or NULL if the user does not exist
422          */
423         User* FindUUID(const std::string &);
424
425         /** Find a user in the UUID hash
426          * @param nick The nickname to find
427          * @return A pointer to the user, or NULL if the user does not exist
428          */
429         User* FindUUID(const char *);
430
431         /** Build the ISUPPORT string by triggering all modules On005Numeric events
432          */
433         void BuildISupport();
434
435         /** List of server names we've seen.
436          */
437         servernamelist servernames;
438
439         /** Time this ircd was booted
440          */
441         time_t startup_time;
442
443         /** Config file pathname specified on the commandline or via ./configure
444          */
445         char ConfigFileName[MAXBUF];
446
447         /** Mode handler, handles mode setting and removal
448          */
449         ModeParser* Modes;
450
451         /** Command parser, handles client to server commands
452          */
453         CommandParser* Parser;
454
455         /** Socket engine, handles socket activity events
456          */
457         SocketEngine* SE;
458
459         /** Thread engine, Handles threading where required
460          */
461         ThreadEngine* Threads;
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         /** List of the open ports
515          */
516         std::vector<ListenSocketBase *> ports;
517
518         /** Set to the current signal recieved
519          */
520         int s_signal;
521
522         /** Protocol interface, overridden by server protocol modules
523          */
524         ProtocolInterface* PI;
525
526         /** Get the current time
527          * Because this only calls time() once every time around the mainloop,
528          * it is much faster than calling time() directly.
529          * @return The current time as an epoch value (time_t)
530          */
531         time_t Time();
532
533         /** Process a user whos socket has been flagged as active
534          * @param cu The user to process
535          * @return There is no actual return value, however upon exit, the user 'cu' may have been
536          * marked for deletion in the global CullList.
537          */
538         caller1<void, User*> ProcessUser;
539
540         /** Bind all ports specified in the configuration file.
541          * @return The number of ports bound without error
542          */
543         int BindPorts(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         /** Add a dns Resolver class to this server's active set
692          * @param r The resolver to add
693          * @param cached If this value is true, then the cache will
694          * be searched for the DNS result, immediately. If the value is
695          * false, then a request will be sent to the nameserver, and the
696          * result will not be immediately available. You should usually
697          * use the boolean value which you passed to the Resolver
698          * constructor, which Resolver will set appropriately depending
699          * on if cached results are available and haven't expired. It is
700          * however safe to force this value to false, forcing a remote DNS
701          * lookup, but not an update of the cache.
702          * @return True if the operation completed successfully. Note that
703          * if this method returns true, you should not attempt to access
704          * the resolver class you pass it after this call, as depending upon
705          * the request given, the object may be deleted!
706          */
707         bool AddResolver(Resolver* r, bool cached);
708
709         /** Add a command to this server's command parser
710          * @param f A Command command handler object to add
711          * @throw ModuleException Will throw ModuleExcption if the command already exists
712          */
713         void AddCommand(Command *f);
714
715         /** Send a modechange.
716          * The parameters provided are identical to that sent to the
717          * handler for class cmd_mode.
718          * @param parameters The mode parameters
719          * @param user The user to send error messages to
720          */
721         void SendMode(const std::vector<std::string>& parameters, User *user);
722
723         /** Match two strings using pattern matching, optionally, with a map
724          * to check case against (may be NULL). If map is null, match will be case insensitive.
725          * @param str The literal string to match against
726          * @param mask The glob pattern to match against.
727          */
728         static bool Match(const std::string &str, const std::string &mask, unsigned const char *map = NULL);
729         static bool Match(const  char *str, const char *mask, unsigned const char *map = NULL);
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          * Supports CIDR patterns as well as globs.
734          * @param str The literal string to match against
735          * @param mask The glob or CIDR pattern to match against.
736          */
737         static bool MatchCIDR(const std::string &str, const std::string &mask, unsigned const char *map = NULL);
738         static bool MatchCIDR(const  char *str, const char *mask, unsigned const char *map = NULL);
739
740         /** Call the handler for a given command.
741          * @param commandname The command whos handler you wish to call
742          * @param parameters The mode parameters
743          * @param pcnt The number of items you have given in the first parameter
744          * @param user The user to execute the command as
745          * @return True if the command handler was called successfully
746          */
747         CmdResult CallCommandHandler(const std::string &commandname, const std::vector<std::string>& parameters, User* user);
748
749         /** Return true if the command is a module-implemented command and the given parameters are valid for it
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 test-execute the command as
753          * @return True if the command handler is a module command, and there are enough parameters and the user has permission to the command
754          */
755         bool IsValidModuleCommand(const std::string &commandname, int pcnt, User* user);
756
757         /** Return true if the given parameter is a valid nick!user\@host mask
758          * @param mask A nick!user\@host masak to match against
759          * @return True i the mask is valid
760          */
761         bool IsValidMask(const std::string &mask);
762
763         /** Rehash the local server
764          */
765         void RehashServer();
766
767         /** Return the channel whos index number matches that provided
768          * @param The index number of the channel to fetch
769          * @return A channel record, or NUll if index < 0 or index >= InspIRCd::ChannelCount()
770          */
771         Channel* GetChannelIndex(long index);
772
773         /** Dump text to a user target, splitting it appropriately to fit
774          * @param User the user to dump the text to
775          * @param LinePrefix text to prefix each complete line with
776          * @param TextStream the text to send to the user
777          */
778         void DumpText(User* User, const std::string &LinePrefix, std::stringstream &TextStream);
779
780         /** Check if the given nickmask matches too many users, send errors to the given user
781          * @param nick A nickmask to match against
782          * @param user A user to send error text to
783          * @return True if the nick matches too many users
784          */
785         bool NickMatchesEveryone(const std::string &nick, User* user);
786
787         /** Check if the given IP mask matches too many users, send errors to the given user
788          * @param ip An ipmask to match against
789          * @param user A user to send error text to
790          * @return True if the ip matches too many users
791          */
792         bool IPMatchesEveryone(const std::string &ip, User* user);
793
794         /** Check if the given hostmask matches too many users, send errors to the given user
795          * @param mask A hostmask to match against
796          * @param user A user to send error text to
797          * @return True if the host matches too many users
798          */
799         bool HostMatchesEveryone(const std::string &mask, User* user);
800
801         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
802          * @param str A string containing a time in the form 1y2w3d4h6m5s
803          * (one year, two weeks, three days, four hours, six minutes and five seconds)
804          * @return The total number of seconds
805          */
806         long Duration(const std::string &str);
807
808         /** Attempt to compare a password to a string from the config file.
809          * This will be passed to handling modules which will compare the data
810          * against possible hashed equivalents in the input string.
811          * @param ex The object (user, server, whatever) causing the comparison.
812          * @param data The data from the config file
813          * @param input The data input by the oper
814          * @param hashtype The hash from the config file
815          * @return 0 if the strings match, 1 or -1 if they do not
816          */
817         int PassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype);
818
819         /** Check if a given server is a uline.
820          * An empty string returns true, this is by design.
821          * @param server The server to check for uline status
822          * @return True if the server is a uline OR the string is empty
823          */
824         bool ULine(const char* server);
825
826         /** Returns true if the uline is 'silent' (doesnt generate
827          * remote connect notices etc).
828          */
829         bool SilentULine(const char* server);
830
831         /** Returns the subversion revision ID of this ircd
832          * @return The revision ID or an empty string
833          */
834         std::string GetRevision();
835
836         /** Returns the full version string of this ircd
837          * @return The version string
838          */
839         std::string GetVersionString();
840
841         /** Attempt to write the process id to a given file
842          * @param filename The PID file to attempt to write to
843          * @return This function may bail if the file cannot be written
844          */
845         void WritePID(const std::string &filename);
846
847         /** This constructor initialises all the subsystems and reads the config file.
848          * @param argc The argument count passed to main()
849          * @param argv The argument list passed to main()
850          * @throw <anything> If anything is thrown from here and makes it to
851          * you, you should probably just give up and go home. Yes, really.
852          * It's that bad. Higher level classes should catch any non-fatal exceptions.
853          */
854         InspIRCd(int argc, char** argv);
855
856         /** Send a line of WHOIS data to a user.
857          * @param user user to send the line to
858          * @param dest user being WHOISed
859          * @param numeric Numeric to send
860          * @param text Text of the numeric
861          */
862         void SendWhoisLine(User* user, User* dest, int numeric, const std::string &text);
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 format Format string for the numeric
869          * @param ... Parameters for the format string
870          */
871         void SendWhoisLine(User* user, User* dest, int numeric, const char* format, ...) CUSTOM_PRINTF(5, 6);
872
873         /** Quit a user for excess flood, and if they are not
874          * fully registered yet, temporarily zline their IP.
875          * @param current user to quit
876          */
877         caller1<void, User*> FloodQuitUser;
878
879         /** Restart the server.
880          * This function will not return. If an error occurs,
881          * it will throw an instance of CoreException.
882          * @param reason The restart reason to show to all clients
883          * @throw CoreException An instance of CoreException indicating the error from execv().
884          */
885         void Restart(const std::string &reason);
886
887         /** Prepare the ircd for restart or shutdown.
888          * This function unloads all modules which can be unloaded,
889          * closes all open sockets, and closes the logfile.
890          */
891         void Cleanup();
892
893         /** This copies the user and channel hash_maps into new hash maps.
894          * This frees memory used by the hash_map allocator (which it neglects
895          * to free, most of the time, using tons of ram)
896          */
897         void RehashUsersAndChans();
898
899         /** Resets the cached max bans value on all channels.
900          * Called by rehash.
901          */
902         void ResetMaxBans();
903
904         /** Return a time_t as a human-readable string.
905          */
906         std::string TimeString(time_t curtime);
907
908         /** Begin execution of the server.
909          * NOTE: this function NEVER returns. Internally,
910          * it will repeatedly loop.
911          * @return The return value for this function is undefined.
912          */
913         int Run();
914
915         /** Force all BufferedSockets to be removed which are due to
916          * be culled.
917          */
918         void BufferedSocketCull();
919
920         /** Adds an extban char to the 005 token.
921          */
922         void AddExtBanChar(char c);
923
924         char* GetReadBuffer()
925         {
926                 return this->ReadBuffer;
927         }
928 };
929
930 ENTRYPOINT;
931
932 #endif