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