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