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