]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/users.h
ab8e53b090d77aa5fe4f1068fe79cc4d1d14d5a0
[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://www.inspircd.org/wiki/index.php/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 "dns.h"
19 #include "mode.h"
20
21 /** Channel status for a user
22  */
23 enum ChanStatus {
24         /** Op */
25         STATUS_OP     = 4,
26         /** Halfop */
27         STATUS_HOP    = 2,
28         /** Voice */
29         STATUS_VOICE  = 1,
30         /** None */
31         STATUS_NORMAL = 0
32 };
33
34 /** connect class types
35  */
36 enum ClassTypes {
37         /** connect:allow */
38         CC_ALLOW = 0,
39         /** connect:deny */
40         CC_DENY  = 1
41 };
42
43 /** RFC1459 channel modes
44  */
45 enum UserModes {
46         /** +s: Server notice mask */
47         UM_SNOMASK = 's' - 65,
48         /** +w: WALLOPS */
49         UM_WALLOPS = 'w' - 65,
50         /** +i: Invisible */
51         UM_INVISIBLE = 'i' - 65,
52         /** +o: Operator */
53         UM_OPERATOR = 'o' - 65
54 };
55
56 /** Registration state of a user, e.g.
57  * have they sent USER, NICK, PASS yet?
58  */
59 enum RegistrationState {
60
61 #ifndef WIN32   // Burlex: This is already defined in win32, luckily it is still 0.
62         REG_NONE = 0,           /* Has sent nothing */
63 #endif
64
65         REG_USER = 1,           /* Has sent USER */
66         REG_NICK = 2,           /* Has sent NICK */
67         REG_NICKUSER = 3,       /* Bitwise combination of REG_NICK and REG_USER */
68         REG_ALL = 7             /* REG_NICKUSER plus next bit along */
69 };
70
71 /* Required forward declaration */
72 class Channel;
73 class UserResolver;
74
75 /** Holds information relevent to <connect allow> and <connect deny> tags in the config file.
76  */
77 class CoreExport ConnectClass : public classbase
78 {
79  private:
80         /** Type of line, either CC_ALLOW or CC_DENY
81          */
82         char type;
83
84         /** Connect class name
85          */
86         std::string name;
87
88         /** Max time to register the connection in seconds
89          */
90         unsigned int registration_timeout;
91
92         /** Host mask for this line
93          */
94         std::string host;
95
96         /** Number of seconds between pings for this line
97          */
98         unsigned int pingtime;
99
100         /** (Optional) Password for this line
101          */
102         std::string pass;
103
104         /** (Optional) Hash Method for this line
105          */
106         std::string hash;
107
108         /** Maximum size of sendq for users in this class (bytes)
109          */
110         unsigned long sendqmax;
111
112         /** Maximum size of recvq for users in this class (bytes)
113          */
114         unsigned long recvqmax;
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 public:
133
134         /** Create a new connect class based on an existing connect class. This is required for std::vector (at least under windows).
135          */
136         ConnectClass(const ConnectClass* source) : classbase(), type(source->type), name(source->name),
137                 registration_timeout(source->registration_timeout), host(source->host),
138                 pingtime(source->pingtime), pass(source->pass), hash(source->hash), sendqmax(source->sendqmax),
139                 recvqmax(source->recvqmax), maxlocal(source->maxlocal), maxglobal(source->maxglobal), maxchans(source->maxchans),
140                 port(source->port), RefCount(0), disabled(false), limit(source->limit)
141         {
142         }
143
144         /** Create a new connect class with no settings.
145          */
146         ConnectClass() : type(CC_DENY), name("unnamed"), registration_timeout(0), host(""), pingtime(0), pass(""), hash(""),
147                         sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0), RefCount(0), disabled(false), limit(0)
148         {
149         }
150
151         /** Create a new connect class to ALLOW connections.
152          * @param thename Name of the connect class
153          * @param timeout The registration timeout
154          * @param hst The IP mask to allow
155          * @param ping The ping frequency
156          * @param pas The password to be used
157          * @param hsh The hash to be used
158          * @param sendq The maximum sendq value
159          * @param recvq The maximum recvq value
160          * @param maxl The maximum local sessions
161          * @param maxg The maximum global sessions
162          */
163         ConnectClass(const std::string &thename, unsigned int timeout,const std::string &hst, unsigned int ping,
164                         const std::string &pas, const std::string &hsh, unsigned long sendq, unsigned long recvq,
165                         unsigned long maxl, unsigned long maxg, unsigned int maxc, int p = 0) :
166                         type(CC_ALLOW), name(thename), registration_timeout(timeout), host(hst), pingtime(ping), pass(pas), hash(hsh),
167                         sendqmax(sendq), recvqmax(recvq), maxlocal(maxl), maxglobal(maxg), maxchans(maxc), port(p), RefCount(0), disabled(false), limit(0) { }
168
169         /** Create a new connect class to DENY connections
170          * @param thename Name of the connect class
171          * @param hst The IP mask to deny
172          */
173         ConnectClass(const std::string &thename, const std::string &hst) : type(CC_DENY), name(thename), registration_timeout(0),
174                         host(hst), pingtime(0), pass(""), hash(""), sendqmax(0), recvqmax(0), maxlocal(0), maxglobal(0), maxchans(0), port(0), RefCount(0), disabled(false), limit(0)
175         {
176         }
177
178         /* Create a new connect class based on another class
179          * @param thename The name of the connect class
180          * @param source Another connect class to inherit all but the name from
181          */
182         ConnectClass(const std::string &thename, const ConnectClass* source) : type(source->type), name(thename),
183                                 registration_timeout(source->registration_timeout), host(source->host),
184                                 pingtime(source->pingtime), pass(source->pass), hash(source->hash), sendqmax(source->sendqmax),
185                                 recvqmax(source->recvqmax), maxlocal(source->maxlocal), maxglobal(source->maxglobal), maxchans(source->maxchans),
186                                 port(source->port), RefCount(0), disabled(false), limit(source->limit)
187         {
188         }
189
190         void SetDisabled(bool t)
191         {
192                 this->disabled = t;
193         }
194
195         bool GetDisabled()
196         {
197                 return this->disabled;
198         }
199
200         /* Update an existing entry with new values
201          */
202         void Update(unsigned int timeout, const std::string &hst, unsigned int ping,
203                                 const std::string &pas, unsigned long sendq, unsigned long recvq,
204                                 unsigned long maxl, unsigned long maxg, unsigned int maxc, int p, unsigned long llimit)
205         {
206                 if (timeout)
207                         registration_timeout = timeout;
208                 if (!hst.empty())
209                         host = hst;
210                 if (ping)
211                         pingtime = ping;
212                 if (!pas.empty())
213                         pass = pas;
214                 if (sendq)
215                         sendqmax = sendq;
216                 if (recvq)
217                         recvqmax = recvq;
218                 if (maxl)
219                         maxlocal = maxl;
220                 if (maxg)
221                         maxglobal = maxg;
222                 if (maxc)
223                         maxchans = maxc;
224                 if (p)
225                         port = p;
226
227                 this->limit = llimit;
228         }
229
230         void Update(const std::string &n, const std::string &hst)
231         {
232                 name = n;
233                 host = hst;
234         }
235
236         /** Reference counter. Contains an int as to how many users are connected to this class. :)
237          * This will be 0 if no users are connected. If a <connect> is removed from the config, and there
238          * are 0 users on it - it will go away in RAM. :)
239          */
240         unsigned long RefCount;
241
242         /** If this is true, any attempt to set a user to this class will fail. Default false. This is really private, it's only in the public section thanks to the way this class is written
243          */
244         bool disabled;
245
246         /** How many users may be in this connect class before they are refused? (0 = disabled = default)
247          */
248         unsigned long limit;
249
250         size_t GetMaxChans()
251         {
252                 return maxchans;
253         }
254
255         /** Returns the type, CC_ALLOW or CC_DENY
256          */
257         char GetType()
258         {
259                 return (type == CC_ALLOW ? CC_ALLOW : CC_DENY);
260         }
261
262         std::string& GetName()
263         {
264                 return name;
265         }
266
267         /** Returns the registration timeout
268          */
269         time_t GetRegTimeout()
270         {
271                 return (registration_timeout ? registration_timeout : 90);
272         }
273
274         /** Returns the allowed or denied IP mask
275          */
276         const std::string& GetHost()
277         {
278                 return host;
279         }
280
281         /** Get port number
282          */
283         int GetPort()
284         {
285                 return port;
286         }
287
288         /** Set port number
289          */
290         void SetPort(int p)
291         {
292                 port = p;
293         }
294
295         /** Returns the ping frequency
296          */
297         unsigned int GetPingTime()
298         {
299                 return (pingtime ? pingtime : 120);
300         }
301
302         /** Returns the password or an empty string
303          */
304         const std::string& GetPass()
305         {
306                 return pass;
307         }
308
309         /** Returns the hash or an empty string
310          */
311         const std::string& GetHash()
312         {
313                 return hash;
314         }
315
316         /** Returns the maximum sendq value
317          */
318         unsigned long GetSendqMax()
319         {
320                 return (sendqmax ? sendqmax : 262114);
321         }
322
323         /** Returns the maximum recvq value
324          */
325         unsigned long GetRecvqMax()
326         {
327                 return (recvqmax ? recvqmax : 4096);
328         }
329
330         /** Returusn the maximum number of local sessions
331          */
332         unsigned long GetMaxLocal()
333         {
334                 return maxlocal;
335         }
336
337         /** Returns the maximum number of global sessions
338          */
339         unsigned long GetMaxGlobal()
340         {
341                 return maxglobal;
342         }
343 };
344
345 /** 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.
346  */
347 typedef std::vector< std::pair<irc::string, time_t> > InvitedList;
348
349 /** Holds a complete list of all allow and deny tags from the configuration file (connection classes)
350  */
351 typedef std::vector<ConnectClass*> ClassVector;
352
353 /** Typedef for the list of user-channel records for a user
354  */
355 typedef std::map<Channel*, char> UserChanList;
356
357 /** Shorthand for an iterator into a UserChanList
358  */
359 typedef UserChanList::iterator UCListIter;
360
361 /* Required forward declaration
362  */
363 class User;
364
365 /** Visibility data for a user.
366  * If a user has a non-null instance of this class in their User,
367  * then it is used to determine if this user is visible to other users
368  * or not.
369  */
370 class CoreExport VisData
371 {
372  public:
373         /** Create a visdata
374          */
375         VisData();
376         /** Destroy a visdata
377          */
378         virtual ~VisData();
379         /** Is this user visible to some other user?
380          * @param user The other user to compare to
381          * @return true True if the user is visible to the other user, false if not
382          */
383         virtual bool VisibleTo(User* user);
384 };
385
386 /** Holds all information about a user
387  * This class stores all information about a user connected to the irc server. Everything about a
388  * connection is stored here primarily, from the user's socket ID (file descriptor) through to the
389  * user's nickname and hostname. Use the FindNick method of the InspIRCd class to locate a specific user
390  * by nickname, or the FindDescriptor method of the InspIRCd class to find a specific user by their
391  * file descriptor value.
392  */
393 class CoreExport User : public EventHandler
394 {
395  private:
396         /** Pointer to creator.
397          * This is required to make use of core functions
398          * from within the User class.
399          */
400         InspIRCd* ServerInstance;
401
402         /** A list of channels the user has a pending invite to.
403          * Upon INVITE channels are added, and upon JOIN, the
404          * channels are removed from this list.
405          */
406         InvitedList invites;
407
408         /** Cached nick!ident@dhost value using the displayed hostname
409          */
410         std::string cached_fullhost;
411
412         /** Cached ident@ip value using the real IP address
413          */
414         std::string cached_hostip;
415
416         /** Cached ident@realhost value using the real hostname
417          */
418         std::string cached_makehost;
419
420         /** Cached nick!ident@realhost value using the real hostname
421          */
422         std::string cached_fullrealhost;
423
424         /** Set by GetIPString() to avoid constantly re-grabbing IP via sockets voodoo.
425          */
426         std::string cachedip;
427
428         /** When we erase the user (in the destructor),
429          * we call this method to subtract one from all
430          * mode characters this user is making use of.
431          */
432         void DecrementModes();
433
434         std::set<std::string> *AllowedOperCommands;
435         std::set<std::string> *AllowedPrivs;
436
437         /** Allowed user modes from oper classes. */
438         std::bitset<64> AllowedUserModes;
439
440         /** Allowed channel modes from oper classes. */
441         std::bitset<64> AllowedChanModes;
442
443  public:
444         /** Contains a pointer to the connect class a user is on from - this will be NULL for remote connections.
445          * The pointer is guarenteed to *always* be valid. :)
446          */
447         ConnectClass *MyClass;
448
449         /** User visibility state, see definition of VisData.
450          */
451         VisData* Visibility;
452
453         /** Hostname of connection.
454          * This should be valid as per RFC1035.
455          */
456         std::string host;
457
458         /** Stats counter for bytes inbound
459          */
460         int bytes_in;
461
462         /** Stats counter for bytes outbound
463          */
464         int bytes_out;
465
466         /** Stats counter for commands inbound
467          */
468         int cmds_in;
469
470         /** Stats counter for commands outbound
471          */
472         int cmds_out;
473
474         /** True if user has authenticated, false if otherwise
475          */
476         bool haspassed;
477
478         /** Used by User to indicate the registration status of the connection
479          * It is a bitfield of the REG_NICK, REG_USER and REG_ALL bits to indicate
480          * the connection state.
481          */
482         char registered;
483
484         /** Time the connection was last pinged
485          */
486         time_t lastping;
487
488         /** Time the connection was created, set in the constructor. This
489          * may be different from the time the user's classbase object was
490          * created.
491          */
492         time_t signon;
493
494         /** Time that the connection last sent a message, used to calculate idle time
495          */
496         time_t idle_lastmsg;
497
498         /** Used by PING checking code
499          */
500         time_t nping;
501
502         /** Stored reverse lookup from res_forward. Should not be used after resolution.
503          */
504         std::string stored_host;
505
506         /** Starts a DNS lookup of the user's IP.
507          * This will cause two UserResolver classes to be instantiated.
508          * When complete, these objects set User::dns_done to true.
509          */
510         void StartDNSLookup();
511
512         /** The users nickname.
513          * An invalid nickname indicates an unregistered connection prior to the NICK command.
514          * Use InspIRCd::IsNick() to validate nicknames.
515          */
516         std::string nick;
517         
518         /** The user's unique identifier.
519          * This is the unique identifier which the user has across the network.
520          */
521         std::string uuid;
522         
523         /** The users ident reply.
524          * Two characters are added to the user-defined limit to compensate for the tilde etc.
525          */
526         std::string ident;
527         
528         /** The host displayed to non-opers (used for cloaking etc).
529          * This usually matches the value of User::host.
530          */
531         std::string dhost;
532         
533         /** The users full name (GECOS).
534          */
535         std::string fullname;
536         
537         /** The user's mode list.
538          * NOT a null terminated string.
539          * Also NOT an array.
540          * Much love to the STL for giving us an easy to use bitset, saving us RAM.
541          * if (modes[modeletter-65]) is set, then the mode is
542          * set, for example, to work out if mode +s is set, we  check the field
543          * User::modes['s'-65] != 0.
544          * The following RFC characters o, w, s, i have constants defined via an
545          * enum, such as UM_SERVERNOTICE and UM_OPETATOR.
546          */
547         std::bitset<64> modes;
548
549         /** What snomasks are set on this user.
550          * This functions the same as the above modes.
551          */
552         std::bitset<64> snomasks;
553
554         /** Channels this user is on, and the permissions they have there
555          */
556         UserChanList chans;
557
558         /** The server the user is connected to.
559          */
560         const char* server;
561
562         /** The user's away message.
563          * If this string is empty, the user is not marked as away.
564          */
565         std::string awaymsg;
566         
567         /** Time the user last went away.
568          * This is ONLY RELIABLE if user IS_AWAY()!
569          */
570         time_t awaytime;
571
572         /** The oper type they logged in as, if they are an oper.
573          * This is used to check permissions in operclasses, so that
574          * we can say 'yay' or 'nay' to any commands they issue.
575          * The value of this is the value of a valid 'type name=' tag.
576          */
577         std::string oper;
578         
579         /** True when DNS lookups are completed.
580          * The UserResolver classes res_forward and res_reverse will
581          * set this value once they complete.
582          */
583         bool dns_done;
584
585         /** Password specified by the user when they registered.
586          * This is stored even if the <connect> block doesnt need a password, so that
587          * modules may check it.
588          */
589         std::string password;
590         
591         /** User's receive queue.
592          * Lines from the IRCd awaiting processing are stored here.
593          * Upgraded april 2005, old system a bit hairy.
594          */
595         std::string recvq;
596
597         /** User's send queue.
598          * Lines waiting to be sent are stored here until their buffer is flushed.
599          */
600         std::string sendq;
601
602         /** Message user will quit with. Not to be set externally.
603          */
604         std::string quitmsg;
605
606         /** Quit message shown to opers - not to be set externally.
607          */
608         std::string operquitmsg;
609
610         /** Whether or not to send an snotice about this user's quitting
611          */
612         bool quietquit;
613
614         /** If this is set to true, then all socket operations for the user
615          * are dropped into the bit-bucket.
616          * This value is set by QuitUser, and is not needed seperately from that call.
617          * Please note that setting this value alone will NOT cause the user to quit.
618          */
619         bool quitting;
620
621         /** IPV4 or IPV6 ip address. Use SetSockAddr to set this and GetProtocolFamily/
622          * GetIPString/GetPort to obtain its values.
623          */
624         sockaddr* ip;
625
626         /** Initialize the clients sockaddr
627          * @param protocol_family The protocol family of the IP address, AF_INET or AF_INET6
628          * @param ip A human-readable IP address for this user matching the protcol_family
629          * @param port The port number of this user or zero for a remote user
630          */
631         void SetSockAddr(int protocol_family, const char* ip, int port);
632
633         /** Get port number from sockaddr
634          * @return The port number of this user.
635          */
636         int GetPort();
637
638         /** Get protocol family from sockaddr
639          * @return The protocol family of this user, either AF_INET or AF_INET6
640          */
641         int GetProtocolFamily();
642
643         /** Get IP string from sockaddr, using static internal buffer
644          * @return The IP string
645          */
646         const char* GetIPString();
647
648         /** Get a CIDR mask from the IP of this user, using a static internal buffer.
649          * e.g., GetCIDRMask(16) for 223.254.214.52 returns 223.254.0.0/16
650          * This may be used for CIDR clone detection, etc.
651          *
652          * (XXX, brief note: when we do the sockets rewrite, this should move down a
653          * level so it may be used on more derived objects. -- w00t)
654          */
655         const char *GetCIDRMask(int range);
656
657         /** This is true if the user matched an exception (E:Line). It is used to save time on ban checks.
658          */
659         bool exempt;
660
661         /** This value contains how far into the penalty threshold the user is. Once its over
662          * the penalty threshold then commands are held and processed on-timer.
663          */
664         int Penalty;
665
666         /** Default constructor
667          * @throw CoreException if the UID allocated to the user already exists
668          * @param Instance Creator instance
669          * @param uid User UUID, or empty to allocate one automatically
670          */
671         User(InspIRCd* Instance, const std::string &uid = "");
672
673         /** Check if the user matches a G or K line, and disconnect them if they do.
674          * @param doZline True if ZLines should be checked (if IP has changed since initial connect)
675          * Returns true if the user matched a ban, false else.
676          */
677         bool CheckLines(bool doZline = false);
678
679         /** Returns the full displayed host of the user
680          * This member function returns the hostname of the user as seen by other users
681          * on the server, in nick!ident&at;host form.
682          * @return The full masked host of the user
683          */
684         virtual const std::string& GetFullHost();
685
686         /** Returns the full real host of the user
687          * This member function returns the hostname of the user as seen by other users
688          * on the server, in nick!ident&at;host form. If any form of hostname cloaking is in operation,
689          * e.g. through a module, then this method will ignore it and return the true hostname.
690          * @return The full real host of the user
691          */
692         virtual const std::string& GetFullRealHost();
693
694         /** This clears any cached results that are used for GetFullRealHost() etc.
695          * The results of these calls are cached as generating them can be generally expensive.
696          */
697         void InvalidateCache();
698
699         /** Create a displayable mode string for this users snomasks
700          * @return The notice mask character sequence
701          */
702         const char* FormatNoticeMasks();
703
704         /** Process a snomask modifier string, e.g. +abc-de
705          * @param sm A sequence of notice mask characters
706          * @return The cleaned mode sequence which can be output,
707          * e.g. in the above example if masks c and e are not
708          * valid, this function will return +ab-d
709          */
710         std::string ProcessNoticeMasks(const char *sm);
711
712         /** Returns true if a notice mask is set
713          * @param sm A notice mask character to check
714          * @return True if the notice mask is set
715          */
716         bool IsNoticeMaskSet(unsigned char sm);
717
718         /** Changed a specific notice mask value
719          * @param sm The server notice mask to change
720          * @param value An on/off value for this mask
721          */
722         void SetNoticeMask(unsigned char sm, bool value);
723
724         /** Create a displayable mode string for this users umodes
725          * @param The mode string
726          */
727         const char* FormatModes(bool showparameters = false);
728
729         /** Returns true if a specific mode is set
730          * @param m The user mode
731          * @return True if the mode is set
732          */
733         bool IsModeSet(unsigned char m);
734
735         /** Set a specific usermode to on or off
736          * @param m The user mode
737          * @param value On or off setting of the mode
738          */
739         void SetMode(unsigned char m, bool value);
740
741         /** Returns true if a user is invited to a channel.
742          * @param channel A channel name to look up
743          * @return True if the user is invited to the given channel
744          */
745         virtual bool IsInvited(const irc::string &channel);
746
747         /** Adds a channel to a users invite list (invites them to a channel)
748          * @param channel A channel name to add
749          * @param timeout When the invite should expire (0 == never)
750          */
751         virtual void InviteTo(const irc::string &channel, time_t timeout);
752
753         /** Removes a channel from a users invite list.
754          * This member function is called on successfully joining an invite only channel
755          * to which the user has previously been invited, to clear the invitation.
756          * @param channel The channel to remove the invite to
757          */
758         virtual void RemoveInvite(const irc::string &channel);
759
760         /** Returns true or false for if a user can execute a privilaged oper command.
761          * This is done by looking up their oper type from User::oper, then referencing
762          * this to their oper classes and checking the commands they can execute.
763          * @param command A command (should be all CAPS)
764          * @return True if this user can execute the command
765          */
766         bool HasPermission(const std::string &command);
767
768         /** Returns true if a user has a given permission.
769          * This is used to check whether or not users may perform certain actions which admins may not wish to give to
770          * all operators, yet are not commands. An example might be oper override, mass messaging (/notice $*), etc.
771          *
772          * @param privstr The priv to chec, e.g. "users/override/topic". These are loaded free-form from the config file.
773          * @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.
774          * @return True if this user has the permission in question.
775          */
776         bool HasPrivPermission(const std::string &privstr, bool noisy = false);
777
778         /** Returns true or false if a user can set a privileged user or channel mode.
779          * This is done by looking up their oper type from User::oper, then referencing
780          * this to their oper classes, and checking the modes they can set.
781          * @param mode The mode the check
782          * @param type ModeType (MODETYPE_CHANNEL or MODETYPE_USER).
783          * @return True if the user can set or unset this mode.
784          */
785         bool HasModePermission(unsigned char mode, ModeType type);
786
787         /** Calls read() to read some data for this user using their fd.
788          * @param buffer The buffer to read into
789          * @param size The size of data to read
790          * @return The number of bytes read, or -1 if an error occured.
791          */
792         int ReadData(void* buffer, size_t size);
793
794         /** This method adds data to the read buffer of the user.
795          * The buffer can grow to any size within limits of the available memory,
796          * managed by the size of a std::string, however if any individual line in
797          * the buffer grows over 600 bytes in length (which is 88 chars over the
798          * RFC-specified limit per line) then the method will return false and the
799          * text will not be inserted.
800          * @param a The string to add to the users read buffer
801          * @return True if the string was successfully added to the read buffer
802          */
803         bool AddBuffer(const std::string &a);
804
805         /** This method returns true if the buffer contains at least one carriage return
806          * character (e.g. one complete line may be read)
807          * @return True if there is at least one complete line in the users buffer
808          */
809         bool BufferIsReady();
810
811         /** This function clears the entire buffer by setting it to an empty string.
812          */
813         void ClearBuffer();
814
815         /** This method returns the first available string at the tail end of the buffer
816          * and advances the tail end of the buffer past the string. This means it is
817          * a one way operation in a similar way to strtok(), and multiple calls return
818          * multiple lines if they are available. The results of this function if there
819          * are no lines to be read are unknown, always use BufferIsReady() to check if
820          * it is ok to read the buffer before calling GetBuffer().
821          * @return The string at the tail end of this users buffer
822          */
823         std::string GetBuffer();
824
825         /** Adds to the user's write buffer.
826          * You may add any amount of text up to this users sendq value, if you exceed the
827          * sendq value, the user will be removed, and further buffer adds will be dropped.
828          * @param data The data to add to the write buffer
829          */
830         void AddWriteBuf(const std::string &data);
831
832         /** Flushes as much of the user's buffer to the file descriptor as possible.
833          * This function may not always flush the entire buffer, rather instead as much of it
834          * as it possibly can. If the send() call fails to send the entire buffer, the buffer
835          * position is advanced forwards and the rest of the data sent at the next call to
836          * this method.
837          */
838         void FlushWriteBuf();
839
840         /** Returns the list of channels this user has been invited to but has not yet joined.
841          * @return A list of channels the user is invited to
842          */
843         InvitedList* GetInviteList();
844
845         /** Creates a wildcard host.
846          * Takes a buffer to use and fills the given buffer with the host in the format *!*@hostname
847          * @return The wildcarded hostname in *!*@host form
848          */
849         char* MakeWildHost();
850
851         /** Creates a usermask with real host.
852          * Takes a buffer to use and fills the given buffer with the hostmask in the format user@host
853          * @return the usermask in the format user@host
854          */
855         const std::string& MakeHost();
856
857         /** Creates a usermask with real ip.
858          * Takes a buffer to use and fills the given buffer with the ipmask in the format user@ip
859          * @return the usermask in the format user@ip
860          */
861         const std::string& MakeHostIP();
862
863         /** Shuts down and closes the user's socket
864          * This will not cause the user to be deleted. Use InspIRCd::QuitUser for this,
865          * which will call CloseSocket() for you.
866          */
867         void CloseSocket();
868
869         /** Add the user to WHOWAS system
870          */
871         void AddToWhoWas();
872
873         /** Oper up the user using the given opertype.
874          * This will also give the +o usermode.
875          * @param opertype The oper type to oper as
876          */
877         void Oper(const std::string &opertype, const std::string &opername);
878
879         /** Call this method to find the matching <connect> for a user, and to check them against it.
880          */
881         void CheckClass();
882
883         /** Use this method to fully connect a user.
884          * This will send the message of the day, check G/K/E lines, etc.
885          */
886         void FullConnect();
887
888         /** Change this users hash key to a new string.
889          * You should not call this function directly. It is used by the core
890          * to update the users hash entry on a nickchange.
891          * @param New new user_hash key
892          * @return Pointer to User in hash (usually 'this')
893          */
894         User* UpdateNickHash(const char* New);
895
896         /** Force a nickname change.
897          * If the nickname change fails (for example, because the nick in question
898          * already exists) this function will return false, and you must then either
899          * output an error message, or quit the user for nickname collision.
900          * @param newnick The nickname to change to
901          * @return True if the nickchange was successful.
902          */
903         bool ForceNickChange(const char* newnick);
904
905         /** Oper down.
906          * This will clear the +o usermode and unset the user's oper type
907          */
908         void UnOper();
909
910         /** Write text to this user, appending CR/LF.
911          * @param text A std::string to send to the user
912          */
913         void Write(std::string text);
914
915         /** Write text to this user, appending CR/LF.
916          * @param text The format string for text to send to the user
917          * @param ... POD-type format arguments
918          */
919         void Write(const char *text, ...) CUSTOM_PRINTF(2, 3);
920
921         /** Write text to this user, appending CR/LF and prepending :server.name
922          * @param text A std::string to send to the user
923          */
924         void WriteServ(const std::string& text);
925
926         /** Write text to this user, appending CR/LF and prepending :server.name
927          * @param text The format string for text to send to the user
928          * @param ... POD-type format arguments
929          */
930         void WriteServ(const char* text, ...) CUSTOM_PRINTF(2, 3);
931
932         void WriteNumeric(unsigned int numeric, const char* text, ...) CUSTOM_PRINTF(3, 4);
933
934         void WriteNumeric(unsigned int numeric, const std::string &text);
935
936         /** Write text to this user, appending CR/LF and prepending :nick!user@host of the user provided in the first parameter.
937          * @param user The user to prepend the :nick!user@host of
938          * @param text A std::string to send to the user
939          */
940         void WriteFrom(User *user, const std::string &text);
941
942         /** Write text to this user, appending CR/LF and prepending :nick!user@host of the user provided in the first parameter.
943          * @param user The user to prepend the :nick!user@host of
944          * @param text The format string for text to send to the user
945          * @param ... POD-type format arguments
946          */
947         void WriteFrom(User *user, const char* text, ...) CUSTOM_PRINTF(3, 4);
948
949         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user@host.
950          * @param dest The user to route the message to
951          * @param text A std::string to send to the user
952          */
953         void WriteTo(User *dest, const std::string &data);
954
955         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user@host.
956          * @param dest The user to route the message to
957          * @param text The format string for text to send to the user
958          * @param ... POD-type format arguments
959          */
960         void WriteTo(User *dest, const char *data, ...) CUSTOM_PRINTF(3, 4);
961
962         /** Write to all users that can see this user (including this user in the list), appending CR/LF
963          * @param text A std::string to send to the users
964          */
965         void WriteCommon(const std::string &text);
966
967         /** Write to all users that can see this user (including this user in the list), appending CR/LF
968          * @param text The format string for text to send to the users
969          * @param ... POD-type format arguments
970          */
971         void WriteCommon(const char* text, ...) CUSTOM_PRINTF(2, 3);
972
973         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
974          * @param text The format string for text to send to the users
975          * @param ... POD-type format arguments
976          */
977         void WriteCommonExcept(const char* text, ...) CUSTOM_PRINTF(2, 3);
978
979         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
980          * @param text A std::string to send to the users
981          */
982         void WriteCommonExcept(const std::string &text);
983
984         /** Write a quit message to all common users, as in User::WriteCommonExcept but with a specific
985          * quit message for opers only.
986          * @param normal_text Normal user quit message
987          * @param oper_text Oper only quit message
988          */
989         void WriteCommonQuit(const std::string &normal_text, const std::string &oper_text);
990
991         /** Write a WALLOPS message from this user to all local opers.
992          * If this user is not opered, the function will return without doing anything.
993          * @param text The format string to send in the WALLOPS message
994          * @param ... Format arguments
995          */
996         void WriteWallOps(const char* text, ...) CUSTOM_PRINTF(2, 3);
997
998         /** Write a WALLOPS message from this user to all local opers.
999          * If this user is not opered, the function will return without doing anything.
1000          * @param text The text to send in the WALLOPS message
1001          */
1002         void WriteWallOps(const std::string &text);
1003
1004         /** Return true if the user shares at least one channel with another user
1005          * @param other The other user to compare the channel list against
1006          * @return True if the given user shares at least one channel with this user
1007          */
1008         bool SharesChannelWith(User *other);
1009
1010         /** Change the displayed host of a user.
1011          * ALWAYS use this function, rather than writing User::dhost directly,
1012          * as this triggers module events allowing the change to be syncronized to
1013          * remote servers. This will also emulate a QUIT and rejoin (where configured)
1014          * before setting their host field.
1015          * @param host The new hostname to set
1016          * @return True if the change succeeded, false if it didn't
1017          */
1018         bool ChangeDisplayedHost(const char* host);
1019
1020         /** Change the ident (username) of a user.
1021          * ALWAYS use this function, rather than writing User::ident directly,
1022          * as this correctly causes the user to seem to quit (where configured)
1023          * before setting their ident field.
1024          * @param host The new ident to set
1025          * @return True if the change succeeded, false if it didn't
1026          */
1027         bool ChangeIdent(const char* newident);
1028
1029         /** Change a users realname field.
1030          * ALWAYS use this function, rather than writing User::fullname directly,
1031          * as this triggers module events allowing the change to be syncronized to
1032          * remote servers.
1033          * @param gecos The user's new realname
1034          * @return True if the change succeeded, false if otherwise
1035          */
1036         bool ChangeName(const char* gecos);
1037
1038         /** Send a command to all local users from this user
1039          * The command given must be able to send text with the
1040          * first parameter as a servermask (e.g. $*), so basically
1041          * you should use PRIVMSG or NOTICE.
1042          * @param command the command to send
1043          * @param text The text format string to send
1044          * @param ... Format arguments
1045          */
1046         void SendAll(const char* command, const char* text, ...) CUSTOM_PRINTF(3, 4);
1047
1048         /** Compile a channel list for this user, and send it to the user 'source'
1049          * Used internally by WHOIS
1050          * @param The user to send the channel list to if it is not too long
1051          * @return This user's channel list
1052          */
1053         std::string ChannelList(User* source);
1054
1055         /** Split the channel list in cl which came from dest, and spool it to this user
1056          * Used internally by WHOIS
1057          * @param dest The user the original channel list came from
1058          * @param cl The  channel list as a string obtained from User::ChannelList()
1059          */
1060         void SplitChanList(User* dest, const std::string &cl);
1061
1062         /** Remove this user from all channels they are on, and delete any that are now empty.
1063          * This is used by QUIT, and will not send part messages!
1064          */
1065         void PurgeEmptyChannels();
1066
1067         /** Get the connect class which this user belongs to.
1068          * @return A pointer to this user's connect class
1069          */
1070         ConnectClass *GetClass();
1071
1072         /** Set the connect class to which this user belongs to.
1073          * @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.
1074          * @return A reference to this user's current connect class.
1075          */
1076         ConnectClass *SetClass(const std::string &explicit_name = "");
1077
1078         /** Show the message of the day to this user
1079          */
1080         void ShowMOTD();
1081
1082         /** Show the server RULES file to this user
1083          */
1084         void ShowRULES();
1085
1086         /** Set oper-specific quit message shown to opers only when the user quits
1087          * (overrides any sent by QuitUser)
1088          */
1089         void SetOperQuit(const std::string &oquit);
1090
1091         /** Get oper-specific quit message shown only to opers when the user quits.
1092          * (overrides any sent by QuitUser)
1093          */
1094         const std::string& GetOperQuit();
1095
1096         /** Increases a user's command penalty by a set amount.
1097          */
1098         void IncreasePenalty(int increase);
1099
1100         /** Decreases a user's command penalty by a set amount.
1101          */
1102         void DecreasePenalty(int decrease);
1103
1104         /** Handle socket event.
1105          * From EventHandler class.
1106          * @param et Event type
1107          * @param errornum Error number for EVENT_ERROR events
1108          */
1109         void HandleEvent(EventType et, int errornum = 0);
1110
1111         /** Default destructor
1112          */
1113         virtual ~User();
1114 };
1115
1116 /** Derived from Resolver, and performs user forward/reverse lookups.
1117  */
1118 class CoreExport UserResolver : public Resolver
1119 {
1120  private:
1121         /** User this class is 'attached' to.
1122          */
1123         User* bound_user;
1124         /** File descriptor teh lookup is bound to
1125          */
1126         int bound_fd;
1127         /** True if the lookup is forward, false if is a reverse lookup
1128          */
1129         bool fwd;
1130  public:
1131         /** Create a resolver.
1132          * @param Instance The creating instance
1133          * @param user The user to begin lookup on
1134          * @param to_resolve The IP or host to resolve
1135          * @param qt The query type
1136          * @param cache Modified by the constructor if the result was cached
1137          */
1138         UserResolver(InspIRCd* Instance, User* user, std::string to_resolve, QueryType qt, bool &cache);
1139
1140         /** Called on successful lookup
1141          * @param result Result string
1142          * @param ttl Time to live for result
1143          * @param cached True if the result was found in the cache
1144          * @param resultnum Result number, we are only interested in result 0
1145          */
1146         void OnLookupComplete(const std::string &result, unsigned int ttl, bool cached, int resultnum = 0);
1147
1148         /** Called on failed lookup
1149          * @param e Error code
1150          * @param errormessage Error message string
1151          */
1152         void OnError(ResolverError e, const std::string &errormessage);
1153 };
1154
1155 /* Configuration callbacks */
1156 //class ServerConfig;
1157
1158 #endif
1159