]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/users.h
0f57074b2e3fba5abb8d0882665a916376e857ad
[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         void WriteNumeric(unsigned int numeric, const char* text, ...) CUSTOM_PRINTF(3, 4);
547
548         void WriteNumeric(unsigned int numeric, const std::string &text);
549
550         /** Write text to this user, appending CR/LF and prepending :nick!user\@host of the user provided in the first parameter.
551          * @param user The user to prepend the :nick!user\@host of
552          * @param text A std::string to send to the user
553          */
554         void WriteFrom(User *user, const std::string &text);
555
556         /** Write text to this user, appending CR/LF and prepending :nick!user\@host of the user provided in the first parameter.
557          * @param user The user to prepend the :nick!user\@host of
558          * @param text The format string for text to send to the user
559          * @param ... POD-type format arguments
560          */
561         void WriteFrom(User *user, const char* text, ...) CUSTOM_PRINTF(3, 4);
562
563         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user\@host.
564          * @param dest The user to route the message to
565          * @param data A std::string to send to the user
566          */
567         void WriteTo(User *dest, const std::string &data);
568
569         /** Write text to the user provided in the first parameter, appending CR/LF, and prepending THIS user's :nick!user\@host.
570          * @param dest The user to route the message to
571          * @param data The format string for text to send to the user
572          * @param ... POD-type format arguments
573          */
574         void WriteTo(User *dest, const char *data, ...) CUSTOM_PRINTF(3, 4);
575
576         /** Write to all users that can see this user (including this user in the list if include_self is true), appending CR/LF
577          * @param line A std::string to send to the users
578          * @param include_self Should the message be sent back to the author?
579          */
580         void WriteCommonRaw(const std::string &line, bool include_self = true);
581
582         /** Write to all users that can see this user (including this user in the list), appending CR/LF
583          * @param text The format string for text to send to the users
584          * @param ... POD-type format arguments
585          */
586         void WriteCommon(const char* text, ...) CUSTOM_PRINTF(2, 3);
587
588         /** Write to all users that can see this user (not including this user in the list), appending CR/LF
589          * @param text The format string for text to send to the users
590          * @param ... POD-type format arguments
591          */
592         void WriteCommonExcept(const char* text, ...) CUSTOM_PRINTF(2, 3);
593
594         /** Write a quit message to all common users, as in User::WriteCommonExcept but with a specific
595          * quit message for opers only.
596          * @param normal_text Normal user quit message
597          * @param oper_text Oper only quit message
598          */
599         void WriteCommonQuit(const std::string &normal_text, const std::string &oper_text);
600
601         /** Dump text to a user target, splitting it appropriately to fit
602          * @param LinePrefix text to prefix each complete line with
603          * @param TextStream the text to send to the user
604          */
605         void SendText(const std::string &LinePrefix, std::stringstream &TextStream);
606
607         /** Write to the user, routing the line if the user is remote.
608          */
609         virtual void SendText(const std::string& line) = 0;
610
611         /** Write to the user, routing the line if the user is remote.
612          */
613         void SendText(const char* text, ...) CUSTOM_PRINTF(2, 3);
614
615         /** Return true if the user shares at least one channel with another user
616          * @param other The other user to compare the channel list against
617          * @return True if the given user shares at least one channel with this user
618          */
619         bool SharesChannelWith(User *other);
620
621         /** Send fake quit/join messages for host or ident cycle.
622          * Run this after the item in question has changed.
623          * You should not need to use this function, call ChangeDisplayedHost instead
624          *
625          * @param quitline The entire QUIT line, including the source using the old value
626          */
627         void DoHostCycle(const std::string &quitline);
628
629         /** Change the displayed host of a user.
630          * ALWAYS use this function, rather than writing User::dhost directly,
631          * as this triggers module events allowing the change to be syncronized to
632          * remote servers. This will also emulate a QUIT and rejoin (where configured)
633          * before setting their host field.
634          * @param host The new hostname to set
635          * @return True if the change succeeded, false if it didn't
636          */
637         bool ChangeDisplayedHost(const char* host);
638
639         /** Change the ident (username) of a user.
640          * ALWAYS use this function, rather than writing User::ident directly,
641          * as this correctly causes the user to seem to quit (where configured)
642          * before setting their ident field.
643          * @param newident The new ident to set
644          * @return True if the change succeeded, false if it didn't
645          */
646         bool ChangeIdent(const char* newident);
647
648         /** Change a users realname field.
649          * ALWAYS use this function, rather than writing User::fullname directly,
650          * as this triggers module events allowing the change to be syncronized to
651          * remote servers.
652          * @param gecos The user's new realname
653          * @return True if the change succeeded, false if otherwise
654          */
655         bool ChangeName(const char* gecos);
656
657         /** Change a user's nick
658          * @param newnick The new nick
659          * @param force True if the change is being forced (should not be blocked by modes like +N)
660          * @return True if the change succeeded
661          */
662         bool ChangeNick(const std::string& newnick, bool force = false);
663
664         /** Send a command to all local users from this user
665          * The command given must be able to send text with the
666          * first parameter as a servermask (e.g. $*), so basically
667          * you should use PRIVMSG or NOTICE.
668          * @param command the command to send
669          * @param text The text format string to send
670          * @param ... Format arguments
671          */
672         void SendAll(const char* command, const char* text, ...) CUSTOM_PRINTF(3, 4);
673
674         /** Remove this user from all channels they are on, and delete any that are now empty.
675          * This is used by QUIT, and will not send part messages!
676          */
677         void PurgeEmptyChannels();
678
679         /** Get the connect class which this user belongs to. NULL for remote users.
680          * @return A pointer to this user's connect class.
681          */
682         virtual ConnectClass* GetClass();
683
684         /** Default destructor
685          */
686         virtual ~User();
687         virtual CullResult cull();
688 };
689
690 class CoreExport UserIOHandler : public StreamSocket
691 {
692  public:
693         LocalUser* const user;
694         UserIOHandler(LocalUser* me) : user(me) {}
695         void OnDataReady();
696         void OnError(BufferedSocketError error);
697
698         /** Adds to the user's write buffer.
699          * You may add any amount of text up to this users sendq value, if you exceed the
700          * sendq value, the user will be removed, and further buffer adds will be dropped.
701          * @param data The data to add to the write buffer
702          */
703         void AddWriteBuf(const std::string &data);
704 };
705
706 typedef unsigned int already_sent_t;
707
708 class CoreExport LocalUser : public User, public InviteBase
709 {
710  public:
711         LocalUser(int fd, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server);
712         CullResult cull();
713
714         UserIOHandler eh;
715
716         /** Position in UserManager::local_users
717          */
718         LocalUserList::iterator localuseriter;
719
720         /** Stats counter for bytes inbound
721          */
722         unsigned int bytes_in;
723
724         /** Stats counter for bytes outbound
725          */
726         unsigned int bytes_out;
727
728         /** Stats counter for commands inbound
729          */
730         unsigned int cmds_in;
731
732         /** Stats counter for commands outbound
733          */
734         unsigned int cmds_out;
735
736         /** Password specified by the user when they registered (if any).
737          * This is stored even if the \<connect> block doesnt need a password, so that
738          * modules may check it.
739          */
740         std::string password;
741
742         /** Contains a pointer to the connect class a user is on from
743          */
744         reference<ConnectClass> MyClass;
745
746         ConnectClass* GetClass();
747
748         /** Call this method to find the matching \<connect> for a user, and to check them against it.
749          */
750         void CheckClass();
751
752         /** Server address and port that this user is connected to.
753          */
754         irc::sockets::sockaddrs server_sa;
755
756         /**
757          * @return The port number of this user.
758          */
759         int GetServerPort();
760
761         /** Recursion fix: user is out of SendQ and will be quit as soon as possible.
762          * This can't be handled normally because QuitUser itself calls Write on other
763          * users, which could trigger their SendQ to overrun.
764          */
765         unsigned int quitting_sendq:1;
766
767         /** has the user responded to their previous ping?
768          */
769         unsigned int lastping:1;
770
771         /** This is true if the user matched an exception (E:Line). It is used to save time on ban checks.
772          */
773         unsigned int exempt:1;
774
775         /** Used by PING checking code
776          */
777         time_t nping;
778
779         /** Time that the connection last sent a message, used to calculate idle time
780          */
781         time_t idle_lastmsg;
782
783         /** This value contains how far into the penalty threshold the user is.
784          * This is used either to enable fake lag or for excess flood quits
785          */
786         unsigned int CommandFloodPenalty;
787
788         static already_sent_t already_sent_id;
789         already_sent_t already_sent;
790
791         /** Check if the user matches a G or K line, and disconnect them if they do.
792          * @param doZline True if ZLines should be checked (if IP has changed since initial connect)
793          * Returns true if the user matched a ban, false else.
794          */
795         bool CheckLines(bool doZline = false);
796
797         /** Use this method to fully connect a user.
798          * This will send the message of the day, check G/K/E lines, etc.
799          */
800         void FullConnect();
801
802         /** Set the connect class to which this user belongs to.
803          * @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.
804          * @return A reference to this user's current connect class.
805          */
806         void SetClass(const std::string &explicit_name = "");
807
808         bool SetClientIP(const char* sip, bool recheck_eline = true);
809
810         void SetClientIP(const irc::sockets::sockaddrs& sa, bool recheck_eline = true);
811
812         void SendText(const std::string& line);
813         void Write(const std::string& text);
814         void Write(const char*, ...) CUSTOM_PRINTF(2, 3);
815
816         /** Returns the list of channels this user has been invited to but has not yet joined.
817          * @return A list of channels the user is invited to
818          */
819         InviteList& GetInviteList();
820
821         /** Returns true if a user is invited to a channel.
822          * @param channel A channel to look up
823          * @return True if the user is invited to the given channel
824          */
825         bool IsInvited(Channel* chan) { return (Invitation::Find(chan, this) != NULL); }
826
827         /** Removes a channel from a users invite list.
828          * This member function is called on successfully joining an invite only channel
829          * to which the user has previously been invited, to clear the invitation.
830          * @param channel The channel to remove the invite to
831          * @return True if the user was invited to the channel and the invite was erased, false if the user wasn't invited
832          */
833         bool RemoveInvite(Channel* chan);
834
835         void RemoveExpiredInvites();
836
837         /** Returns true or false for if a user can execute a privilaged oper command.
838          * This is done by looking up their oper type from User::oper, then referencing
839          * this to their oper classes and checking the commands they can execute.
840          * @param command A command (should be all CAPS)
841          * @return True if this user can execute the command
842          */
843         bool HasPermission(const std::string &command);
844
845         /** Returns true if a user has a given permission.
846          * This is used to check whether or not users may perform certain actions which admins may not wish to give to
847          * all operators, yet are not commands. An example might be oper override, mass messaging (/notice $*), etc.
848          *
849          * @param privstr The priv to chec, e.g. "users/override/topic". These are loaded free-form from the config file.
850          * @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.
851          * @return True if this user has the permission in question.
852          */
853         bool HasPrivPermission(const std::string &privstr, bool noisy = false);
854
855         /** Returns true or false if a user can set a privileged user or channel mode.
856          * This is done by looking up their oper type from User::oper, then referencing
857          * this to their oper classes, and checking the modes they can set.
858          * @param mode The mode the check
859          * @param type ModeType (MODETYPE_CHANNEL or MODETYPE_USER).
860          * @return True if the user can set or unset this mode.
861          */
862         bool HasModePermission(unsigned char mode, ModeType type);
863 };
864
865 class CoreExport RemoteUser : public User
866 {
867  public:
868         RemoteUser(const std::string& uid, const std::string& srv) : User(uid, srv, USERTYPE_REMOTE)
869         {
870         }
871         virtual void SendText(const std::string& line);
872 };
873
874 class CoreExport FakeUser : public User
875 {
876  public:
877         FakeUser(const std::string &uid, const std::string& srv) : User(uid, srv, USERTYPE_SERVER)
878         {
879                 nick = srv;
880         }
881
882         virtual CullResult cull();
883         virtual void SendText(const std::string& line);
884         virtual const std::string& GetFullHost();
885         virtual const std::string& GetFullRealHost();
886 };
887
888 /* Faster than dynamic_cast */
889 /** Is a local user */
890 inline LocalUser* IS_LOCAL(User* u)
891 {
892         return u->usertype == USERTYPE_LOCAL ? static_cast<LocalUser*>(u) : NULL;
893 }
894 /** Is a remote user */
895 inline RemoteUser* IS_REMOTE(User* u)
896 {
897         return u->usertype == USERTYPE_REMOTE ? static_cast<RemoteUser*>(u) : NULL;
898 }
899 /** Is a server fakeuser */
900 inline FakeUser* IS_SERVER(User* u)
901 {
902         return u->usertype == USERTYPE_SERVER ? static_cast<FakeUser*>(u) : NULL;
903 }
904