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