mirror of
https://github.com/anope/anope.git
synced 2026-06-23 07:06:38 +02:00
450 lines
11 KiB
C++
450 lines
11 KiB
C++
/*
|
|
*
|
|
* (C) 2003-2024 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*
|
|
* Based on the original code of Epona by Lara.
|
|
* Based on the original code of Services by Andy Church.
|
|
*/
|
|
|
|
#include "services.h"
|
|
#include "modules.h"
|
|
#include "protocol.h"
|
|
#include "users.h"
|
|
#include "servers.h"
|
|
#include "config.h"
|
|
#include "uplink.h"
|
|
#include "bots.h"
|
|
#include "channels.h"
|
|
|
|
IRCDProto *IRCD = NULL;
|
|
|
|
IRCDProto::IRCDProto(Module *creator, const Anope::string &p)
|
|
: Service(creator, "IRCDProto", creator->name)
|
|
, proto_name(p)
|
|
{
|
|
if (IRCD == NULL)
|
|
IRCD = this;
|
|
}
|
|
|
|
IRCDProto::~IRCDProto()
|
|
{
|
|
if (IRCD == this)
|
|
IRCD = NULL;
|
|
}
|
|
|
|
static inline char nextID(int pos, Anope::string &buf)
|
|
{
|
|
char &c = buf[pos];
|
|
if (c == 'Z')
|
|
c = '0';
|
|
else if (c != '9')
|
|
++c;
|
|
else if (pos)
|
|
c = 'A';
|
|
else
|
|
c = '0';
|
|
return c;
|
|
}
|
|
|
|
Anope::string IRCDProto::UID_Retrieve()
|
|
{
|
|
if (!IRCD || !IRCD->RequiresID)
|
|
return "";
|
|
|
|
static Anope::string current_uid = "AAAAAA";
|
|
|
|
do
|
|
{
|
|
int current_len = current_uid.length() - 1;
|
|
while (current_len >= 0 && nextID(current_len--, current_uid) == 'A');
|
|
}
|
|
while (User::Find(Me->GetSID() + current_uid) != NULL);
|
|
|
|
return Me->GetSID() + current_uid;
|
|
}
|
|
|
|
Anope::string IRCDProto::SID_Retrieve()
|
|
{
|
|
if (!IRCD || !IRCD->RequiresID)
|
|
return "";
|
|
|
|
static Anope::string current_sid = Config->GetBlock("serverinfo")->Get<const Anope::string>("id");
|
|
if (current_sid.empty())
|
|
current_sid = "00A";
|
|
|
|
do
|
|
{
|
|
int current_len = current_sid.length() - 1;
|
|
while (current_len >= 0 && nextID(current_len--, current_sid) == 'A');
|
|
}
|
|
while (Server::Find(current_sid) != NULL);
|
|
|
|
return current_sid;
|
|
}
|
|
|
|
void IRCDProto::SendKill(const MessageSource &source, const Anope::string &target, const Anope::string &reason)
|
|
{
|
|
Uplink::Send(source, "KILL", target, reason);
|
|
}
|
|
|
|
void IRCDProto::SendSVSKill(const MessageSource &source, User *user, const Anope::string &buf)
|
|
{
|
|
Uplink::Send(source, "KILL", user->GetUID(), buf);
|
|
}
|
|
|
|
void IRCDProto::SendModeInternal(const MessageSource &source, Channel *chan, const Anope::string &modes, const std::vector<Anope::string> &values)
|
|
{
|
|
auto params = values;
|
|
params.insert(params.begin(), { chan->name, modes });
|
|
Uplink::SendInternal({}, source, "MODE", params);
|
|
}
|
|
|
|
void IRCDProto::SendModeInternal(const MessageSource &source, User *dest, const Anope::string &modes, const std::vector<Anope::string> &values)
|
|
{
|
|
auto params = values;
|
|
params.insert(params.begin(), { dest->GetUID(), modes });
|
|
Uplink::SendInternal({}, source, "MODE", params);
|
|
}
|
|
|
|
void IRCDProto::SendKick(const MessageSource &source, const Channel *c, User *u, const Anope::string &r)
|
|
{
|
|
if (!r.empty())
|
|
Uplink::Send(source, "KICK", c->name, u->GetUID(), r);
|
|
else
|
|
Uplink::Send(source, "KICK", c->name, u->GetUID());
|
|
}
|
|
|
|
void IRCDProto::SendNoticeInternal(const MessageSource &source, const Anope::string &dest, const Anope::string &msg, const Anope::map<Anope::string> &tags)
|
|
{
|
|
Uplink::Send(tags, source, "NOTICE", dest, msg);
|
|
}
|
|
|
|
void IRCDProto::SendPrivmsgInternal(const MessageSource &source, const Anope::string &dest, const Anope::string &msg, const Anope::map<Anope::string> &tags)
|
|
{
|
|
Uplink::Send(tags, source, "PRIVMSG", dest, msg);
|
|
}
|
|
|
|
void IRCDProto::SendQuit(User *u, const Anope::string &buf)
|
|
{
|
|
if (!buf.empty())
|
|
Uplink::Send(u, "QUIT", buf);
|
|
else
|
|
Uplink::Send(u, "QUIT");
|
|
}
|
|
|
|
void IRCDProto::SendPart(User *u, const Channel *chan, const Anope::string &buf)
|
|
{
|
|
if (!buf.empty())
|
|
Uplink::Send(u, "PART", chan->name, buf);
|
|
else
|
|
Uplink::Send(u, "PART", chan->name);
|
|
}
|
|
|
|
void IRCDProto::SendGlobops(const MessageSource &source, const Anope::string &message)
|
|
{
|
|
Uplink::Send(source, "GLOBOPS", message);
|
|
}
|
|
|
|
void IRCDProto::SendCTCPInternal(const MessageSource &source, const Anope::string &dest, const Anope::string &buf)
|
|
{
|
|
Anope::string s = Anope::NormalizeBuffer(buf);
|
|
this->SendNoticeInternal(source, dest, "\1" + s + "\1");
|
|
}
|
|
|
|
void IRCDProto::SendNumericInternal(int numeric, const Anope::string &dest, const std::vector<Anope::string> ¶ms)
|
|
{
|
|
Anope::string n = stringify(numeric);
|
|
if (numeric < 10)
|
|
n = "0" + n;
|
|
if (numeric < 100)
|
|
n = "0" + n;
|
|
|
|
auto newparams = params;
|
|
newparams.insert(newparams.begin(), dest);
|
|
Uplink::SendInternal({}, Me, n, newparams);
|
|
}
|
|
|
|
void IRCDProto::SendTopic(const MessageSource &source, Channel *c)
|
|
{
|
|
Uplink::Send(source, "TOPIC", c->name, c->topic);
|
|
}
|
|
|
|
void IRCDProto::SendNotice(const MessageSource &source, const Anope::string &dest, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
char buf[BUFSIZE] = "";
|
|
va_start(args, fmt);
|
|
vsnprintf(buf, BUFSIZE - 1, fmt, args);
|
|
va_end(args);
|
|
SendNoticeInternal(source, dest, buf);
|
|
}
|
|
|
|
void IRCDProto::SendAction(const MessageSource &source, const Anope::string &dest, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
char buf[BUFSIZE] = "";
|
|
va_start(args, fmt);
|
|
vsnprintf(buf, BUFSIZE - 1, fmt, args);
|
|
va_end(args);
|
|
Anope::string actionbuf = Anope::string("\1ACTION ") + buf + '\1';
|
|
SendPrivmsgInternal(source, dest, actionbuf);
|
|
}
|
|
|
|
void IRCDProto::SendPrivmsg(const MessageSource &source, const Anope::string &dest, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
char buf[BUFSIZE] = "";
|
|
va_start(args, fmt);
|
|
vsnprintf(buf, BUFSIZE - 1, fmt, args);
|
|
va_end(args);
|
|
SendPrivmsgInternal(source, dest, buf);
|
|
}
|
|
|
|
void IRCDProto::SendPing(const Anope::string &servname, const Anope::string &who)
|
|
{
|
|
if (servname.empty())
|
|
Uplink::Send("PING", who);
|
|
else
|
|
Uplink::Send("PING", servname, who);
|
|
}
|
|
|
|
/**
|
|
* Send a PONG reply to a received PING.
|
|
* servname should be left NULL to send a one param reply.
|
|
* @param servname Daemon or client that is responding to the PING.
|
|
* @param who Origin of the PING and destination of the PONG message.
|
|
**/
|
|
void IRCDProto::SendPong(const Anope::string &servname, const Anope::string &who)
|
|
{
|
|
if (servname.empty())
|
|
Uplink::Send("PONG", who);
|
|
else
|
|
Uplink::Send("PONG", servname, who);
|
|
}
|
|
|
|
void IRCDProto::SendInvite(const MessageSource &source, const Channel *c, User *u)
|
|
{
|
|
Uplink::Send(source, "INVITE", u->GetUID(), c->name);
|
|
}
|
|
|
|
void IRCDProto::SendSquit(Server *s, const Anope::string &message)
|
|
{
|
|
Uplink::Send("SQUIT", s->GetSID(), message);
|
|
}
|
|
|
|
void IRCDProto::SendNickChange(User *u, const Anope::string &newnick)
|
|
{
|
|
Uplink::Send(u, "NICK", newnick, Anope::CurTime);
|
|
}
|
|
|
|
void IRCDProto::SendForceNickChange(User *u, const Anope::string &newnick, time_t when)
|
|
{
|
|
Uplink::Send("SVSNICK", u->GetUID(), newnick, when);
|
|
}
|
|
|
|
void IRCDProto::SendCTCP(const MessageSource &source, const Anope::string &dest, const char *fmt, ...)
|
|
{
|
|
va_list args;
|
|
char buf[BUFSIZE] = "";
|
|
va_start(args, fmt);
|
|
vsnprintf(buf, BUFSIZE - 1, fmt, args);
|
|
va_end(args);
|
|
SendCTCPInternal(source, dest, buf);
|
|
}
|
|
|
|
bool IRCDProto::IsNickValid(const Anope::string &nick)
|
|
{
|
|
/**
|
|
* RFC: definition of a valid nick
|
|
* nickname = ( letter / special ) ( letter / digit / special / "-" )
|
|
* letter = A-Z / a-z
|
|
* digit = 0-9
|
|
* special = [, ], \, `, _, ^, {, |, }
|
|
**/
|
|
|
|
if (nick.empty())
|
|
return false;
|
|
|
|
Anope::string special = "[]\\`_^{|}";
|
|
|
|
for (unsigned i = 0; i < nick.length(); ++i)
|
|
if (!(nick[i] >= 'A' && nick[i] <= 'Z') && !(nick[i] >= 'a' && nick[i] <= 'z')
|
|
&& special.find(nick[i]) == Anope::string::npos
|
|
&& (Config && Config->NickChars.find(nick[i]) == Anope::string::npos)
|
|
&& (!i || (!(nick[i] >= '0' && nick[i] <= '9') && nick[i] != '-')))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool IRCDProto::IsChannelValid(const Anope::string &chan)
|
|
{
|
|
if (chan.empty() || chan[0] != '#' || chan.length() > IRCD->GetMaxChannel())
|
|
return false;
|
|
|
|
if (chan.find_first_of(" ,") != Anope::string::npos)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool IRCDProto::IsIdentValid(const Anope::string &ident)
|
|
{
|
|
if (ident.empty() || ident.length() > IRCD->GetMaxUser())
|
|
return false;
|
|
|
|
for (auto c : ident)
|
|
{
|
|
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '.' || c == '-')
|
|
continue;
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool IRCDProto::IsHostValid(const Anope::string &host)
|
|
{
|
|
if (host.empty() || host.length() > IRCD->GetMaxHost())
|
|
return false;
|
|
|
|
const Anope::string &vhostdisablebe = Config->GetBlock("networkinfo")->Get<const Anope::string>("disallow_start_or_end"),
|
|
vhostchars = Config->GetBlock("networkinfo")->Get<const Anope::string>("vhost_chars");
|
|
|
|
if (vhostdisablebe.find_first_of(host[0]) != Anope::string::npos)
|
|
return false;
|
|
else if (vhostdisablebe.find_first_of(host[host.length() - 1]) != Anope::string::npos)
|
|
return false;
|
|
|
|
int dots = 0;
|
|
for (auto chr : host)
|
|
{
|
|
if (chr == '.')
|
|
++dots;
|
|
if (vhostchars.find_first_of(chr) == Anope::string::npos)
|
|
return false;
|
|
}
|
|
|
|
return dots > 0 || Config->GetBlock("networkinfo")->Get<bool>("allow_undotted_vhosts");
|
|
}
|
|
|
|
void IRCDProto::SendOper(User *u)
|
|
{
|
|
SendNumeric(381, u->GetUID(), "You are now an IRC operator (set by services)");
|
|
u->SetMode(NULL, "OPER");
|
|
}
|
|
|
|
size_t IRCDProto::GetMaxListFor(Channel *c, ChannelMode *cm)
|
|
{
|
|
return c->HasMode("LBAN") ? 0 : Config->GetBlock("networkinfo")->Get<size_t>("modelistsize", "100");
|
|
}
|
|
|
|
Anope::string IRCDProto::NormalizeMask(const Anope::string &mask)
|
|
{
|
|
if (IsExtbanValid(mask))
|
|
return mask;
|
|
return Entry("", mask).GetNUHMask();
|
|
}
|
|
|
|
void IRCDProto::SendContextNotice(BotInfo *bi, User *target, Channel *context, const Anope::string &msg)
|
|
{
|
|
IRCD->SendNoticeInternal(bi, target->GetUID(), Anope::printf("[%s] %s", context->name.c_str(), msg.c_str()), {
|
|
{ "+draft/channel-context", context->name },
|
|
});
|
|
}
|
|
|
|
void IRCDProto::SendContextPrivmsg(BotInfo *bi, User *target, Channel *context, const Anope::string &msg)
|
|
{
|
|
IRCD->SendPrivmsgInternal(bi, target->GetUID(), Anope::printf("[%s] %s", context->name.c_str(), msg.c_str()), {
|
|
{ "+draft/channel-context", context->name },
|
|
});
|
|
}
|
|
|
|
size_t IRCDProto::GetMaxChannel()
|
|
{
|
|
// We can cache this as its not allowed to change on rehash.
|
|
static size_t chanlen = Config->GetBlock("networkinfo")->Get<unsigned>("chanlen", "32");
|
|
return chanlen;
|
|
}
|
|
|
|
size_t IRCDProto::GetMaxHost()
|
|
{
|
|
// We can cache this as its not allowed to change on rehash.
|
|
static size_t hostlen = Config->GetBlock("networkinfo")->Get<unsigned>("hostlen", "64");
|
|
return hostlen;
|
|
}
|
|
|
|
size_t IRCDProto::GetMaxNick()
|
|
{
|
|
// We can cache this as its not allowed to change on rehash.
|
|
static size_t nicklen = Config->GetBlock("networkinfo")->Get<unsigned>("nicklen", "31");
|
|
return nicklen;
|
|
}
|
|
|
|
size_t IRCDProto::GetMaxUser()
|
|
{
|
|
// We can cache this as its not allowed to change on rehash.
|
|
static size_t userlen = Config->GetBlock("networkinfo")->Get<unsigned>("userlen", "10");
|
|
return userlen;
|
|
}
|
|
|
|
MessageSource::MessageSource(const Anope::string &src) : source(src)
|
|
{
|
|
/* no source for incoming message is our uplink */
|
|
if (src.empty())
|
|
this->s = Servers::GetUplink();
|
|
else if (IRCD->RequiresID || src.find('.') != Anope::string::npos)
|
|
this->s = Server::Find(src);
|
|
if (this->s == NULL)
|
|
this->u = User::Find(src);
|
|
}
|
|
|
|
MessageSource::MessageSource(User *_u) : source(_u ? _u->nick : ""), u(_u)
|
|
{
|
|
}
|
|
|
|
MessageSource::MessageSource(Server *_s) : source(_s ? _s->GetName() : ""), s(_s)
|
|
{
|
|
}
|
|
|
|
const Anope::string &MessageSource::GetName() const
|
|
{
|
|
if (this->s)
|
|
return this->s->GetName();
|
|
else if (this->u)
|
|
return this->u->nick;
|
|
else
|
|
return this->source;
|
|
}
|
|
|
|
const Anope::string &MessageSource::GetSource() const
|
|
{
|
|
return this->source;
|
|
}
|
|
|
|
User *MessageSource::GetUser() const
|
|
{
|
|
return this->u;
|
|
}
|
|
|
|
BotInfo *MessageSource::GetBot() const
|
|
{
|
|
return BotInfo::Find(this->GetName(), true);
|
|
}
|
|
|
|
Server *MessageSource::GetServer() const
|
|
{
|
|
return this->s;
|
|
}
|
|
|
|
IRCDMessage::IRCDMessage(Module *o, const Anope::string &n, size_t pc)
|
|
: Service(o, "IRCDMessage", o->name + "/" + n.lower())
|
|
, name(n)
|
|
, param_count(pc)
|
|
{
|
|
}
|