]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspircd.h
More docs. Tons more docs. I need coffee and we're out of coffee :<
[user/henk/code/inspircd.git] / include / inspircd.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __INSPIRCD_H__
18 #define __INSPIRCD_H__
19
20 #include <time.h>
21 #include <string>
22 #include <sstream>
23 #include "inspircd_config.h"
24 #include "users.h"
25 #include "channels.h"
26 #include "socket.h"
27 #include "mode.h"
28
29 #include "socketengine.h"
30 #include "command_parse.h"
31
32 /** Returned by some functions to indicate failure,
33  * and the exit code of the program if it terminates.
34  */
35 #define ERROR -1
36
37 /** Crucial defines
38  */
39 #define ETIREDGERBILS EAGAIN
40
41 /** Debug levels for use with InspIRCd::Log()
42  */
43 enum DebugLevel
44 {
45         DEBUG           =       10,
46         VERBOSE         =       20,
47         DEFAULT         =       30,
48         SPARSE          =       40,
49         NONE            =       50,
50 };
51
52 /**
53  * This define is used in place of strcmp when we 
54  * want to check if a char* string contains only one
55  * letter. Pretty fast, its just two compares and an
56  * addition.
57  */
58 #define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) )
59
60 /** Delete a pointer, and NULL its value
61  */
62 #define DELETE(x) {if (x) { delete x; x = NULL; }}
63
64 /** Template function to convert any input type to std::string
65  */
66 template<typename T> inline std::string ConvToStr(const T &in)
67 {
68         std::stringstream tmp;
69         if (!(tmp << in)) return std::string();
70         return tmp.str();
71 }
72
73 /** This class contains various STATS counters
74  * It is used by the InspIRCd class, which internally
75  * has an instance of it.
76  */
77 class serverstats : public classbase
78 {
79   public:
80         /** Number of accepted connections
81          */
82         unsigned long statsAccept;
83         /** Number of failed accepts
84          */
85         unsigned long statsRefused;
86         /** Number of unknown commands seen
87          */
88         unsigned long statsUnknown;
89         /** Number of nickname collisions handled
90          */
91         unsigned long statsCollisions;
92         /** Number of DNS queries sent out
93          */
94         unsigned long statsDns;
95         /** Number of good DNS replies received
96          * NOTE: This may not tally to the number sent out,
97          * due to timeouts and other latency issues.
98          */
99         unsigned long statsDnsGood;
100         /** Number of bad (negative) DNS replies received
101          * NOTE: This may not tally to the number sent out,
102          * due to timeouts and other latency issues.
103          */
104         unsigned long statsDnsBad;
105         /** Number of inbound connections seen
106          */
107         unsigned long statsConnects;
108         /** Total bytes of data transmitted
109          */
110         double statsSent;
111         /** Total bytes of data received
112          */
113         double statsRecv;
114         /** Number of bound listening ports
115          */
116         unsigned long BoundPortCount;
117
118         /** The constructor initializes all the counts to zero
119          */
120         serverstats()
121                 : statsAccept(0), statsRefused(0), statsUnknown(0), statsCollisions(0), statsDns(0),
122                 statsDnsGood(0), statsDnsBad(0), statsConnects(0), statsSent(0.0), statsRecv(0.0),
123                 BoundPortCount(0)
124         {
125         }
126 };
127
128 class XLineManager;
129
130 /** The main singleton class of the irc server.
131  * This class contains instances of all the other classes
132  * in this software, with the exception of the base class,
133  * classbase. Amongst other things, it contains a ModeParser,
134  * a DNS object, a CommandParser object, and a list of active
135  * Module objects, and facilities for Module objects to
136  * interact with the core system it implements. You should
137  * NEVER attempt to instantiate a class of type InspIRCd
138  * yourself. If you do, this is equivalent to spawning a second
139  * IRC server, and could have catastrophic consequences for the
140  * program in terms of ram usage (basically, you could create
141  * an obese forkbomb built from recursively spawning irc servers!)
142  */
143 class InspIRCd : public classbase
144 {
145  private:
146         /** Holds a string describing the last module error to occur
147          */
148         char MODERR[MAXBUF];
149
150         /** This is an internal flag used by the mainloop
151          */
152         bool expire_run;
153
154         /** List of server names we've seen.
155          */
156         servernamelist servernames;
157  
158         /** Remove a ModuleFactory pointer
159          * @param j Index number of the ModuleFactory to remove
160          */
161         void EraseFactory(int j);
162
163         /** Remove a Module pointer
164          * @param j Index number of the Module to remove
165          */
166         void EraseModule(int j);
167
168         /** Build the ISUPPORT string by triggering all modules On005Numeric events
169          */
170         void BuildISupport();
171
172         /** Move a given module to a specific slot in the list
173          * @param modulename The module name to relocate
174          * @param slot The slot to move the module into
175          */
176         void MoveTo(std::string modulename,int slot);
177
178         /** Display the startup banner
179          */
180         void Start();
181
182         /** Set up the signal handlers
183          * @param SEGVHandler create a handler for segfaults (deprecated)
184          */
185         void SetSignals(bool SEGVHandler);
186
187         /** Daemonize the ircd and close standard input/output streams
188          * @return True if the program daemonized succesfully
189          */
190         bool DaemonSeed();
191
192         /** Build the upper/lowercase comparison table
193          */
194         void MakeLowerMap();
195
196         /** Moves the given module to the last slot in the list
197          * @param modulename The module name to relocate
198          */
199         void MoveToLast(std::string modulename);
200
201         /** Moves the given module to the first slot in the list
202          * @param modulename The module name to relocate
203          */
204         void MoveToFirst(std::string modulename);
205
206         /** Moves one module to be placed after another in the list
207          * @param modulename The module name to relocate
208          * @param after The module name to place the module after
209          */
210         void MoveAfter(std::string modulename, std::string after);
211
212         /** Moves one module to be placed before another in the list
213          * @param modulename The module name to relocate
214          * @param after The module name to place the module before
215          */
216         void MoveBefore(std::string modulename, std::string before);
217
218         /** Process a user whos socket has been flagged as active
219          * @param cu The user to process
220          * @return There is no actual return value, however upon exit, the user 'cu' may have been deleted
221          */
222         void ProcessUser(userrec* cu);
223
224         /** Iterate the list of InspSocket objects, removing ones which have timed out
225          * @param TIME the current time
226          */
227         void DoSocketTimeouts(time_t TIME);
228
229         /** Perform background user events such as PING checks
230          * @param TIME the current time
231          */
232         void DoBackgroundUserStuff(time_t TIME);
233
234         /** Returns true when all modules have done pre-registration checks on a user
235          * @param user The user to verify
236          * @return True if all modules have finished checking this user
237          */
238         bool AllModulesReportReady(userrec* user);
239
240         /** Total number of modules loaded into the ircd, minus one
241          */
242         int ModCount;
243
244         /** Logfile pathname specified on the commandline, or empty string
245          */
246         char LogFileName[MAXBUF];
247
248         /** The feature names published by various modules
249          */
250         featurelist Features;
251
252         /** The current time, updated in the mainloop
253          */
254         time_t TIME;
255
256         /** The time that was recorded last time around the mainloop
257          */
258         time_t OLDTIME;
259
260         /** A 64k buffer used to read client lines into
261          */
262         char ReadBuffer[65535];
263
264         /** Number of seconds in a minute
265          */
266         const long duration_m;
267
268         /** Number of seconds in an hour
269          */
270         const long duration_h;
271
272         /** Number of seconds in a day
273          */
274         const long duration_d;
275
276         /** Number of seconds in a week
277          */
278         const long duration_w;
279
280         /** Number of seconds in a year
281          */
282         const long duration_y;
283
284  public:
285         /** Time this ircd was booted
286          */
287         time_t startup_time;
288
289         /** Mode handler, handles mode setting and removal
290          */
291         ModeParser* Modes;
292
293         /** Command parser, handles client to server commands
294          */
295         CommandParser* Parser;
296
297         /** Socket engine, handles socket activity events
298          */
299         SocketEngine* SE;
300
301         /** Stats class, holds miscellaneous stats counters
302          */
303         serverstats* stats;
304
305         /**  Server Config class, holds configuration file data
306          */
307         ServerConfig* Config;
308
309         /** Module sockets list, holds the active set of InspSocket classes
310          */
311         std::vector<InspSocket*> module_sockets;
312
313         /** Socket reference table, provides fast lookup of fd to InspSocket*
314          */
315         InspSocket* socket_ref[MAX_DESCRIPTORS];
316
317         /** user reference table, provides fast lookup of fd to userrec*
318          */
319         userrec* fd_ref_table[MAX_DESCRIPTORS];
320
321         /** Client list, a hash_map containing all clients, local and remote
322          */
323         user_hash clientlist;
324
325         /** Channel list, a hash_map containing all channels
326          */
327         chan_hash chanlist;
328
329         /** Local client list, a vector containing only local clients
330          */
331         std::vector<userrec*> local_users;
332
333         /** Oper list, a vector containing all local and remote opered users
334          */
335         std::vector<userrec*> all_opers;
336
337         /** Whowas container, contains a map of vectors of users tracked by WHOWAS
338          */
339         irc::whowas::whowas_users whowas;
340
341         /** DNS class, provides resolver facilities to the core and modules
342          */
343         DNS* Res;
344
345         /** Timer manager class, triggers InspTimer timer events
346          */
347         TimerManager* Timers;
348
349         /** X-Line manager. Handles G/K/Q/E line setting, removal and matching
350          */
351         XLineManager* XLines;
352
353         /** A list of Module* module classes
354          * Note that this list is always exactly 255 in size.
355          * The actual number of loaded modules is available from GetModuleCount()
356          */
357         ModuleList modules;
358
359         /** A list of ModuleFactory* module factories
360          * Note that this list is always exactly 255 in size.
361          * The actual number of loaded modules is available from GetModuleCount()
362          */
363         FactoryList factory;
364
365         /** Get the current time
366          * Because this only calls time() once every time around the mainloop,
367          * it is much faster than calling time() directly.
368          * @return The current time as an epoch value (time_t)
369          */
370         time_t Time();
371
372         /** Get the total number of currently loaded modules
373          * @return The number of loaded modules
374          */
375         int GetModuleCount();
376
377         /** Find a module by name, and return a Module* to it.
378          * This is preferred over iterating the module lists yourself.
379          * @param name The module name to look up
380          * @return A pointer to the module, or NULL if the module cannot be found
381          */
382         Module* FindModule(const std::string &name);
383
384         /** Bind all ports specified in the configuration file.
385          * @param bail True if the function should bail back to the shell on failure
386          * @return The number of ports actually bound without error
387          */
388         int BindPorts(bool bail);
389
390         /** Returns true if this server has the given port bound to the given address
391          * @param port The port number
392          * @param addr The address
393          * @return True if we have a port listening on this address
394          */
395         bool HasPort(int port, char* addr);
396
397         /** Binds a socket on an already open file descriptor
398          * @param sockfd A valid file descriptor of an open socket
399          * @param client A sockaddr to use as temporary storage
400          * @param server A sockaddr to use as temporary storage
401          * @param port The port number to bind to
402          * @param addr The address to bind to (IP only)
403          * @return True if the port was bound successfully
404          */
405         bool BindSocket(int sockfd, insp_sockaddr client, insp_sockaddr server, int port, char* addr);
406
407         /** Adds a server name to the list of servers we've seen
408          * @param The servername to add
409          */
410         void AddServerName(const std::string &servername);
411
412         /** Finds a cached char* pointer of a server name,
413          * This is used to optimize userrec by storing only the pointer to the name
414          * @param The servername to find
415          * @return A pointer to this name, gauranteed to never become invalid
416          */
417         const char* FindServerNamePtr(const std::string &servername);
418
419         /** Returns true if we've seen the given server name before
420          * @param The servername to find
421          * @return True if we've seen this server name before
422          */
423         bool FindServerName(const std::string &servername);
424
425         /** Gets the GECOS (description) field of the given server.
426          * If the servername is not that of the local server, the name
427          * is passed to handling modules which will attempt to determine
428          * the GECOS that bleongs to the given servername.
429          * @param servername The servername to find the description of
430          * @return The description of this server, or of the local server
431          */
432         std::string GetServerDescription(const char* servername);
433
434         /** Write text to all opers connected to this server
435          * @param text The text format string
436          * @param ... Format args
437          */
438         void WriteOpers(const char* text, ...);
439
440         /** Write text to all opers connected to this server
441          * @param text The text to send
442          */
443         void WriteOpers(const std::string &text);
444         
445         /** Find a nickname in the nick hash
446          * @param nick The nickname to find
447          * @return A pointer to the user, or NULL if the user does not exist
448          */
449         userrec* FindNick(const std::string &nick);
450
451         /** Find a nickname in the nick hash
452          * @param nick The nickname to find
453          * @return A pointer to the user, or NULL if the user does not exist
454          */
455         userrec* FindNick(const char* nick);
456
457         /** Find a channel in the channels hash
458          * @param chan The channel to find
459          * @return A pointer to the channel, or NULL if the channel does not exist
460          */
461         chanrec* FindChan(const std::string &chan);
462
463         /** Find a channel in the channels hash
464          * @param chan The channel to find
465          * @return A pointer to the channel, or NULL if the channel does not exist
466          */
467         chanrec* FindChan(const char* chan);
468
469         /** Called by the constructor to load all modules from the config file.
470          */
471         void LoadAllModules();
472
473         /** Check for a 'die' tag in the config file, and abort if found
474          * @return Depending on the configuration, this function may never return
475          */
476         void CheckDie();
477
478         /** Check we aren't running as root, and exit if we are
479          * @return Depending on the configuration, this function may never return
480          */
481         void CheckRoot();
482
483         /** Determine the right path for, and open, the logfile
484          * @param argv The argv passed to main() initially, used to calculate program path
485          * @param argc The argc passed to main() initially, used to calculate program path
486          */
487         void OpenLog(char** argv, int argc);
488
489         /** Convert a user to a pseudoclient, disconnecting the real user
490          * @param user The user to convert
491          * @param message The quit message to display when exiting the user
492          * @return True if the operation succeeded
493          */
494         bool UserToPseudo(userrec* user, const std::string &message);
495
496         /** Convert a pseudoclient to a real user, discarding the pseudoclient
497          * @param alive A live client
498          * @param zombie A pseudoclient
499          * @param message The message to display when quitting the pseudoclient
500          * @return True if the operation succeeded
501          */
502         bool PseudoToUser(userrec* alive, userrec* zombie, const std::string &message);
503
504         /** Send a server notice to all local users
505          * @param text The text format string to send
506          * @param ... The format arguments
507          */
508         void ServerNoticeAll(char* text, ...);
509
510         /** Send a server message (PRIVMSG) to all local users
511          * @param text The text format string to send
512          * @param ... The format arguments
513          */
514         void ServerPrivmsgAll(char* text, ...);
515
516         /** Send text to all users with a specific set of modes
517          * @param modes The modes to check against, without a +, e.g. 'og'
518          * @param flags one of WM_OR or WM_AND. If you specify WM_OR, any one of the 
519          * mode characters in the first parameter causes receipt of the message, and
520          * if you specify WM_OR, all the modes must be present.
521          * @param text The text format string to send
522          * @param ... The format arguments
523          */
524         void WriteMode(const char* modes, int flags, const char* text, ...);
525
526         /** Return true if a channel name is valid
527          * @param chname A channel name to verify
528          * @return True if the name is valid
529          */
530         bool IsChannel(const char *chname);
531
532         /** Rehash the local server
533          * @param status This value is unused, and required for signal handler functions
534          */
535         static void Rehash(int status);
536
537         /** Causes the server to exit immediately
538          * @param The exit code to give to the operating system
539          */
540         static void Exit(int status);
541
542         /** Return a count of users, unknown and known connections
543          * @return The number of users
544          */
545         int UserCount();
546
547         /** Return a count of fully registered connections only
548          * @return The number of registered users
549          */
550         int RegisteredUserCount();
551
552         /** Return a count of invisible (umode +i) users only
553          * @return The number of invisible users
554          */
555         int InvisibleUserCount();
556
557         /** Return a count of opered (umode +o) users only
558          * @return The number of opers
559          */
560         int OperCount();
561
562         /** Return a count of unregistered (before NICK/USER) users only
563          * @return The number of unregistered (unknown) connections
564          */
565         int UnregisteredUserCount();
566
567         /** Return a count of channels on the network
568          * @return The number of channels
569          */
570         long ChannelCount();
571
572         /** Return a count of local users on this server only
573          * @return The number of local users
574          */
575         long LocalUserCount();
576
577         /** Send an error notice to all local users, opered and unopered
578          * @param s The error string to send
579          */
580         void SendError(const char *s);
581
582         /** For use with Module::Prioritize().
583          * When the return value of this function is returned from
584          * Module::Prioritize(), this specifies that the module wishes
585          * to be ordered exactly BEFORE 'modulename'. For more information
586          * please see Module::Prioritize().
587          * @param modulename The module your module wants to be before in the call list
588          * @returns a priority ID which the core uses to relocate the module in the list
589          */
590         long PriorityBefore(const std::string &modulename);
591
592         /** For use with Module::Prioritize().
593          * When the return value of this function is returned from
594          * Module::Prioritize(), this specifies that the module wishes
595          * to be ordered exactly AFTER 'modulename'. For more information please
596          * see Module::Prioritize().
597          * @param modulename The module your module wants to be after in the call list
598          * @returns a priority ID which the core uses to relocate the module in the list
599          */
600         long PriorityAfter(const std::string &modulename);
601
602         /** Publish a 'feature'.
603          * There are two ways for a module to find another module it depends on.
604          * Either by name, using InspIRCd::FindModule, or by feature, using this
605          * function. A feature is an arbitary string which identifies something this
606          * module can do. For example, if your module provides SSL support, but other
607          * modules provide SSL support too, all the modules supporting SSL should
608          * publish an identical 'SSL' feature. This way, any module requiring use
609          * of SSL functions can just look up the 'SSL' feature using FindFeature,
610          * then use the module pointer they are given.
611          * @param FeatureName The case sensitive feature name to make available
612          * @param Mod a pointer to your module class
613          * @returns True on success, false if the feature is already published by
614          * another module.
615          */
616         bool PublishFeature(const std::string &FeatureName, Module* Mod);
617
618         /** Unpublish a 'feature'.
619          * When your module exits, it must call this method for every feature it
620          * is providing so that the feature table is cleaned up.
621          * @param FeatureName the feature to remove
622          */
623         bool UnpublishFeature(const std::string &FeatureName);
624
625         /** Find a 'feature'.
626          * There are two ways for a module to find another module it depends on.
627          * Either by name, using InspIRCd::FindModule, or by feature, using the
628          * InspIRCd::PublishFeature method. A feature is an arbitary string which
629          * identifies something this module can do. For example, if your module
630          * provides SSL support, but other modules provide SSL support too, all
631          * the modules supporting SSL should publish an identical 'SSL' feature.
632          * To find a module capable of providing the feature you want, simply
633          * call this method with the feature name you are looking for.
634          * @param FeatureName The feature name you wish to obtain the module for
635          * @returns A pointer to a valid module class on success, NULL on failure.
636          */
637         Module* FindFeature(const std::string &FeatureName);
638
639         /** Given a pointer to a Module, return its filename
640          * @param m The module pointer to identify
641          * @return The module name or an empty string
642          */
643         const std::string& GetModuleName(Module* m);
644
645         /** Return true if a nickname is valid
646          * @param n A nickname to verify
647          * @return True if the nick is valid
648          */
649         bool IsNick(const char* n);
650
651         /** Return true if an ident is valid
652          * @param An ident to verify
653          * @return True if the ident is valid
654          */
655         bool IsIdent(const char* n);
656
657         /** Find a username by their file descriptor.
658          * It is preferred to use this over directly accessing the fd_ref_table array.
659          * @param socket The file descriptor of a user
660          * @return A pointer to the user if the user exists locally on this descriptor
661          */
662         userrec* FindDescriptor(int socket);
663
664         /** Add a new mode to this server's mode parser
665          * @param mh The modehandler to add
666          * @param modechar The mode character this modehandler handles
667          * @return True if the mode handler was added
668          */
669         bool AddMode(ModeHandler* mh, const unsigned char modechar);
670
671         /** Add a new mode watcher to this server's mode parser
672          * @param mw The modewatcher to add
673          * @return True if the modewatcher was added
674          */
675         bool AddModeWatcher(ModeWatcher* mw);
676
677         /** Delete a mode watcher from this server's mode parser
678          * @param mw The modewatcher to delete
679          * @return True if the modewatcher was deleted
680          */
681         bool DelModeWatcher(ModeWatcher* mw);
682
683         /** Add a dns Resolver class to this server's active set
684          * @param r The resolver to add
685          * @return True if the resolver was added
686          */
687         bool AddResolver(Resolver* r);
688
689         /** Add a command to this server's command parser
690          * @param f A command_t command handler object to add
691          * @throw ModuleException Will throw ModuleExcption if the command already exists
692          */
693         void AddCommand(command_t *f);
694
695         /** Send a modechange.
696          * The parameters provided are identical to that sent to the
697          * handler for class cmd_mode.
698          * @param parameters The mode parameters
699          * @param pcnt The number of items you have given in the first parameter
700          * @param user The user to send error messages to
701          */
702         void SendMode(const char **parameters, int pcnt, userrec *user);
703
704         /** Match two strings using pattern matching.
705          * This operates identically to the global function match(),
706          * except for that it takes std::string arguments rather than
707          * const char* ones.
708          * @param sliteral The literal string to match against
709          * @param spattern The pattern to match against. CIDR and globs are supported.
710          */
711         bool MatchText(const std::string &sliteral, const std::string &spattern);
712
713         /** Call the handler for a given command.
714          * @param commandname The command whos handler you wish to call
715          * @param parameters The mode parameters
716          * @param pcnt The number of items you have given in the first parameter
717          * @param user The user to execute the command as
718          * @return True if the command handler was called successfully
719          */
720         bool CallCommandHandler(const std::string &commandname, const char** parameters, int pcnt, userrec* user);
721
722         /** Return true if the command is a module-implemented command and the given parameters are valid for it
723          * @param parameters The mode parameters
724          * @param pcnt The number of items you have given in the first parameter
725          * @param user The user to test-execute the command as
726          * @return True if the command handler is a module command, and there are enough parameters and the user has permission to the command
727          */
728         bool IsValidModuleCommand(const std::string &commandname, int pcnt, userrec* user);
729
730         /** Add a gline and apply it
731          * @param duration How long the line should last
732          * @param source Who set the line
733          * @param reason The reason for the line
734          * @param hostmask The hostmask to set the line against
735          */
736         void AddGLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
737
738         /** Add a qline and apply it
739          * @param duration How long the line should last
740          * @param source Who set the line
741          * @param reason The reason for the line
742          * @param nickname The nickmask to set the line against
743          */
744         void AddQLine(long duration, const std::string &source, const std::string &reason, const std::string &nickname);
745
746         /** Add a zline and apply it
747          * @param duration How long the line should last
748          * @param source Who set the line
749          * @param reason The reason for the line
750          * @param ipaddr The ip-mask to set the line against
751          */
752         void AddZLine(long duration, const std::string &source, const std::string &reason, const std::string &ipaddr);
753
754         /** Add a kline and apply it
755          * @param duration How long the line should last
756          * @param source Who set the line
757          * @param reason The reason for the line
758          * @param hostmask The hostmask to set the line against
759          */
760         void AddKLine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
761
762         /** Add an eline
763          * @param duration How long the line should last
764          * @param source Who set the line
765          * @param reason The reason for the line
766          * @param hostmask The hostmask to set the line against
767          */
768         void AddELine(long duration, const std::string &source, const std::string &reason, const std::string &hostmask);
769
770         /** Delete a gline
771          * @param hostmask The gline to delete
772          * @return True if the item was removed
773          */
774         bool DelGLine(const std::string &hostmask);
775
776         /** Delete a qline
777          * @param nickname The qline to delete
778          * @return True if the item was removed
779          */
780         bool DelQLine(const std::string &nickname);
781
782         /** Delete a zline
783          * @param ipaddr The zline to delete
784          * @return True if the item was removed
785          */
786         bool DelZLine(const std::string &ipaddr);
787
788         /** Delete a kline
789          * @param hostmask The kline to delete
790          * @return True if the item was removed
791          */
792         bool DelKLine(const std::string &hostmask);
793
794         /** Delete an eline
795          * @param hostmask The kline to delete
796          * @return True if the item was removed
797          */
798         bool DelELine(const std::string &hostmask);
799
800         /** Return true if the given parameter is a valid nick!user\@host mask
801          * @param mask A nick!user\@host masak to match against 
802          * @return True i the mask is valid
803          */
804         bool IsValidMask(const std::string &mask);
805
806         /** Add an InspSocket class to the active set
807          * @param sock A socket to add to the active set
808          */
809         void AddSocket(InspSocket* sock);
810
811         /** Remove an InspSocket class from the active set at next time around the loop
812          * @param sock A socket to remove from the active set
813          */
814         void RemoveSocket(InspSocket* sock);
815
816         /** Delete a socket immediately without waiting for the next iteration of the mainloop
817          * @param sock A socket to delete from the active set
818          */
819         void DelSocket(InspSocket* sock);
820
821         /** Rehash the local server
822          */
823         void RehashServer();
824
825         /** Return the channel whos index number matches that provided
826          * @param The index number of the channel to fetch
827          * @return A channel record, or NUll if index < 0 or index >= InspIRCd::ChannelCount()
828          */
829         chanrec* GetChannelIndex(long index);
830
831         /** Dump text to a user target, splitting it appropriately to fit
832          * @param User the user to dump the text to
833          * @param LinePrefix text to prefix each complete line with
834          * @param TextStream the text to send to the user
835          */
836         void DumpText(userrec* User, const std::string &LinePrefix, stringstream &TextStream);
837
838         /** Check if the given nickmask matches too many users, send errors to the given user
839          * @param nick A nickmask to match against
840          * @param user A user to send error text to
841          * @return True if the nick matches too many users
842          */
843         bool NickMatchesEveryone(const std::string &nick, userrec* user);
844
845         /** Check if the given IP mask matches too many users, send errors to the given user
846          * @param ip An ipmask to match against
847          * @param user A user to send error text to
848          * @return True if the ip matches too many users
849          */
850         bool IPMatchesEveryone(const std::string &ip, userrec* user);
851
852         /** Check if the given hostmask matches too many users, send errors to the given user
853          * @param mask A hostmask to match against
854          * @param user A user to send error text to
855          * @return True if the host matches too many users
856          */
857         bool HostMatchesEveryone(const std::string &mask, userrec* user);
858
859         /** Calculate a duration in seconds from a string in the form 1y2w3d4h6m5s
860          * @param str A string containing a time in the form 1y2w3d4h6m5s
861          * (one year, two weeks, three days, four hours, six minutes and five seconds)
862          * @return The total number of seconds
863          */
864         long Duration(const char* str);
865
866         /** Attempt to compare an oper password to a string from the config file.
867          * This will be passed to handling modules which will compare the data
868          * against possible hashed equivalents in the input string.
869          * @param data The data from the config file
870          * @param input The data input by the oper
871          * @return 0 if the strings match, 1 or -1 if they do not
872          */
873         int OperPassCompare(const char* data,const char* input);
874
875         /** Check if a given server is a uline.
876          * An empty string returns true, this is by design.
877          * @param server The server to check for uline status
878          * @return True if the server is a uline OR the string is empty
879          */
880         bool ULine(const char* server);
881
882         /** Returns the subversion revision ID of this ircd
883          * @return The revision ID or an empty string
884          */
885         std::string GetRevision();
886
887         /** Returns the full version string of this ircd
888          * @return The version string
889          */
890         std::string GetVersionString();
891
892         /** Attempt to write the process id to a given file
893          * @param filename The PID file to attempt to write to
894          * @return This function may bail if the file cannot be written
895          */
896         void WritePID(const std::string &filename);
897
898         /** Returns text describing the last module error
899          * @return The last error message to occur
900          */
901         char* ModuleError();
902
903         /** Load a given module file
904          * @param filename The file to load
905          * @return True if the module was found and loaded
906          */
907         bool LoadModule(const char* filename);
908
909         /** Unload a given module file
910          * @param filename The file to unload
911          * @return True if the module was unloaded
912          */
913         bool UnloadModule(const char* filename);
914
915         /** This constructor initialises all the subsystems and reads the config file.
916          * @param argc The argument count passed to main()
917          * @param argv The argument list passed to main()
918          * @throw <anything> If anything is thrown from here and makes it to
919          * you, you should probably just give up and go home. Yes, really.
920          * It's that bad. Higher level classes should catch any non-fatal exceptions.
921          */
922         InspIRCd(int argc, char** argv);
923
924         /** Do one iteration of the mainloop
925          * @param process_module_sockets True if module sockets are to be processed
926          * this time around the event loop. The is the default.
927          */
928         void DoOneIteration(bool process_module_sockets = true);
929
930         /** Output a log message to the ircd.log file
931          * The text will only be output if the current loglevel
932          * is less than or equal to the level you provide
933          * @param level A log level from the DebugLevel enum
934          * @param text Format string of to write to the log
935          * @param ... Format arguments of text to write to the log
936          */
937         void Log(int level, const char* text, ...);
938
939         /** Output a log message to the ircd.log file
940          * The text will only be output if the current loglevel
941          * is less than or equal to the level you provide
942          * @param level A log level from the DebugLevel enum
943          * @param text Text to write to the log
944          */
945         void Log(int level, const std::string &text);
946
947         /** Begin execution of the server.
948          * NOTE: this function NEVER returns. Internally,
949          * after performing some initialisation routines,
950          * it will repeatedly call DoOneIteration in a loop.
951          * @return The return value for this function is undefined.
952          */
953         int Run();
954 };
955
956 #endif
957