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