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