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