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