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