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