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