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