]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules.h
Add extra parameter to OnUserPreNotice and OnUserPrePrivmsg, CUList &exempt_list...
[user/henk/code/inspircd.git] / include / modules.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
18 #ifndef __MODULES_H
19 #define __MODULES_H
20
21 /** Used with OnAccessCheck() method of modules
22  */
23 enum AccessControlType {
24         ACR_DEFAULT,            // Do default action (act as if the module isnt even loaded)
25         ACR_DENY,               // deny the action
26         ACR_ALLOW,              // allow the action
27         AC_KICK,                // a user is being kicked
28         AC_DEOP,                // a user is being deopped
29         AC_OP,                  // a user is being opped
30         AC_VOICE,               // a user is being voiced
31         AC_DEVOICE,             // a user is being devoiced
32         AC_HALFOP,              // a user is being halfopped
33         AC_DEHALFOP,            // a user is being dehalfopped
34         AC_INVITE,              // a user is being invited
35         AC_GENERAL_MODE         // a channel mode is being changed
36 };
37
38 /** Used to define a set of behavior bits for a module
39  */
40 enum ModuleFlags {
41         VF_STATIC = 1,          // module is static, cannot be /unloadmodule'd
42         VF_VENDOR = 2,          // module is a vendor module (came in the original tarball, not 3rd party)
43         VF_SERVICEPROVIDER = 4, // module provides a service to other modules (can be a dependency)
44         VF_COMMON = 8           // module needs to be common on all servers in a network to link
45 };
46
47 enum WriteModeFlags {
48         WM_AND = 1,
49         WM_OR = 2
50 };
51
52 enum TargetTypeFlags {
53         TYPE_USER = 1,
54         TYPE_CHANNEL,
55         TYPE_SERVER,
56         TYPE_OTHER
57 };
58
59 #include "globals.h"
60 #include "dynamic.h"
61 #include "base.h"
62 #include "ctables.h"
63 #include "inspsocket.h"
64 #include <string>
65 #include <deque>
66 #include <sstream>
67 #include "timer.h"
68 #include "mode.h"
69 #include "dns.h"
70
71 /** If you change the module API, change this value.
72  * If you have enabled ipv6, the sizes of structs is
73  * different, and modules will be incompatible with
74  * ipv4 servers, so this value will be ten times as
75  * high on ipv6 servers.
76  */
77 #define NATIVE_API_VERSION 11005
78 #ifdef IPV6
79 #define API_VERSION (NATIVE_API_VERSION * 10)
80 #else
81 #define API_VERSION (NATIVE_API_VERSION * 1)
82 #endif
83
84 class ServerConfig;
85
86 /* Forward-delacare module for ModuleMessage etc
87  */
88 class Module;
89
90 /** Low level definition of a FileReader classes file cache area
91  */
92 typedef std::deque<std::string> file_cache;
93 typedef file_cache string_list;
94
95 /** Holds a list of 'published features' for modules.
96  */
97 typedef std::map<std::string,Module*> featurelist;
98
99 /**
100  * This #define allows us to call a method in all
101  * loaded modules in a readable simple way, e.g.:
102  * 'FOREACH_MOD(I_OnXonnwxr,OnConnect(user));'
103  */
104 #define FOREACH_MOD(y,x) if (ServerInstance->Config->global_implementation[y] > 0) { \
105         for (int _i = 0; _i <= ServerInstance->GetModuleCount(); _i++) { \
106         if (ServerInstance->Config->implement_lists[_i][y]) \
107                 try \
108                 { \
109                         ServerInstance->modules[_i]->x ; \
110                 } \
111                 catch (ModuleException& modexcept) \
112                 { \
113                         ServerInstance->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason()); \
114                 } \
115         } \
116   }
117
118 #define FOREACH_MOD_I(z,y,x) if (z->Config->global_implementation[y] > 0) { \
119         for (int _i = 0; _i <= z->GetModuleCount(); _i++) { \
120                 if (z->Config->implement_lists[_i][y]) \
121                 try \
122                 { \
123                         z->modules[_i]->x ; \
124                 } \
125                 catch (ModuleException& modexcept) \
126                 { \
127                         z->Log(DEBUG,"Module exception caught: %s",modexcept.GetReason()); \
128                 } \
129         } \
130 }
131 /**
132  *  This define is similar to the one above but returns a result in MOD_RESULT.
133  * The first module to return a nonzero result is the value to be accepted,
134  * and any modules after are ignored.
135  */
136 #define FOREACH_RESULT(y,x) { if (ServerInstance->Config->global_implementation[y] > 0) { \
137                         MOD_RESULT = 0; \
138                         for (int _i = 0; _i <= ServerInstance->GetModuleCount(); _i++) { \
139                         if (ServerInstance->Config->implement_lists[_i][y]) { \
140                                 try \
141                                 { \
142                                         int res = ServerInstance->modules[_i]->x ; \
143                                         if (res != 0) { \
144                                                 MOD_RESULT = res; \
145                                                 break; \
146                                         } \
147                                 } \
148                                 catch (ModuleException& modexcept) \
149                                 { \
150                                         ServerInstance->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \
151                                 } \
152                         } \
153                 } \
154         } \
155  }
156
157 #define FOREACH_RESULT_I(z,y,x) { if (z->Config->global_implementation[y] > 0) { \
158                         MOD_RESULT = 0; \
159                         for (int _i = 0; _i <= z->GetModuleCount(); _i++) { \
160                         if (z->Config->implement_lists[_i][y]) { \
161                                 try \
162                                 { \
163                                         int res = z->modules[_i]->x ; \
164                                         if (res != 0) { \
165                                                 MOD_RESULT = res; \
166                                                 break; \
167                                         } \
168                                 } \
169                                 catch (ModuleException& modexcept) \
170                                 { \
171                                         z->Log(DEBUG,"Module exception cought: %s",modexcept.GetReason()); \
172                                 } \
173                         } \
174                 } \
175         } \
176 }
177
178 #define FD_MAGIC_NUMBER -42
179
180 // useful macros
181
182 #define IS_LOCAL(x) ((x->GetFd() > -1) && (x->GetFd() <= MAX_DESCRIPTORS))
183 #define IS_REMOTE(x) (x->GetFd() < 0)
184 #define IS_MODULE_CREATED(x) (x->GetFd() == FD_MAGIC_NUMBER)
185
186 /** Holds a module's Version information
187  *  The four members (set by the constructor only) indicate details as to the version number
188  *  of a module. A class of type Version is returned by the GetVersion method of the Module class.
189  */
190 class Version : public classbase
191 {
192  public:
193          const int Major, Minor, Revision, Build, Flags, API;
194          Version(int major, int minor, int revision, int build, int flags, int api_ver);
195 };
196
197 /** The ModuleMessage class is the base class of Request and Event
198  * This class is used to represent a basic data structure which is passed
199  * between modules for safe inter-module communications.
200  */
201 class ModuleMessage : public Extensible
202 {
203  public:
204         virtual ~ModuleMessage() {};
205 };
206
207 /** The Request class is a unicast message directed at a given module.
208  * When this class is properly instantiated it may be sent to a module
209  * using the Send() method, which will call the given module's OnRequest
210  * method with this class as its parameter.
211  */
212 class Request : public ModuleMessage
213 {
214  protected:
215         /** This member holds a pointer to arbitary data set by the emitter of the message
216          */
217         char* data;
218         /** This should be a null-terminated string identifying the type of request,
219          * all modules should define this and use it to determine the nature of the
220          * request before they attempt to cast the Request in any way.
221          */
222         const char* id;
223         /** This is a pointer to the sender of the message, which can be used to
224          * directly trigger events, or to create a reply.
225          */
226         Module* source;
227         /** The single destination of the Request
228          */
229         Module* dest;
230  public:
231         /** Create a new Request
232          * This is for the 'old' way of casting whatever the data is
233          * to char* and hoping you get the right thing at the other end.
234          * This is slowly being depreciated in favor of the 'new' way.
235          */
236         Request(char* anydata, Module* src, Module* dst);
237         /** Create a new Request
238          * This is for the 'new' way of defining a subclass
239          * of Request and defining it in a common header,
240          * passing an object of your Request subclass through
241          * as a Request* and using the ID string to determine
242          * what to cast it back to and the other end. This is
243          * much safer as there are no casts not confirmed by
244          * the ID string, and all casts are child->parent and
245          * can be checked at runtime with dynamic_cast<>()
246          */
247         Request(Module* src, Module* dst, const char* idstr);
248         /** Fetch the Request data
249          */
250         char* GetData();
251         /** Fetch the ID string
252          */
253         const char* GetId();
254         /** Fetch the request source
255          */
256         Module* GetSource();
257         /** Fetch the request destination (should be 'this' in the receiving module)
258          */
259         Module* GetDest();
260         /** Send the Request.
261          * Upon returning the result will be arbitary data returned by the module you
262          * sent the request to. It is up to your module to know what this data is and
263          * how to deal with it.
264          */
265         char* Send();
266 };
267
268
269 /** The Event class is a unicast message directed at all modules.
270  * When the class is properly instantiated it may be sent to all modules
271  * using the Send() method, which will trigger the OnEvent method in
272  * all modules passing the object as its parameter.
273  */
274 class Event : public ModuleMessage
275 {
276  protected:
277         /** This member holds a pointer to arbitary data set by the emitter of the message
278          */
279         char* data;
280         /** This is a pointer to the sender of the message, which can be used to
281          * directly trigger events, or to create a reply.
282          */
283         Module* source;
284         /** The event identifier.
285          * This is arbitary text which should be used to distinguish
286          * one type of event from another.
287          */
288         std::string id;
289  public:
290         /** Create a new Event
291          */
292         Event(char* anydata, Module* src, const std::string &eventid);
293         /** Get the Event data
294          */
295         char* GetData();
296         /** Get the event Source
297          */
298         Module* GetSource();
299         /** Get the event ID.
300          * Use this to determine the event type for safe casting of the data
301          */
302         std::string GetEventID();
303         /** Send the Event.
304          * The return result of an Event::Send() will always be NULL as
305          * no replies are expected.
306          */
307         char* Send(InspIRCd* ServerInstance);
308 };
309
310 /** This class can be used on its own to represent an exception, or derived to represent a module-specific exception.
311  * When a module whishes to abort, e.g. within a constructor, it should throw an exception using ModuleException or
312  * a class derived from ModuleException. If a module throws an exception during its constructor, the module will not
313  * be loaded. If this happens, the error message returned by ModuleException::GetReason will be displayed to the user
314  * attempting to load the module, or dumped to the console if the ircd is currently loading for the first time.
315  */
316 class ModuleException : public std::exception
317 {
318  private:
319         /** Holds the error message to be displayed
320          */
321         std::string err;
322  public:
323         /** Default constructor, just uses the error mesage 'Module threw an exception'.
324          */
325         ModuleException() : err("Module threw an exception") {}
326         /** This constructor can be used to specify an error message before throwing.
327          */
328         ModuleException(std::string message) : err(message) {}
329         /** This destructor solves world hunger, cancels the world debt, and causes the world to end.
330          * Actually no, it does nothing. Never mind.
331          * @throws Nothing!
332          */
333         virtual ~ModuleException() throw() {};
334         /** Returns the reason for the exception.
335          * The module should probably put something informative here as the user will see this upon failure.
336          */
337         virtual const char* GetReason()
338         {
339                 return err.c_str();
340         }
341 };
342
343 /** Priority types which can be returned from Module::Prioritize()
344  */
345 enum Priority { PRIORITY_FIRST, PRIORITY_DONTCARE, PRIORITY_LAST, PRIORITY_BEFORE, PRIORITY_AFTER };
346
347 /** Implementation-specific flags which may be set in Module::Implements()
348  */
349 enum Implementation {   I_OnUserConnect, I_OnUserQuit, I_OnUserDisconnect, I_OnUserJoin, I_OnUserPart, I_OnRehash, I_OnServerRaw, 
350                         I_OnUserPreJoin, I_OnUserPreKick, I_OnUserKick, I_OnOper, I_OnInfo, I_OnWhois, I_OnUserPreInvite,
351                         I_OnUserInvite, I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserPreNick, I_OnUserMessage, I_OnUserNotice, I_OnMode,
352                         I_OnGetServerDescription, I_OnSyncUser, I_OnSyncChannel, I_OnSyncChannelMetaData, I_OnSyncUserMetaData,
353                         I_OnDecodeMetaData, I_ProtoSendMode, I_ProtoSendMetaData, I_OnWallops, I_OnChangeHost, I_OnChangeName, I_OnAddGLine,
354                         I_OnAddZLine, I_OnAddQLine, I_OnAddKLine, I_OnAddELine, I_OnDelGLine, I_OnDelZLine, I_OnDelKLine, I_OnDelELine, I_OnDelQLine,
355                         I_OnCleanup, I_OnUserPostNick, I_OnAccessCheck, I_On005Numeric, I_OnKill, I_OnRemoteKill, I_OnLoadModule, I_OnUnloadModule,
356                         I_OnBackgroundTimer, I_OnPreCommand, I_OnCheckReady, I_OnUserRrgister, I_OnCheckInvite,
357                         I_OnCheckKey, I_OnCheckLimit, I_OnCheckBan, I_OnStats, I_OnChangeLocalUserHost, I_OnChangeLocalUserGecos, I_OnLocalTopicChange,
358                         I_OnPostLocalTopicChange, I_OnEvent, I_OnRequest, I_OnOperCompre, I_OnGlobalOper, I_OnPostConnect, I_OnAddBan, I_OnDelBan,
359                         I_OnRawSocketAccept, I_OnRawSocketClose, I_OnRawSocketWrite, I_OnRawSocketRead, I_OnChangeLocalUserGECOS, I_OnUserRegister,
360                         I_OnOperCompare, I_OnChannelDelete, I_OnPostOper, I_OnSyncOtherMetaData, I_OnSetAway, I_OnCancelAway, I_OnUserList,
361                         I_OnPostCommand, I_OnPostJoin, I_OnWhoisLine };
362
363 /** Base class for all InspIRCd modules
364  *  This class is the base class for InspIRCd modules. All modules must inherit from this class,
365  *  its methods will be called when irc server events occur. class inherited from module must be
366  *  instantiated by the ModuleFactory class (see relevent section) for the module to be initialised.
367  */
368 class Module : public Extensible
369 {
370  protected:
371         InspIRCd* ServerInstance;
372  public:
373
374         /** Default constructor
375          * Creates a module class.
376          * @param Me An instance of the InspIRCd class which will be saved into ServerInstance for your use
377          * \exception ModuleException Throwing this class, or any class derived from ModuleException, causes loading of the module to abort.
378          */
379         Module(InspIRCd* Me);
380
381         /** Default destructor
382          * destroys a module class
383          */
384         virtual ~Module();
385
386         /** Returns the version number of a Module.
387          * The method should return a Version object with its version information assigned via
388          * Version::Version
389          */
390         virtual Version GetVersion();
391
392         /** The Implements function specifies which methods a module should receive events for.
393          * The char* parameter passed to this function contains a set of true or false values
394          * (1 or 0) which indicate wether each function is implemented. You must use the Iimplementation
395          * enum (documented elsewhere on this page) to mark functions as active. For example, to
396          * receive events for OnUserJoin():
397          *
398          * Implements[I_OnUserJoin] = 1;
399          *
400          * @param The implement list
401          */
402         virtual void Implements(char* Implements);
403
404         /** Used to set the 'priority' of a module (e.g. when it is called in relation to other modules.
405          * Some modules prefer to be called before other modules, due to their design. For example, a
406          * module which is expected to operate on complete information would expect to be placed last, so
407          * that any other modules which wish to adjust that information would execute before it, to be sure
408          * its information is correct. You can change your module's priority by returning one of:
409          *
410          * PRIORITY_FIRST - To place your module first in the list
411          * 
412          * PRIORITY_LAST - To place your module last in the list
413          *
414          * PRIORITY_DONTCARE - To leave your module as it is (this is the default value, if you do not implement this function)
415          *
416          * The result of InspIRCd::PriorityBefore() - To move your module before another named module
417          *
418          * The result of InspIRCd::PriorityLast() - To move your module after another named module
419          *
420          * For a good working example of this method call, please see src/modules/m_spanningtree.cpp
421          * and src/modules/m_hostchange.so which make use of it. It is highly recommended that unless
422          * your module has a real need to reorder its priority, it should not implement this function,
423          * as many modules changing their priorities can make the system redundant.
424          */
425         virtual Priority Prioritize();
426
427         /** Called when a user connects.
428          * The details of the connecting user are available to you in the parameter userrec *user
429          * @param user The user who is connecting
430          */
431         virtual void OnUserConnect(userrec* user);
432
433         /** Called when a user quits.
434          * The details of the exiting user are available to you in the parameter userrec *user
435          * This event is only called when the user is fully registered when they quit. To catch
436          * raw disconnections, use the OnUserDisconnect method.
437          * @param user The user who is quitting
438          * @param message The user's quit message
439          */
440         virtual void OnUserQuit(userrec* user, const std::string &message);
441
442         /** Called whenever a user's socket is closed.
443          * The details of the exiting user are available to you in the parameter userrec *user
444          * This event is called for all users, registered or not, as a cleanup method for modules
445          * which might assign resources to user, such as dns lookups, objects and sockets.
446          * @param user The user who is disconnecting
447          */
448         virtual void OnUserDisconnect(userrec* user);
449
450         /** Called whenever a channel is deleted, either by QUIT, KICK or PART.
451          * @param chan The channel being deleted
452          */
453         virtual void OnChannelDelete(chanrec* chan);
454
455         /** Called when a user joins a channel.
456          * The details of the joining user are available to you in the parameter userrec *user,
457          * and the details of the channel they have joined is available in the variable chanrec *channel
458          * @param user The user who is joining
459          * @param channel The channel being joined
460          */
461         virtual void OnUserJoin(userrec* user, chanrec* channel);
462
463         /** Called after a user joins a channel
464          * Identical to OnUserJoin, but called immediately afterwards, when any linking module has
465          * seen the join.
466          * @param user The user who is joining
467          * @param channel The channel being joined
468          */
469         virtual void OnPostJoin(userrec* user, chanrec* channel);
470
471         /** Called when a user parts a channel.
472          * The details of the leaving user are available to you in the parameter userrec *user,
473          * and the details of the channel they have left is available in the variable chanrec *channel
474          * @param user The user who is parting
475          * @param channel The channel being parted
476          * @param partmessage The part message, or an empty string
477          */
478         virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage);
479
480         /** Called on rehash.
481          * This method is called prior to a /REHASH or when a SIGHUP is received from the operating
482          * system. You should use it to reload any files so that your module keeps in step with the
483          * rest of the application. If a parameter is given, the core has done nothing. The module
484          * receiving the event can decide if this parameter has any relevence to it.
485          * @param parameter The (optional) parameter given to REHASH from the user.
486          */
487         virtual void OnRehash(const std::string &parameter);
488
489         /** Called when a raw command is transmitted or received.
490          * This method is the lowest level of handler available to a module. It will be called with raw
491          * data which is passing through a connected socket. If you wish, you may munge this data by changing
492          * the string parameter "raw". If you do this, after your function exits it will immediately be
493          * cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where
494          * inbound is set to true) the value of user will be the userrec of the connection sending the
495          * data. This is not possible for outbound data because the data may be being routed to multiple targets.
496          * @param raw The raw string in RFC1459 format
497          * @param inbound A flag to indicate wether the data is coming into the daemon or going out to the user
498          * @param user The user record sending the text, when inbound == true.
499          */
500         virtual void OnServerRaw(std::string &raw, bool inbound, userrec* user);
501
502         /** Called whenever a user is about to join a channel, before any processing is done.
503          * Returning a value of 1 from this function stops the process immediately, causing no
504          * output to be sent to the user by the core. If you do this you must produce your own numerics,
505          * notices etc. This is useful for modules which may want to mimic +b, +k, +l etc. Returning -1 from
506          * this function forces the join to be allowed, bypassing restrictions such as banlists, invite, keys etc.
507          *
508          * IMPORTANT NOTE!
509          *
510          * If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel
511          * record is created. This will cause chanrec* chan to be NULL. There is very little you can do in form of
512          * processing on the actual channel record at this point, however the channel NAME will still be passed in
513          * char* cname, so that you could for example implement a channel blacklist or whitelist, etc.
514          * @param user The user joining the channel
515          * @param chan If the  channel is a new channel, this will be NULL, otherwise it will be a pointer to the channel being joined
516          * @param cname The channel name being joined. For new channels this is valid where chan is not.
517          * @param privs A string containing the users privilages when joining the channel. For new channels this will contain "@".
518          * You may alter this string to alter the user's modes on the channel.
519          * @return 1 To prevent the join, 0 to allow it.
520          */
521         virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname, std::string &privs);
522         
523         /** Called whenever a user is about to be kicked.
524          * Returning a value of 1 from this function stops the process immediately, causing no
525          * output to be sent to the user by the core. If you do this you must produce your own numerics,
526          * notices etc.
527          * @param source The user issuing the kick
528          * @param user The user being kicked
529          * @param chan The channel the user is being kicked from
530          * @param reason The kick reason
531          * @return 1 to prevent the kick, 0 to continue normally, -1 to explicitly allow the kick regardless of normal operation
532          */
533         virtual int OnUserPreKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason);
534
535         /** Called whenever a user is kicked.
536          * If this method is called, the kick is already underway and cannot be prevented, so
537          * to prevent a kick, please use Module::OnUserPreKick instead of this method.
538          * @param source The user issuing the kick
539          * @param user The user being kicked
540          * @param chan The channel the user is being kicked from
541          * @param reason The kick reason
542          */
543         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason);
544
545         /** Called whenever a user opers locally.
546          * The userrec will contain the oper mode 'o' as this function is called after any modifications
547          * are made to the user's structure by the core.
548          * @param user The user who is opering up
549          * @param opertype The opers type name
550          */
551         virtual void OnOper(userrec* user, const std::string &opertype);
552
553         /** Called after a user opers locally.
554          * This is identical to Module::OnOper(), except it is called after OnOper so that other modules
555          * can be gauranteed to already have processed the oper-up, for example m_spanningtree has sent
556          * out the OPERTYPE, etc.
557          * @param user The user who is opering up
558          * @param opertype The opers type name
559          */
560         virtual void OnPostOper(userrec* user, const std::string &opertype);
561         
562         /** Called whenever a user types /INFO.
563          * The userrec will contain the information of the user who typed the command. Modules may use this
564          * method to output their own credits in /INFO (which is the ircd's version of an about box).
565          * It is purposefully not possible to modify any info that has already been output, or halt the list.
566          * You must write a 371 numeric to the user, containing your info in the following format:
567          *
568          * &lt;nick&gt; :information here
569          *
570          * @param user The user issuing /INFO
571          */
572         virtual void OnInfo(userrec* user);
573         
574         /** Called whenever a /WHOIS is performed on a local user.
575          * The source parameter contains the details of the user who issued the WHOIS command, and
576          * the dest parameter contains the information of the user they are whoising.
577          * @param source The user issuing the WHOIS command
578          * @param dest The user who is being WHOISed
579          */
580         virtual void OnWhois(userrec* source, userrec* dest);
581         
582         /** Called whenever a user is about to invite another user into a channel, before any processing is done.
583          * Returning 1 from this function stops the process immediately, causing no
584          * output to be sent to the user by the core. If you do this you must produce your own numerics,
585          * notices etc. This is useful for modules which may want to filter invites to channels.
586          * @param source The user who is issuing the INVITE
587          * @param dest The user being invited
588          * @param channel The channel the user is being invited to
589          * @return 1 to deny the invite, 0 to allow
590          */
591         virtual int OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel);
592         
593         /** Called after a user has been successfully invited to a channel.
594          * You cannot prevent the invite from occuring using this function, to do that,
595          * use OnUserPreInvite instead.
596          * @param source The user who is issuing the INVITE
597          * @param dest The user being invited
598          * @param channel The channel the user is being invited to
599          */
600         virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel);
601         
602         /** Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done.
603          * Returning any nonzero value from this function stops the process immediately, causing no
604          * output to be sent to the user by the core. If you do this you must produce your own numerics,
605          * notices etc. This is useful for modules which may want to filter or redirect messages.
606          * target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user,
607          * you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details
608          * of where the message is destined to be sent.
609          * @param user The user sending the message
610          * @param dest The target of the message (chanrec* or userrec*)
611          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
612          * @param text Changeable text being sent by the user
613          * @param status The status being used, e.g. PRIVMSG @#chan has status== '@', 0 to send to everyone.
614          * @return 1 to deny the NOTICE, 0 to allow it
615          */
616         virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text,char status, CUList &exempt_list);
617
618         /** Called whenever a user is about to NOTICE A user or a channel, before any processing is done.
619          * Returning any nonzero value from this function stops the process immediately, causing no
620          * output to be sent to the user by the core. If you do this you must produce your own numerics,
621          * notices etc. This is useful for modules which may want to filter or redirect messages.
622          * target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user,
623          * you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details
624          * of where the message is destined to be sent.
625          * You may alter the message text as you wish before relinquishing control to the next module
626          * in the chain, and if no other modules block the text this altered form of the text will be sent out
627          * to the user and possibly to other servers.
628          * @param user The user sending the message
629          * @param dest The target of the message (chanrec* or userrec*)
630          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
631          * @param text Changeable text being sent by the user
632          * @param status The status being used, e.g. PRIVMSG @#chan has status== '@', 0 to send to everyone.
633          * @return 1 to deny the NOTICE, 0 to allow it
634          */
635         virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text,char status, CUList &exempt_list);
636         
637         /** Called before any nickchange, local or remote. This can be used to implement Q-lines etc.
638          * Please note that although you can see remote nickchanges through this function, you should
639          * NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc.
640          * check user->server before taking any action (including returning nonzero from the method).
641          * If your method returns nonzero, the nickchange is silently forbidden, and it is down to your
642          * module to generate some meaninful output.
643          * @param user The username changing their nick
644          * @param newnick Their new nickname
645          * @return 1 to deny the change, 0 to allow
646          */
647         virtual int OnUserPreNick(userrec* user, const std::string &newnick);
648
649         /** Called after any PRIVMSG sent from a user.
650          * The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec*
651          * if target_type is TYPE_CHANNEL.
652          * @param user The user sending the message
653          * @param dest The target of the message
654          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
655          * @param text the text being sent by the user
656          * @param status The status being used, e.g. PRIVMSG @#chan has status== '@', 0 to send to everyone.
657          */
658         virtual void OnUserMessage(userrec* user, void* dest, int target_type, const std::string &text, char status);
659
660         /** Called after any NOTICE sent from a user.
661          * The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec*
662          * if target_type is TYPE_CHANNEL.
663          * @param user The user sending the message
664          * @param dest The target of the message
665          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
666          * @param text the text being sent by the user
667          * @param status The status being used, e.g. NOTICE @#chan has status== '@', 0 to send to everyone.
668          */
669         virtual void OnUserNotice(userrec* user, void* dest, int target_type, const std::string &text, char status);
670
671         /** Called after every MODE command sent from a user
672          * The dest variable contains a userrec* if target_type is TYPE_USER and a chanrec*
673          * if target_type is TYPE_CHANNEL. The text variable contains the remainder of the
674          * mode string after the target, e.g. "+wsi" or "+ooo nick1 nick2 nick3".
675          * @param user The user sending the MODEs
676          * @param dest The target of the modes (userrec* or chanrec*)
677          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
678          * @param text The actual modes and their parameters if any
679          */
680         virtual void OnMode(userrec* user, void* dest, int target_type, const std::string &text);
681
682         /** Allows modules to alter or create server descriptions
683          * Whenever a module requires a server description, for example for display in
684          * WHOIS, this function is called in all modules. You may change or define the
685          * description given in std::string &description. If you do, this description
686          * will be shown in the WHOIS fields.
687          * @param servername The servername being searched for
688          * @param description Alterable server description for this server
689          */
690         virtual void OnGetServerDescription(const std::string &servername,std::string &description);
691
692         /** Allows modules to synchronize data which relates to users during a netburst.
693          * When this function is called, it will be called from the module which implements
694          * the linking protocol. This currently is m_spanningtree.so. A pointer to this module
695          * is given in Module* proto, so that you may call its methods such as ProtoSendMode
696          * (see below). This function will be called for every user visible on your side
697          * of the burst, allowing you to for example set modes, etc. Do not use this call to
698          * synchronize data which you have stored using class Extensible -- There is a specialist
699          * function OnSyncUserMetaData and OnSyncChannelMetaData for this!
700          * @param user The user being syncronized
701          * @param proto A pointer to the module handling network protocol
702          * @param opaque An opaque pointer set by the protocol module, should not be modified!
703          */
704         virtual void OnSyncUser(userrec* user, Module* proto, void* opaque);
705
706         /** Allows modules to synchronize data which relates to channels during a netburst.
707          * When this function is called, it will be called from the module which implements
708          * the linking protocol. This currently is m_spanningtree.so. A pointer to this module
709          * is given in Module* proto, so that you may call its methods such as ProtoSendMode
710          * (see below). This function will be called for every user visible on your side
711          * of the burst, allowing you to for example set modes, etc. Do not use this call to
712          * synchronize data which you have stored using class Extensible -- There is a specialist
713          * function OnSyncUserMetaData and OnSyncChannelMetaData for this!
714          *
715          * For a good example of how to use this function, please see src/modules/m_chanprotect.cpp
716          *
717          * @param chan The channel being syncronized
718          * @param proto A pointer to the module handling network protocol
719          * @param opaque An opaque pointer set by the protocol module, should not be modified!
720          */
721         virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque);
722
723         /* Allows modules to syncronize metadata related to channels over the network during a netburst.
724          * Whenever the linking module wants to send out data, but doesnt know what the data
725          * represents (e.g. it is Extensible metadata, added to a userrec or chanrec by a module) then
726          * this method is called.You should use the ProtoSendMetaData function after you've
727          * correctly decided how the data should be represented, to send the metadata on its way if it belongs
728          * to your module. For a good example of how to use this method, see src/modules/m_swhois.cpp.
729          * @param chan The channel whos metadata is being syncronized
730          * @param proto A pointer to the module handling network protocol
731          * @param opaque An opaque pointer set by the protocol module, should not be modified!
732          * @param extname The extensions name which is being searched for
733          */
734         virtual void OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, const std::string &extname);
735
736         /* Allows modules to syncronize metadata related to users over the network during a netburst.
737          * Whenever the linking module wants to send out data, but doesnt know what the data
738          * represents (e.g. it is Extensible metadata, added to a userrec or chanrec by a module) then
739          * this method is called. You should use the ProtoSendMetaData function after you've
740          * correctly decided how the data should be represented, to send the metadata on its way if
741          * if it belongs to your module.
742          * @param user The user whos metadata is being syncronized
743          * @param proto A pointer to the module handling network protocol
744          * @param opaque An opaque pointer set by the protocol module, should not be modified!
745          * @param extname The extensions name which is being searched for
746          */
747         virtual void OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, const std::string &extname);
748
749         /* Allows modules to syncronize metadata not related to users or channels, over the network during a netburst.
750          * Whenever the linking module wants to send out data, but doesnt know what the data
751          * represents (e.g. it is Extensible metadata, added to a userrec or chanrec by a module) then
752          * this method is called. You should use the ProtoSendMetaData function after you've
753          * correctly decided how the data should be represented, to send the metadata on its way if
754          * if it belongs to your module.
755          * @param proto A pointer to the module handling network protocol
756          * @param opaque An opaque pointer set by the protocol module, should not be modified!
757          */
758         virtual void OnSyncOtherMetaData(Module* proto, void* opaque);
759
760         /** Allows module data, sent via ProtoSendMetaData, to be decoded again by a receiving module.
761          * Please see src/modules/m_swhois.cpp for a working example of how to use this method call.
762          * @param target_type The type of item to decode data for, TYPE_USER or TYPE_CHANNEL
763          * @param target The chanrec* or userrec* that data should be added to
764          * @param extname The extension name which is being sent
765          * @param extdata The extension data, encoded at the other end by an identical module through OnSyncChannelMetaData or OnSyncUserMetaData
766          */
767         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata);
768
769         /** Implemented by modules which provide the ability to link servers.
770          * These modules will implement this method, which allows transparent sending of servermodes
771          * down the network link as a broadcast, without a module calling it having to know the format
772          * of the MODE command before the actual mode string.
773          *
774          * More documentation to follow soon. Please see src/modules/m_chanprotect.cpp for examples
775          * of how to use this function.
776          *
777          * @param opaque An opaque pointer set by the protocol module, should not be modified!
778          * @param target_type The type of item to decode data for, TYPE_USER or TYPE_CHANNEL
779          * @param target The chanrec* or userrec* that modes should be sent for
780          * @param modeline The modes and parameters to be sent
781          */
782         virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline);
783
784         /** Implemented by modules which provide the ability to link servers.
785          * These modules will implement this method, which allows metadata (extra data added to
786          * user and channel records using class Extensible, Extensible::Extend, etc) to be sent
787          * to other servers on a netburst and decoded at the other end by the same module on a
788          * different server.
789          *
790          * More documentation to follow soon. Please see src/modules/m_swhois.cpp for example of
791          * how to use this function.
792          * @param opaque An opaque pointer set by the protocol module, should not be modified!
793          * @param target_type The type of item to decode data for, TYPE_USER or TYPE_CHANNEL
794          * @param target The chanrec* or userrec* that metadata should be sent for
795          * @param extname The extension name to send metadata for
796          * @param extdata Encoded data for this extension name, which will be encoded at the oppsite end by an identical module using OnDecodeMetaData
797          */
798         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata);
799         
800         /** Called after every WALLOPS command.
801          * @param user The user sending the WALLOPS
802          * @param text The content of the WALLOPS message
803          */
804         virtual void OnWallops(userrec* user, const std::string &text);
805
806         /** Called whenever a user's hostname is changed.
807          * This event triggers after the host has been set.
808          * @param user The user whos host is being changed
809          * @param newhost The new hostname being set
810          */
811         virtual void OnChangeHost(userrec* user, const std::string &newhost);
812
813         /** Called whenever a user's GECOS (realname) is changed.
814          * This event triggers after the name has been set.
815          * @param user The user who's GECOS is being changed
816          * @param gecos The new GECOS being set on the user
817          */
818         virtual void OnChangeName(userrec* user, const std::string &gecos);
819
820         /** Called whenever a gline is added by a local user.
821          * This method is triggered after the line is added.
822          * @param duration The duration of the line in seconds
823          * @param source The sender of the line
824          * @param reason The reason text to be displayed
825          * @param hostmask The hostmask to add
826          */
827         virtual void OnAddGLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask);
828
829         /** Called whenever a zline is added by a local user.
830          * This method is triggered after the line is added.
831          * @param duration The duration of the line in seconds
832          * @param source The sender of the line
833          * @param reason The reason text to be displayed
834          * @param ipmask The hostmask to add
835          */
836         virtual void OnAddZLine(long duration, userrec* source, const std::string &reason, const std::string &ipmask);
837
838         /** Called whenever a kline is added by a local user.
839          * This method is triggered after the line is added.
840          * @param duration The duration of the line in seconds
841          * @param source The sender of the line
842          * @param reason The reason text to be displayed
843          * @param hostmask The hostmask to add
844          */
845         virtual void OnAddKLine(long duration, userrec* source, const std::string &reason, const std::string &hostmask);
846
847         /** Called whenever a qline is added by a local user.
848          * This method is triggered after the line is added.
849          * @param duration The duration of the line in seconds
850          * @param source The sender of the line
851          * @param reason The reason text to be displayed
852          * @param nickmask The hostmask to add
853          */
854         virtual void OnAddQLine(long duration, userrec* source, const std::string &reason, const std::string &nickmask);
855
856         /** Called whenever a eline is added by a local user.
857          * This method is triggered after the line is added.
858          * @param duration The duration of the line in seconds
859          * @param source The sender of the line
860          * @param reason The reason text to be displayed
861          * @param hostmask The hostmask to add
862          */
863         virtual void OnAddELine(long duration, userrec* source, const std::string &reason, const std::string &hostmask);
864
865         /** Called whenever a gline is deleted.
866          * This method is triggered after the line is deleted.
867          * @param source The user removing the line
868          * @param hostmask The hostmask to delete
869          */
870         virtual void OnDelGLine(userrec* source, const std::string &hostmask);
871
872         /** Called whenever a zline is deleted.
873          * This method is triggered after the line is deleted.
874          * @param source The user removing the line
875          * @param hostmask The hostmask to delete
876          */
877         virtual void OnDelZLine(userrec* source, const std::string &ipmask);
878
879         /** Called whenever a kline is deleted.
880          * This method is triggered after the line is deleted.
881          * @param source The user removing the line
882          * @param hostmask The hostmask to delete
883          */
884         virtual void OnDelKLine(userrec* source, const std::string &hostmask);
885         
886         /** Called whenever a qline is deleted.
887          * This method is triggered after the line is deleted.
888          * @param source The user removing the line
889          * @param hostmask The hostmask to delete
890          */
891         virtual void OnDelQLine(userrec* source, const std::string &nickmask);
892
893         /** Called whenever a eline is deleted.
894          * This method is triggered after the line is deleted.
895          * @param source The user removing the line
896          * @param hostmask The hostmask to delete
897          */
898         virtual void OnDelELine(userrec* source, const std::string &hostmask);
899
900         /** Called before your module is unloaded to clean up Extensibles.
901          * This method is called once for every user and channel on the network,
902          * so that when your module unloads it may clear up any remaining data
903          * in the form of Extensibles added using Extensible::Extend().
904          * If the target_type variable is TYPE_USER, then void* item refers to
905          * a userrec*, otherwise it refers to a chanrec*.
906          * @param target_type The type of item being cleaned
907          * @param item A pointer to the item's class
908          */
909         virtual void OnCleanup(int target_type, void* item);
910
911         /** Called after any nickchange, local or remote. This can be used to track users after nickchanges
912          * have been applied. Please note that although you can see remote nickchanges through this function, you should
913          * NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc.
914          * check user->server before taking any action (including returning nonzero from the method).
915          * Because this method is called after the nickchange is taken place, no return values are possible
916          * to indicate forbidding of the nick change. Use OnUserPreNick for this.
917          * @param user The user changing their nick
918          * @param oldnick The old nickname of the user before the nickchange
919          */
920         virtual void OnUserPostNick(userrec* user, const std::string &oldnick);
921
922         /** Called before an action which requires a channel privilage check.
923          * This function is called before many functions which check a users status on a channel, for example
924          * before opping a user, deopping a user, kicking a user, etc.
925          * There are several values for access_type which indicate for what reason access is being checked.
926          * These are:<br><br>
927          * AC_KICK (0) - A user is being kicked<br>
928          * AC_DEOP (1) - a user is being deopped<br>
929          * AC_OP (2) - a user is being opped<br>
930          * AC_VOICE (3) - a user is being voiced<br>
931          * AC_DEVOICE (4) - a user is being devoiced<br>
932          * AC_HALFOP (5) - a user is being halfopped<br>
933          * AC_DEHALFOP (6) - a user is being dehalfopped<br>
934          * AC_INVITE () - a user is being invited<br>
935          * AC_GENERAL_MODE (8) - a user channel mode is being changed<br><br>
936          * Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes
937          * to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow
938          * the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be
939          * denied 'upstream' causing other checks such as AC_DEOP to not be reached. Be very careful with use of the
940          * AC_GENERAL_MODE type, as it may inadvertently override the behaviour of other modules. When the access_type
941          * is AC_GENERAL_MODE, the destination of the mode will be NULL (as it has not yet been determined).
942          * @param source The source of the access check
943          * @param dest The destination of the access check
944          * @param channel The channel which is being checked
945          * @param access_type See above
946          */
947         virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type);
948
949         /** Called when a 005 numeric is about to be output.
950          * The module should modify the 005 numeric if needed to indicate its features.
951          * @param output The 005 string to be modified if neccessary.
952          */
953         virtual void On005Numeric(std::string &output);
954
955         /** Called when a client is disconnected by KILL.
956          * If a client is killed by a server, e.g. a nickname collision or protocol error,
957          * source is NULL.
958          * Return 1 from this function to prevent the kill, and 0 from this function to allow
959          * it as normal. If you prevent the kill no output will be sent to the client, it is
960          * down to your module to generate this information.
961          * NOTE: It is NOT advisable to stop kills which originate from servers or remote users.
962          * If you do so youre risking race conditions, desyncs and worse!
963          * @param source The user sending the KILL
964          * @param dest The user being killed
965          * @param reason The kill reason
966          * @return 1 to prevent the kill, 0 to allow
967          */
968         virtual int OnKill(userrec* source, userrec* dest, const std::string &reason);
969
970         /** Called when an oper wants to disconnect a remote user via KILL
971          * @param source The user sending the KILL
972          * @param dest The user being killed
973          * @param reason The kill reason
974          */
975         virtual void OnRemoteKill(userrec* source, userrec* dest, const std::string &reason);
976
977         /** Called whenever a module is loaded.
978          * mod will contain a pointer to the module, and string will contain its name,
979          * for example m_widgets.so. This function is primary for dependency checking,
980          * your module may decide to enable some extra features if it sees that you have
981          * for example loaded "m_killwidgets.so" with "m_makewidgets.so". It is highly
982          * recommended that modules do *NOT* bail if they cannot satisfy dependencies,
983          * but instead operate under reduced functionality, unless the dependency is
984          * absolutely neccessary (e.g. a module that extends the features of another
985          * module).
986          * @param mod A pointer to the new module
987          * @param name The new module's filename
988          */
989         virtual void OnLoadModule(Module* mod,const std::string &name);
990
991         /** Called whenever a module is unloaded.
992          * mod will contain a pointer to the module, and string will contain its name,
993          * for example m_widgets.so. This function is primary for dependency checking,
994          * your module may decide to enable some extra features if it sees that you have
995          * for example loaded "m_killwidgets.so" with "m_makewidgets.so". It is highly
996          * recommended that modules do *NOT* bail if they cannot satisfy dependencies,
997          * but instead operate under reduced functionality, unless the dependency is
998          * absolutely neccessary (e.g. a module that extends the features of another
999          * module).
1000          * @param mod Pointer to the module being unloaded (still valid)
1001          * @param name The filename of the module being unloaded
1002          */
1003         virtual void OnUnloadModule(Module* mod,const std::string &name);
1004
1005         /** Called once every five seconds for background processing.
1006          * This timer can be used to control timed features. Its period is not accurate
1007          * enough to be used as a clock, but it is gauranteed to be called at least once in
1008          * any five second period, directly from the main loop of the server.
1009          * @param curtime The current timer derived from time(2)
1010          */
1011         virtual void OnBackgroundTimer(time_t curtime);
1012
1013         /** Called whenever any command is about to be executed.
1014          * This event occurs for all registered commands, wether they are registered in the core,
1015          * or another module, and for invalid commands. Invalid commands may only be sent to this
1016          * function when the value of validated is false. By returning 1 from this method you may prevent the
1017          * command being executed. If you do this, no output is created by the core, and it is
1018          * down to your module to produce any output neccessary.
1019          * Note that unless you return 1, you should not destroy any structures (e.g. by using
1020          * InspIRCd::QuitUser) otherwise when the command's handler function executes after your
1021          * method returns, it will be passed an invalid pointer to the user object and crash!)
1022          * @param command The command being executed
1023          * @param parameters An array of array of characters containing the parameters for the command
1024          * @param pcnt The nuimber of parameters passed to the command
1025          * @param user the user issuing the command
1026          * @param validated True if the command has passed all checks, e.g. it is recognised, has enough parameters, the user has permission to execute it, etc.
1027          * @param original_line The entire original line as passed to the parser from the user
1028          * @return 1 to block the command, 0 to allow
1029          */
1030         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line);
1031
1032         /** Called after any command has been executed.
1033          * This event occurs for all registered commands, wether they are registered in the core,
1034          * or another module, but it will not occur for invalid commands (e.g. ones which do not
1035          * exist within the command table). The result code returned by the command handler is
1036          * provided.
1037          * @param command The command being executed
1038          * @param parameters An array of array of characters containing the parameters for the command
1039          * @param pcnt The nuimber of parameters passed to the command
1040          * @param user the user issuing the command
1041          * @param result The return code given by the command handler, one of CMD_SUCCESS or CMD_FAILURE
1042          * @param original_line The entire original line as passed to the parser from the user
1043          */
1044         virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, CmdResult result, const std::string &original_line);
1045
1046         /** Called to check if a user who is connecting can now be allowed to register
1047          * If any modules return false for this function, the user is held in the waiting
1048          * state until all modules return true. For example a module which implements ident
1049          * lookups will continue to return false for a user until their ident lookup is completed.
1050          * Note that the registration timeout for a user overrides these checks, if the registration
1051          * timeout is reached, the user is disconnected even if modules report that the user is
1052          * not ready to connect.
1053          * @param user The user to check
1054          * @return true to indicate readiness, false if otherwise
1055          */
1056         virtual bool OnCheckReady(userrec* user);
1057
1058         /** Called whenever a user is about to register their connection (e.g. before the user
1059          * is sent the MOTD etc). Modules can use this method if they are performing a function
1060          * which must be done before the actual connection is completed (e.g. ident lookups,
1061          * dnsbl lookups, etc).
1062          * Note that you should NOT delete the user record here by causing a disconnection!
1063          * Use OnUserConnect for that instead.
1064          * @param user The user registering
1065          * @return 1 to indicate user quit, 0 to continue
1066          */
1067         virtual int OnUserRegister(userrec* user);
1068
1069         /** Called whenever a user joins a channel, to determine if invite checks should go ahead or not.
1070          * This method will always be called for each join, wether or not the channel is actually +i, and
1071          * determines the outcome of an if statement around the whole section of invite checking code.
1072          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1073          * @param user The user joining the channel
1074          * @param chan The channel being joined
1075          * @return 1 to explicitly allow the join, 0 to proceed as normal
1076          */
1077         virtual int OnCheckInvite(userrec* user, chanrec* chan);
1078
1079         /** Called whenever a user joins a channel, to determine if key checks should go ahead or not.
1080          * This method will always be called for each join, wether or not the channel is actually +k, and
1081          * determines the outcome of an if statement around the whole section of key checking code.
1082          * if the user specified no key, the keygiven string will be a valid but empty value.
1083          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1084          * @param user The user joining the channel
1085          * @param chan The channel being joined
1086          * @return 1 to explicitly allow the join, 0 to proceed as normal
1087          */
1088         virtual int OnCheckKey(userrec* user, chanrec* chan, const std::string &keygiven);
1089
1090         /** Called whenever a user joins a channel, to determine if channel limit checks should go ahead or not.
1091          * This method will always be called for each join, wether or not the channel is actually +l, and
1092          * determines the outcome of an if statement around the whole section of channel limit checking code.
1093          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1094          * @param user The user joining the channel
1095          * @param chan The channel being joined
1096          * @return 1 to explicitly allow the join, 0 to proceed as normal
1097          */
1098         virtual int OnCheckLimit(userrec* user, chanrec* chan);
1099
1100         /** Called whenever a user joins a channel, to determine if banlist checks should go ahead or not.
1101          * This method will always be called for each join, wether or not the user actually matches a channel ban, and
1102          * determines the outcome of an if statement around the whole section of ban checking code.
1103          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1104          * @param user The user joining the channel
1105          * @param chan The channel being joined
1106          * @return 1 to explicitly allow the join, 0 to proceed as normal
1107          */
1108         virtual int OnCheckBan(userrec* user, chanrec* chan);
1109
1110         /** Called on all /STATS commands
1111          * This method is triggered for all /STATS use, including stats symbols handled by the core.
1112          * @param symbol the symbol provided to /STATS
1113          * @param user the user issuing the /STATS command
1114          * @param results A string_list to append results into. You should put all your results
1115          * into this string_list, rather than displaying them directly, so that your handler will
1116          * work when remote STATS queries are received.
1117          * @return 1 to block the /STATS from being processed by the core, 0 to allow it
1118          */
1119         virtual int OnStats(char symbol, userrec* user, string_list &results);
1120
1121         /** Called whenever a change of a local users displayed host is attempted.
1122          * Return 1 to deny the host change, or 0 to allow it.
1123          * @param user The user whos host will be changed
1124          * @param newhost The new hostname
1125          * @return 1 to deny the host change, 0 to allow
1126          */
1127         virtual int OnChangeLocalUserHost(userrec* user, const std::string &newhost);
1128
1129         /** Called whenever a change of a local users GECOS (fullname field) is attempted.
1130          * return 1 to deny the name change, or 0 to allow it.
1131          * @param user The user whos GECOS will be changed
1132          * @param newhost The new GECOS
1133          * @return 1 to deny the GECOS change, 0 to allow
1134          */
1135         virtual int OnChangeLocalUserGECOS(userrec* user, const std::string &newhost); 
1136
1137         /** Called whenever a topic is changed by a local user.
1138          * Return 1 to deny the topic change, or 0 to allow it.
1139          * @param user The user changing the topic
1140          * @param chan The channels who's topic is being changed
1141          * @param topic The actual topic text
1142          * @param 1 to block the topic change, 0 to allow
1143          */
1144         virtual int OnLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic);
1145
1146         /** Called whenever a local topic has been changed.
1147          * To block topic changes you must use OnLocalTopicChange instead.
1148          * @param user The user changing the topic
1149          * @param chan The channels who's topic is being changed
1150          * @param topic The actual topic text
1151          */
1152         virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, const std::string &topic);
1153
1154         /** Called whenever an Event class is sent to all module by another module.
1155          * Please see the documentation of Event::Send() for further information. The Event sent can
1156          * always be assumed to be non-NULL, you should *always* check the value of Event::GetEventID()
1157          * before doing anything to the event data, and you should *not* change the event data in any way!
1158          * @param event The Event class being received
1159          */
1160         virtual void OnEvent(Event* event);
1161
1162         /** Called whenever a Request class is sent to your module by another module.
1163          * Please see the documentation of Request::Send() for further information. The Request sent
1164          * can always be assumed to be non-NULL, you should not change the request object or its data.
1165          * Your method may return arbitary data in the char* result which the requesting module
1166          * may be able to use for pre-determined purposes (e.g. the results of an SQL query, etc).
1167          * @param request The Request class being received
1168          */
1169         virtual char* OnRequest(Request* request);
1170
1171         /** Called whenever an oper password is to be compared to what a user has input.
1172          * The password field (from the config file) is in 'password' and is to be compared against
1173          * 'input'. This method allows for encryption of oper passwords and much more besides.
1174          * You should return a nonzero value if you want to allow the comparison or zero if you wish
1175          * to do nothing.
1176          * @param password The oper's password
1177          * @param input The password entered
1178          * @return 1 to match the passwords, 0 to do nothing
1179          */
1180         virtual int OnOperCompare(const std::string &password, const std::string &input);
1181
1182         /** Called whenever a user is given usermode +o, anywhere on the network.
1183          * You cannot override this and prevent it from happening as it is already happened and
1184          * such a task must be performed by another server. You can however bounce modes by sending
1185          * servermodes out to reverse mode changes.
1186          * @param user The user who is opering
1187          */
1188         virtual void OnGlobalOper(userrec* user);
1189
1190         /** Called after a user has fully connected and all modules have executed OnUserConnect
1191          * This event is informational only. You should not change any user information in this
1192          * event. To do so, use the OnUserConnect method to change the state of local users.
1193          * This is called for both local and remote users.
1194          * @param user The user who is connecting
1195          */
1196         virtual void OnPostConnect(userrec* user);
1197
1198         /** Called whenever a ban is added to a channel's list.
1199          * Return a non-zero value to 'eat' the mode change and prevent the ban from being added.
1200          * @param source The user adding the ban
1201          * @param channel The channel the ban is being added to
1202          * @param banmask The ban mask being added
1203          * @return 1 to block the ban, 0 to continue as normal
1204          */
1205         virtual int OnAddBan(userrec* source, chanrec* channel,const std::string &banmask);
1206
1207         /** Called whenever a ban is removed from a channel's list.
1208          * Return a non-zero value to 'eat' the mode change and prevent the ban from being removed.
1209          * @param source The user deleting the ban
1210          * @param channel The channel the ban is being deleted from
1211          * @param banmask The ban mask being deleted
1212          * @return 1 to block the unban, 0 to continue as normal
1213          */
1214         virtual int OnDelBan(userrec* source, chanrec* channel,const std::string &banmask);
1215
1216         /** Called immediately after any  connection is accepted. This is intended for raw socket
1217          * processing (e.g. modules which wrap the tcp connection within another library) and provides
1218          * no information relating to a user record as the connection has not been assigned yet.
1219          * There are no return values from this call as all modules get an opportunity if required to
1220          * process the connection.
1221          * @param fd The file descriptor returned from accept()
1222          * @param ip The IP address of the connecting user
1223          * @param localport The local port number the user connected to
1224          */
1225         virtual void OnRawSocketAccept(int fd, const std::string &ip, int localport);
1226
1227         /** Called immediately before any write() operation on a user's socket in the core. Because
1228          * this event is a low level event no user information is associated with it. It is intended
1229          * for use by modules which may wrap connections within another API such as SSL for example.
1230          * return a non-zero result if you have handled the write operation, in which case the core
1231          * will not call write().
1232          * @param fd The file descriptor of the socket
1233          * @param buffer A char* buffer being written
1234          * @param Number of characters to write
1235          * @return Number of characters actually written or 0 if you didn't handle the operation
1236          */
1237         virtual int OnRawSocketWrite(int fd, const char* buffer, int count);
1238
1239         /** Called immediately before any socket is closed. When this event is called, shutdown()
1240          * has not yet been called on the socket.
1241          * @param fd The file descriptor of the socket prior to close()
1242          */
1243         virtual void OnRawSocketClose(int fd);
1244
1245         /** Called immediately before any read() operation on a client socket in the core.
1246          * This occurs AFTER the select() or poll() so there is always data waiting to be read
1247          * when this event occurs.
1248          * Your event should return 1 if it has handled the reading itself, which prevents the core
1249          * just using read(). You should place any data read into buffer, up to but NOT GREATER THAN
1250          * the value of count. The value of readresult must be identical to an actual result that might
1251          * be returned from the read() system call, for example, number of bytes read upon success,
1252          * 0 upon EOF or closed socket, and -1 for error. If your function returns a nonzero value,
1253          * you MUST set readresult.
1254          * @param fd The file descriptor of the socket
1255          * @param buffer A char* buffer being read to
1256          * @param count The size of the buffer
1257          * @param readresult The amount of characters read, or 0
1258          * @return nonzero if the event was handled, in which case readresult must be valid on exit
1259          */
1260         virtual int OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult);
1261
1262         /** Called whenever a user sets away.
1263          * This method has no parameter for the away message, as it is available in the
1264          * user record as userrec::awaymsg.
1265          */
1266         virtual void OnSetAway(userrec* user);
1267
1268         /** Called when a user cancels their away state.
1269          */
1270         virtual void OnCancelAway(userrec* user);
1271
1272         /** Called whenever a NAMES list is requested.
1273          * You can produce the nameslist yourself, overriding the current list,
1274          * and if you do you must return 1. If you do not handle the names list,
1275          * return 0.
1276          */
1277         virtual int OnUserList(userrec* user, chanrec* Ptr);
1278
1279         /** Called whenever a line of WHOIS output is sent to a user.
1280          * You may change the numeric and the text of the output by changing
1281          * the values numeric and text, but you cannot change the user the
1282          * numeric is sent to. You may however change the user's userrec values.
1283          * @param user The user the numeric is being sent to
1284          * @param dest The user being WHOISed
1285          * @param numeric The numeric of the line being sent
1286          * @param text The text of the numeric, including any parameters
1287          * @return nonzero to drop the line completely so that the user does not
1288          * receive it, or zero to allow the line to be sent.
1289          */
1290         virtual int OnWhoisLine(userrec* user, userrec* dest, int &numeric, std::string &text);
1291 };
1292
1293
1294 #define CONF_NOT_A_NUMBER       0x000010
1295 #define CONF_NOT_UNSIGNED       0x000080
1296 #define CONF_VALUE_NOT_FOUND    0x000100
1297 #define CONF_FILE_NOT_FOUND     0x000200
1298
1299
1300 /** Allows reading of values from configuration files
1301  * This class allows a module to read from either the main configuration file (inspircd.conf) or from
1302  * a module-specified configuration file. It may either be instantiated with one parameter or none.
1303  * Constructing the class using one parameter allows you to specify a path to your own configuration
1304  * file, otherwise, inspircd.conf is read.
1305  */
1306 class ConfigReader : public classbase
1307 {
1308   protected:
1309         InspIRCd* ServerInstance;
1310         /** The contents of the configuration file
1311          * This protected member should never be accessed by a module (and cannot be accessed unless the
1312          * core is changed). It will contain a pointer to the configuration file data with unneeded data
1313          * (such as comments) stripped from it.
1314          */
1315         ConfigDataHash* data;
1316         std::ostringstream* errorlog;;
1317         /** Used to store errors
1318          */
1319         bool privatehash; // If we're using our own config data hash or not.
1320         bool readerror;
1321         long error;
1322         
1323   public:
1324         /** Default constructor.
1325          * This constructor initialises the ConfigReader class to read the inspircd.conf file
1326          * as specified when running ./configure.
1327          */
1328         ConfigReader(InspIRCd* Instance);
1329         /** Overloaded constructor.
1330          * This constructor initialises the ConfigReader class to read a user-specified config file
1331          */
1332         ConfigReader(InspIRCd* Instance, const std::string &filename);
1333         /** Default destructor.
1334          * This method destroys the ConfigReader class.
1335          */
1336         ~ConfigReader();
1337         /** Retrieves a value from the config file.
1338          * This method retrieves a value from the config file. Where multiple copies of the tag
1339          * exist in the config file, index indicates which of the values to retrieve.
1340          */
1341         std::string ReadValue(const std::string &tag, const std::string &name, int index);
1342         /** Retrieves a boolean value from the config file.
1343          * This method retrieves a boolean value from the config file. Where multiple copies of the tag
1344          * exist in the config file, index indicates which of the values to retrieve. The values "1", "yes"
1345          * and "true" in the config file count as true to ReadFlag, and any other value counts as false.
1346          */
1347         bool ReadFlag(const std::string &tag, const std::string &name, int index);
1348         /** Retrieves an integer value from the config file.
1349          * This method retrieves an integer value from the config file. Where multiple copies of the tag
1350          * exist in the config file, index indicates which of the values to retrieve. Any invalid integer
1351          * values in the tag will cause the objects error value to be set, and any call to GetError() will
1352          * return CONF_INVALID_NUMBER to be returned. needs_unsigned is set if the number must be unsigned.
1353          * If a signed number is placed into a tag which is specified unsigned, 0 will be returned and GetError()
1354          * will return CONF_NOT_UNSIGNED
1355          */
1356         long ReadInteger(const std::string &tag, const std::string &name, int index, bool needs_unsigned);
1357         /** Returns the last error to occur.
1358          * Valid errors can be found by looking in modules.h. Any nonzero value indicates an error condition.
1359          * A call to GetError() resets the error flag back to 0.
1360          */
1361         long GetError();
1362         /** Counts the number of times a given tag appears in the config file.
1363          * This method counts the number of times a tag appears in a config file, for use where
1364          * there are several tags of the same kind, e.g. with opers and connect types. It can be
1365          * used with the index value of ConfigReader::ReadValue to loop through all copies of a
1366          * multiple instance tag.
1367          */
1368         int Enumerate(const std::string &tag);
1369         /** Returns true if a config file is valid.
1370          * This method is partially implemented and will only return false if the config
1371          * file does not exist or could not be opened.
1372          */
1373         bool Verify();
1374         /** Dumps the list of errors in a config file to an output location. If bail is true,
1375          * then the program will abort. If bail is false and user points to a valid user
1376          * record, the error report will be spooled to the given user by means of NOTICE.
1377          * if bool is false AND user is false, the error report will be spooled to all opers
1378          * by means of a NOTICE to all opers.
1379          */
1380         void DumpErrors(bool bail,userrec* user);
1381
1382         /** Returns the number of items within a tag.
1383          * For example if the tag was &lt;test tag="blah" data="foo"&gt; then this
1384          * function would return 2. Spaces and newlines both qualify as valid seperators
1385          * between values.
1386          */
1387         int EnumerateValues(const std::string &tag, int index);
1388 };
1389
1390
1391
1392 /** Caches a text file into memory and can be used to retrieve lines from it.
1393  * This class contains methods for read-only manipulation of a text file in memory.
1394  * Either use the constructor type with one parameter to load a file into memory
1395  * at construction, or use the LoadFile method to load a file.
1396  */
1397 class FileReader : public classbase
1398 {
1399         InspIRCd* ServerInstance;
1400         /** The file contents
1401          */
1402         file_cache fc;
1403
1404         unsigned long contentsize;
1405
1406         void CalcSize();
1407
1408  public:
1409         /** Default constructor.
1410          * This method does not load any file into memory, you must use the LoadFile method
1411          * after constructing the class this way.
1412          */
1413         FileReader(InspIRCd* Instance);
1414
1415         /** Secondary constructor.
1416          * This method initialises the class with a file loaded into it ready for GetLine and
1417          * and other methods to be called. If the file could not be loaded, FileReader::FileSize
1418          * returns 0.
1419          */
1420         FileReader(InspIRCd* Instance, const std::string &filename);
1421
1422         /** Default destructor.
1423          * This deletes the memory allocated to the file.
1424          */
1425         ~FileReader();
1426
1427         /** Used to load a file.
1428          * This method loads a file into the class ready for GetLine and
1429          * and other methods to be called. If the file could not be loaded, FileReader::FileSize
1430          * returns 0.
1431          */
1432         void LoadFile(const std::string &filename);
1433
1434         /** Returns the whole content of the file as std::string
1435          */
1436         std::string Contents();
1437
1438         /** Returns the entire size of the file as std::string
1439          */
1440         unsigned long ContentSize();
1441
1442         /** Returns true if the file exists
1443          * This function will return false if the file could not be opened.
1444          */
1445         bool Exists();
1446  
1447         /** Retrieve one line from the file.
1448          * This method retrieves one line from the text file. If an empty non-NULL string is returned,
1449          * the index was out of bounds, or the line had no data on it.
1450          */
1451         std::string GetLine(int x);
1452
1453         /** Returns the size of the file in lines.
1454          * This method returns the number of lines in the read file. If it is 0, no lines have been
1455          * read into memory, either because the file is empty or it does not exist, or cannot be
1456          * opened due to permission problems.
1457          */
1458         int FileSize();
1459 };
1460
1461
1462 /** Instantiates classes inherited from Module.
1463  * This class creates a class inherited from type Module, using new. This is to allow for modules
1464  * to create many different variants of Module, dependent on architecture, configuration, etc.
1465  * In most cases, the simple class shown in the example module m_foobar.so will suffice for most
1466  * modules.
1467  */
1468 class ModuleFactory : public classbase
1469 {
1470  public:
1471         /** The default constructor does nothing.
1472          */
1473         ModuleFactory() { }
1474         /** The default destructor does nothing
1475          */
1476         virtual ~ModuleFactory() { }
1477         /** Creates a new module.
1478          * Your inherited class of ModuleFactory must return a pointer to your Module class
1479          * using this method.
1480          */
1481         virtual Module * CreateModule(InspIRCd* Me) = 0;
1482 };
1483
1484 /** A DLLFactory (designed to load shared objects) containing a ModuleFactory.
1485  */
1486 typedef DLLFactory<ModuleFactory> ircd_module;
1487
1488 /** A list of loaded Modules
1489  */
1490 typedef std::vector<Module*> ModuleList;
1491
1492 /** A list of loaded ModuleFactories
1493  */
1494 typedef std::vector<ircd_module*> FactoryList;
1495
1496 #endif