]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/users.h
51600e3af8f1eb1aae86d5a35cb4a285f96bfe7c
[user/henk/code/inspircd.git] / include / users.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __USERS_H__
15 #define __USERS_H__
16
17 #include "socket.h"
18 #include "inspsocket.h"
19 #include "dns.h"
20 #include "mode.h"
21
22 /** connect class types
23  */
24 enum ClassTypes {
25         /** connect:allow */
26         CC_ALLOW = 0,
27         /** connect:deny */
28         CC_DENY  = 1
29 };
30
31 /** RFC1459 channel modes
32  */
33 enum UserModes {
34         /** +s: Server notice mask */
35         UM_SNOMASK = 's' - 65,
36         /** +w: WALLOPS */
37         UM_WALLOPS = 'w' - 65,
38         /** +i: Invisible */
39         UM_INVISIBLE = 'i' - 65,
40         /** +o: Operator */
41         UM_OPERATOR = 'o' - 65
42 };
43
44 /** Registration state of a user, e.g.
45  * have they sent USER, NICK, PASS yet?
46  */
47 enum RegistrationState {
48
49 #ifndef WIN32   // Burlex: This is already defined in win32, luckily it is still 0.
50         REG_NONE = 0,           /* Has sent nothing */
51 #endif
52
53         REG_USER = 1,           /* Has sent USER */
54         REG_NICK = 2,           /* Has sent NICK */
55         REG_NICKUSER = 3,       /* Bitwise combination of REG_NICK and REG_USER */
56         REG_ALL = 7             /* REG_NICKUSER plus next bit along */
57 };
58
59 /* Required forward declaration */
60 class Channel;
61 class UserResolver;
62 struct ConfigTag;
63
64 /** Holds information relevent to <connect allow> and <connect deny> tags in the config file.
65  */
66 struct CoreExport ConnectClass : public refcountbase
67 {
68         reference<ConfigTag> config;
69         /** Type of line, either CC_ALLOW or CC_DENY
70          */
71         char type;
72
73         /** Connect class name
74          */
75         std::string name;
76
77         /** Max time to register the connection in seconds
78          */
79         unsigned int registration_timeout;
80
81         /** Host mask for this line
82          */
83         std::string host;
84
85         /** Number of seconds between pings for this line
86          */
87         unsigned int pingtime;
88
89         /** (Optional) Password for this line
90          */
91         std::string pass;
92
93         /** (Optional) Hash Method for this line
94          */
95         std::string hash;
96
97         /** Maximum size of sendq for users in this class (bytes)
98          * Users cannot send commands if they go over this limit
99          */
100         unsigned long softsendqmax;
101
102         /** Maximum size of sendq for users in this class (bytes)
103          * Users are killed if they go over this limit
104          */
105         unsigned long hardsendqmax;
106
107         /** Maximum size of recvq for users in this class (bytes)
108          */
109         unsigned long recvqmax;
110
111         /** Seconds worth of penalty before penalty system activates
112          */
113         unsigned long penaltythreshold;
114
115         /** Local max when connecting by this connection class
116          */
117         unsigned long maxlocal;
118
119         /** Global max when connecting by this connection class
120          */
121         unsigned long maxglobal;
122
123         /** Max channels for this class
124          */
125         unsigned int maxchans;
126
127         /** Port number this connect class applies to
128          */
129         int port;
130
131         /** How many users may be in this connect class before they are refused?
132          * (0 = no limit = default)
133          */
134         unsigned long limit;
135
136         /** Create a new connect class with no settings.
137          */
138         ConnectClass(ConfigTag* tag, char type, const std::string& mask);
139         /** Create a new connect class with inherited settings.
140          */
141         ConnectClass(ConfigTag* tag, char type, const std::string& mask, const ConnectClass& parent);
142         
143         /** Update the settings in this block to match the given block */
144         void Update(const ConnectClass* newSettings);
145
146
147         const std::string& GetName() { return name; }
148         const std::string& GetPass() { return pass; }
149         const std::string& GetHost() { return host; }
150         const int GetPort() { return port; }
151         
152         /** Returns the registration timeout
153          */
154         time_t GetRegTimeout()
155         {
156                 return (registration_timeout ? registration_timeout : 90);
157         }
158
159         /** Returns the ping frequency
160          */
161         unsigned int GetPingTime()
162         {
163                 return (pingtime ? pingtime : 120);
164         }
165
166         /** Returns the maximum sendq value (soft limit)
167          * Note that this is in addition to internal OS buffers
168          */
169         unsigned long GetSendqSoftMax()
170         {
171                 return (softsendqmax ? softsendqmax : 4096);
172         }
173
174         /** Returns the maximum sendq value (hard limit)
175          */
176         unsigned long GetSendqHardMax()
177         {
178                 return (hardsendqmax ? hardsendqmax : 0x100000);
179         }
180
181         /** Returns the maximum recvq value
182          */
183         unsigned long GetRecvqMax()
184         {
185                 return (recvqmax ? recvqmax : 4096);
186         }
187
188         /** Returns the penalty threshold value
189          */
190         unsigned long GetPenaltyThreshold()
191         {
192                 return penaltythreshold;
193         }
194
195         /** Returusn the maximum number of local sessions
196          */
197         unsigned long GetMaxLocal()
198         {
199                 return maxlocal;
200         }
201
202         /** Returns the maximum number of global sessions
203          */
204         unsigned long GetMaxGlobal()
205         {
206                 return maxglobal;
207         }
208 };
209
210 /** Holds a complete list of all channels to which a user has been invited and has not yet joined, and the time at which they'll expire.
211  */
212 CoreExport typedef std::vector< std::pair<irc::string, time_t> > InvitedList;
213
214 /** Holds a complete list of all allow and deny tags from the configuration file (connection classes)
215  */
216 CoreExport typedef std::vector<reference<ConnectClass> > ClassVector;
217
218 /** Typedef for the list of user-channel records for a user
219  */
220 CoreExport typedef std::set<Channel*> UserChanList;
221
222 /** Shorthand for an iterator into a UserChanList
223  */
224 CoreExport typedef UserChanList::iterator UCListIter;
225
226 /* Required forward declaration
227  */
228 class User;
229
230 /** Holds all information about a user
231  * This class stores all information about a user connected to the irc server. Everything about a
232  * connection is stored here primarily, from the user's socket ID (file descriptor) through to the
233  * user's nickname and hostname.
234  */
235 class CoreExport User : public StreamSocket
236 {
237  private:
238         /** Cached nick!ident@dhost value using the displayed hostname
239          */
240         std::string cached_fullhost;
241
242         /** Cached ident@ip value using the real IP address
243          */
244         std::string cached_hostip;
245
246         /** Cached ident@realhost value using the real hostname
247          */
248         std::string cached_makehost;
249
250         /** Cached nick!ident@realhost value using the real hostname
251          */
252         std::string cached_fullrealhost;
253
254         /** Set by GetIPString() to avoid constantly re-grabbing IP via sockets voodoo.
255          */
256         std::string cachedip;
257
258         /** When we erase the user (in the destructor),
259          * we call this method to subtract one from all
260          * mode characters this user is making use of.
261          */
262         void DecrementModes();
263  public:
264
265         /** Hostname of connection.
266          * This should be valid as per RFC1035.
267          */
268         std::string host;
269
270         /** Time that the object was instantiated (used for TS calculation etc)
271         */
272         time_t age;
273
274         /** Time the connection was created, set in the constructor. This
275          * may be different from the time the user's classbase object was
276          * created.
277          */
278         time_t signon;
279
280         /** Time that the connection last sent a message, used to calculate idle time
281          */
282         time_t idle_lastmsg;
283
284         /** Client address that the user is connected from.
285          * Do not modify this value directly, use SetClientIP() to change it
286          * Port is not valid for remote users.
287          */
288         irc::sockets::sockaddrs client_sa;
289
290         /** The users nickname.
291          * An invalid nickname indicates an unregistered connection prior to the NICK command.
292          * Use InspIRCd::IsNick() to validate nicknames.
293          */
294         std::string nick;
295
296         /** The user's unique identifier.
297          * This is the unique identifier which the user has across the network.
298          */
299         std::string uuid;
300
301         /** The users ident reply.
302          * Two characters are added to the user-defined limit to compensate for the tilde etc.
303          */
304         std::string ident;
305
306         /** The host displayed to non-opers (used for cloaking etc).
307          * This usually matches the value of User::host.
308          */
309         std::string dhost;
310
311         /** The users full name (GECOS).
312          */
313         std::string fullname;
314
315         /** The user's mode list.
316          * NOT a null terminated string.
317          * Also NOT an array.
318          * Much love to the STL for giving us an easy to use bitset, saving us RAM.
319          * if (modes[modeletter-65]) is set, then the mode is
320          * set, for example, to work out if mode +s is set, we  check the field
321          * User::modes['s'-65] != 0.
322          * The following RFC characters o, w, s, i have constants defined via an
323          * enum, such as UM_SERVERNOTICE and UM_OPETATOR.
324          */
325         std::bitset<64> modes;
326
327         /** What snomasks are set on this user.
328          * This functions the same as the above modes.
329          */
330         std::bitset<64> snomasks;
331
332         /** Channels this user is on
333          */
334         UserChanList chans;
335
336         /** The server the user is connected to.
337          */
338         std::string server;
339
340         /** The user's away message.
341          * If this string is empty, the user is not marked as away.
342          */
343         std::string awaymsg;
344
345         /** Time the user last went away.
346          * This is ONLY RELIABLE if user IS_AWAY()!
347          */
348         time_t awaytime;
349
350         /** The oper type they logged in as, if they are an oper.
351          * This is used to check permissions in operclasses, so that
352          * we can say 'yea' or 'nay' to any commands they issue.
353          * The value of this was the value of a valid 'type name=' tag
354          */
355         std::string oper;
356
357         /** Used by User to indicate the registration status of the connection
358          * It is a bitfield of the REG_NICK, REG_USER and REG_ALL bits to indicate
359          * the connection state.
360          */
361         unsigned int registered:3;
362
363         /** True when DNS lookups are completed.
364          * The UserResolver classes res_forward and res_reverse will
365          * set this value once they complete.
366          */
367         unsigned int dns_done:1;
368
369         /** Whether or not to send an snotice about this user's quitting
370          */
371         unsigned int quietquit:1;
372
373         /** If this is set to true, then all socket operations for the user
374          * are dropped into the bit-bucket.
375          * This value is set by QuitUser, and is not needed seperately from that call.
376          * Please note that setting this value alone will NOT cause the user to quit.
377          */
378         unsigned int quitting:1;
379
380         /** This is true if the user matched an exception (E:Line). It is used to save time on ban checks.
381          */
382         unsigned int exempt:1;
383
384         /** has the user responded to their previous ping?
385          */
386         unsigned int lastping:1;
387
388         /** Get client IP string from sockaddr, using static internal buffer
389          * @return The IP string
390          */
391         const char* GetIPString();
392
393         /** Sets the client IP for this user
394          * @return true if the conversion was successful
395          */
396         bool SetClientIP(const char* sip);
397
398         /** Get a CIDR mask from the IP of this user, using a static internal buffer.
399          * e.g., GetCIDRMask(16) for 223.254.214.52 returns 223.254.0.0/16
400          * This may be used for CIDR clone detection, etc.
401          *
402          * (XXX, brief note: when we do the sockets rewrite, this should move down a
403          * level so it may be used on more derived objects. -- w00t)
404          */
405         const char *GetCIDRMask(int range);
406
407         /** Default constructor
408          * @throw CoreException if the UID allocated to the user already exists
409          * @param Instance Creator instance
410          * @param uid User UUID, or empty to allocate one automatically
411          */
412         User(const std::string &uid);
413
414         /** Check if the user matches a G or K line, and disconnect them if they do.
415          * @param doZline True if ZLines should be checked (if IP has changed since initial connect)
416          * Returns true if the user matched a ban, false else.
417          */
418         bool CheckLines(bool doZline = false);
419
420         /** Returns the full displayed host of the user
421          * This member function returns the hostname of the user as seen by other users
422          * on the server, in nick!ident&at;host form.
423          * @return The full masked host of the user
424          */
425         virtual const std::string GetFullHost();
426
427         /** Returns the full real host of the user
428          * This member function returns the hostname of the user as seen by other users
429          * on the server, in nick!ident&at;host form. If any form of hostname cloaking is in operation,
430          * e.g. through a module, then this method will ignore it and return the true hostname.
431          * @return The full real host of the user
432          */
433         virtual const std::string GetFullRealHost();
434
435         /** This clears any cached results that are used for GetFullRealHost() etc.
436          * The results of these calls are cached as generating them can be generally expensive.
437          */
438         void InvalidateCache();
439
440         /** Create a displayable mode string for this users snomasks
441          * @return The notice mask character sequence
442          */
443         const char* FormatNoticeMasks();
444
445         /** Process a snomask modifier string, e.g. +abc-de
446          * @param sm A sequence of notice mask characters
447          * @return The cleaned mode sequence which can be output,
448          * e.g. in the above example if masks c and e are not
449          * valid, this function will return +ab-d
450          */
451         std::string ProcessNoticeMasks(const char *sm);
452
453         /** Returns true if a notice mask is set
454          * @param sm A notice mask character to check
455          * @return True if the notice mask is set
456          */
457         bool IsNoticeMaskSet(unsigned char sm);
458
459         /** Changed a specific notice mask value
460          * @param sm The server notice mask to change
461          * @param value An on/off value for this mask
462          */
463         void SetNoticeMask(unsigned char sm, bool value);
464
465         /** Create a displayable mode string for this users umodes
466          * @param The mode string
467          */
468         const char* FormatModes(bool showparameters = false);
469
470         /** Returns true if a specific mode is set
471          * @param m The user mode
472          * @return True if the mode is set
473          */
474         bool IsModeSet(unsigned char m);
475
476         /** Set a specific usermode to on or off
477          * @param m The user mode
478          * @param value On or off setting of the mode
479          */
480         void SetMode(unsigned char m, bool value);
481
482         /** Returns true or false for if a user can execute a privilaged oper command.
483          * This is done by looking up their oper type from User::oper, then referencing
484          * this to their oper classes and checking the commands they can execute.
485          * @param command A command (should be all CAPS)
486          * @return True if this user can execute the command
487          */
488         virtual bool HasPermission(const std::string &command);
489
490         /** Returns true if a user has a given permission.
491          * This is used to check whether or not users may perform certain actions which admins may not wish to give to
492          * all operators, yet are not commands. An example might be oper override, mass messaging (/notice $*), etc.
493          *
494          * @param privstr The priv to chec, e.g. "users/override/topic". These are loaded free-form from the config file.
495          * @param noisy If set to true, the user is notified that they do not have the specified permission where applicable. If false, no notification is sent.
496          * @return True if this user has the permission in question.
497          */
498         virtual bool HasPrivPermission(const std::string &privstr, bool noisy = false);
499
500         /** Returns true or false if a user can set a privileged user or channel mode.
501          * This is done by looking up their oper type from User::oper, then referencing
502          * this to their oper classes, and checking the modes they can set.
503          * @param mode The mode the check
504          * @param type ModeType (MODETYPE_CHANNEL or MODETYPE_USER).
505          * @return True if the user can set or unset this mode.
506          */
507         virtual bool HasModePermission(unsigned char mode, ModeType type);
508
509         /** Creates a wildcard host.
510          * Takes a buffer to use and fills the given buffer with the host in the format *!*@hostname
511          * @return The wildcarded hostname in *!*@host form
512          */
513         char* MakeWildHost();
514
515         /** Creates a usermask with real host.
516          * Takes a buffer to use and fills the given buffer with the hostmask in the format user@host
517          * @return the usermask in the format user@host
518          */
519         const std::string& MakeHost();
520
521         /** Creates a usermask with real ip.
522          * Takes a buffer to use and fills the given buffer with the ipmask in the format user@ip
523          * @return the usermask in the format user@ip
524          */
525         const std::string& MakeHostIP();
526
527         /** Add the user to WHOWAS system
528          */
529         void AddToWhoWas();
530
531         /** Oper up the user using the given opertype.
532          * This will also give the +o usermode.
533          * @param opertype The oper type to oper as
534          */
535         void Oper(const std::string &opertype, const std::string &opername);
536
537         /** Change this users hash key to a new string.
538          * You should not call this function directly. It is used by the core
539          * to update the users hash entry on a nickchange.
540          * @param New new user_hash key
541          * @return Pointer to User in hash (usually 'this')
542          */
543         User* UpdateNickHash(const char* New);
544
545         /** Force a nickname change.
546          * If the nickname change fails (for example, because the nick in question
547          * already exists) this function will return false, and you must then either
548          * output an error message, or quit the user for nickname collision.
549          * @param newnick The nickname to change to
550          * @return True if the nickchange was successful.
551          */
552         bool ForceNickChange(const char* newnick);
553
554         /** Oper down.
555          * This will clear the +o usermode and unset the user's oper type
556          */
557         void UnOper();
558
559         /** Write text to this user, appending CR/LF. Works on local users only.
560          * @param text A std::string to send to the user
561          */
562         virtual void Write(const std::string &text);
563
564         /** Write text to this user, appending CR/LF.
565          * Works on local users only.
566          * @param text The format string for text to send to the user
567          * @param ... POD-type format arguments
568          */
569         virtual void Write(const char *text, ...) CUSTOM_PRINTF(2, 3);
570
571         /** Write text to this user, appending CR/LF and prepending :server.name
572          * Works on local users only.
573          * @param text A std::string to send to the user
574          */
575         void WriteServ(const std::string& text);
576
577         /** Write text to this user, appending CR/LF and prepending :server.name
578          * Works on local users only.
579          * @param text The format string for text to send to the user
580          * @param ... POD-type format arguments
581          */
582         void WriteServ(const char* text, ...) CUSTOM_PRINTF(2, 3);
583
584         void WriteNumeric(unsigned int numeric, const char* text, ...) CUSTOM_PRINTF(3, 4);
585
586         void WriteNumeric(unsigned int numeric, const std::string &text);
587
588         /** Write text to this user, appending CR/LF and prepending :nick!user@host of the user provided in the first parameter.
589          * @param user The user to prepend the :nick!user@host of
590          * @param text A std::string to send to the user
591          */
592         void WriteFrom(User *user, const std::string &text);
593
594         /** Write text to this user, appending CR/LF and prepending :nick!user@host of the user provided in the first parameter.
595          * @param user The user to prepend the :nick!user@host of
596          * @param text The format string for text to send to the user
597          * @param ... POD-type format arguments
598          */
599         void WriteFrom(User *user, const char* text, ...) CUSTOM_PRINTF(3, 4);
600
601         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user@host.
602          * @param dest The user to route the message to
603          * @param text A std::string to send to the user
604          */
605         void WriteTo(User *dest, const std::string &data);
606
607         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user@host.
608          * @param dest The user to route the message to
609          * @param text The format string for text to send to the user
610          * @param ... POD-type format arguments
611          */
612         void WriteTo(User *dest, const char *data, ...) CUSTOM_PRINTF(3, 4);
613
614         /** Write to all users that can see this user (including this user in the list), appending CR/LF
615          * @param text A std::string to send to the users
616          */
617         void WriteCommonRaw(const std::string &line, bool include_self = true);
618
619         /** Write to all users that can see this user (including this user in the list), appending CR/LF
620          * @param text The format string for text to send to the users
621          * @param ... POD-type format arguments
622          */
623         void WriteCommon(const char* text, ...) CUSTOM_PRINTF(2, 3);
624
625         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
626          * @param text The format string for text to send to the users
627          * @param ... POD-type format arguments
628          */
629         void WriteCommonExcept(const char* text, ...) CUSTOM_PRINTF(2, 3);
630
631         /** Write a quit message to all common users, as in User::WriteCommonExcept but with a specific
632          * quit message for opers only.
633          * @param normal_text Normal user quit message
634          * @param oper_text Oper only quit message
635          */
636         void WriteCommonQuit(const std::string &normal_text, const std::string &oper_text);
637
638         /** Dump text to a user target, splitting it appropriately to fit
639          * @param LinePrefix text to prefix each complete line with
640          * @param TextStream the text to send to the user
641          */
642         void SendText(const std::string &LinePrefix, std::stringstream &TextStream);
643
644         /** Write to the user, routing the line if the user is remote.
645          */
646         virtual void SendText(const std::string& line) = 0;
647
648         /** Write to the user, routing the line if the user is remote.
649          */
650         void SendText(const char* text, ...) CUSTOM_PRINTF(2, 3);
651
652         /** Return true if the user shares at least one channel with another user
653          * @param other The other user to compare the channel list against
654          * @return True if the given user shares at least one channel with this user
655          */
656         bool SharesChannelWith(User *other);
657
658         /** Send fake quit/join messages for host or ident cycle.
659          * Run this after the item in question has changed.
660          * You should not need to use this function, call ChangeDisplayedHost instead
661          *
662          * @param The entire QUIT line, including the source using the old value
663          */
664         void DoHostCycle(const std::string &quitline);
665
666         /** Change the displayed host of a user.
667          * ALWAYS use this function, rather than writing User::dhost directly,
668          * as this triggers module events allowing the change to be syncronized to
669          * remote servers. This will also emulate a QUIT and rejoin (where configured)
670          * before setting their host field.
671          * @param host The new hostname to set
672          * @return True if the change succeeded, false if it didn't
673          */
674         bool ChangeDisplayedHost(const char* host);
675
676         /** Change the ident (username) of a user.
677          * ALWAYS use this function, rather than writing User::ident directly,
678          * as this correctly causes the user to seem to quit (where configured)
679          * before setting their ident field.
680          * @param host The new ident to set
681          * @return True if the change succeeded, false if it didn't
682          */
683         bool ChangeIdent(const char* newident);
684
685         /** Change a users realname field.
686          * ALWAYS use this function, rather than writing User::fullname directly,
687          * as this triggers module events allowing the change to be syncronized to
688          * remote servers.
689          * @param gecos The user's new realname
690          * @return True if the change succeeded, false if otherwise
691          */
692         bool ChangeName(const char* gecos);
693
694         /** Send a command to all local users from this user
695          * The command given must be able to send text with the
696          * first parameter as a servermask (e.g. $*), so basically
697          * you should use PRIVMSG or NOTICE.
698          * @param command the command to send
699          * @param text The text format string to send
700          * @param ... Format arguments
701          */
702         void SendAll(const char* command, const char* text, ...) CUSTOM_PRINTF(3, 4);
703
704         /** Compile a channel list for this user.  Used internally by WHOIS
705          * @param source The user to prepare the channel list for
706          * @param spy Whether to return the spy channel list rather than the normal one
707          * @return This user's channel list
708          */
709         std::string ChannelList(User* source, bool spy);
710
711         /** Split the channel list in cl which came from dest, and spool it to this user
712          * Used internally by WHOIS
713          * @param dest The user the original channel list came from
714          * @param cl The  channel list as a string obtained from User::ChannelList()
715          */
716         void SplitChanList(User* dest, const std::string &cl);
717
718         /** Remove this user from all channels they are on, and delete any that are now empty.
719          * This is used by QUIT, and will not send part messages!
720          */
721         void PurgeEmptyChannels();
722
723         /** Get the connect class which this user belongs to. NULL for remote users.
724          * @return A pointer to this user's connect class.
725          */
726         virtual ConnectClass* GetClass();
727
728         /** Show the message of the day to this user
729          */
730         void ShowMOTD();
731
732         /** Show the server RULES file to this user
733          */
734         void ShowRULES();
735
736         virtual void OnDataReady();
737         virtual void OnError(BufferedSocketError error);
738         /** Default destructor
739          */
740         virtual ~User();
741         virtual CullResult cull();
742 };
743
744 /** Represents a non-local user.
745  * (in fact, any FD less than -1 does)
746  */
747 #define FD_MAGIC_NUMBER -42
748 /** Represents a fake user (i.e. a server)
749  */
750 #define FD_FAKEUSER_NUMBER -7
751
752 class CoreExport LocalUser : public User
753 {
754         /** A list of channels the user has a pending invite to.
755          * Upon INVITE channels are added, and upon JOIN, the
756          * channels are removed from this list.
757          */
758         InvitedList invites;
759
760         std::set<std::string> *AllowedOperCommands;
761         std::set<std::string> *AllowedPrivs;
762
763         /** Allowed user modes from oper classes. */
764         std::bitset<64> AllowedUserModes;
765
766         /** Allowed channel modes from oper classes. */
767         std::bitset<64> AllowedChanModes;
768
769  public:
770         LocalUser();
771         CullResult cull();
772
773         /** Stats counter for bytes inbound
774          */
775         int bytes_in;
776
777         /** Stats counter for bytes outbound
778          */
779         int bytes_out;
780
781         /** Stats counter for commands inbound
782          */
783         int cmds_in;
784
785         /** Stats counter for commands outbound
786          */
787         int cmds_out;
788
789         /** Password specified by the user when they registered (if any).
790          * This is stored even if the <connect> block doesnt need a password, so that
791          * modules may check it.
792          */
793         std::string password;
794
795         /** Contains a pointer to the connect class a user is on from
796          */
797         reference<ConnectClass> MyClass;
798
799         ConnectClass* GetClass();
800
801         /** Call this method to find the matching <connect> for a user, and to check them against it.
802          */
803         void CheckClass();
804
805         /** Server address and port that this user is connected to.
806          */
807         irc::sockets::sockaddrs server_sa;
808
809         /**
810          * @return The port number of this user.
811          */
812         int GetServerPort();
813
814         /** Used by PING checking code
815          */
816         time_t nping;
817
818         /** This value contains how far into the penalty threshold the user is. Once its over
819          * the penalty threshold then commands are held and processed on-timer.
820          */
821         int Penalty;
822
823         /** Stored reverse lookup from res_forward. Should not be used after resolution.
824          */
825         std::string stored_host;
826
827         /** Starts a DNS lookup of the user's IP.
828          * This will cause two UserResolver classes to be instantiated.
829          * When complete, these objects set User::dns_done to true.
830          */
831         void StartDNSLookup();
832
833         /** Use this method to fully connect a user.
834          * This will send the message of the day, check G/K/E lines, etc.
835          */
836         void FullConnect();
837
838         /** Set the connect class to which this user belongs to.
839          * @param explicit_name Set this string to tie the user to a specific class name. Otherwise, the class is fitted by checking <connect> tags from the configuration file.
840          * @return A reference to this user's current connect class.
841          */
842         void SetClass(const std::string &explicit_name = "");
843
844         void OnDataReady();
845         void SendText(const std::string& line);
846         void Write(const std::string& text);
847         void Write(const char*, ...) CUSTOM_PRINTF(2, 3);
848
849         /** Adds to the user's write buffer.
850          * You may add any amount of text up to this users sendq value, if you exceed the
851          * sendq value, the user will be removed, and further buffer adds will be dropped.
852          * @param data The data to add to the write buffer
853          */
854         void AddWriteBuf(const std::string &data);
855
856         /** Returns the list of channels this user has been invited to but has not yet joined.
857          * @return A list of channels the user is invited to
858          */
859         InvitedList* GetInviteList();
860
861         /** Returns true if a user is invited to a channel.
862          * @param channel A channel name to look up
863          * @return True if the user is invited to the given channel
864          */
865         bool IsInvited(const irc::string &channel);
866
867         /** Adds a channel to a users invite list (invites them to a channel)
868          * @param channel A channel name to add
869          * @param timeout When the invite should expire (0 == never)
870          */
871         void InviteTo(const irc::string &channel, time_t timeout);
872
873         /** Removes a channel from a users invite list.
874          * This member function is called on successfully joining an invite only channel
875          * to which the user has previously been invited, to clear the invitation.
876          * @param channel The channel to remove the invite to
877          */
878         void RemoveInvite(const irc::string &channel);
879
880         /** Returns true or false for if a user can execute a privilaged oper command.
881          * This is done by looking up their oper type from User::oper, then referencing
882          * this to their oper classes and checking the commands they can execute.
883          * @param command A command (should be all CAPS)
884          * @return True if this user can execute the command
885          */
886         bool HasPermission(const std::string &command);
887
888         /** Returns true if a user has a given permission.
889          * This is used to check whether or not users may perform certain actions which admins may not wish to give to
890          * all operators, yet are not commands. An example might be oper override, mass messaging (/notice $*), etc.
891          *
892          * @param privstr The priv to chec, e.g. "users/override/topic". These are loaded free-form from the config file.
893          * @param noisy If set to true, the user is notified that they do not have the specified permission where applicable. If false, no notification is sent.
894          * @return True if this user has the permission in question.
895          */
896         bool HasPrivPermission(const std::string &privstr, bool noisy = false);
897
898         /** Returns true or false if a user can set a privileged user or channel mode.
899          * This is done by looking up their oper type from User::oper, then referencing
900          * this to their oper classes, and checking the modes they can set.
901          * @param mode The mode the check
902          * @param type ModeType (MODETYPE_CHANNEL or MODETYPE_USER).
903          * @return True if the user can set or unset this mode.
904          */
905         bool HasModePermission(unsigned char mode, ModeType type);
906
907         void OperInternal();
908         void UnOperInternal();
909 };
910
911 class CoreExport RemoteUser : public User
912 {
913  public:
914         RemoteUser(const std::string& uid) : User(uid)
915         {
916                 SetFd(FD_MAGIC_NUMBER);
917         }
918         virtual void SendText(const std::string& line);
919 };
920
921 class CoreExport FakeUser : public User
922 {
923  public:
924         FakeUser(const std::string &uid) : User(uid)
925         {
926                 SetFd(FD_FAKEUSER_NUMBER);
927         }
928
929         virtual void SendText(const std::string& line);
930         virtual const std::string GetFullHost();
931         virtual const std::string GetFullRealHost();
932         void SetFakeServer(std::string name);
933 };
934
935 /* Faster than dynamic_cast */
936 /** Is a local user */
937 inline LocalUser* IS_LOCAL(User* u)
938 {
939         return u->GetFd() > -1 ? static_cast<LocalUser*>(u) : NULL;
940 }
941 /** Is a remote user */
942 inline RemoteUser* IS_REMOTE(User* u)
943 {
944         return u->GetFd() == FD_MAGIC_NUMBER ? static_cast<RemoteUser*>(u) : NULL;
945 }
946 /** Is a server fakeuser */
947 inline FakeUser* IS_SERVER(User* u)
948 {
949         return u->GetFd() == FD_FAKEUSER_NUMBER ? static_cast<FakeUser*>(u) : NULL;
950 }
951 /** Is an oper */
952 #define IS_OPER(x) (!x->oper.empty())
953 /** Is away */
954 #define IS_AWAY(x) (!x->awaymsg.empty())
955
956 /** Derived from Resolver, and performs user forward/reverse lookups.
957  */
958 class CoreExport UserResolver : public Resolver
959 {
960  private:
961         /** User this class is 'attached' to.
962          */
963         LocalUser* bound_user;
964         /** File descriptor teh lookup is bound to
965          */
966         int bound_fd;
967         /** True if the lookup is forward, false if is a reverse lookup
968          */
969         bool fwd;
970  public:
971         /** Create a resolver.
972          * @param Instance The creating instance
973          * @param user The user to begin lookup on
974          * @param to_resolve The IP or host to resolve
975          * @param qt The query type
976          * @param cache Modified by the constructor if the result was cached
977          */
978         UserResolver(LocalUser* user, std::string to_resolve, QueryType qt, bool &cache);
979
980         /** Called on successful lookup
981          * @param result Result string
982          * @param ttl Time to live for result
983          * @param cached True if the result was found in the cache
984          */
985         void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached);
986
987         /** Called on failed lookup
988          * @param e Error code
989          * @param errormessage Error message string
990          */
991         void OnError(ResolverError e, const std::string &errormessage);
992 };
993
994 #endif