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