]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/mode.h
fe646c9b3f24755ba66bbb974c63f470457933e4
[user/henk/code/inspircd.git] / include / mode.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 __MODE_H
18 #define __MODE_H
19
20 /* include the common header files */
21 #include <string>
22 #include <deque>
23 #include <vector>
24 #include "users.h"
25 #include "channels.h"
26 #include "ctables.h"
27
28 class InspIRCd;
29
30 /**
31  * Holds the values for different type of modes
32  * that can exist, USER or CHANNEL type.
33  */
34 enum ModeType
35 {
36         MODETYPE_USER = 0,
37         MODETYPE_CHANNEL = 1
38 };
39
40 /**
41  * Holds mode actions - modes can be allowed or denied.
42  */
43 enum ModeAction
44 {
45         MODEACTION_DENY = 0, /* Drop the mode change, AND a parameter if its a parameterized mode */
46         MODEACTION_ALLOW = 1 /* Allow the mode */
47 };
48
49 /**
50  * Used to mask off the mode types in the mode handler
51  * array. Used in a simple two instruction hashing function
52  * "(modeletter - 65) OR mask"
53  */
54 enum ModeMasks
55 {
56         MASK_USER = 128,        /* A user mode */
57         MASK_CHANNEL = 0        /* A channel mode */
58 };
59
60 /**
61  * These fixed values can be used to proportionally compare module-defined prefixes to known values.
62  * For example, if your module queries a chanrec, and is told that user 'joebloggs' has the prefix
63  * '$', and you dont know what $ means, then you can compare it to these three values to determine
64  * its worth against them. For example if '$' had a value of 15000, you would know it is of higher
65  * status than voice, but lower status than halfop.
66  * No two modes should have equal prefix values.
67  */
68 enum PrefixModeValue
69 {
70         VOICE_VALUE     =       10000,
71         HALFOP_VALUE    =       20000,
72         OP_VALUE        =       30000
73 };
74
75 /**
76  * Used by ModeHandler::ModeSet() to return the state of a mode upon a channel or user.
77  * The pair contains an activity flag, true if the mode is set with the given parameter,
78  * and the parameter of the mode (or the parameter provided) in the std::string.
79  */
80 typedef std::pair<bool,std::string> ModePair;
81
82 /** Each mode is implemented by ONE ModeHandler class.
83  * You must derive ModeHandler and add the child class to
84  * the list of modes handled by the ircd, using
85  * ModeParser::AddMode. When the mode you implement is
86  * set by a user, the virtual function OnModeChange is
87  * called. If you specify a value greater than 0 for
88  * parameters_on or parameters_off, then when the mode is
89  * set or unset respectively, std::string &parameter will
90  * contain the parameter given by the user, else it will
91  * contain an empty string. You may alter this parameter
92  * string, and if you alter it to an empty string, and your
93  * mode is expected to have a parameter, then this is
94  * equivalent to returning MODEACTION_DENY.
95  */
96 class ModeHandler : public Extensible
97 {
98  protected:
99         InspIRCd* ServerInstance;
100         /**
101          * The mode letter you're implementing.
102          */
103         char mode;
104         /**
105          * Number of parameters when being set
106          */
107         int n_params_on;
108         /**
109          * Number of parameters when being unset
110          */
111         int n_params_off;
112         /**
113          * Mode is a 'list' mode. The behaviour
114          * of your mode is now set entirely within
115          * the class as of the 1.1 api, rather than
116          * inside the mode parser as in the 1.0 api,
117          * so the only use of this value (along with
118          * IsListMode()) is for the core to determine
119          * wether your module can produce 'lists' or not
120          * (e.g. banlists, etc)
121          */
122         bool list;
123         /**
124          * The mode type, either MODETYPE_USER or
125          * MODETYPE_CHANNEL.
126          */
127         ModeType m_type;
128         /**
129          * True if the mode requires oper status
130          * to set.
131          */
132         bool oper;
133
134         /** Mode prefix, or 0
135          */
136         char prefix;
137
138  public:
139         /**
140          * The constructor for ModeHandler initalizes the mode handler.
141          * The constructor of any class you derive from ModeHandler should
142          * probably call this constructor with the parameters set correctly.
143          * @param modeletter The mode letter you wish to handle
144          * @param parameters_on The number of parameters your mode takes when being set. Note that any nonzero value is treated as 1.
145          * @param parameters_off The number of parameters your mode takes when being unset. Note that any nonzero value is treated as 1.
146          * @param listmode Set to true if your mode is a listmode, e.g. it will respond to MODE #channel +modechar with a list of items
147          * @param ModeType Set this to MODETYPE_USER for a usermode, or MODETYPE_CHANNEL for a channelmode.
148          * @param operonly Set this to true if only opers should be allowed to set or unset the mode.
149          * @param mprefix For listmodes where parameters are NICKNAMES which are on the channel (for example, +ohv), you may define a prefix.
150          * When you define a prefix, it can be returned in NAMES, WHO etc if it has the highest value (as returned by GetPrefixRank())
151          * In the core, the only modes to implement prefixes are +ovh (ops, voice, halfop) which define the prefix characters @, % and +
152          * and the rank values OP_VALUE, HALFOP_VALUE and VOICE_VALUE respectively. Any prefixes you define should have unique values proportional
153          * to these three defaults or proportional to another mode in a module you depend on. See src/cmode_o.cpp as an example.
154          */
155         ModeHandler(InspIRCd* Instance, char modeletter, int parameters_on, int parameters_off, bool listmode, ModeType type, bool operonly, char mprefix = 0);
156         /**
157          * The default destructor does nothing
158          */
159         virtual ~ModeHandler();
160         /**
161          * Returns true if the mode is a list mode
162          */
163         bool IsListMode();
164         /**
165          * Mode prefix or 0. If this is defined, you should
166          * also implement GetPrefixRank() to return an integer
167          * value for this mode prefix.
168          */
169         char GetPrefix();
170         /**
171          * Get the 'value' of this modes prefix.
172          * determines which to display when there are multiple.
173          * The mode with the highest value is ranked first. See the
174          * PrefixModeValue enum and chanrec::GetPrefixValue() for
175          * more information.
176          */
177         virtual unsigned int GetPrefixRank();
178         /**
179          * Returns the modes type
180          */
181         ModeType GetModeType();
182         /**
183          * Returns true if the mode can only be set/unset by an oper
184          */
185         bool NeedsOper();
186         /**
187          * Returns the number of parameters for the mode. Any non-zero
188          * value should be considered to be equivalent to one.
189          * @param adding If this is true, the number of parameters required to set the mode should be returned, otherwise the number of parameters required to unset the mode shall be returned.
190          * @return The number of parameters the mode expects
191          */
192         int GetNumParams(bool adding);
193         /**
194          * Returns the mode character this handler handles.
195          * @return The mode character
196          */
197         char GetModeChar();
198
199         /**
200          * Called when a mode change for your mode occurs.
201          * @param source Contains the user setting the mode.
202          * @param dest For usermodes, contains the destination user the mode is being set on. For channelmodes, this is an undefined value.
203          * @param channel For channel modes, contains the destination channel the modes are being set on. For usermodes, this is an undefined value.
204          * @param parameter The parameter for your mode, if you indicated that your mode requires a parameter when being set or unset. Note that
205          * if you alter this value, the new value becomes the one displayed and send out to the network, also, if you set this to an empty string
206          * but you specified your mode REQUIRES a parameter, this is equivalent to returning MODEACTION_DENY and will prevent the mode from being
207          * displayed.
208          * @param adding This value is true when the mode is being set, or false when it is being unset.
209          * @return MODEACTION_ALLOW to allow the mode, or MODEACTION_DENY to prevent the mode, also see the description of 'parameter'.
210          */
211         virtual ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding); /* Can change the mode parameter as its a ref */
212         /**
213          * If your mode is a listmode, then this method will be called for displaying an item list, e.g. on MODE #channel +modechar
214          * without any parameter or other modes in the command.
215          * @param user The user issuing the command
216          * @parameter channel The channel they're requesting an item list of (e.g. a banlist, or an exception list etc)
217          */
218         virtual void DisplayList(userrec* user, chanrec* channel);
219         /**
220          * If your mode needs special action during a server sync to determine which side wins when comparing timestamps,
221          * override this function and use it to return true or false. The default implementation just returns true if
222          * theirs < ours. This will only be called for non-listmodes with parameters, when adding the mode and where
223          * theirs == ours (therefore the default implementation will always return false).
224          * @param theirs The timestamp of the remote side
225          * @param ours The timestamp of the local side
226          * @param their_param Their parameter if the mode has a parameter
227          * @param our_param Our parameter if the mode has a parameter
228          * @param channel The channel we are checking against
229          * @return True if the other side wins the merge, false if we win the merge for this mode.
230          */
231         virtual bool CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel);
232
233         /**
234          * When a remote server needs to bounce a set of modes, it will call this method for every mode
235          * in the mode string to determine if the mode is set or not.
236          * @param source of the mode change, this will be NULL for a server mode
237          * @param dest Target user of the mode change, if this is a user mode
238          * @param channel Target channel of the mode change, if this is a channel mode
239          * @param parameter The parameter given for the mode change, or an empty string
240          * @returns The first value of the pair should be true if the mode is set with the given parameter.
241          * In the case of permissions modes such as channelmode +o, this should return true if the user given
242          * as the parameter has the given privilage on the given channel. The string value of the pair will hold
243          * the current setting for this mode set locally, when the bool is true, or, the parameter given.
244          * This allows the local server to enforce our locally set parameters back to a remote server.
245          */
246         virtual ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter);
247
248         /**
249          * When a MODETYPE_USER mode handler is being removed, the server will call this method for every user on the server.
250          * Your mode handler should remove its user mode from the user by sending the appropriate server modes using
251          * InspIRCd::SendMode(). The default implementation of this method can remove simple modes which have no parameters,
252          * and can be used when your mode is of this type, otherwise you must implement a more advanced version of it to remove
253          * your mode properly from each user.
254          * @param user The user which the server wants to remove your mode from
255          */
256         virtual void RemoveMode(userrec* user);
257
258         /**
259          * When a MODETYPE_CHANNEL mode handler is being removed, the server will call this method for every channel on the server.
260          * Your mode handler should remove its user mode from the channel by sending the appropriate server modes using
261          * InspIRCd::SendMode(). The default implementation of this method can remove simple modes which have no parameters,
262          * and can be used when your mode is of this type, otherwise you must implement a more advanced version of it to remove
263          * your mode properly from each channel. Note that in the case of listmodes, you should remove the entire list of items.
264          * @param channel The channel which the server wants to remove your mode from
265          */
266         virtual void RemoveMode(chanrec* channel);
267 };
268
269 /**
270  * The ModeWatcher class can be used to alter the behaviour of a mode implemented
271  * by the core or by another module. To use ModeWatcher, derive a class from it,
272  * and attach it to the mode using Server::AddModeWatcher and Server::DelModeWatcher.
273  * A ModeWatcher will be called both before and after the mode change.
274  */
275 class ModeWatcher : public Extensible
276 {
277  protected:
278         InspIRCd* ServerInstance;
279         /**
280          * The mode letter this class is watching
281          */
282         char mode;
283         /**
284          * The mode type being watched (user or  channel)
285          */
286         ModeType m_type;
287
288  public:
289         /**
290          * The constructor initializes the mode and the mode type
291          */
292         ModeWatcher(InspIRCd* Instance, char modeletter, ModeType type);
293         /**
294          * The default destructor does nothing.
295          */
296         virtual ~ModeWatcher();
297
298         /**
299          * Get the mode character being watched
300          * @return The mode character being watched
301          */
302         char GetModeChar();
303         /**
304          * Get the mode type being watched
305          * @return The mode type being watched (user or channel)
306          */
307         ModeType GetModeType();
308
309         /**
310          * Before the mode character is processed by its handler, this method will be called.
311          * @param source The sender of the mode
312          * @param dest The target user for the mode, if you are watching a user mode
313          * @param channel The target channel for the mode, if you are watching a channel mode
314          * @param parameter The parameter of the mode, if the mode is supposed to have a parameter.
315          * If you alter the parameter you are given, the mode handler will see your atered version
316          * when it handles the mode.
317          * @param adding True if the mode is being added and false if it is being removed
318          * @type The mode type, either MODETYPE_USER or MODETYPE_CHANNEL
319          * @return True to allow the mode change to go ahead, false to abort it. If you abort the
320          * change, the mode handler (and ModeWatcher::AfterMode()) will never see the mode change.
321          */
322         virtual bool BeforeMode(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding, ModeType type);
323         /**
324          * After the mode character has been processed by the ModeHandler, this method will be called.
325          * @param source The sender of the mode
326          * @param dest The target user for the mode, if you are watching a user mode
327          * @param channel The target channel for the mode, if you are watching a channel mode
328          * @param parameter The parameter of the mode, if the mode is supposed to have a parameter.
329          * You cannot alter the parameter here, as the mode handler has already processed it.
330          * @param adding True if the mode is being added and false if it is being removed
331          * @type The mode type, either MODETYPE_USER or MODETYPE_CHANNEL
332          */
333         virtual void AfterMode(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter, bool adding, ModeType type);
334 };
335
336 typedef std::vector<ModeWatcher*>::iterator ModeWatchIter;
337
338 /** The mode parser handles routing of modes and handling of mode strings.
339  * It marshalls, controls and maintains both ModeWatcher and ModeHandler classes,
340  * parses client to server MODE strings for user and channel modes, and performs
341  * processing for the 004 mode list numeric, amongst other things.
342  */
343 class ModeParser : public classbase
344 {
345  private:
346         InspIRCd* ServerInstance;
347         /** Mode handlers for each mode, to access a handler subtract
348          * 65 from the ascii value of the mode letter.
349          * The upper bit of the value indicates if its a usermode
350          * or a channel mode, so we have 256 of them not 64.
351          */
352         ModeHandler* modehandlers[256];
353         /** Mode watcher classes arranged in the same way as the
354          * mode handlers, except for instead of having 256 of them
355          * we have 256 lists of them.
356          */
357         std::vector<ModeWatcher*> modewatchers[256];
358         /** Displays the current modes of a channel or user.
359          * Used by ModeParser::Process.
360          */
361         void DisplayCurrentModes(userrec *user, userrec* targetuser, chanrec* targetchannel, const char* text);
362
363  public:
364
365         /** The constructor initializes all the RFC basic modes by using ModeParserAddMode().
366          */
367         ModeParser(InspIRCd* Instance);
368
369         /** Used to check if user 'd' should be allowed to do operation 'MASK' on channel 'chan'.
370          * for example, should 'user A' be able to 'op' on 'channel B'.
371          */
372         userrec* SanityChecks(userrec *user,const char *dest,chanrec *chan,int status);
373         /** Grant a built in privilage (e.g. ops, halfops, voice) to a user on a channel
374          */
375         const char* Grant(userrec *d,chanrec *chan,int MASK);
376         /** Revoke a built in privilage (e.g. ops, halfops, voice) to a user on a channel
377          */
378         const char* Revoke(userrec *d,chanrec *chan,int MASK);
379         /** Tidy a banmask. This makes a banmask 'acceptable' if fields are left out.
380          * E.g.
381          *
382          * nick -> nick!*@*
383          * 
384          * nick!ident -> nick!ident@*
385          * 
386          * host.name -> *!*@host.name
387          * 
388          * ident@host.name -> *!ident@host.name
389          *
390          * This method can be used on both IPV4 and IPV6 user masks.
391          */
392         static void CleanMask(std::string &mask);
393         /** Add a mode to the mode parser. The modeletter parameter
394          * is purely to save on doing a lookup in the function, as
395          * strictly it could be obtained via ModeHandler::GetModeChar().
396          * @return True if the mode was successfully added.
397          */
398         bool AddMode(ModeHandler* mh, unsigned const char modeletter);
399         /** Delete a mode from the mode parser.
400          * When a mode is deleted, the mode handler will be called
401          * for every user (if it is a user mode) or for every  channel
402          * (if it is a channel mode) to unset the mode on all objects.
403          * This prevents modes staying in the system which no longer exist.
404          * @param mh The mode handler to remove
405          * @return True if the mode was successfully removed.
406          */
407         bool DelMode(ModeHandler* mh);
408         /** Add a mode watcher.
409          * A mode watcher is triggered before and after a mode handler is
410          * triggered. See the documentation of class ModeWatcher for more
411          * information.
412          * @param mw The ModeWatcher you want to add
413          * @return True if the ModeWatcher was added correctly
414          */
415         bool AddModeWatcher(ModeWatcher* mw);
416         /** Delete a mode watcher.
417          * A mode watcher is triggered before and after a mode handler is
418          * triggered. See the documentation of class ModeWatcher for more
419          * information.
420          * @param mw The ModeWatcher you want to delete
421          * @return True if the ModeWatcher was deleted correctly
422          */
423         bool DelModeWatcher(ModeWatcher* mw);
424         /** Process a set of mode changes from a server or user.
425          * @param parameters The parameters of the mode change, in the format
426          * they would be from a MODE command.
427          * @param pcnt The number of items in the parameters array
428          * @param user The user setting or removing the modes. When the modes are set
429          * by a server, an 'uninitialized' userrec is used, where *user::nick == NULL
430          * and *user->server == NULL.
431          * @param servermode True if a server is setting the mode.
432          */
433         void Process(const char** parameters, int pcnt, userrec *user, bool servermode);
434
435         /** Find the mode handler for a given mode and type.
436          * @param modeletter mode letter to search for
437          * @param type of mode to search for, user or channel
438          * @returns a pointer to a ModeHandler class, or NULL of there isnt a handler for the given mode
439          */
440         ModeHandler* FindMode(unsigned const char modeletter, ModeType mt);
441
442         /** Find a mode handler by its prefix.
443          * If there is no mode handler with the given prefix, NULL will be returned.
444          * @param pfxletter The prefix to find, e.g. '@'
445          * @return The mode handler which handles this prefix, or NULL if there is none.
446          */
447         ModeHandler* FindPrefix(unsigned const char pfxletter);
448
449         /** Returns a list of mode characters which are usermodes.
450          * This is used in the 004 numeric when users connect.
451          */
452         std::string UserModeList();
453
454         /** Returns a list of channel mode characters which are listmodes.
455          * This is used in the 004 numeric when users connect.
456          */
457         std::string ChannelModeList();
458
459         /** Returns a list of channel mode characters which take parameters.
460          * This is used in the 004 numeric when users connect.
461          */
462         std::string ParaModeList();
463
464         /** Generates the CHANMODES= 005 sequence
465          */
466         std::string ChanModes();
467         /** Used by this class internally during std::sort and 005 generation
468          */
469         static bool PrefixComparison(const prefixtype one, const prefixtype two);
470
471         /** This returns the PREFIX=(ohv)@%+ section of the 005 numeric.
472          */
473         std::string BuildPrefixes();
474
475         /** This returns the privilages of a user upon a channel, in the format of a mode change.
476          * For example, if a user has privilages +avh, this will return the string "avh nick nick nick".
477          * This is used by the core when cycling a user to refresh their hostname. You may use it for
478          * similar purposes.
479          * @param user The username to look up
480          * @param channel The channel name to look up the privilages of the user for
481          * @return The mode string.
482          */
483         std::string ModeString(userrec* user, chanrec* channel);
484 };
485
486 #endif