]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/users.h
c9401933571d8191671244450f43e497458190f7
[user/henk/code/inspircd.git] / include / users.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
7  *   Copyright (C) 2003-2007 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2007 Burlex <???@???>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #pragma once
26
27 #include "socket.h"
28 #include "inspsocket.h"
29 #include "mode.h"
30 #include "membership.h"
31
32 /** connect class types
33  */
34 enum ClassTypes {
35         /** connect:allow */
36         CC_ALLOW = 0,
37         /** connect:deny */
38         CC_DENY  = 1,
39         /** named connect block (for opers, etc) */
40         CC_NAMED = 2
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 enum UserType {
72         USERTYPE_LOCAL = 1,
73         USERTYPE_REMOTE = 2,
74         USERTYPE_SERVER = 3
75 };
76
77 /** Holds information relevent to &lt;connect allow&gt; and &lt;connect deny&gt; tags in the config file.
78  */
79 struct CoreExport ConnectClass : public refcountbase
80 {
81         reference<ConfigTag> config;
82         /** Type of line, either CC_ALLOW or CC_DENY
83          */
84         char type;
85
86         /** True if this class uses fake lag to manage flood, false if it kills */
87         bool fakelag;
88
89         /** Connect class name
90          */
91         std::string name;
92
93         /** Max time to register the connection in seconds
94          */
95         unsigned int registration_timeout;
96
97         /** Host mask for this line
98          */
99         std::string host;
100
101         /** Number of seconds between pings for this line
102          */
103         unsigned int pingtime;
104
105         /** Maximum size of sendq for users in this class (bytes)
106          * Users cannot send commands if they go over this limit
107          */
108         unsigned long softsendqmax;
109
110         /** Maximum size of sendq for users in this class (bytes)
111          * Users are killed if they go over this limit
112          */
113         unsigned long hardsendqmax;
114
115         /** Maximum size of recvq for users in this class (bytes)
116          */
117         unsigned long recvqmax;
118
119         /** Seconds worth of penalty before penalty system activates
120          */
121         unsigned int penaltythreshold;
122
123         /** Maximum rate of commands (units: millicommands per second) */
124         unsigned int commandrate;
125
126         /** Local max when connecting by this connection class
127          */
128         unsigned long maxlocal;
129
130         /** Global max when connecting by this connection class
131          */
132         unsigned long maxglobal;
133
134         /** True if max connections for this class is hit and a warning is wanted
135          */
136         bool maxconnwarn;
137
138         /** Max channels for this class
139          */
140         unsigned int maxchans;
141
142         /** How many users may be in this connect class before they are refused?
143          * (0 = no limit = default)
144          */
145         unsigned long limit;
146
147         /** If set to true, no user DNS lookups are to be performed
148          */
149         bool nouserdns;
150
151         /** Create a new connect class with no settings.
152          */
153         ConnectClass(ConfigTag* tag, char type, const std::string& mask);
154         /** Create a new connect class with inherited settings.
155          */
156         ConnectClass(ConfigTag* tag, char type, const std::string& mask, const ConnectClass& parent);
157
158         /** Update the settings in this block to match the given block */
159         void Update(const ConnectClass* newSettings);
160
161         const std::string& GetName() { return name; }
162         const std::string& GetHost() { return host; }
163
164         /** Returns the registration timeout
165          */
166         time_t GetRegTimeout()
167         {
168                 return (registration_timeout ? registration_timeout : 90);
169         }
170
171         /** Returns the ping frequency
172          */
173         unsigned int GetPingTime()
174         {
175                 return (pingtime ? pingtime : 120);
176         }
177
178         /** Returns the maximum sendq value (soft limit)
179          * Note that this is in addition to internal OS buffers
180          */
181         unsigned long GetSendqSoftMax()
182         {
183                 return (softsendqmax ? softsendqmax : 4096);
184         }
185
186         /** Returns the maximum sendq value (hard limit)
187          */
188         unsigned long GetSendqHardMax()
189         {
190                 return (hardsendqmax ? hardsendqmax : 0x100000);
191         }
192
193         /** Returns the maximum recvq value
194          */
195         unsigned long GetRecvqMax()
196         {
197                 return (recvqmax ? recvqmax : 4096);
198         }
199
200         /** Returns the penalty threshold value
201          */
202         unsigned int GetPenaltyThreshold()
203         {
204                 return penaltythreshold ? penaltythreshold : (fakelag ? 10 : 20);
205         }
206
207         unsigned int GetCommandRate()
208         {
209                 return commandrate ? commandrate : 1000;
210         }
211
212         /** Return the maximum number of local sessions
213          */
214         unsigned long GetMaxLocal()
215         {
216                 return maxlocal;
217         }
218
219         /** Returns the maximum number of global sessions
220          */
221         unsigned long GetMaxGlobal()
222         {
223                 return maxglobal;
224         }
225 };
226
227 /** Holds all information about a user
228  * This class stores all information about a user connected to the irc server. Everything about a
229  * connection is stored here primarily, from the user's socket ID (file descriptor) through to the
230  * user's nickname and hostname.
231  */
232 class CoreExport User : public Extensible
233 {
234  private:
235         /** Cached nick!ident@dhost value using the displayed hostname
236          */
237         std::string cached_fullhost;
238
239         /** Cached ident@ip value using the real IP address
240          */
241         std::string cached_hostip;
242
243         /** Cached ident@realhost value using the real hostname
244          */
245         std::string cached_makehost;
246
247         /** Cached nick!ident@realhost value using the real hostname
248          */
249         std::string cached_fullrealhost;
250
251         /** Set by GetIPString() to avoid constantly re-grabbing IP via sockets voodoo.
252          */
253         std::string cachedip;
254
255  public:
256
257         /** Hostname of connection.
258          * This should be valid as per RFC1035.
259          */
260         std::string host;
261
262         /** Time that the object was instantiated (used for TS calculation etc)
263         */
264         time_t age;
265
266         /** Time the connection was created, set in the constructor. This
267          * may be different from the time the user's classbase object was
268          * created.
269          */
270         time_t signon;
271
272         /** Client address that the user is connected from.
273          * Do not modify this value directly, use SetClientIP() to change it.
274          * Port is not valid for remote users.
275          */
276         irc::sockets::sockaddrs client_sa;
277
278         /** The users nickname.
279          * An invalid nickname indicates an unregistered connection prior to the NICK command.
280          * Use InspIRCd::IsNick() to validate nicknames.
281          */
282         std::string nick;
283
284         /** The user's unique identifier.
285          * This is the unique identifier which the user has across the network.
286          */
287         const std::string uuid;
288
289         /** The users ident reply.
290          * Two characters are added to the user-defined limit to compensate for the tilde etc.
291          */
292         std::string ident;
293
294         /** The host displayed to non-opers (used for cloaking etc).
295          * This usually matches the value of User::host.
296          */
297         std::string dhost;
298
299         /** The users full name (GECOS).
300          */
301         std::string fullname;
302
303         /** The user's mode list.
304          * NOT a null terminated string.
305          * Also NOT an array.
306          * Much love to the STL for giving us an easy to use bitset, saving us RAM.
307          * if (modes[modeletter-65]) is set, then the mode is
308          * set, for example, to work out if mode +s is set, we  check the field
309          * User::modes['s'-65] != 0.
310          * The following RFC characters o, w, s, i have constants defined via an
311          * enum, such as UM_SERVERNOTICE and UM_OPETATOR.
312          */
313         std::bitset<64> modes;
314
315         /** What snomasks are set on this user.
316          * This functions the same as the above modes.
317          */
318         std::bitset<64> snomasks;
319
320         /** Channels this user is on
321          */
322         UserChanList chans;
323
324         /** The server the user is connected to.
325          */
326         const std::string server;
327
328         /** The user's away message.
329          * If this string is empty, the user is not marked as away.
330          */
331         std::string awaymsg;
332
333         /** Time the user last went away.
334          * This is ONLY RELIABLE if user IsAway()!
335          */
336         time_t awaytime;
337
338         /** The oper type they logged in as, if they are an oper.
339          */
340         reference<OperInfo> oper;
341
342         /** Used by User to indicate the registration status of the connection
343          * It is a bitfield of the REG_NICK, REG_USER and REG_ALL bits to indicate
344          * the connection state.
345          */
346         unsigned int registered:3;
347
348         /** Whether or not to send an snotice about this user's quitting
349          */
350         unsigned int quietquit:1;
351
352         /** If this is set to true, then all socket operations for the user
353          * are dropped into the bit-bucket.
354          * This value is set by QuitUser, and is not needed seperately from that call.
355          * Please note that setting this value alone will NOT cause the user to quit.
356          */
357         unsigned int quitting:1;
358
359         /** What type of user is this? */
360         const unsigned int usertype:2;
361
362         /** Get client IP string from sockaddr, using static internal buffer
363          * @return The IP string
364          */
365         const std::string& GetIPString();
366
367         /** Get CIDR mask, using default range, for this user
368          */
369         irc::sockets::cidr_mask GetCIDRMask();
370
371         /** Sets the client IP for this user
372          * @return true if the conversion was successful
373          */
374         virtual bool SetClientIP(const char* sip, bool recheck_eline = true);
375
376         virtual void SetClientIP(const irc::sockets::sockaddrs& sa, bool recheck_eline = true);
377
378         /** Constructor
379          * @throw CoreException if the UID allocated to the user already exists
380          */
381         User(const std::string &uid, const std::string& srv, int objtype);
382
383         /** Returns the full displayed host of the user
384          * This member function returns the hostname of the user as seen by other users
385          * on the server, in nick!ident\@host form.
386          * @return The full masked host of the user
387          */
388         virtual const std::string& GetFullHost();
389
390         /** Returns the full real host of the user
391          * This member function returns the hostname of the user as seen by other users
392          * on the server, in nick!ident\@host form. If any form of hostname cloaking is in operation,
393          * e.g. through a module, then this method will ignore it and return the true hostname.
394          * @return The full real host of the user
395          */
396         virtual const std::string& GetFullRealHost();
397
398         /** This clears any cached results that are used for GetFullRealHost() etc.
399          * The results of these calls are cached as generating them can be generally expensive.
400          */
401         void InvalidateCache();
402
403         /** Create a displayable mode string for this users snomasks
404          * @return The notice mask character sequence
405          */
406         const char* FormatNoticeMasks();
407
408         /** Process a snomask modifier string, e.g. +abc-de
409          * @param sm A sequence of notice mask characters
410          * @return The cleaned mode sequence which can be output,
411          * e.g. in the above example if masks c and e are not
412          * valid, this function will return +ab-d
413          */
414         std::string ProcessNoticeMasks(const char *sm);
415
416         /** Returns whether this user is currently away or not. If true,
417          * further information can be found in User::awaymsg and User::awaytime
418          * @return True if the user is away, false otherwise
419          */
420         bool IsAway() const { return (!awaymsg.empty()); }
421
422         /** Returns whether this user is an oper or not. If true,
423          * oper information can be obtained from User::oper
424          * @return True if the user is an oper, false otherwise
425          */
426         bool IsOper() const { return oper; }
427
428         /** Returns true if a notice mask is set
429          * @param sm A notice mask character to check
430          * @return True if the notice mask is set
431          */
432         bool IsNoticeMaskSet(unsigned char sm);
433
434         /** Changed a specific notice mask value
435          * @param sm The server notice mask to change
436          * @param value An on/off value for this mask
437          */
438         void SetNoticeMask(unsigned char sm, bool value);
439
440         /** Create a displayable mode string for this users umodes
441          * @param showparameters The mode string
442          */
443         const char* FormatModes(bool showparameters = false);
444
445         /** Returns true if a specific mode is set
446          * @param m The user mode
447          * @return True if the mode is set
448          */
449         bool IsModeSet(unsigned char m);
450
451         /** Set a specific usermode to on or off
452          * @param m The user mode
453          * @param value On or off setting of the mode
454          */
455         void SetMode(unsigned char m, bool value);
456
457         /** Returns true or false for if a user can execute a privilaged oper command.
458          * This is done by looking up their oper type from User::oper, then referencing
459          * this to their oper classes and checking the commands they can execute.
460          * @param command A command (should be all CAPS)
461          * @return True if this user can execute the command
462          */
463         virtual bool HasPermission(const std::string &command);
464
465         /** Returns true if a user has a given permission.
466          * This is used to check whether or not users may perform certain actions which admins may not wish to give to
467          * all operators, yet are not commands. An example might be oper override, mass messaging (/notice $*), etc.
468          *
469          * @param privstr The priv to chec, e.g. "users/override/topic". These are loaded free-form from the config file.
470          * @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.
471          * @return True if this user has the permission in question.
472          */
473         virtual bool HasPrivPermission(const std::string &privstr, bool noisy = false);
474
475         /** Returns true or false if a user can set a privileged user or channel mode.
476          * This is done by looking up their oper type from User::oper, then referencing
477          * this to their oper classes, and checking the modes they can set.
478          * @param mode The mode the check
479          * @param type ModeType (MODETYPE_CHANNEL or MODETYPE_USER).
480          * @return True if the user can set or unset this mode.
481          */
482         virtual bool HasModePermission(unsigned char mode, ModeType type);
483
484         /** Creates a wildcard host.
485          * Takes a buffer to use and fills the given buffer with the host in the format *!*\@hostname
486          * @return The wildcarded hostname in *!*\@host form
487          */
488         char* MakeWildHost();
489
490         /** Creates a usermask with real host.
491          * Takes a buffer to use and fills the given buffer with the hostmask in the format user\@host
492          * @return the usermask in the format user\@host
493          */
494         const std::string& MakeHost();
495
496         /** Creates a usermask with real ip.
497          * Takes a buffer to use and fills the given buffer with the ipmask in the format user\@ip
498          * @return the usermask in the format user\@ip
499          */
500         const std::string& MakeHostIP();
501
502         /** Oper up the user using the given opertype.
503          * This will also give the +o usermode.
504          */
505         void Oper(OperInfo* info);
506
507         /** Force a nickname change.
508          * If the nickname change fails (for example, because the nick in question
509          * already exists) this function will return false, and you must then either
510          * output an error message, or quit the user for nickname collision.
511          * @param newnick The nickname to change to
512          * @return True if the nickchange was successful.
513          */
514         inline bool ForceNickChange(const char* newnick) { return ChangeNick(newnick, true); }
515
516         /** Oper down.
517          * This will clear the +o usermode and unset the user's oper type
518          */
519         void UnOper();
520
521         /** Write text to this user, appending CR/LF. Works on local users only.
522          * @param text A std::string to send to the user
523          */
524         virtual void Write(const std::string &text);
525
526         /** Write text to this user, appending CR/LF.
527          * Works on local users only.
528          * @param text The format string for text to send to the user
529          * @param ... POD-type format arguments
530          */
531         virtual void Write(const char *text, ...) CUSTOM_PRINTF(2, 3);
532
533         /** Write text to this user, appending CR/LF and prepending :server.name
534          * Works on local users only.
535          * @param text A std::string to send to the user
536          */
537         void WriteServ(const std::string& text);
538
539         /** Write text to this user, appending CR/LF and prepending :server.name
540          * Works on local users only.
541          * @param text The format string for text to send to the user
542          * @param ... POD-type format arguments
543          */
544         void WriteServ(const char* text, ...) CUSTOM_PRINTF(2, 3);
545
546         /** Sends a server notice to this user.
547          * @param text The contents of the message to send.
548          */
549         void WriteNotice(const std::string& text);
550
551         void WriteNumeric(unsigned int numeric, const char* text, ...) CUSTOM_PRINTF(3, 4);
552
553         void WriteNumeric(unsigned int numeric, const std::string &text);
554
555         /** Write text to this user, appending CR/LF and prepending :nick!user\@host of the user provided in the first parameter.
556          * @param user The user to prepend the :nick!user\@host of
557          * @param text A std::string to send to the user
558          */
559         void WriteFrom(User *user, const std::string &text);
560
561         /** Write text to this user, appending CR/LF and prepending :nick!user\@host of the user provided in the first parameter.
562          * @param user The user to prepend the :nick!user\@host of
563          * @param text The format string for text to send to the user
564          * @param ... POD-type format arguments
565          */
566         void WriteFrom(User *user, const char* text, ...) CUSTOM_PRINTF(3, 4);
567
568         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user\@host.
569          * @param dest The user to route the message to
570          * @param data A std::string to send to the user
571          */
572         void WriteTo(User *dest, const std::string &data);
573
574         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user\@host.
575          * @param dest The user to route the message to
576          * @param data The format string for text to send to the user
577          * @param ... POD-type format arguments
578          */
579         void WriteTo(User *dest, const char *data, ...) CUSTOM_PRINTF(3, 4);
580
581         /** Write to all users that can see this user (including this user in the list if include_self is true), appending CR/LF
582          * @param line A std::string to send to the users
583          * @param include_self Should the message be sent back to the author?
584          */
585         void WriteCommonRaw(const std::string &line, bool include_self = true);
586
587         /** Write to all users that can see this user (including this user in the list), appending CR/LF
588          * @param text The format string for text to send to the users
589          * @param ... POD-type format arguments
590          */
591         void WriteCommon(const char* text, ...) CUSTOM_PRINTF(2, 3);
592
593         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
594          * @param text The format string for text to send to the users
595          * @param ... POD-type format arguments
596          */
597         void WriteCommonExcept(const char* text, ...) CUSTOM_PRINTF(2, 3);
598
599         /** Write a quit message to all common users, as in User::WriteCommonExcept but with a specific
600          * quit message for opers only.
601          * @param normal_text Normal user quit message
602          * @param oper_text Oper only quit message
603          */
604         void WriteCommonQuit(const std::string &normal_text, const std::string &oper_text);
605
606         /** Dump text to a user target, splitting it appropriately to fit
607          * @param LinePrefix text to prefix each complete line with
608          * @param TextStream the text to send to the user
609          */
610         void SendText(const std::string &LinePrefix, std::stringstream &TextStream);
611
612         /** Write to the user, routing the line if the user is remote.
613          */
614         virtual void SendText(const std::string& line) = 0;
615
616         /** Write to the user, routing the line if the user is remote.
617          */
618         void SendText(const char* text, ...) CUSTOM_PRINTF(2, 3);
619
620         /** Return true if the user shares at least one channel with another user
621          * @param other The other user to compare the channel list against
622          * @return True if the given user shares at least one channel with this user
623          */
624         bool SharesChannelWith(User *other);
625
626         /** Send fake quit/join messages for host or ident cycle.
627          * Run this after the item in question has changed.
628          * You should not need to use this function, call ChangeDisplayedHost instead
629          *
630          * @param quitline The entire QUIT line, including the source using the old value
631          */
632         void DoHostCycle(const std::string &quitline);
633
634         /** Change the displayed host of a user.
635          * ALWAYS use this function, rather than writing User::dhost directly,
636          * as this triggers module events allowing the change to be syncronized to
637          * remote servers. This will also emulate a QUIT and rejoin (where configured)
638          * before setting their host field.
639          * @param host The new hostname to set
640          * @return True if the change succeeded, false if it didn't
641          */
642         bool ChangeDisplayedHost(const char* host);
643
644         /** Change the ident (username) of a user.
645          * ALWAYS use this function, rather than writing User::ident directly,
646          * as this correctly causes the user to seem to quit (where configured)
647          * before setting their ident field.
648          * @param newident The new ident to set
649          * @return True if the change succeeded, false if it didn't
650          */
651         bool ChangeIdent(const char* newident);
652
653         /** Change a users realname field.
654          * ALWAYS use this function, rather than writing User::fullname directly,
655          * as this triggers module events allowing the change to be syncronized to
656          * remote servers.
657          * @param gecos The user's new realname
658          * @return True if the change succeeded, false if otherwise
659          */
660         bool ChangeName(const char* gecos);
661
662         /** Change a user's nick
663          * @param newnick The new nick
664          * @param force True if the change is being forced (should not be blocked by modes like +N)
665          * @return True if the change succeeded
666          */
667         bool ChangeNick(const std::string& newnick, bool force = false);
668
669         /** Send a command to all local users from this user
670          * The command given must be able to send text with the
671          * first parameter as a servermask (e.g. $*), so basically
672          * you should use PRIVMSG or NOTICE.
673          * @param command the command to send
674          * @param text The text format string to send
675          * @param ... Format arguments
676          */
677         void SendAll(const char* command, const char* text, ...) CUSTOM_PRINTF(3, 4);
678
679         /** Remove this user from all channels they are on, and delete any that are now empty.
680          * This is used by QUIT, and will not send part messages!
681          */
682         void PurgeEmptyChannels();
683
684         /** Get the connect class which this user belongs to. NULL for remote users.
685          * @return A pointer to this user's connect class.
686          */
687         virtual ConnectClass* GetClass();
688
689         /** Default destructor
690          */
691         virtual ~User();
692         virtual CullResult cull();
693 };
694
695 class CoreExport UserIOHandler : public StreamSocket
696 {
697  public:
698         LocalUser* const user;
699         UserIOHandler(LocalUser* me) : user(me) {}
700         void OnDataReady();
701         void OnError(BufferedSocketError error);
702
703         /** Adds to the user's write buffer.
704          * You may add any amount of text up to this users sendq value, if you exceed the
705          * sendq value, the user will be removed, and further buffer adds will be dropped.
706          * @param data The data to add to the write buffer
707          */
708         void AddWriteBuf(const std::string &data);
709 };
710
711 typedef unsigned int already_sent_t;
712
713 class CoreExport LocalUser : public User, public InviteBase
714 {
715  public:
716         LocalUser(int fd, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server);
717         CullResult cull();
718
719         UserIOHandler eh;
720
721         /** Position in UserManager::local_users
722          */
723         LocalUserList::iterator localuseriter;
724
725         /** Stats counter for bytes inbound
726          */
727         unsigned int bytes_in;
728
729         /** Stats counter for bytes outbound
730          */
731         unsigned int bytes_out;
732
733         /** Stats counter for commands inbound
734          */
735         unsigned int cmds_in;
736
737         /** Stats counter for commands outbound
738          */
739         unsigned int cmds_out;
740
741         /** Password specified by the user when they registered (if any).
742          * This is stored even if the \<connect> block doesnt need a password, so that
743          * modules may check it.
744          */
745         std::string password;
746
747         /** Contains a pointer to the connect class a user is on from
748          */
749         reference<ConnectClass> MyClass;
750
751         ConnectClass* GetClass();
752
753         /** Call this method to find the matching \<connect> for a user, and to check them against it.
754          */
755         void CheckClass();
756
757         /** Server address and port that this user is connected to.
758          */
759         irc::sockets::sockaddrs server_sa;
760
761         /**
762          * @return The port number of this user.
763          */
764         int GetServerPort();
765
766         /** Recursion fix: user is out of SendQ and will be quit as soon as possible.
767          * This can't be handled normally because QuitUser itself calls Write on other
768          * users, which could trigger their SendQ to overrun.
769          */
770         unsigned int quitting_sendq:1;
771
772         /** has the user responded to their previous ping?
773          */
774         unsigned int lastping:1;
775
776         /** This is true if the user matched an exception (E:Line). It is used to save time on ban checks.
777          */
778         unsigned int exempt:1;
779
780         /** Used by PING checking code
781          */
782         time_t nping;
783
784         /** Time that the connection last sent a message, used to calculate idle time
785          */
786         time_t idle_lastmsg;
787
788         /** This value contains how far into the penalty threshold the user is.
789          * This is used either to enable fake lag or for excess flood quits
790          */
791         unsigned int CommandFloodPenalty;
792
793         static already_sent_t already_sent_id;
794         already_sent_t already_sent;
795
796         /** Check if the user matches a G or K line, and disconnect them if they do.
797          * @param doZline True if ZLines should be checked (if IP has changed since initial connect)
798          * Returns true if the user matched a ban, false else.
799          */
800         bool CheckLines(bool doZline = false);
801
802         /** Use this method to fully connect a user.
803          * This will send the message of the day, check G/K/E lines, etc.
804          */
805         void FullConnect();
806
807         /** Set the connect class to which this user belongs to.
808          * @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.
809          * @return A reference to this user's current connect class.
810          */
811         void SetClass(const std::string &explicit_name = "");
812
813         bool SetClientIP(const char* sip, bool recheck_eline = true);
814
815         void SetClientIP(const irc::sockets::sockaddrs& sa, bool recheck_eline = true);
816
817         void SendText(const std::string& line);
818         void Write(const std::string& text);
819         void Write(const char*, ...) CUSTOM_PRINTF(2, 3);
820
821         /** Returns the list of channels this user has been invited to but has not yet joined.
822          * @return A list of channels the user is invited to
823          */
824         InviteList& GetInviteList();
825
826         /** Returns true if a user is invited to a channel.
827          * @param channel A channel to look up
828          * @return True if the user is invited to the given channel
829          */
830         bool IsInvited(Channel* chan) { return (Invitation::Find(chan, this) != NULL); }
831
832         /** Removes a channel from a users invite list.
833          * This member function is called on successfully joining an invite only channel
834          * to which the user has previously been invited, to clear the invitation.
835          * @param channel The channel to remove the invite to
836          * @return True if the user was invited to the channel and the invite was erased, false if the user wasn't invited
837          */
838         bool RemoveInvite(Channel* chan);
839
840         void RemoveExpiredInvites();
841
842         /** Returns true or false for if a user can execute a privilaged oper command.
843          * This is done by looking up their oper type from User::oper, then referencing
844          * this to their oper classes and checking the commands they can execute.
845          * @param command A command (should be all CAPS)
846          * @return True if this user can execute the command
847          */
848         bool HasPermission(const std::string &command);
849
850         /** Returns true if a user has a given permission.
851          * This is used to check whether or not users may perform certain actions which admins may not wish to give to
852          * all operators, yet are not commands. An example might be oper override, mass messaging (/notice $*), etc.
853          *
854          * @param privstr The priv to chec, e.g. "users/override/topic". These are loaded free-form from the config file.
855          * @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.
856          * @return True if this user has the permission in question.
857          */
858         bool HasPrivPermission(const std::string &privstr, bool noisy = false);
859
860         /** Returns true or false if a user can set a privileged user or channel mode.
861          * This is done by looking up their oper type from User::oper, then referencing
862          * this to their oper classes, and checking the modes they can set.
863          * @param mode The mode the check
864          * @param type ModeType (MODETYPE_CHANNEL or MODETYPE_USER).
865          * @return True if the user can set or unset this mode.
866          */
867         bool HasModePermission(unsigned char mode, ModeType type);
868 };
869
870 class CoreExport RemoteUser : public User
871 {
872  public:
873         RemoteUser(const std::string& uid, const std::string& srv) : User(uid, srv, USERTYPE_REMOTE)
874         {
875         }
876         virtual void SendText(const std::string& line);
877 };
878
879 class CoreExport FakeUser : public User
880 {
881  public:
882         FakeUser(const std::string &uid, const std::string& srv) : User(uid, srv, USERTYPE_SERVER)
883         {
884                 nick = srv;
885         }
886
887         virtual CullResult cull();
888         virtual void SendText(const std::string& line);
889         virtual const std::string& GetFullHost();
890         virtual const std::string& GetFullRealHost();
891 };
892
893 /* Faster than dynamic_cast */
894 /** Is a local user */
895 inline LocalUser* IS_LOCAL(User* u)
896 {
897         return u->usertype == USERTYPE_LOCAL ? static_cast<LocalUser*>(u) : NULL;
898 }
899 /** Is a remote user */
900 inline RemoteUser* IS_REMOTE(User* u)
901 {
902         return u->usertype == USERTYPE_REMOTE ? static_cast<RemoteUser*>(u) : NULL;
903 }
904 /** Is a server fakeuser */
905 inline FakeUser* IS_SERVER(User* u)
906 {
907         return u->usertype == USERTYPE_SERVER ? static_cast<FakeUser*>(u) : NULL;
908 }
909