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