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