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