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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
/*
* InspIRCd -- Internet Relay Chat Daemon
*
* Copyright (C) 2018-2023 Sadie Powell <sadie@witchery.services>
* Copyright (C) 2015-2016, 2018 Attila Molnar <attilamolnar@hush.com>
*
* This file is part of InspIRCd. InspIRCd 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, version 2.
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "extension.h"
namespace Cap
{
static constexpr unsigned int MAX_CAPS = (sizeof(intptr_t) * 8) - 1;
static constexpr intptr_t CAP_302_BIT = (intptr_t)1 << MAX_CAPS;
static constexpr unsigned int MAX_VALUE_LENGTH = 100;
typedef intptr_t Ext;
class ExtItem : public IntExtItem
{
public:
ExtItem(Module* mod);
void FromInternal(Extensible* container, const std::string& value) noexcept override;
std::string ToHuman(const Extensible* container, void* item) const noexcept override;
std::string ToInternal(const Extensible* container, void* item) const noexcept override;
};
class Capability;
enum Protocol
{
/** Supports capability negotiation protocol v3.1, or none
*/
CAP_LEGACY,
/** Supports capability negotiation v3.2
*/
CAP_302
};
class EventListener : public Events::ModuleEventListener
{
public:
EventListener(Module* mod, unsigned int eventprio = DefaultPriority)
: ModuleEventListener(mod, "event/cap", eventprio)
{
}
/** Called whenever a new client capability becomes available or unavailable
* @param cap Capability being added or removed
* @param add If true, the capability is being added, otherwise its being removed
*/
virtual void OnCapAddDel(Capability* cap, bool add) = 0;
/** Called whenever the value of a cap changes.
* @param cap Capability whose value changed
*/
virtual void OnCapValueChange(Capability* cap) { }
};
class Manager : public DataProvider
{
public:
Manager(Module* mod)
: DataProvider(mod, "capmanager")
{
}
/** Register a client capability.
* Modules should call Capability::SetActive(true) instead of this method.
* @param cap Capability to register
*/
virtual void AddCap(Capability* cap) = 0;
/** Unregister a client capability.
* Modules should call Capability::SetActive(false) instead of this method.
* @param cap Capability to unregister
*/
virtual void DelCap(Capability* cap) = 0;
/** Find a capability by name
* @param name Capability to find
* @return Capability object pointer if found, NULL otherwise
*/
virtual Capability* Find(const std::string& name) const = 0;
/** Notify manager when a value of a cap changed
* @param cap Cap whose value changed
*/
virtual void NotifyValueChange(Capability* cap) = 0;
};
/** Represents a client capability.
*
* Capabilities offer extensions to the client to server protocol. They must be negotiated with clients before they have any effect on the protocol.
* Each cap must have a unique name that is used during capability negotiation.
*
* After construction the cap is ready to be used by clients without any further setup, like other InspIRCd services.
* The get() method accepts a user as parameter and can be used to check whether that user has negotiated usage of the cap. This is only known for local users.
*
* The cap module must be loaded for the capability to work. The IsRegistered() method can be used to query whether the cap is actually online or not.
* The capability can be deactivated and reactivated with the SetActive() method. Deactivated caps behave as if they don't exist.
*
* It is possible to implement special behavior by inheriting from this class and overriding some of its methods.
*/
class Capability : public ServiceProvider, private dynamic_reference_base::CaptureHook
{
typedef size_t Bit;
/** Bit allocated to this cap, undefined if the cap is unregistered
*/
Bit bit;
/** Extension containing all caps set by a user. NULL if the cap is unregistered.
*/
ExtItem* extitem;
/** True if the cap is active. Only active caps are registered in the manager.
*/
bool active = true;
/** Reference to the cap manager object
*/
dynamic_reference<Manager> manager;
void OnCapture() override
{
if (active)
SetActive(true);
}
void Unregister()
{
bit = 0;
extitem = nullptr;
}
Ext AddToMask(Ext mask) const { return (mask | GetMask()); }
Ext DelFromMask(Ext mask) const { return (mask & (~GetMask())); }
Bit GetMask() const { return bit; }
friend class ManagerImpl;
protected:
/** Notify the manager that the value of the capability changed.
* Must be called if the value of the cap changes for any reason.
*/
void NotifyValueChange()
{
if (IsRegistered())
manager->NotifyValueChange(this);
}
public:
/** Constructor, initializes the capability.
* Caps are active by default.
* @param mod Module providing the cap
* @param Name Raw name of the cap as used in the protocol (CAP LS, etc.)
*/
Capability(Module* mod, const std::string& Name)
: ServiceProvider(mod, Name, SERVICE_CUSTOM)
, manager(mod, "capmanager")
{
Unregister();
}
~Capability() override
{
SetActive(false);
}
void RegisterService() override
{
manager.SetCaptureHook(this);
SetActive(true);
}
/** Check whether a user has the capability turned on.
* This method is safe to call if the cap is unregistered and will return false.
* @param user User to check
* @return True if the user is using this capability, false otherwise
*/
bool IsEnabled(User* user) const
{
if (!IsRegistered())
return false;
Ext caps = extitem->Get(user);
return ((caps & GetMask()) != 0);
}
/** Turn the capability on/off for a user. If the cap is not registered this method has no effect.
* @param user User to turn the cap on/off for
* @param val True to turn the cap on, false to turn it off
*/
void Set(User* user, bool val)
{
if (!IsRegistered())
return;
Ext curr = extitem->Get(user);
extitem->Set(user, (val ? AddToMask(curr) : DelFromMask(curr)));
}
/** Activate or deactivate the capability.
* If activating, the cap is marked as active and if the manager is available the cap is registered in the manager.
* If deactivating, the cap is marked as inactive and if it is registered, it will be unregistered.
* Users who had the cap turned on will have it turned off automatically.
* @param activate True to activate the cap, false to deactivate it
*/
void SetActive(bool activate)
{
active = activate;
if (manager)
{
if (activate)
manager->AddCap(this);
else
manager->DelCap(this);
}
}
/** Get the name of the capability that's used in the protocol
* @return Name of the capability as used in the protocol
*/
const std::string& GetName() const { return name; }
/** Check whether the capability is active. The cap must be active and registered to be used by users.
* @return True if the cap is active, false if it has been deactivated
*/
bool IsActive() const { return active; }
/** Check whether the capability is registered
* The cap must be active and the manager must be available for a cap to be registered.
* @return True if the cap is registered in the manager, false otherwise
*/
bool IsRegistered() const { return (extitem != nullptr); }
/** Get the CAP negotiation protocol version of a user.
* The cap must be registered for this to return anything other than CAP_LEGACY.
* @param user User whose negotiation protocol version to query
* @return One of the Capability::Protocol enum indicating the highest supported capability negotiation protocol version
*/
Protocol GetProtocol(LocalUser* user) const
{
return ((IsRegistered() && (extitem->Get(user) & CAP_302_BIT)) ? CAP_302 : CAP_LEGACY);
}
/** Called when a user requests to turn this capability on or off.
* @param user User requesting to change the state of the cap
* @param add True if requesting to turn the cap on, false if requesting to turn it off
* @return True to allow the request, false to reject it
*/
virtual bool OnRequest(LocalUser* user, bool add)
{
return true;
}
/** Called when a user requests a list of all capabilities and this capability is about to be included in the list.
* The default behavior always includes the cap in the list.
* @param user User querying a list capabilities
* @return True to add this cap to the list sent to the user, false to not list it
*/
virtual bool OnList(LocalUser* user)
{
return true;
}
/** Query the value of this capability for a user
* @param user User who will get the value of the capability
* @return Value to show to the user. If NULL, the capability has no value (default).
*/
virtual const std::string* GetValue(LocalUser* user) const
{
return nullptr;
}
};
/** Reference to a cap. The cap may be provided by another module.
*/
class Reference
{
dynamic_reference_nocheck<Capability> ref;
public:
/** Constructor, initializes the capability reference
* @param mod Module creating this object
* @param Name Raw name of the cap as used in the protocol (CAP LS, etc.)
*/
Reference(Module* mod, const std::string& Name)
: ref(mod, "cap/" + Name)
{
}
/** Retrieves the underlying cap. */
operator const Cap::Capability*() const
{
return ref ? *ref : nullptr;
}
/** Check whether a user has the referenced capability turned on.
* @param user User to check
* @return True if the user is using the referenced capability, false otherwise
*/
bool IsEnabled(LocalUser* user)
{
if (ref)
return ref->IsEnabled(user);
return false;
}
/** Turn the capability on/off for a user. If the cap is not registered this method has no effect.
* @param user User to turn the cap on/off for
* @param val True to turn the cap on, false to turn it off
*/
void Set(User* user, bool val)
{
if (ref)
ref->Set(user, val);
}
};
class MessageBase : public ClientProtocol::Message
{
public:
MessageBase(const std::string& subcmd)
: ClientProtocol::Message("CAP", ServerInstance->Config->GetServerName())
{
PushParamPlaceholder();
PushParam(subcmd);
}
void SetUser(LocalUser* user)
{
if (user->connected & User::CONN_NICK)
ReplaceParamRef(0, user->nick);
else
ReplaceParam(0, "*");
}
};
}
|