1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
|
/*******************************************************************************
* shroudBNC - an object-oriented framework for IRC *
* Copyright (C) 2005-2014 Gunnar Beutner *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
*******************************************************************************/
#ifndef USER_H
#define USER_H
class CClientConnection;
class CIRCConnection;
class CConfig;
class CLog;
class CTrafficStats;
class CKeyring;
class CTimer;
/**
* Cache: User
*/
DEFINE_CACHE(User)
DEFINE_OPTION_INT(quitted);
DEFINE_OPTION_INT(admin);
DEFINE_OPTION_INT(port);
DEFINE_OPTION_INT(lock);
DEFINE_OPTION_INT(seen);
DEFINE_OPTION_INT(delayjoin);
DEFINE_OPTION_INT(ssl);
DEFINE_OPTION_INT(ignsysnotices);
DEFINE_OPTION_INT(lean);
DEFINE_OPTION_INT(quitaway);
DEFINE_OPTION_STRING(automodes);
DEFINE_OPTION_STRING(dropmodes);
DEFINE_OPTION_STRING(password);
DEFINE_OPTION_STRING(away);
DEFINE_OPTION_STRING(awaynick);
DEFINE_OPTION_STRING(nick);
DEFINE_OPTION_STRING(realname);
DEFINE_OPTION_STRING(server);
DEFINE_OPTION_STRING(ip);
DEFINE_OPTION_STRING(channels);
DEFINE_OPTION_STRING(suspend);
DEFINE_OPTION_STRING(spass);
DEFINE_OPTION_STRING(ident);
DEFINE_OPTION_STRING(awaymessage);
DEFINE_OPTION_STRING(channelsort);
DEFINE_OPTION_STRING(autobacklog);
END_DEFINE_CACHE
/**
* client_t
*
* Internal representation of clients in the client list.
*/
typedef struct client_s {
time_t Creation;
CClientConnection *Client;
} client_t;
/**
* badlogin_t
*
* Describes a failed login attempt.
*/
typedef struct badlogin_s {
sockaddr *Address; /**< the address of the user */
unsigned int Count; /**< the number of times the user has used an
incorrect password */
} badlogin_t;
#ifndef SWIG
bool BadLoginTimer(time_t Now, void *User);
bool UserReconnectTimer(time_t Now, void *User);
#endif /* SWIG */
/**
* USER_SETFUNCTION
*
* Implements a Set*-function
*
* @param Setting the name of the setting
* @param Value the new value for this setting
*/
#define USER_SETFUNCTION(Setting, Value) { \
char *DupValue = NULL; \
\
if (Value != NULL) { \
DupValue = strdup(Value); \
\
if (AllocFailed(DupValue)) { \
return; \
} \
\
} \
\
CacheSetString(m_ConfigCache, Setting, Value); \
\
free(DupValue); \
}
/**
* CUser
*
* A bouncer user.
*/
class SBNCAPI CUser {
friend class CCore;
#ifndef SWIG
friend bool BadLoginTimer(time_t Now, void *User);
friend bool UserReconnectTimer(time_t Now, void *User);
#endif /* SWIG */
char *m_Name; /**< the name of the user */
CClientConnection *m_PrimaryClient;
CClientConnectionMultiplexer *m_ClientMultiplexer;
CVector<client_t> m_Clients; /**< the user's client connections */
CIRCConnection *m_IRC; /**< the user's irc connection */
CConfig *m_Config; /**< the user's configuration object */
mutable CACHE(User) m_ConfigCache; /**< config cache */
CLog *m_Log; /**< the user's log file */
time_t m_ReconnectTime; /**< when the next connect() attempt is going to be made */
time_t m_LastReconnect; /**< when the last connect() attempt was made for this user */
CVector<badlogin_t> m_BadLogins; /**< a list of failed login attempts for this user */
CTrafficStats *m_ClientStats; /**< traffic stats for the user's client connection(s) */
CTrafficStats *m_IRCStats; /**< traffic stats for the user's irc connection(s) */
CKeyring *m_Keys; /**< a list of channel keys */
CTimer *m_BadLoginPulse; /**< a timer which will remove "bad logins" */
CVector<X509 *> m_ClientCertificates; /**< the client certificates for the user */
int m_NextProtocolFamily; /**< which protocol family to try next */
bool PersistCertificates(void);
void BadLoginPulse(void);
public:
#ifndef SWIG
CUser(const char *Name);
virtual ~CUser(void);
#endif /* SWIG */
static void RescheduleReconnectTimer(void);
CClientConnection *GetPrimaryClientConnection(void);
CClientConnection *GetClientConnectionMultiplexer(void);
CVector<client_t> *GetClientConnections(void);
CIRCConnection *GetIRCConnection(void);
bool CheckPassword(const char *Password);
void Attach(CClientConnection *Client);
const char *GetNick(void) const;
void SetNick(const char *Nick);
const char *GetRealname(void) const;
void SetRealname(const char *Realname);
const char *GetUsername(void) const;
CConfig *GetConfig(void);
void Simulate(const char *Command, CClientConnection *FakeClient = NULL);
const char *SimulateWithResult(const char *Command);
void Reconnect(void);
bool ShouldReconnect(void) const;
void ScheduleReconnect(int Delay = 10);
unsigned int GetIRCUptime(void) const;
CLog *GetLog(void);
void Log(const char *Format, ...);
void Lock(void);
void Unlock(void);
bool IsLocked(void) const;
void SetIRCConnection(CIRCConnection *IRC);
// void SetClientConnection(CClientConnection *Client, bool DontSetAway = false);
void AddClientConnection(CClientConnection *Client, bool Silent = false);
void RemoveClientConnection(CClientConnection *Client, bool Silent = false);
bool IsRegisteredClientConnection(CClientConnection *Client);
void SetAdmin(bool Admin = true);
bool IsAdmin(void) const;
void SetPassword(const char *Password);
void SetServer(const char *Server);
const char *GetServer(void) const;
void SetPort(int Port);
int GetPort(void) const;
void MarkQuitted(bool RequireManualJump = false);
void UnmarkQuitted(void);
int IsQuitted(void) const;
void LoadEvent(void);
void LogBadLogin(sockaddr *Peer);
bool IsIpBlocked(sockaddr *Peer) const;
const CTrafficStats *GetClientStats(void) const;
const CTrafficStats *GetIRCStats(void) const;
CKeyring *GetKeyring(void);
time_t GetLastSeen(void) const;
const char *GetAwayNick(void) const;
void SetAwayNick(const char *Nick);
const char *GetAwayText(void) const;
void SetAwayText(const char *Reason);
const char *GetVHost(void) const;
void SetVHost(const char *VHost);
int GetDelayJoin(void) const;
void SetDelayJoin(int DelayJoin);
const char *GetConfigChannels(void) const;
void SetConfigChannels(const char *Channels);
const char *GetSuspendReason(void) const;
void SetSuspendReason(const char *Reason);
const char *GetServerPassword(void) const;
void SetServerPassword(const char *Password);
const char *GetAutoModes(void) const;
void SetAutoModes(const char *AutoModes);
const char *GetDropModes(void) const;
void SetDropModes(const char *DropModes);
const CVector<X509 *> *GetClientCertificates(void) const;
bool AddClientCertificate(const X509 *Certificate);
bool RemoveClientCertificate(const X509 *Certificate);
bool FindClientCertificate(const X509 *Certificate) const;
void SetSSL(bool SSL);
bool GetSSL(void) const;
void SetIdent(const char *Ident);
const char *GetIdent(void) const;
const char *GetTagString(const char *Tag) const;
int GetTagInteger(const char *Tag) const;
bool SetTagString(const char *Tag, const char *Value);
bool SetTagInteger(const char *Tag, int Value);
const char *GetTagName(int Index) const;
void SetSystemNotices(bool SystemNotices);
bool GetSystemNotices(void) const;
void SetAwayMessage(const char *Text);
const char *GetAwayMessage(void) const;
void SetLeanMode(unsigned int Mode);
unsigned int GetLeanMode(void);
void SetUseQuitReason(bool Value);
bool GetUseQuitReason(void);
void SetChannelSortMode(const char *Mode);
const char *GetChannelSortMode(void) const;
void SwitchProtocolFamily(void);
void SetAutoBacklog(const char *Value);
const char *GetAutoBacklog(void);
};
#endif /* USER_H */
|