]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/users.h
17bc9ca2aebdbef53a126fd5b482ca2a429983eb
[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          * @param Instance Creator instance
665          * @param uid User UUID, or empty to allocate one automatically
666          */
667         userrec(InspIRCd* Instance, const std::string &uid = "");
668
669         /** Returns the full displayed host of the user
670          * This member function returns the hostname of the user as seen by other users
671          * on the server, in nick!ident&at;host form.
672          * @return The full masked host of the user
673          */
674         virtual char* GetFullHost();
675
676         /** Returns the full real host of the user
677          * This member function returns the hostname of the user as seen by other users
678          * on the server, in nick!ident&at;host form. If any form of hostname cloaking is in operation,
679          * e.g. through a module, then this method will ignore it and return the true hostname.
680          * @return The full real host of the user
681          */
682         virtual char* GetFullRealHost();
683
684         /** This clears any cached results that are used for GetFullRealHost() etc.
685          * The results of these calls are cached as generating them can be generally expensive.
686          */
687         void InvalidateCache();
688
689         /** Create a displayable mode string for this users snomasks
690          * @return The notice mask character sequence
691          */
692         const char* FormatNoticeMasks();
693
694         /** Process a snomask modifier string, e.g. +abc-de
695          * @param sm A sequence of notice mask characters
696          * @return The cleaned mode sequence which can be output,
697          * e.g. in the above example if masks c and e are not
698          * valid, this function will return +ab-d
699          */
700         std::string ProcessNoticeMasks(const char *sm);
701
702         /** Returns true if a notice mask is set
703          * @param sm A notice mask character to check
704          * @return True if the notice mask is set
705          */
706         bool IsNoticeMaskSet(unsigned char sm);
707
708         /** Changed a specific notice mask value
709          * @param sm The server notice mask to change
710          * @param value An on/off value for this mask
711          */
712         void SetNoticeMask(unsigned char sm, bool value);
713
714         /** Create a displayable mode string for this users umodes
715          * @param The mode string
716          */
717         const char* FormatModes();
718
719         /** Returns true if a specific mode is set
720          * @param m The user mode
721          * @return True if the mode is set
722          */
723         bool IsModeSet(unsigned char m);
724
725         /** Set a specific usermode to on or off
726          * @param m The user mode
727          * @param value On or off setting of the mode
728          */
729         void SetMode(unsigned char m, bool value);
730
731         /** Returns true if a user is invited to a channel.
732          * @param channel A channel name to look up
733          * @return True if the user is invited to the given channel
734          */
735         virtual bool IsInvited(const irc::string &channel);
736
737         /** Adds a channel to a users invite list (invites them to a channel)
738          * @param channel A channel name to add
739          */
740         virtual void InviteTo(const irc::string &channel);
741
742         /** Removes a channel from a users invite list.
743          * This member function is called on successfully joining an invite only channel
744          * to which the user has previously been invited, to clear the invitation.
745          * @param channel The channel to remove the invite to
746          */
747         virtual void RemoveInvite(const irc::string &channel);
748
749         /** Returns true or false for if a user can execute a privilaged oper command.
750          * This is done by looking up their oper type from userrec::oper, then referencing
751          * this to their oper classes and checking the commands they can execute.
752          * @param command A command (should be all CAPS)
753          * @return True if this user can execute the command
754          */
755         bool HasPermission(const std::string &command);
756
757         /** Calls read() to read some data for this user using their fd.
758          * @param buffer The buffer to read into
759          * @param size The size of data to read
760          * @return The number of bytes read, or -1 if an error occured.
761          */
762         int ReadData(void* buffer, size_t size);
763
764         /** This method adds data to the read buffer of the user.
765          * The buffer can grow to any size within limits of the available memory,
766          * managed by the size of a std::string, however if any individual line in
767          * the buffer grows over 600 bytes in length (which is 88 chars over the
768          * RFC-specified limit per line) then the method will return false and the
769          * text will not be inserted.
770          * @param a The string to add to the users read buffer
771          * @return True if the string was successfully added to the read buffer
772          */
773         bool AddBuffer(std::string a);
774
775         /** This method returns true if the buffer contains at least one carriage return
776          * character (e.g. one complete line may be read)
777          * @return True if there is at least one complete line in the users buffer
778          */
779         bool BufferIsReady();
780
781         /** This function clears the entire buffer by setting it to an empty string.
782          */
783         void ClearBuffer();
784
785         /** This method returns the first available string at the tail end of the buffer
786          * and advances the tail end of the buffer past the string. This means it is
787          * a one way operation in a similar way to strtok(), and multiple calls return
788          * multiple lines if they are available. The results of this function if there
789          * are no lines to be read are unknown, always use BufferIsReady() to check if
790          * it is ok to read the buffer before calling GetBuffer().
791          * @return The string at the tail end of this users buffer
792          */
793         std::string GetBuffer();
794
795         /** Sets the write error for a connection. This is done because the actual disconnect
796          * of a client may occur at an inopportune time such as half way through /LIST output.
797          * The WriteErrors of clients are checked at a more ideal time (in the mainloop) and
798          * errored clients purged.
799          * @param error The error string to set.
800          */
801         void SetWriteError(const std::string &error);
802
803         /** Returns the write error which last occured on this connection or an empty string
804          * if none occured.
805          * @return The error string which has occured for this user
806          */
807         const char* GetWriteError();
808
809         /** Adds to the user's write buffer.
810          * You may add any amount of text up to this users sendq value, if you exceed the
811          * sendq value, SetWriteError() will be called to set the users error string to
812          * "SendQ exceeded", and further buffer adds will be dropped.
813          * @param data The data to add to the write buffer
814          */
815         void AddWriteBuf(const std::string &data);
816
817         /** Flushes as much of the user's buffer to the file descriptor as possible.
818          * This function may not always flush the entire buffer, rather instead as much of it
819          * as it possibly can. If the send() call fails to send the entire buffer, the buffer
820          * position is advanced forwards and the rest of the data sent at the next call to
821          * this method.
822          */
823         void FlushWriteBuf();
824
825         /** Returns the list of channels this user has been invited to but has not yet joined.
826          * @return A list of channels the user is invited to
827          */
828         InvitedList* GetInviteList();
829
830         /** Creates a wildcard host.
831          * Takes a buffer to use and fills the given buffer with the host in the format *!*@hostname
832          * @return The wildcarded hostname in *!*@host form
833          */
834         char* MakeWildHost();
835
836         /** Creates a usermask with real host.
837          * Takes a buffer to use and fills the given buffer with the hostmask in the format user@host
838          * @return the usermask in the format user@host
839          */
840         char* MakeHost();
841
842         /** Creates a usermask with real ip.
843          * Takes a buffer to use and fills the given buffer with the ipmask in the format user@ip
844          * @return the usermask in the format user@ip
845          */
846         char* MakeHostIP();
847
848         /** Shuts down and closes the user's socket
849          * This will not cause the user to be deleted. Use InspIRCd::QuitUser for this,
850          * which will call CloseSocket() for you.
851          */
852         void CloseSocket();
853
854         /** Disconnect a user gracefully
855          * @param user The user to remove
856          * @param r The quit reason to show to normal users
857          * @param oreason The quit reason to show to opers
858          * @return Although this function has no return type, on exit the user provided will no longer exist.
859          */
860         static void QuitUser(InspIRCd* Instance, userrec *user, const std::string &r, const char* oreason = "");
861
862         /** Add the user to WHOWAS system
863          */
864         void AddToWhoWas();
865
866         /** Oper up the user using the given opertype.
867          * This will also give the +o usermode.
868          * @param opertype The oper type to oper as
869          */
870         void Oper(const std::string &opertype);
871
872         /** Call this method to find the matching <connect> for a user, and to check them against it.
873          */
874         void CheckClass(const std::string &explicit_class = "");
875
876         /** Use this method to fully connect a user.
877          * This will send the message of the day, check G/K/E lines, etc.
878          */
879         void FullConnect();
880
881         /** Change this users hash key to a new string.
882          * You should not call this function directly. It is used by the core
883          * to update the users hash entry on a nickchange.
884          * @param New new user_hash key
885          * @return Pointer to userrec in hash (usually 'this')
886          */
887         userrec* UpdateNickHash(const char* New);
888
889         /** Force a nickname change.
890          * If the nickname change fails (for example, because the nick in question
891          * already exists) this function will return false, and you must then either
892          * output an error message, or quit the user for nickname collision.
893          * @param newnick The nickname to change to
894          * @return True if the nickchange was successful.
895          */
896         bool ForceNickChange(const char* newnick);
897
898         /** Add a client to the system.
899          * This will create a new userrec, insert it into the user_hash,
900          * initialize it as not yet registered, and add it to the socket engine.
901          * @param Instance a pointer to the server instance
902          * @param socket The socket id (file descriptor) this user is on
903          * @param port The port number this user connected on
904          * @param iscached This variable is reserved for future use
905          * @param ip The IP address of the user
906          * @return This function has no return value, but a call to AddClient may remove the user.
907          */
908         static void AddClient(InspIRCd* Instance, int socket, int port, bool iscached, int socketfamily, sockaddr* ip);
909
910         /** Oper down.
911          * This will clear the +o usermode and unset the user's oper type
912          */
913         void UnOper();
914
915         /** Return the number of global clones of this user
916          * @return The global clone count of this user
917          */
918         unsigned long GlobalCloneCount();
919
920         /** Return the number of local clones of this user
921          * @return The local clone count of this user
922          */
923         unsigned long LocalCloneCount();
924
925         /** Remove all clone counts from the user, you should
926          * use this if you change the user's IP address in
927          * userrec::ip after they have registered.
928          */
929         void RemoveCloneCounts();
930
931         /** Write text to this user, appending CR/LF.
932          * @param text A std::string to send to the user
933          */
934         void Write(std::string text);
935
936         /** Write text to this user, appending CR/LF.
937          * @param text The format string for text to send to the user
938          * @param ... POD-type format arguments
939          */
940         void Write(const char *text, ...);
941
942         /** Write text to this user, appending CR/LF and prepending :server.name
943          * @param text A std::string to send to the user
944          */
945         void WriteServ(const std::string& text);
946
947         /** Write text to this user, appending CR/LF and prepending :server.name
948          * @param text The format string for text to send to the user
949          * @param ... POD-type format arguments
950          */
951         void WriteServ(const char* text, ...);
952
953         /** Write text to this user, appending CR/LF and prepending :nick!user@host of the user provided in the first parameter.
954          * @param user The user to prepend the :nick!user@host of
955          * @param text A std::string to send to the user
956          */
957         void WriteFrom(userrec *user, const std::string &text);
958
959         /** Write text to this user, appending CR/LF and prepending :nick!user@host of the user provided in the first parameter.
960          * @param user The user to prepend the :nick!user@host of
961          * @param text The format string for text to send to the user
962          * @param ... POD-type format arguments
963          */
964         void WriteFrom(userrec *user, const char* text, ...);
965
966         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user@host.
967          * @param dest The user to route the message to
968          * @param text A std::string to send to the user
969          */
970         void WriteTo(userrec *dest, const std::string &data);
971
972         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user@host.
973          * @param dest The user to route the message to
974          * @param text The format string for text to send to the user
975          * @param ... POD-type format arguments
976          */
977         void WriteTo(userrec *dest, const char *data, ...);
978
979         /** Write to all users that can see this user (including this user in the list), appending CR/LF
980          * @param text A std::string to send to the users
981          */
982         void WriteCommon(const std::string &text);
983
984         /** Write to all users that can see this user (including this user in the list), appending CR/LF
985          * @param text The format string for text to send to the users
986          * @param ... POD-type format arguments
987          */
988         void WriteCommon(const char* text, ...);
989
990         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
991          * @param text The format string for text to send to the users
992          * @param ... POD-type format arguments
993          */
994         void WriteCommonExcept(const char* text, ...);
995
996         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
997          * @param text A std::string to send to the users
998          */
999         void WriteCommonExcept(const std::string &text);
1000
1001         /** Write a quit message to all common users, as in userrec::WriteCommonExcept but with a specific
1002          * quit message for opers only.
1003          * @param normal_text Normal user quit message
1004          * @param oper_text Oper only quit message
1005          */
1006         void WriteCommonQuit(const std::string &normal_text, const std::string &oper_text);
1007
1008         /** Write a WALLOPS message from this user to all local opers.
1009          * If this user is not opered, the function will return without doing anything.
1010          * @param text The format string to send in the WALLOPS message
1011          * @param ... Format arguments
1012          */
1013         void WriteWallOps(const char* text, ...);
1014
1015         /** Write a WALLOPS message from this user to all local opers.
1016          * If this user is not opered, the function will return without doing anything.
1017          * @param text The text to send in the WALLOPS message
1018          */
1019         void WriteWallOps(const std::string &text);
1020
1021         /** Return true if the user shares at least one channel with another user
1022          * @param other The other user to compare the channel list against
1023          * @return True if the given user shares at least one channel with this user
1024          */
1025         bool SharesChannelWith(userrec *other);
1026
1027         /** Change the displayed host of a user.
1028          * ALWAYS use this function, rather than writing userrec::dhost directly,
1029          * as this triggers module events allowing the change to be syncronized to
1030          * remote servers. This will also emulate a QUIT and rejoin (where configured)
1031          * before setting their host field.
1032          * @param host The new hostname to set
1033          * @return True if the change succeeded, false if it didn't
1034          */
1035         bool ChangeDisplayedHost(const char* host);
1036
1037         /** Change the ident (username) of a user.
1038          * ALWAYS use this function, rather than writing userrec::ident directly,
1039          * as this correctly causes the user to seem to quit (where configured)
1040          * before setting their ident field.
1041          * @param host The new ident to set
1042          * @return True if the change succeeded, false if it didn't
1043          */
1044         bool ChangeIdent(const char* newident);
1045
1046         /** Change a users realname field.
1047          * ALWAYS use this function, rather than writing userrec::fullname directly,
1048          * as this triggers module events allowing the change to be syncronized to
1049          * remote servers.
1050          * @param gecos The user's new realname
1051          * @return True if the change succeeded, false if otherwise
1052          */
1053         bool ChangeName(const char* gecos);
1054
1055         /** Send a command to all local users from this user
1056          * The command given must be able to send text with the
1057          * first parameter as a servermask (e.g. $*), so basically
1058          * you should use PRIVMSG or NOTICE.
1059          * @param command the command to send
1060          * @param text The text format string to send
1061          * @param ... Format arguments
1062          */
1063         void SendAll(const char* command, char* text, ...);
1064
1065         /** Compile a channel list for this user, and send it to the user 'source'
1066          * Used internally by WHOIS
1067          * @param The user to send the channel list to if it is not too long
1068          * @return This user's channel list
1069          */
1070         std::string ChannelList(userrec* source);
1071
1072         /** Split the channel list in cl which came from dest, and spool it to this user
1073          * Used internally by WHOIS
1074          * @param dest The user the original channel list came from
1075          * @param cl The  channel list as a string obtained from userrec::ChannelList()
1076          */
1077         void SplitChanList(userrec* dest, const std::string &cl);
1078
1079         /** Remove this user from all channels they are on, and delete any that are now empty.
1080          * This is used by QUIT, and will not send part messages!
1081          */
1082         void PurgeEmptyChannels();
1083
1084         /** Get the connect class which matches this user's host or IP address
1085          * @param explicit_name Set this string to tie the user to a specific class name
1086          * @return A reference to this user's connect class
1087          */
1088         ConnectClass* GetClass(const std::string &explicit_name = "");
1089
1090         /** Show the message of the day to this user
1091          */
1092         void ShowMOTD();
1093
1094         /** Show the server RULES file to this user
1095          */
1096         void ShowRULES();
1097
1098         /** Set oper-specific quit message shown to opers only when the user quits
1099          * (overrides any sent by QuitUser)
1100          */
1101         void SetOperQuit(const std::string &oquit);
1102
1103         /** Get oper-specific quit message shown only to opers when the user quits.
1104          * (overrides any sent by QuitUser)
1105          */
1106         const char* GetOperQuit();
1107
1108         /** Handle socket event.
1109          * From EventHandler class.
1110          * @param et Event type
1111          * @param errornum Error number for EVENT_ERROR events
1112          */
1113         void HandleEvent(EventType et, int errornum = 0);
1114
1115         /** Default destructor
1116          */
1117         virtual ~userrec();
1118 };
1119
1120 /* Configuration callbacks */
1121 class ServerConfig;
1122
1123 #endif
1124