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