1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 20:26:38 +02:00
Files
unrealircd/src/modules/m_tkl.c
T
2015-07-12 15:48:50 +02:00

2792 lines
78 KiB
C

/*
* Unreal Internet Relay Chat Daemon, src/modules/m_tkl.c
* TKL Commands and TKL Layer
* (C) 1999-2006 The UnrealIRCd Team
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* 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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#include "struct.h"
#include "common.h"
#include "sys.h"
#include "numeric.h"
#include "msg.h"
#include "channel.h"
#include <time.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <io.h>
#else
#include <sys/socket.h>
#endif
#include <fcntl.h>
#include "inet.h"
#include "h.h"
#include "proto.h"
#ifdef _WIN32
#include "version.h"
#endif
/* This is all for getrusage and friends.. taken from src/s_debug.c so should be safe. */
#ifdef HPUX
# include <sys/syscall.h>
# define getrusage(a,b) syscall(SYS_GETRUSAGE, a, b)
#endif
#ifdef GETRUSAGE_2
# ifdef _SOLARIS
# include <sys/time.h>
# ifdef RUSAGEH
# include <sys/rusage.h>
# endif
# endif
# include <sys/resource.h>
#else
# ifdef TIMES_2
# include <sys/times.h>
# endif
#endif
DLLFUNC int m_gline(aClient *cptr, aClient *sptr, int parc, char *parv[]);
DLLFUNC int m_shun(aClient *cptr, aClient *sptr, int parc, char *parv[]);
DLLFUNC int m_tempshun(aClient *cptr, aClient *sptr, int parc, char *parv[]);
DLLFUNC int m_gzline(aClient *cptr, aClient *sptr, int parc, char *parv[]);
DLLFUNC int m_tkline(aClient *cptr, aClient *sptr, int parc, char *parv[]);
DLLFUNC int m_tzline(aClient *cptr, aClient *sptr, int parc, char *parv[]);
DLLFUNC int m_tkl_line(aClient *cptr, aClient *sptr, int parc, char *parv[], char* type);
DLLFUNC int m_spamfilter(aClient *cptr, aClient *sptr, int parc, char *parv[]);
int _tkl_hash(unsigned int c);
char _tkl_typetochar(int type);
aTKline *_tkl_add_line(int type, char *usermask, char *hostmask, char *reason, char *setby,
TS expire_at, TS set_at, TS spamf_tkl_duration, char *spamf_tkl_reason, MatchType match_type);
aTKline *_tkl_del_line(aTKline *tkl);
static void _tkl_check_local_remove_shun(aTKline *tmp);
aTKline *_tkl_expire(aTKline * tmp);
EVENT(_tkl_check_expire);
int _find_tkline_match(aClient *cptr, int xx);
int _find_shun(aClient *cptr);
int _find_spamfilter_user(aClient *sptr, int flags);
aTKline *_find_qline(aClient *cptr, char *nick, int *ishold);
int _find_tkline_match_zap(aClient *cptr);
int _find_tkline_match_zap_ex(aClient *cptr, aTKline **rettk);
void _tkl_stats(aClient *cptr, int type, char *para);
void _tkl_synch(aClient *sptr);
int _m_tkl(aClient *cptr, aClient *sptr, int parc, char *parv[]);
int _place_host_ban(aClient *sptr, int action, char *reason, long duration);
int _dospamfilter(aClient *sptr, char *str_in, int type, char *target, int flags, aTKline **rettk);
int _dospamfilter_viruschan(aClient *sptr, aTKline *tk, int type);
void _spamfilter_build_user_string(char *buf, char *nick, aClient *acptr);
extern MODVAR char zlinebuf[BUFSIZE];
extern MODVAR aTKline *tklines[TKLISTLEN];
extern int MODVAR spamf_ugly_vchanoverride;
/* Place includes here */
#define MSG_GLINE "GLINE"
#define MSG_SHUN "SHUN"
#define MSG_GZLINE "GZLINE"
#define MSG_KLINE "KLINE"
#define MSG_ZLINE "ZLINE"
#define MSG_SPAMFILTER "SPAMFILTER"
#define MSG_TEMPSHUN "TEMPSHUN"
ModuleInfo *TklModInfo;
ModuleHeader MOD_HEADER(m_tkl)
= {
"tkl", /* Name of module */
"$Id$", /* Version */
"commands /gline etc", /* Short description of module */
"3.2-b8-1",
NULL
};
MOD_TEST(m_tkl)
{
MARK_AS_OFFICIAL_MODULE(modinfo);
TklModInfo = modinfo;
EfunctionAdd(modinfo->handle, EFUNC_TKL_HASH, _tkl_hash);
EfunctionAdd(modinfo->handle, EFUNC_TKL_TYPETOCHAR, TO_INTFUNC(_tkl_typetochar));
EfunctionAddPVoid(modinfo->handle, EFUNC_TKL_ADD_LINE, TO_PVOIDFUNC(_tkl_add_line));
EfunctionAddPVoid(modinfo->handle, EFUNC_TKL_DEL_LINE, TO_PVOIDFUNC(_tkl_del_line));
EfunctionAddVoid(modinfo->handle, EFUNC_TKL_CHECK_LOCAL_REMOVE_SHUN, _tkl_check_local_remove_shun);
EfunctionAddPVoid(modinfo->handle, EFUNC_TKL_EXPIRE, TO_PVOIDFUNC(_tkl_expire));
EfunctionAddVoid(modinfo->handle, EFUNC_TKL_CHECK_EXPIRE, _tkl_check_expire);
EfunctionAdd(modinfo->handle, EFUNC_FIND_TKLINE_MATCH, _find_tkline_match);
EfunctionAdd(modinfo->handle, EFUNC_FIND_SHUN, _find_shun);
EfunctionAdd(modinfo->handle, EFUNC_FIND_SPAMFILTER_USER, _find_spamfilter_user);
EfunctionAddPVoid(modinfo->handle, EFUNC_FIND_QLINE, TO_PVOIDFUNC(_find_qline));
EfunctionAdd(modinfo->handle, EFUNC_FIND_TKLINE_MATCH_ZAP, _find_tkline_match_zap);
EfunctionAdd(modinfo->handle, EFUNC_FIND_TKLINE_MATCH_ZAP_EX, _find_tkline_match_zap_ex);
EfunctionAddVoid(modinfo->handle, EFUNC_TKL_STATS, _tkl_stats);
EfunctionAddVoid(modinfo->handle, EFUNC_TKL_SYNCH, _tkl_synch);
EfunctionAdd(modinfo->handle, EFUNC_M_TKL, _m_tkl);
EfunctionAdd(modinfo->handle, EFUNC_PLACE_HOST_BAN, _place_host_ban);
EfunctionAdd(modinfo->handle, EFUNC_DOSPAMFILTER, _dospamfilter);
EfunctionAdd(modinfo->handle, EFUNC_DOSPAMFILTER_VIRUSCHAN, _dospamfilter_viruschan);
EfunctionAddVoid(modinfo->handle, EFUNC_SPAMFILTER_BUILD_USER_STRING, _spamfilter_build_user_string);
return MOD_SUCCESS;
}
/* This is called on module init, before Server Ready */
MOD_INIT(m_tkl)
{
MARK_AS_OFFICIAL_MODULE(modinfo);
CommandAdd(modinfo->handle, MSG_GLINE, m_gline, 3, M_OPER);
CommandAdd(modinfo->handle, MSG_SHUN, m_shun, 3, M_OPER);
CommandAdd(modinfo->handle, MSG_TEMPSHUN, m_tempshun, 2, M_OPER);
CommandAdd(modinfo->handle, MSG_ZLINE, m_tzline, 3, M_OPER);
CommandAdd(modinfo->handle, MSG_KLINE, m_tkline, 3, M_OPER);
CommandAdd(modinfo->handle, MSG_GZLINE, m_gzline, 3, M_OPER);
CommandAdd(modinfo->handle, MSG_SPAMFILTER, m_spamfilter, 7, M_OPER);
CommandAdd(modinfo->handle, MSG_TKL, _m_tkl, MAXPARA, M_OPER|M_SERVER);
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
/* Is first run when server is 100% ready */
MOD_LOAD(m_tkl)
{
EventAddEx(TklModInfo->handle, "tklexpire", 5, 0, tkl_check_expire, NULL);
return MOD_SUCCESS;
}
/* Called when module is unloaded */
MOD_UNLOAD(m_tkl)
{
return MOD_SUCCESS;
}
/*
** m_gline (oper function - /TKL takes care of distribution)
** /gline [+|-]u@h mask time :reason
**
** parv[1] = [+|-]u@h mask
** parv[2] = for how long
** parv[3] = reason
*/
DLLFUNC int m_gline(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
if (IsServer(sptr))
return 0;
if (!ValidatePermissionsForPath("tkl:gline",sptr,NULL,NULL,NULL))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name,
sptr->name);
return 0;
}
if (parc == 1)
{
tkl_stats(sptr, TKL_KILL|TKL_GLOBAL, NULL);
tkl_stats(sptr, TKL_ZAP|TKL_GLOBAL, NULL);
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 'g');
sendto_snomask(SNO_EYES, "Stats \'g\' requested by %s (%s@%s)",
sptr->name, sptr->user->username, GetHost(sptr));
return 0;
}
return m_tkl_line(cptr, sptr, parc, parv, "G");
}
DLLFUNC int m_gzline(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
if (IsServer(sptr))
return 0;
if (!ValidatePermissionsForPath("tkl:zline:global",sptr,NULL,NULL,NULL))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name,
sptr->name);
return 0;
}
if (parc == 1)
{
tkl_stats(sptr, TKL_GLOBAL|TKL_KILL, NULL);
tkl_stats(sptr, TKL_GLOBAL|TKL_ZAP, NULL);
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 'g');
sendto_snomask(SNO_EYES, "Stats \'g\' requested by %s (%s@%s)",
sptr->name, sptr->user->username, GetHost(sptr));
return 0;
}
return m_tkl_line(cptr, sptr, parc, parv, "Z");
}
DLLFUNC int m_shun(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
if (IsServer(sptr))
return 0;
if (!ValidatePermissionsForPath("tkl:shun",sptr,NULL,NULL,NULL))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name,
sptr->name);
return 0;
}
if (parc == 1)
{
tkl_stats(sptr, TKL_GLOBAL|TKL_SHUN, NULL);
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 's');
sendto_snomask(SNO_EYES, "Stats \'s\' requested by %s (%s@%s)",
sptr->name, sptr->user->username, GetHost(sptr));
return 0;
}
return m_tkl_line(cptr, sptr, parc, parv, "s");
}
DLLFUNC int m_tempshun(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
aClient *acptr;
char *comment = ((parc > 2) && !BadPtr(parv[2])) ? parv[2] : "no reason";
char *name;
int remove = 0;
if (MyClient(sptr) && (!ValidatePermissionsForPath("tkl:shun:temporary",sptr,NULL,NULL,NULL)))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name,
sptr->name);
return 0;
}
if ((parc < 2) || BadPtr(parv[1]))
{
sendto_one(sptr, err_str(ERR_NEEDMOREPARAMS), me.name, sptr->name, "TEMPSHUN");
return 0;
}
if (parv[1][0] == '+')
name = parv[1]+1;
else if (parv[1][0] == '-')
{
name = parv[1]+1;
remove = 1;
} else
name = parv[1];
acptr = find_person(name, NULL);
if (!acptr)
{
sendto_one(sptr, err_str(ERR_NOSUCHNICK), me.name, sptr->name, name);
return 0;
}
if (!MyClient(acptr))
{
sendto_one(acptr->from, ":%s TEMPSHUN %s :%s",
sptr->name, parv[1], comment);
} else {
char buf[1024];
if (!remove)
{
if (IsShunned(acptr))
{
sendnotice(sptr, "User '%s' already shunned", acptr->name);
} else if (ValidatePermissionsForPath("immune:shun",acptr,NULL,NULL,NULL))
{
sendnotice(sptr, "You cannot tempshun '%s' because (s)he is an oper with 'immune:shun' privilege", acptr->name);
} else
{
SetShunned(acptr);
ircsnprintf(buf, sizeof(buf), "Temporary shun added on user %s (%s@%s) by %s [%s]",
acptr->name, acptr->user->username, acptr->user->realhost,
sptr->name, comment);
sendto_snomask(SNO_TKL, "%s", buf);
sendto_server(NULL, 0, 0, ":%s SENDSNO G :%s", me.name, buf);
}
} else {
if (!IsShunned(acptr))
{
sendnotice(sptr, "User '%s' is not shunned", acptr->name);
} else {
ClearShunned(acptr);
ircsnprintf(buf, sizeof(buf), "Removed temporary shun on user %s (%s@%s) by %s",
acptr->name, acptr->user->username, acptr->user->realhost,
sptr->name);
sendto_snomask(SNO_TKL, "%s", buf);
sendto_server(NULL, 0, 0, ":%s SENDSNO G :%s", me.name, buf);
}
}
}
return 0;
}
DLLFUNC int m_tkline(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
if (IsServer(sptr))
return 0;
if (!ValidatePermissionsForPath("tkl:kline:local:add",sptr,NULL,NULL,NULL))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name,
sptr->name);
return 0;
}
if (parc == 1)
{
/* Emulate /stats k */
ConfigItem_ban *bans;
ConfigItem_except *excepts;
char type[2];
for (bans = conf_ban; bans; bans = (ConfigItem_ban *)bans->next)
{
if (bans->flag.type == CONF_BAN_USER)
{
if (bans->flag.type2 == CONF_BAN_TYPE_CONF)
type[0] = 'K';
type[1] = '\0';
sendto_one(sptr, rpl_str(RPL_STATSKLINE),
me.name, sptr->name, type, bans->mask, bans->reason
? bans->reason : "<no reason>");
}
else if (bans->flag.type == CONF_BAN_IP)
{
if (bans->flag.type2 == CONF_BAN_TYPE_CONF)
type[0] = 'Z';
else if (bans->flag.type2 == CONF_BAN_TYPE_TEMPORARY)
type[0] = 'z';
type[1] = '\0';
sendto_one(sptr, rpl_str(RPL_STATSKLINE),
me.name, sptr->name, type, bans->mask, bans->reason
? bans->reason : "<no reason>");
}
}
tkl_stats(sptr, TKL_KILL, NULL);
tkl_stats(sptr, TKL_ZAP, NULL);
for (excepts = conf_except; excepts; excepts = (ConfigItem_except *)excepts->next)
{
if (excepts->flag.type == 1)
sendto_one(sptr, rpl_str(RPL_STATSKLINE),
me.name, sptr->name, "E", excepts->mask, "");
}
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 'k');
sendto_snomask(SNO_EYES, "Stats \'k\' requested by %s (%s@%s)",
sptr->name, sptr->user->username, GetHost(sptr));
return 0;
}
if (!ValidatePermissionsForPath("tkl:kline:remove",sptr,NULL,NULL,NULL) && *parv[1] == '-')
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name, sptr->name);
return 0;
}
return m_tkl_line(cptr, sptr, parc, parv, "k");
}
DLLFUNC int m_tzline(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
if (IsServer(sptr))
return 0;
if (!ValidatePermissionsForPath("tkl:zline:local:add",sptr,NULL,NULL,NULL))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name,
sptr->name);
return 0;
}
if (parc == 1)
{
/* Emulate /stats k */
ConfigItem_ban *bans;
ConfigItem_except *excepts;
char type[2];
for (bans = conf_ban; bans; bans = (ConfigItem_ban *)bans->next)
{
if (bans->flag.type == CONF_BAN_USER)
{
if (bans->flag.type2 == CONF_BAN_TYPE_CONF)
type[0] = 'K';
type[1] = '\0';
sendto_one(sptr, rpl_str(RPL_STATSKLINE),
me.name, sptr->name, type, bans->mask, bans->reason
? bans->reason : "<no reason>");
}
else if (bans->flag.type == CONF_BAN_IP)
{
if (bans->flag.type2 == CONF_BAN_TYPE_CONF)
type[0] = 'Z';
else if (bans->flag.type2 == CONF_BAN_TYPE_TEMPORARY)
type[0] = 'z';
type[1] = '\0';
sendto_one(sptr, rpl_str(RPL_STATSKLINE),
me.name, sptr->name, type, bans->mask, bans->reason
? bans->reason : "<no reason>");
}
}
tkl_stats(sptr, TKL_KILL, NULL);
tkl_stats(sptr, TKL_ZAP, NULL);
for (excepts = conf_except; excepts; excepts = (ConfigItem_except *)excepts->next)
{
if (excepts->flag.type == 1)
sendto_one(sptr, rpl_str(RPL_STATSKLINE),
me.name, sptr->name, "E", excepts->mask, "");
}
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 'k');
sendto_snomask(SNO_EYES, "Stats \'k\' requested by %s (%s@%s)",
sptr->name, sptr->user->username, GetHost(sptr));
return 0;
}
return m_tkl_line(cptr, sptr, parc, parv, "z");
}
/*
** m_tkl_line (oper function - /TKL takes care of distribution)
** /gline [+|-]u@h mask time :reason
**
** parv[1] = [+|-]u@h mask
** parv[2] = for how long
** parv[3] = reason
*/
DLLFUNC int m_tkl_line(aClient *cptr, aClient *sptr, int parc, char *parv[], char* type)
{
TS secs;
int whattodo = 0; /* 0 = add 1 = del */
TS i;
aClient *acptr = NULL;
char *mask = NULL;
char mo[1024], mo2[1024];
char *p, *usermask, *hostmask;
char *tkllayer[10] = {
me.name, /*0 server.name */
NULL, /*1 +|- */
NULL, /*2 G */
NULL, /*3 user */
NULL, /*4 host */
NULL, /*5 setby */
"0", /*6 expire_at */
NULL, /*7 set_at */
"no reason", /*8 reason */
NULL
};
struct tm *t;
if (parc == 1)
{
tkl_stats(sptr, 0, NULL);
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 'g');
return 0;
}
mask = parv[1];
if (*mask == '-')
{
whattodo = 1;
mask++;
}
else if (*mask == '+')
{
whattodo = 0;
mask++;
}
if (strchr(mask, '!'))
{
sendto_one(sptr, ":%s NOTICE %s :[error] Cannot have '!' in masks.", me.name,
sptr->name);
return 0;
}
if (*mask == ':')
{
sendto_one(sptr, ":%s NOTICE %s :[error] Mask cannot start with a ':'.", me.name,
sptr->name);
return 0;
}
if (strchr(mask, ' '))
return 0;
/* Check if it's a hostmask and legal .. */
p = strchr(mask, '@');
if (p) {
if ((p == mask) || !p[1])
{
sendnotice(sptr, "Error: no user@host specified");
return 0;
}
usermask = strtok(mask, "@");
hostmask = strtok(NULL, "");
if (BadPtr(hostmask)) {
if (BadPtr(usermask)) {
return 0;
}
hostmask = usermask;
usermask = "*";
}
if (*hostmask == ':')
{
sendnotice(sptr, "[error] For (weird) technical reasons you cannot start the host with a ':', sorry");
return 0;
}
if (((*type == 'z') || (*type == 'Z')) && !whattodo)
{
/* It's a (G)ZLINE, make sure the user isn't specyfing a HOST.
* Just a warning in 3.2.3, but an error in 3.2.4.
*/
if (strcmp(usermask, "*"))
{
sendnotice(sptr, "ERROR: (g)zlines must be placed at \037*\037@ipmask, not \037user\037@ipmask. This is "
"because (g)zlines are processed BEFORE dns and ident lookups are done. "
"If you want to use usermasks, use a KLINE/GLINE instead.");
return -1;
}
for (p=hostmask; *p; p++)
if (isalpha(*p) && !isxdigit(*p))
{
sendnotice(sptr, "ERROR: (g)zlines must be placed at *@\037IPMASK\037, not *@\037HOSTMASK\037 "
"(so for example *@192.168.* is ok, but *@*.aol.com is not). "
"This is because (g)zlines are processed BEFORE dns and ident lookups are done. "
"If you want to use hostmasks instead of ipmasks, use a KLINE/GLINE instead.");
return -1;
}
}
/* set 'p' right for later... */
p = hostmask-1;
}
else
{
/* It's seemingly a nick .. let's see if we can find the user */
if ((acptr = find_person(mask, NULL)))
{
usermask = "*";
if ((*type == 'z') || (*type == 'Z'))
{
/* Fill in IP */
hostmask = GetIP(acptr);
if (!hostmask)
{
sendnotice(sptr, "Could not get IP for user '%s'", acptr->name);
return 0;
}
} else {
/* Fill in host */
hostmask = acptr->user->realhost;
}
p = hostmask - 1;
}
else
{
sendto_one(sptr, rpl_str(ERR_NOSUCHNICK), me.name, sptr->name, mask);
return 0;
}
}
if (!whattodo)
{
char c;
if ((!strchr(usermask, '*') && !strchr(usermask, '?')) || (ALLOW_INSANE_BANS))
{
/* Allow things like clone@*, dsfsf@*, etc.. */
/* Also allow insane bans if set::options::allow-insane-bans is set -- Stealth */
} else {
/* Check hostmask. */
/* STEP 1: Must at least contain 4 non-wildcard/non-dot characters */
p++;
i = 0;
while (*p)
{
if (*p != '*' && *p != '.' && *p != '?')
i++;
p++;
}
if (i < 4)
{
sendto_one(sptr,
":%s NOTICE %s :*** [error] Too broad mask",
me.name, sptr->name);
return 0;
}
/* STEP 2: Check CIDR.. allow x.x/16, but not /15, /14, etc... */
c = tolower(*type);
if (c == 'k' || c == 'z' || *type == 'G' || *type == 's')
{
struct irc_netmask tmp;
if ((tmp.type = parse_netmask(hostmask, &tmp)) != HM_HOST)
{
if (tmp.bits < 16)
{
sendto_one(sptr,
":%s NOTICE %s :*** [error] Too broad mask",
me.name, sptr->name);
return 0;
}
}
}
}
}
tkl_check_expire(NULL);
secs = 0;
if (whattodo == 0 && (parc > 3))
{
secs = atime(parv[2]);
if (secs < 0)
{
sendto_one(sptr,
":%s NOTICE %s :*** [error] The time you specified is out of range!",
me.name, sptr->name);
return 0;
}
}
tkllayer[1] = whattodo == 0 ? "+" : "-";
tkllayer[2] = type;
tkllayer[3] = usermask;
tkllayer[4] = hostmask;
tkllayer[5] =
make_nick_user_host(sptr->name, sptr->user->username, GetHost(sptr));
if (whattodo == 0)
{
if (secs == 0)
{
if (DEFAULT_BANTIME && (parc <= 3))
ircsnprintf(mo, sizeof(mo), "%li", DEFAULT_BANTIME + TStime());
else
ircsnprintf(mo, sizeof(mo), "%li", secs); /* "0" */
}
else
ircsnprintf(mo, sizeof(mo), "%li", secs + TStime());
ircsnprintf(mo2, sizeof(mo2), "%li", TStime());
tkllayer[6] = mo;
tkllayer[7] = mo2;
if (parc > 3) {
tkllayer[8] = parv[3];
} else if (parc > 2) {
tkllayer[8] = parv[2];
}
/* Blerghhh... */
i = atol(mo);
t = gmtime(&i);
if (!t)
{
sendto_one(sptr,
":%s NOTICE %s :*** [error] The time you specified is out of range",
me.name, sptr->name);
return 0;
}
/* call the tkl layer .. */
m_tkl(&me, &me, 9, tkllayer);
}
else
{
/* call the tkl layer .. */
m_tkl(&me, &me, 6, tkllayer);
}
return 0;
}
int spamfilter_usage(aClient *sptr)
{
sendnotice(sptr, "Use: /spamfilter [add|del|remove|+|-] [-simple|-regex|-posix] [type] [action] [tkltime] [tklreason] [regex]");
sendnotice(sptr, "See '/helpop ?spamfilter' for more information.");
return 0;
}
int spamfilter_new_usage(aClient *cptr, aClient *sptr, char *parv[])
{
sendnotice(sptr, "Unknown match-type '%s'. Must be one of: -regex (new fast PCRE regexes), "
"-posix (old unreal 3.2.x posix regexes) or "
"-simple (simple text with ? and * wildcards)",
parv[2]);
if (*parv[2] != '-')
sendnotice(sptr, "Using the old 3.2.x /SPAMFILTER syntax? Note the new -regex/-posix/-simple field!!");
return spamfilter_usage(cptr);
}
/** /spamfilter [add|del|remove|+|-] [match-type] [type] [action] [tkltime] [reason] [regex]
* 1 2 3 4 5 6 7
*/
DLLFUNC int m_spamfilter(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
int whattodo = 0; /* 0 = add 1 = del */
char mo[32], mo2[32];
char *tkllayer[13] = {
me.name, /* 0 server.name */
NULL, /* 1 +|- */
"F", /* 2 F */
NULL, /* 3 usermask (targets) */
NULL, /* 4 hostmask (action) */
NULL, /* 5 setby */
"0", /* 6 expire_at */
"0", /* 7 set_at */
"", /* 8 tkl time */
"", /* 9 tkl reason */
"", /* 10 match method */
"", /* 11 regex */
NULL
};
int targets = 0, action = 0;
char targetbuf[64], actionbuf[2];
char reason[512];
int n;
aMatch *m;
int match_type = 0;
char *err = NULL;
if (IsServer(sptr))
return 0;
if (!ValidatePermissionsForPath("spamfilter",sptr,NULL,NULL,NULL))
{
sendto_one(sptr, err_str(ERR_NOPRIVILEGES), me.name, sptr->name);
return 0;
}
if (parc == 1)
{
tkl_stats(sptr, TKL_SPAMF, NULL);
tkl_stats(sptr, TKL_SPAMF|TKL_GLOBAL, NULL);
sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, sptr->name, 'F');
sendto_snomask(SNO_EYES, "Stats \'f\' requested by %s (%s@%s)",
sptr->name, sptr->user->username, GetHost(sptr));
return 0;
}
if ((parc == 7) && (*parv[2] != '-'))
return spamfilter_new_usage(cptr,sptr,parv);
if ((parc < 8) || BadPtr(parv[7]))
return spamfilter_usage(sptr);
/* parv[1]: [add|del|+|-]
* parv[2]: match-type
* parv[3]: type
* parv[4]: action
* parv[5]: tkl time
* parv[6]: tkl reason (or block reason..)
* parv[7]: regex
*/
if (!strcasecmp(parv[1], "add") || !strcmp(parv[1], "+"))
whattodo = 0;
else if (!strcasecmp(parv[1], "del") || !strcmp(parv[1], "-") || !strcasecmp(parv[1], "remove"))
whattodo = 1;
else
{
sendto_one(sptr, ":%s NOTICE %s :1st parameter invalid", me.name, sptr->name);
return spamfilter_usage(sptr);
}
match_type = unreal_match_method_strtoval(parv[2]+1);
if (!match_type)
{
return spamfilter_new_usage(cptr,sptr,parv);
}
targets = spamfilter_gettargets(parv[3], sptr);
if (!targets)
return spamfilter_usage(sptr);
strlcpy(targetbuf, spamfilter_target_inttostring(targets), sizeof(targetbuf));
action = banact_stringtoval(parv[4]);
if (!action)
{
sendto_one(sptr, ":%s NOTICE %s :Invalid 'action' field (%s)", me.name, sptr->name, parv[4]);
return spamfilter_usage(sptr);
}
actionbuf[0] = banact_valtochar(action);
actionbuf[1] = '\0';
if (whattodo == 1)
{
/* now check the regex / match field... */
m = unreal_create_match(match_type, parv[7], &err);
if (!m)
{
sendto_one(sptr, ":%s NOTICE %s :Error in regex '%s': %s",
me.name, sptr->name, parv[7], err);
return 0;
}
unreal_delete_match(m);
}
tkllayer[1] = whattodo ? "-" : "+";
tkllayer[3] = targetbuf;
tkllayer[4] = actionbuf;
tkllayer[5] = make_nick_user_host(sptr->name, sptr->user->username, GetHost(sptr));
if (parv[5][0] == '-')
{
ircsnprintf(mo, sizeof(mo), "%li", SPAMFILTER_BAN_TIME);
tkllayer[8] = mo;
}
else
tkllayer[8] = parv[5];
if (parv[6][0] == '-')
strlcpy(reason, unreal_encodespace(SPAMFILTER_BAN_REASON), sizeof(reason));
else
strlcpy(reason, parv[6], sizeof(reason));
tkllayer[9] = reason;
tkllayer[10] = parv[2]+1; /* +1 to skip the '-' */
tkllayer[11] = parv[7];
/* SPAMFILTER LENGTH CHECK.
* We try to limit it here so '/stats f' output shows ok, output of that is:
* :servername 229 destname F <target> <action> <num> <num> <num> <reason> <setby> :<regex>
* : ^NICKLEN ^ NICKLEN ^check ^check ^check
* And for the other fields (and spacing/etc) we count on max 40 characters.
* We also do >500 instead of >510, since that looks cleaner ;).. so actually we count
* on 50 characters for the rest... -- Syzop
*/
n = strlen(reason) + strlen(parv[7]) + strlen(tkllayer[6]) + (NICKLEN * 2) + 40;
if ((n > 500) && (whattodo == 0))
{
sendnotice(sptr, "Sorry, spamfilter too long. You'll either have to trim down the "
"reason or the regex (exceeded by %d bytes)", n - 500);
return 0;
}
if (whattodo == 0)
{
ircsnprintf(mo2, sizeof(mo2), "%li", TStime());
tkllayer[7] = mo2;
}
m_tkl(&me, &me, 12, tkllayer);
return 0;
}
/** tkl hash method.
* NOTE1: the input value 'c' is assumed to be in range a-z or A-Z!
* NOTE2: don't blindly change the hashmethod, some things depend on
* 'z'/'Z' getting the same bucket.
*/
int _tkl_hash(unsigned int c)
{
#ifdef DEBUGMODE
if ((c >= 'a') && (c <= 'z'))
return c-'a';
else if ((c >= 'A') && (c <= 'Z'))
return c-'A';
else {
sendto_realops("[BUG] tkl_hash() called with out of range parameter (c = '%c') !!!", c);
ircd_log(LOG_ERROR, "[BUG] tkl_hash() called with out of range parameter (c = '%c') !!!", c);
return 0;
}
#else
return (isupper(c) ? c-'A' : c-'a');
#endif
}
/** tkl type to tkl character.
* NOTE: type is assumed to be valid.
*/
char _tkl_typetochar(int type)
{
if (type & TKL_GLOBAL)
{
if (type & TKL_KILL)
return 'G';
if (type & TKL_ZAP)
return 'Z';
if (type & TKL_SHUN)
return 's';
if (type & TKL_KILL)
return 'G';
if (type & TKL_SPAMF)
return 'F';
if (type & TKL_NICK)
return 'Q';
} else {
if (type & TKL_ZAP)
return 'z';
if (type & TKL_KILL)
return 'k';
if (type & TKL_SPAMF)
return 'f';
if (type & TKL_NICK)
return 'q';
}
sendto_realops("[BUG]: tkl_typetochar(): unknown type 0x%x !!!", type);
ircd_log(LOG_ERROR, "[BUG] tkl_typetochar(): unknown type 0x%x !!!", type);
return 0;
}
/*
* type = TKL_*
* usermask@hostmask
* reason
* setby = whom set it
* expire_at = when to expire - 0 if not to expire
* set_at = was set at
* spamf_tkl_duration = duration of *line placed by spamfilter [1]
* spamf_tkl_reason = escaped reason field for *lines placed by spamfilter [1]
*
* [1]: only relevant for spamfilters, else ignored (eg 0, NULL).
*/
aTKline *_tkl_add_line(int type, char *usermask, char *hostmask, char *reason, char *setby,
TS expire_at, TS set_at, TS spamf_tkl_duration, char *spamf_tkl_reason, MatchType match_type)
{
aTKline *nl;
int index;
aMatch *m;
/* Pre-allocate etc check for spamfilters that fail to compile.
* This could happen if for example TRE supports a feature on server X, but not
* on server Y!
*/
if (type & TKL_SPAMF)
{
char *err = NULL;
m = unreal_create_match(match_type, reason, &err);
if (!m)
{
sendto_realops("[TKL ERROR] ERROR: Spamfilter was added but did not compile. ERROR='%s', Spamfilter='%s'",
err, reason);
return NULL;
}
}
nl = (aTKline *) MyMallocEx(sizeof(aTKline));
if (!nl)
return NULL;
nl->type = type;
nl->expire_at = expire_at;
nl->set_at = set_at;
strlcpy(nl->usermask, usermask, sizeof(nl->usermask));
nl->hostmask = strdup(hostmask);
nl->reason = strdup(reason);
nl->setby = strdup(setby);
if (type & TKL_SPAMF)
{
/* Need to set some additional flags like 'targets' and 'action'.. */
nl->subtype = spamfilter_gettargets(usermask, NULL);
nl->ptr.spamf = MyMallocEx(sizeof(Spamfilter));
nl->ptr.spamf->expr = m;
nl->ptr.spamf->action = banact_chartoval(*hostmask);
nl->expire_at = 0; /* temporary spamfilters are NOT supported! (makes no sense) */
if (!spamf_tkl_reason)
{
/* no exttkl support, use default values... */
nl->ptr.spamf->tkl_duration = SPAMFILTER_BAN_TIME;
nl->ptr.spamf->tkl_reason = strdup(unreal_encodespace(SPAMFILTER_BAN_REASON));
} else {
nl->ptr.spamf->tkl_duration = spamf_tkl_duration;
nl->ptr.spamf->tkl_reason = strdup(spamf_tkl_reason); /* already encoded */
}
if (nl->subtype & SPAMF_USER)
loop.do_bancheck_spamf_user = 1;
if (nl->subtype & SPAMF_AWAY)
loop.do_bancheck_spamf_away = 1;
}
else if (type & TKL_KILL || type & TKL_ZAP || type & TKL_SHUN)
{
struct irc_netmask tmp;
if ((tmp.type = parse_netmask(nl->hostmask, &tmp)) != HM_HOST)
{
nl->ptr.netmask = MyMallocEx(sizeof(struct irc_netmask));
bcopy(&tmp, nl->ptr.netmask, sizeof(struct irc_netmask));
}
}
index = tkl_hash(tkl_typetochar(type));
AddListItem(nl, tklines[index]);
return nl;
}
aTKline *_tkl_del_line(aTKline *tkl)
{
aTKline *p, *q;
int index = tkl_hash(tkl_typetochar(tkl->type));
for (p = tklines[index]; p; p = p->next)
{
if (p == tkl)
{
q = p->next;
MyFree(p->hostmask);
MyFree(p->reason);
MyFree(p->setby);
if (p->type & TKL_SPAMF && p->ptr.spamf)
{
unreal_delete_match(p->ptr.spamf->expr);
if (p->ptr.spamf->tkl_reason)
MyFree(p->ptr.spamf->tkl_reason);
MyFree(p->ptr.spamf);
}
if ((p->type & TKL_KILL || p->type & TKL_ZAP || p->type & TKL_SHUN)
&& p->ptr.netmask)
MyFree(p->ptr.netmask);
DelListItem(p, tklines[index]);
MyFree(p);
return q;
}
}
return NULL;
}
/*
* tkl_check_local_remove_shun:
* removes shun from currently connected users affected by tmp.
*/
void _tkl_check_local_remove_shun(aTKline *tmp)
{
long i1, i;
char *chost, *cname, *cip;
int is_ip;
aClient *acptr;
aTKline *tk;
int keep_shun;
for (i1 = 0; i1 <= 5; i1++)
{
list_for_each_entry(acptr, &lclient_list, lclient_node)
if (MyClient(acptr) && IsShunned(acptr))
{
chost = acptr->sockhost;
cname = acptr->user->username;
cip = GetIP(acptr);
if ((*tmp->hostmask >= '0') && (*tmp->hostmask <= '9'))
is_ip = 1;
else
is_ip = 0;
if (is_ip == 0 ?
(!match(tmp->hostmask, chost) && !match(tmp->usermask, cname)) :
(!match(tmp->hostmask, chost) || !match(tmp->hostmask, cip))
&& !match(tmp->usermask, cname))
{
/*
before blindly marking this user as un-shunned, we need to check
if the user is under any other existing shuns. (#0003906)
Unfortunately, this requires crazy amounts of indentation ;-).
This enumeration code is based off of _tkl_stats()
*/
keep_shun = 0;
for(tk = tklines[tkl_hash('s')]; tk && !keep_shun; tk = tk->next)
if(tk != tmp && !match(tk->usermask, cname))
{
if ((*tk->hostmask >= '0') && (*tk->hostmask <= '9')
/* the hostmask is an IP */
&& (!match(tk->hostmask, chost) || !match(tk->hostmask, cip)))
keep_shun = 1;
else
/* the hostmask is not an IP */
if (!match(tk->hostmask, chost) && !match(tk->usermask, cname))
keep_shun = 1;
}
if(!keep_shun)
{
ClearShunned(acptr);
#ifdef SHUN_NOTICES
sendto_one(acptr,
":%s NOTICE %s :*** You are no longer shunned",
me.name,
acptr->name);
#endif
}
}
}
}
}
aTKline *_tkl_expire(aTKline * tmp)
{
char whattype[512];
if (!tmp)
return NULL;
whattype[0] = 0;
if ((tmp->expire_at == 0) || (tmp->expire_at > TStime()))
{
sendto_ops
("tkl_expire(): expire for not-yet-expired tkline %s@%s",
tmp->usermask, tmp->hostmask);
return (tmp->next);
}
if (tmp->type & TKL_GLOBAL)
{
if (tmp->type & TKL_KILL)
strlcpy(whattype, "G:Line", sizeof(whattype));
else if (tmp->type & TKL_ZAP)
strlcpy(whattype, "Global Z:Line", sizeof(whattype));
else if (tmp->type & TKL_SHUN)
strlcpy(whattype, "Shun", sizeof(whattype));
else if (tmp->type & TKL_NICK)
strlcpy(whattype, "Global Q:line", sizeof(whattype));
}
else
{
if (tmp->type & TKL_KILL)
strlcpy(whattype, "K:Line", sizeof(whattype));
else if (tmp->type & TKL_ZAP)
strlcpy(whattype, "Z:Line", sizeof(whattype));
else if (tmp->type & TKL_SHUN)
strlcpy(whattype, "Local Shun", sizeof(whattype));
else if (tmp->type & TKL_NICK)
strlcpy(whattype, "Q:line", sizeof(whattype));
}
if (!(tmp->type & TKL_NICK))
{
sendto_snomask(SNO_TKL,
"*** Expiring %s (%s@%s) made by %s (Reason: %s) set %li seconds ago",
whattype, tmp->usermask, tmp->hostmask, tmp->setby, tmp->reason,
TStime() - tmp->set_at);
ircd_log
(LOG_TKL, "Expiring %s (%s@%s) made by %s (Reason: %s) set %li seconds ago",
whattype, tmp->usermask, tmp->hostmask, tmp->setby, tmp->reason,
TStime() - tmp->set_at);
}
else if (!(*tmp->usermask == 'H')) /* Q:line but not a hold */
{
sendto_snomask(SNO_TKL,
"*** Expiring %s (%s) made by %s (Reason: %s) set %li seconds ago",
whattype, tmp->hostmask, tmp->setby, tmp->reason,
TStime() - tmp->set_at);
ircd_log
(LOG_TKL, "Expiring %s (%s) made by %s (Reason: %s) set %li seconds ago",
whattype, tmp->hostmask, tmp->setby, tmp->reason, TStime() - tmp->set_at);
}
if (tmp->type & TKL_SHUN)
tkl_check_local_remove_shun(tmp);
RunHook5(HOOKTYPE_TKL_DEL, NULL, NULL, tmp, 0, NULL);
return (tkl_del_line(tmp));
}
EVENT(_tkl_check_expire)
{
aTKline *gp, *next;
TS nowtime;
int index;
nowtime = TStime();
for (index = 0; index < TKLISTLEN; index++)
for (gp = tklines[index]; gp; gp = next)
{
next = gp->next;
if (gp->expire_at <= nowtime && !(gp->expire_at == 0))
{
tkl_expire(gp);
}
}
}
/*
returns <0 if client exists (banned)
returns 1 if it is excepted
*/
int _find_tkline_match(aClient *cptr, int xx)
{
aTKline *lp;
char *chost, *cname, *cip;
TS nowtime;
char msge[1024];
int points = 0;
ConfigItem_except *excepts;
char host[NICKLEN+USERLEN+HOSTLEN+6], host2[NICKLEN+USERLEN+HOSTLEN+6];
int match_type = 0;
int index;
Hook *tmphook;
if (IsServer(cptr) || IsMe(cptr))
return -1;
nowtime = TStime();
chost = cptr->sockhost;
cname = cptr->user ? cptr->user->username : "unknown";
cip = GetIP(cptr);
points = 0;
for (index = 0; index < TKLISTLEN; index++)
{
for (lp = tklines[index]; lp; lp = lp->next)
{
if ((lp->type & TKL_SHUN) || (lp->type & TKL_SPAMF) || (lp->type & TKL_NICK))
continue;
/* If it's tangy and brown, you're in CIDR town! */
if (lp->ptr.netmask)
{
if (match_ip(cptr->ip, NULL, NULL, lp->ptr.netmask) &&
!match(lp->usermask, cname))
{
points = 1;
break;
}
continue;
}
if (!match(lp->usermask, cname) && !match(lp->hostmask, chost))
{
points = 1;
break;
}
if (!match(lp->usermask, cname) && !match(lp->hostmask, cip))
{
points = 1;
break;
}
}
if (points)
break;
}
if (points != 1)
return 1;
strlcpy(host, make_user_host(cname, chost), sizeof(host));
strlcpy(host2, make_user_host(cname, cip), sizeof(host2));
if (((lp->type & TKL_KILL) || (lp->type & TKL_ZAP)) && !(lp->type & TKL_GLOBAL))
match_type = CONF_EXCEPT_BAN;
else
match_type = CONF_EXCEPT_TKL;
for (excepts = conf_except; excepts; excepts = (ConfigItem_except *)excepts->next) {
if (excepts->flag.type != match_type || (match_type == CONF_EXCEPT_TKL &&
excepts->type != lp->type))
continue;
if (excepts->netmask)
{
if (match_ip(cptr->ip, host2, excepts->mask, excepts->netmask))
return 1;
} else
if (!match(excepts->mask, host) || !match(excepts->mask, host2))
return 1;
}
for (tmphook = Hooks[HOOKTYPE_TKL_EXCEPT]; tmphook; tmphook = tmphook->next)
if (tmphook->func.intfunc(cptr, lp) > 0)
return 1;
if ((lp->type & TKL_KILL) && (xx != 2))
{
if (lp->type & TKL_GLOBAL)
{
ircstp->is_ref++;
if (GLINE_ADDRESS)
sendto_one(cptr, ":%s NOTICE %s :*** You are %s from %s (%s)"
" Email %s for more information.",
me.name, cptr->name,
(lp->expire_at ? "banned" : "permanently banned"),
ircnetwork, lp->reason, GLINE_ADDRESS);
else
sendto_one(cptr, ":%s NOTICE %s :*** You are %s from %s (%s)",
me.name, cptr->name,
(lp->expire_at ? "banned" : "permanently banned"),
ircnetwork, lp->reason);
ircsnprintf(msge, sizeof(msge), "User has been %s from %s (%s)",
(lp->expire_at ? "banned" : "permanently banned"),
ircnetwork, lp->reason);
return (exit_client(cptr, cptr, &me, msge));
}
else
{
ircstp->is_ref++;
sendto_one(cptr, ":%s NOTICE %s :*** You are %s from %s (%s)"
" Email %s for more information.",
me.name, cptr->name,
(lp->expire_at ? "banned" : "permanently banned"),
me.name, lp->reason, KLINE_ADDRESS);
ircsnprintf(msge, sizeof(msge), "User is %s (%s)",
(lp->expire_at ? "banned" : "permanently banned"),
lp->reason);
return (exit_client(cptr, cptr, &me, msge));
}
}
if (lp->type & TKL_ZAP)
{
ircstp->is_ref++;
ircsnprintf(msge, sizeof(msge), "Z:lined (%s)",lp->reason);
return exit_client(cptr, cptr, &me, msge);
}
return 3;
}
int _find_shun(aClient *cptr)
{
aTKline *lp;
char *chost, *cname, *cip;
TS nowtime;
int points = 0;
ConfigItem_except *excepts;
char host[NICKLEN+USERLEN+HOSTLEN+6], host2[NICKLEN+USERLEN+HOSTLEN+6];
int match_type = 0;
if (IsServer(cptr) || IsMe(cptr))
return -1;
if (IsShunned(cptr))
return 1;
if (ValidatePermissionsForPath("immune:shun",cptr,NULL,NULL,NULL))
return 1;
nowtime = TStime();
chost = cptr->sockhost;
cname = cptr->user ? cptr->user->username : "unknown";
cip = GetIP(cptr);
for (lp = tklines[tkl_hash('s')]; lp; lp = lp->next)
{
points = 0;
if (!(lp->type & TKL_SHUN))
continue;
/* CIDR */
if (lp->ptr.netmask)
{
if (match_ip(cptr->ip, NULL, NULL, lp->ptr.netmask) &&
!match(lp->usermask, cname))
{
points = 1;
break;
}
continue;
}
if (!match(lp->usermask, cname) && !match(lp->hostmask, chost))
{
points = 1;
break;
}
if (!match(lp->usermask, cname) && !match(lp->hostmask, cip))
{
points = 1;
break;
}
else
points = 0;
}
if (points != 1)
return 1;
strlcpy(host, make_user_host(cname, chost), sizeof(host));
strlcpy(host2, make_user_host(cname, cip), sizeof(host2));
match_type = CONF_EXCEPT_TKL;
for (excepts = conf_except; excepts; excepts = (ConfigItem_except *)excepts->next) {
if (excepts->flag.type != match_type || (match_type == CONF_EXCEPT_TKL &&
excepts->type != lp->type))
continue;
if (excepts->netmask)
{
if (match_ip(cptr->ip, NULL, NULL, excepts->netmask))
return 1;
}
else if (!match(excepts->mask, host) || !match(excepts->mask, host2))
return 1;
}
SetShunned(cptr);
return 2;
}
char *SpamfilterMagicHost(char *i)
{
static char buf[256];
if (!strchr(i, ':'))
return i;
/* otherwise, it's IPv6.. prepend it with [ and append a ] */
ircsnprintf(buf, sizeof(buf), "[%s]", i);
return buf;
}
void _spamfilter_build_user_string(char *buf, char *nick, aClient *acptr)
{
ircsnprintf(buf, sizeof(buf), "%s!%s@%s:%s",
nick, acptr->user->username, SpamfilterMagicHost(acptr->user->realhost), acptr->info);
}
/** Checks if the user matches a spamfilter of type 'u' (user,
* nick!user@host:realname ban).
* Written by: Syzop
* Assumes: only call for clients, possible assume on local clients [?]
* Return values: see dospamfilter()
*/
int _find_spamfilter_user(aClient *sptr, int flags)
{
char spamfilter_user[NICKLEN + USERLEN + HOSTLEN + REALLEN + 64]; /* n!u@h:r */
if (ValidatePermissionsForPath("immune:spamfilter",sptr,NULL,NULL,NULL))
return 0;
spamfilter_build_user_string(spamfilter_user, sptr->name, sptr);
return dospamfilter(sptr, spamfilter_user, SPAMF_USER, NULL, flags, NULL);
}
int spamfilter_check_users(aTKline *tk)
{
char spamfilter_user[NICKLEN + USERLEN + HOSTLEN + REALLEN + 64]; /* n!u@h:r */
char buf[1024];
int i, matches = 0;
aClient *acptr;
list_for_each_entry_reverse(acptr, &lclient_list, lclient_node)
if (MyClient(acptr))
{
spamfilter_build_user_string(spamfilter_user, acptr->name, acptr);
if (!unreal_match(tk->ptr.spamf->expr, spamfilter_user))
continue; /* No match */
/* matched! */
ircsnprintf(buf, sizeof(buf), "[Spamfilter] %s!%s@%s matches filter '%s': [%s: '%s'] [%s]",
acptr->name, acptr->user->username, acptr->user->realhost,
tk->reason,
"user", spamfilter_user,
unreal_decodespace(tk->ptr.spamf->tkl_reason));
sendto_snomask(SNO_SPAMF, "%s", buf);
sendto_server(NULL, 0, 0, ":%s SENDSNO S :%s", me.name, buf);
ircd_log(LOG_SPAMFILTER, "%s", buf);
RunHook6(HOOKTYPE_LOCAL_SPAMFILTER, acptr, spamfilter_user, spamfilter_user, SPAMF_USER, NULL, tk);
matches++;
}
return matches;
}
int spamfilter_check_all_users(aClient *from, aTKline *tk)
{
char spamfilter_user[NICKLEN + USERLEN + HOSTLEN + REALLEN + 64]; /* n!u@h:r */
int matches = 0;
aClient *acptr;
list_for_each_entry(acptr, &client_list, client_node)
if (IsPerson(acptr))
{
spamfilter_build_user_string(spamfilter_user, acptr->name, acptr);
if (!unreal_match(tk->ptr.spamf->expr, spamfilter_user))
continue; /* No match */
/* matched! */
sendnotice(from, "[Spamfilter] %s!%s@%s matches filter '%s': [%s: '%s'] [%s]",
acptr->name, acptr->user->username, acptr->user->realhost,
tk->reason,
"user", spamfilter_user,
unreal_decodespace(tk->ptr.spamf->tkl_reason));
matches++;
}
return matches;
}
/*
* #*ble* will match with #bbleh
* *ble* will NOT match with #bbleh, will with bbleh
*/
aTKline *_find_qline(aClient *cptr, char *nick, int *ishold)
{
aTKline *lp;
char *chost, *cname, *cip;
char host[NICKLEN+USERLEN+HOSTLEN+6], hostbuf2[NICKLEN+USERLEN+HOSTLEN+6], *host2 = NULL;
int points = 0;
ConfigItem_except *excepts;
*ishold = 0;
if (IsServer(cptr) || IsMe(cptr))
return NULL;
for (lp = tklines[tkl_hash('q')]; lp; lp = lp->next)
{
points = 0;
if (!(lp->type & TKL_NICK))
continue;
if (((*lp->hostmask == '#' && *nick == '#') || (*lp->hostmask != '#' && *nick != '#')) && !match(lp->hostmask, nick))
{
points = 1;
break;
}
}
if (points != 1)
return NULL;
/* It's a services hold */
if (*lp->usermask == 'H')
{
*ishold = 1;
return lp;
}
chost = cptr->user ? cptr->user->realhost : (MyConnect(cptr) ? cptr->sockhost : "unknown");
cname = cptr->user ? cptr->user->username : "unknown";
strlcpy(host, make_user_host(cname, chost), sizeof(host));
cip = GetIP(cptr);
if (cip)
{
strlcpy(hostbuf2, make_user_host(cname, cip), sizeof(hostbuf2));
host2 = hostbuf2;
}
for (excepts = conf_except; excepts; excepts = (ConfigItem_except *)excepts->next)
{
if (excepts->flag.type != CONF_EXCEPT_TKL || excepts->type != TKL_NICK)
continue;
if (excepts->netmask)
{
if (MyConnect(cptr) && match_ip(cptr->ip, NULL, NULL, excepts->netmask))
return NULL;
} else
if (!match(excepts->mask, host) || (host2 && !match(excepts->mask, host2)))
return NULL;
}
return lp;
}
int _find_tkline_match_zap_ex(aClient *cptr, aTKline **rettk)
{
aTKline *lp;
char *cip;
TS nowtime;
char msge[1024];
ConfigItem_except *excepts;
Hook *tmphook;
if (rettk)
*rettk = NULL;
if (IsServer(cptr) || IsMe(cptr))
return -1;
nowtime = TStime();
cip = GetIP(cptr);
for (lp = tklines[tkl_hash('z')]; lp; lp = lp->next)
{
if (lp->type & TKL_ZAP)
{
if ((lp->ptr.netmask && match_ip(cptr->ip, NULL, NULL, lp->ptr.netmask))
|| !match(lp->hostmask, cip))
{
for (excepts = conf_except; excepts; excepts = (ConfigItem_except *)excepts->next) {
/* This used to be:
* if (excepts->flag.type != CONF_EXCEPT_TKL || excepts->type != lp->type)
* It now checks for 'except ban', hope this is what most people want,
* it is at least the same as in find_tkline_match, which is how it currently
* is when a user is connected. -- Syzop/20081221
*/
if (excepts->flag.type != CONF_EXCEPT_BAN)
continue;
if (excepts->netmask)
{
if (match_ip(cptr->ip, NULL, NULL, excepts->netmask))
return -1;
} else if (!match(excepts->mask, cip))
return -1;
}
for (tmphook = Hooks[HOOKTYPE_TKL_EXCEPT]; tmphook; tmphook = tmphook->next)
if (tmphook->func.intfunc(cptr, lp) > 0)
return -1;
ircstp->is_ref++;
ircsnprintf(msge, sizeof(msge),
"ERROR :Closing Link: [%s] Z:Lined (%s)\r\n",
#ifndef INET6
inetntoa((char *)&cptr->ip), lp->reason);
#else
inet_ntop(AF_INET6, (char *)&cptr->ip,
mydummy, MYDUMMY_SIZE), lp->reason);
#endif
strlcpy(zlinebuf, msge, sizeof zlinebuf);
if (rettk)
*rettk = lp;
return (1);
}
}
}
return -1;
}
int _find_tkline_match_zap(aClient *cptr)
{
return _find_tkline_match_zap_ex(cptr, NULL);
}
#define BY_MASK 0x1
#define BY_REASON 0x2
#define NOT_BY_MASK 0x4
#define NOT_BY_REASON 0x8
#define BY_SETBY 0x10
#define NOT_BY_SETBY 0x20
typedef struct {
int flags;
char *mask;
char *reason;
char *setby;
} TKLFlag;
static void parse_tkl_para(char *para, TKLFlag *flag)
{
static char paratmp[512]; /* <- copy of para, because it gets fragged by strtok() */
char *flags, *tmp;
char what = '+';
strlcpy(paratmp, para, sizeof(paratmp));
flags = strtok(paratmp, " ");
bzero(flag, sizeof(TKLFlag));
for (; *flags; flags++)
{
switch (*flags)
{
case '+':
what = '+';
break;
case '-':
what = '-';
break;
case 'm':
if (flag->mask || !(tmp = strtok(NULL, " ")))
continue;
if (what == '+')
flag->flags |= BY_MASK;
else
flag->flags |= NOT_BY_MASK;
flag->mask = tmp;
break;
case 'r':
if (flag->reason || !(tmp = strtok(NULL, " ")))
continue;
if (what == '+')
flag->flags |= BY_REASON;
else
flag->flags |= NOT_BY_REASON;
flag->reason = tmp;
break;
case 's':
if (flag->setby || !(tmp = strtok(NULL, " ")))
continue;
if (what == '+')
flag->flags |= BY_SETBY;
else
flag->flags |= NOT_BY_SETBY;
flag->setby = tmp;
break;
}
}
}
void _tkl_stats(aClient *cptr, int type, char *para)
{
aTKline *tk;
TS curtime;
TKLFlag tklflags;
int index;
/*
We output in this row:
Glines,GZlines,KLine, ZLIne
Character:
G, Z, K, z
*/
if (!BadPtr(para))
parse_tkl_para(para, &tklflags);
tkl_check_expire(NULL);
curtime = TStime();
for (index = 0; index < TKLISTLEN; index++)
for (tk = tklines[index]; tk; tk = tk->next)
{
if (type && tk->type != type)
continue;
if (!BadPtr(para))
{
if (tklflags.flags & BY_MASK)
{
if (tk->type & TKL_NICK)
{
if (match(tklflags.mask, tk->hostmask))
continue;
}
else if (match(tklflags.mask, make_user_host(tk->usermask,
tk->hostmask)))
continue;
}
if (tklflags.flags & NOT_BY_MASK)
{
if (tk->type & TKL_NICK)
{
if (!match(tklflags.mask, tk->hostmask))
continue;
}
else if (!match(tklflags.mask, make_user_host(tk->usermask,
tk->hostmask)))
continue;
}
if (tklflags.flags & BY_REASON)
if (match(tklflags.reason, tk->reason))
continue;
if (tklflags.flags & NOT_BY_REASON)
if (!match(tklflags.reason, tk->reason))
continue;
if (tklflags.flags & BY_SETBY)
if (match(tklflags.setby, tk->setby))
continue;
if (tklflags.flags & NOT_BY_SETBY)
if (!match(tklflags.setby, tk->setby))
continue;
}
if (tk->type == (TKL_KILL | TKL_GLOBAL))
{
sendto_one(cptr, rpl_str(RPL_STATSGLINE), me.name,
cptr->name, 'G', tk->usermask, tk->hostmask,
(tk->expire_at !=
0) ? (tk->expire_at - curtime) : 0,
(curtime - tk->set_at), tk->setby, tk->reason);
}
if (tk->type == (TKL_ZAP | TKL_GLOBAL))
{
sendto_one(cptr, rpl_str(RPL_STATSGLINE), me.name,
cptr->name, 'Z', tk->usermask, tk->hostmask,
(tk->expire_at !=
0) ? (tk->expire_at - curtime) : 0,
(curtime - tk->set_at), tk->setby, tk->reason);
}
if (tk->type == (TKL_SHUN | TKL_GLOBAL))
{
sendto_one(cptr, rpl_str(RPL_STATSGLINE), me.name,
cptr->name, 's', tk->usermask, tk->hostmask,
(tk->expire_at !=
0) ? (tk->expire_at - curtime) : 0,
(curtime - tk->set_at), tk->setby, tk->reason);
}
if (tk->type == (TKL_KILL))
{
sendto_one(cptr, rpl_str(RPL_STATSGLINE), me.name,
cptr->name, 'K', tk->usermask, tk->hostmask,
(tk->expire_at !=
0) ? (tk->expire_at - curtime) : 0,
(curtime - tk->set_at), tk->setby, tk->reason);
}
if (tk->type == (TKL_ZAP))
{
sendto_one(cptr, rpl_str(RPL_STATSGLINE), me.name,
cptr->name, 'z', tk->usermask, tk->hostmask,
(tk->expire_at !=
0) ? (tk->expire_at - curtime) : 0,
(curtime - tk->set_at), tk->setby, tk->reason);
}
if (tk->type & TKL_SPAMF)
{
sendto_one(cptr, rpl_str(RPL_STATSSPAMF), me.name,
cptr->name,
(tk->type & TKL_GLOBAL) ? 'F' : 'f',
unreal_match_method_valtostr(tk->ptr.spamf->expr->type),
spamfilter_target_inttostring(tk->subtype),
banact_valtostring(tk->ptr.spamf->action),
(tk->expire_at != 0) ? (tk->expire_at - curtime) : 0,
curtime - tk->set_at,
tk->ptr.spamf->tkl_duration, tk->ptr.spamf->tkl_reason,
tk->setby,
tk->reason);
}
if (tk->type & TKL_NICK)
sendto_one(cptr, rpl_str(RPL_STATSQLINE), me.name,
cptr->name, (tk->type & TKL_GLOBAL) ? 'Q' : 'q',
tk->hostmask, (tk->expire_at != 0) ? (tk->expire_at - curtime) : 0,
curtime - tk->set_at, tk->setby, tk->reason);
}
}
void _tkl_synch(aClient *sptr)
{
aTKline *tk;
char typ = 0;
int index;
for (index = 0; index < TKLISTLEN; index++)
for (tk = tklines[index]; tk; tk = tk->next)
{
if (tk->type & TKL_GLOBAL)
{
if (tk->type & TKL_KILL)
typ = 'G';
if (tk->type & TKL_ZAP)
typ = 'Z';
if (tk->type & TKL_SHUN)
typ = 's';
if (tk->type & TKL_SPAMF)
typ = 'F';
if (tk->type & TKL_NICK)
typ = 'Q';
if ((tk->type & TKL_SPAMF) && (sptr->proto & PROTO_TKLEXT))
{
sendto_one(sptr,
":%s TKL + %c %s %s %s %li %li %li %s :%s", me.name,
typ,
tk->usermask, tk->hostmask, tk->setby,
tk->expire_at, tk->set_at,
tk->ptr.spamf->tkl_duration, tk->ptr.spamf->tkl_reason,
tk->reason);
} else
sendto_one(sptr,
":%s TKL + %c %s %s %s %li %li :%s", me.name,
typ,
tk->usermask ? tk->usermask : "*", tk->hostmask, tk->setby,
tk->expire_at, tk->set_at, tk->reason);
}
}
}
/*
* m_tkl:
* HISTORY:
* This was originall called Timed KLines, but today it's
* used by various *line types eg: zline, gline, gzline, shun,
* but also by spamfilter etc...
* USAGE:
* This routine is used both internally by the ircd (to
* for example add local klines, zlines, etc) and over the
* network (glines, gzlines, spamfilter, etc).
* add: remove: spamfilter: spamfilter+TKLEXT spamfilter+TKLEXT2 sqline:
* parv[ 1]: + - +/- + + +/-
* parv[ 2]: type type type type type type
* parv[ 3]: user user target target target hold
* parv[ 4]: host host action action action host
* parv[ 5]: setby removedby (un)setby setby setby setby
* parv[ 6]: expire_at expire_at (0) expire_at (0) expire_at (0) expire_at
* parv[ 7]: set_at set_at set_at set_at set_at
* parv[ 8]: reason regex tkl duration tkl duration reason
* parv[ 9]: tkl reason [A] tkl reason [A]
* parv[10]: regex match-type [B]
* parv[11]: match-string [C]
*
* [A] tkl reason field must be escaped by caller [eg: use unreal_encodespace()
* if m_tkl is called internally].
* [B] match-type must be one of: regex, simple, posix.
* [C] Could be a regex or a regular string with wildcards, depending on [B]
*/
int _m_tkl(aClient *cptr, aClient *sptr, int parc, char *parv[])
{
aTKline *tk;
int type;
int found = 0;
char gmt[256], gmt2[256];
char txt[256];
TS expiry_1, setat_1, spamf_tklduration = 0;
MatchType spamf_match_method = MATCH_TRE_REGEX; /* (if unspecified, default to this) */
char *reason = NULL, *timeret;
if (!IsServer(sptr) && !IsOper(sptr) && !IsMe(sptr))
return 0;
if (parc < 2)
return 0;
tkl_check_expire(NULL);
switch (*parv[1])
{
case '+':
{
/* we relay on servers to be failsafe.. */
if (!IsServer(sptr) && !IsMe(sptr))
return 0;
if (parc < 9)
return 0;
if (parv[2][0] == 'G')
type = TKL_KILL | TKL_GLOBAL;
else if (parv[2][0] == 'Z')
type = TKL_ZAP | TKL_GLOBAL;
else if (parv[2][0] == 'z')
type = TKL_ZAP;
else if (parv[2][0] == 'k')
type = TKL_KILL;
else if (parv[2][0] == 's')
type = TKL_SHUN | TKL_GLOBAL;
else if (parv[2][0] == 'f')
type = TKL_SPAMF;
else if (parv[2][0] == 'F')
type = TKL_SPAMF | TKL_GLOBAL;
else if (parv[2][0] == 'Q')
type = TKL_NICK | TKL_GLOBAL;
else if (parv[2][0] == 'q')
type = TKL_NICK;
else
return 0;
expiry_1 = atol(parv[6]);
setat_1 = atol(parv[7]);
reason = parv[8];
if (expiry_1 < 0)
{
sendto_realops("Invalid TKL entry from %s, negative expire time (%ld) -- not added. Clock on other server incorrect?",
sptr->name, (long)expiry_1);
return 0;
}
if (setat_1 < 0)
{
sendto_realops("Invalid TKL entry from %s, negative set-at time (%ld) -- not added. Clock on other server incorrect?",
sptr->name, (long)setat_1);
return 0;
}
found = 0;
if ((type & TKL_SPAMF) && (parc >= 11))
{
if (parc >= 12)
{
reason = parv[11];
spamf_match_method = unreal_match_method_strtoval(parv[10]);
if (spamf_match_method == 0)
{
sendto_realops("Ignoring spamfilter from %s with unknown match type '%s'",
sptr->name, parv[10]);
return 0;
}
} else {
reason = parv[10];
#ifdef USE_TRE
spamf_match_method = MATCH_TRE_REGEX;
#else
sendto_realops("Ignoring spamfilter from %s. Spamfilter is of type 'posix' (TRE) and this "
"build was compiled without TRE support. Suggestion: upgrade the other server",
sptr->name);
return 0;
#endif
}
spamf_tklduration = config_checkval(parv[8], CFG_TIME); /* was: atol(parv[8]); */
}
for (tk = tklines[tkl_hash(parv[2][0])]; tk; tk = tk->next)
{
if (tk->type == type)
{
if ((tk->type & TKL_NICK) && !stricmp(tk->hostmask, parv[4]))
{
found = 1;
break;
}
else if (!strcmp(tk->hostmask, parv[4]) && !strcmp(tk->usermask, parv[3]) &&
(!(type & TKL_SPAMF) || !stricmp(tk->reason, reason)))
{
found = 1;
break;
}
}
}
/* *:Line already exists! */
if (found == 1)
{
/* SYZTAG: TODO: check for tklreason/tklduration differnces */
/* do they differ in ANY way? */
if (type & TKL_NICK)
{
/* for sqline: usermask = H overrides */
if (*parv[3] == 'H')
*tk->usermask = 'H';
}
if ((setat_1 != tk->set_at) || (expiry_1 != tk->expire_at) ||
strcmp(tk->reason, reason) || strcmp(tk->setby, parv[5]))
{
/* here's how it goes:
* set_at: oldest wins
* expire_at: longest wins
* reason: highest strcmp wins
* setby: highest strcmp wins
* We broadcast the result of this back to all servers except
* cptr's direction, because cptr will do the same thing and
* send it back to his servers (except us)... no need for a
* double networkwide flood ;p. -- Syzop
*/
tk->set_at = MIN(tk->set_at, setat_1);
if (!tk->expire_at || !expiry_1)
tk->expire_at = 0;
else
tk->expire_at = MAX(tk->expire_at, expiry_1);
if (strcmp(tk->reason, reason) < 0)
{
MyFree(tk->reason);
tk->reason = strdup(reason);
}
if (strcmp(tk->setby, parv[5]) < 0)
{
MyFree(tk->setby);
tk->setby = strdup(parv[5]);
}
if (tk->type & TKL_NICK)
{
if (!(*tk->usermask) == 'H')
sendto_snomask(SNO_TKL, "tkl update for %s/reason='%s'/by=%s/set=%ld/expire=%ld [causedby: %s]",
tk->hostmask, tk->reason, tk->setby, tk->set_at, tk->expire_at, sptr->name);
}
else
sendto_snomask(SNO_TKL, "tkl update for %s@%s/reason='%s'/by=%s/set=%ld/expire=%ld [causedby: %s]",
tk->usermask, tk->hostmask, tk->reason, tk->setby, tk->set_at, tk->expire_at, sptr->name);
if ((parc == 11) && (type & TKL_SPAMF))
{
/* I decided to only send updates to OPT_TKLEXT in this case,
* it's pretty useless to send it also to OPT_NOT_TKLEXT because
* spamfilter entries are permanent (no expire time), the only stuff
* that can differ for non-opt is the 'setby' and 'setat' field...
*/
sendto_server(cptr, PROTO_TKLEXT, 0,
":%s TKL %s %s %s %s %s %ld %ld %ld %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4],
tk->setby, tk->expire_at, tk->set_at, tk->ptr.spamf->tkl_duration,
tk->ptr.spamf->tkl_reason, tk->reason);
}
else if (type & TKL_GLOBAL)
sendto_server(cptr, 0, 0,
":%s TKL %s %s %s %s %s %ld %ld :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4],
tk->setby, tk->expire_at, tk->set_at, tk->reason);
}
return 0;
}
/* there is something fucked here? */
if ((type & TKL_SPAMF) && (parc >= 11))
tk = tkl_add_line(type, parv[3], parv[4], reason, parv[5],
expiry_1, setat_1, spamf_tklduration, parv[9], spamf_match_method);
else
tk = tkl_add_line(type, parv[3], parv[4], reason, parv[5],
expiry_1, setat_1, 0, NULL, 0);
if (!tk)
return 0; /* ERROR on allocate or something else... */
timeret = asctime(gmtime((TS *)&setat_1));
if (!timeret)
{
sendto_realops("Invalid TKL entry from %s, set-at time is out of range (%ld) -- not added. Clock on other server incorrect or bogus entry.",
sptr->name, (long)setat_1);
return 0;
}
strlcpy(gmt, timeret, sizeof(gmt));
timeret = asctime(gmtime((TS *)&expiry_1));
if (!timeret)
{
sendto_realops("Invalid TKL entry from %s, expiry time is out of range (%ld) -- not added. Clock on other server incorrect or bogus entry.",
sptr->name, (long)expiry_1);
return 0;
}
strlcpy(gmt2, timeret, sizeof(gmt2));
iCstrip(gmt);
iCstrip(gmt2);
RunHook5(HOOKTYPE_TKL_ADD, cptr, sptr, tk, parc, parv);
switch (type)
{
case TKL_KILL:
strlcpy(txt, "K:Line", sizeof(txt));
break;
case TKL_ZAP:
strlcpy(txt, "Z:Line", sizeof(txt));
break;
case TKL_KILL | TKL_GLOBAL:
strlcpy(txt, "G:Line", sizeof(txt));
break;
case TKL_ZAP | TKL_GLOBAL:
strlcpy(txt, "Global Z:line", sizeof(txt));
break;
case TKL_SHUN | TKL_GLOBAL:
strlcpy(txt, "Shun", sizeof(txt));
break;
case TKL_NICK | TKL_GLOBAL:
strlcpy(txt, "Global Q:line", sizeof(txt));
break;
case TKL_NICK:
strlcpy(txt, "Q:line", sizeof(txt));
break;
default:
strlcpy(txt, "Unknown *:Line", sizeof(txt));
}
if (type & TKL_SPAMF)
{
char buf[512];
ircsnprintf(buf, sizeof(buf),
"Spamfilter added: '%s' [target: %s] [action: %s] [reason: %s] on %s GMT (from %s)",
reason, parv[3], banact_valtostring(banact_chartoval(*parv[4])),
parc >= 10 ? unreal_decodespace(parv[9]) : SPAMFILTER_BAN_REASON,
gmt, parv[5]);
sendto_snomask(SNO_TKL, "*** %s", buf);
ircd_log(LOG_TKL, "%s", buf);
if (tk && (tk->ptr.spamf->action == BAN_ACT_WARN) && (tk->subtype & SPAMF_USER))
spamfilter_check_users(tk);
} else {
char buf[512];
if (expiry_1 != 0)
{
if (type & TKL_NICK)
{
if (*parv[3] != 'H')
ircsnprintf(buf, sizeof(buf), "%s added for %s on %s GMT (from %s to expire at %s GMT: %s)",
txt, parv[4], gmt, parv[5], gmt2, reason);
}
else
ircsnprintf(buf, sizeof(buf), "%s added for %s@%s on %s GMT (from %s to expire at %s GMT: %s)",
txt, parv[3], parv[4], gmt, parv[5], gmt2, reason);
}
else
{
if (type & TKL_NICK)
{
if (*parv[3] != 'H')
ircsnprintf(buf, sizeof(buf), "Permanent %s added for %s on %s GMT (from %s: %s)",
txt, parv[4], gmt, parv[5], reason);
}
else
ircsnprintf(buf, sizeof(buf), "Permanent %s added for %s@%s on %s GMT (from %s: %s)",
txt, parv[3], parv[4], gmt, parv[5], reason);
}
if (!((type & TKL_NICK) && *parv[3] == 'H'))
{
sendto_snomask(SNO_TKL, "*** %s", buf);
ircd_log(LOG_TKL, "%s", buf);
}
}
/* Ban checking executes during run loop for efficiency */
loop.do_bancheck = 1;
if (type & TKL_GLOBAL)
{
if ((parc == 12) && (type & TKL_SPAMF))
{
/* Oooooh.. so many flavours ! */
sendto_server(cptr, PROTO_TKLEXT2, 0,
":%s TKL %s %s %s %s %s %s %s %s %s %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], parv[8], parv[9], parv[10], parv[11]);
/* Also send to old TKLEXT and even older non-TKLEXT..
* ..but only if spam filter is of type 'posix', not cause any trouble..
*/
if (tk->ptr.spamf->expr->type == MATCH_TRE_REGEX)
{
sendto_server(cptr, PROTO_TKLEXT, PROTO_TKLEXT2,
":%s TKL %s %s %s %s %s %s %s %s %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], parv[8], parv[9], parv[11]);
sendto_server(cptr, 0, PROTO_TKLEXT,
":%s TKL %s %s %s %s %s %s %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], parv[11]);
} else {
/* Print out a warning if any 3.2.x servers linked (TKLEXT but no TKLEXT2) */
if (mixed_network())
{
sendto_realops("WARNING: Spamfilter '%s' added of type '%s' and 3.2.x servers are linked. "
"Spamfilter will not execute on non-3.4.x servers.",
parv[11] , parv[10]);
}
}
} else
if ((parc == 11) && (type & TKL_SPAMF))
{
sendto_server(cptr, PROTO_TKLEXT, 0,
":%s TKL %s %s %s %s %s %s %s %s %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], parv[8], parv[9], parv[10]);
sendto_server(cptr, 0, PROTO_TKLEXT,
":%s TKL %s %s %s %s %s %s %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], parv[10]);
} else
sendto_server(cptr, 0, 0,
":%s TKL %s %s %s %s %s %s %s :%s", sptr->name,
parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], parv[8]);
} /* TKL_GLOBAL */
return 0;
}
case '-':
if (!IsServer(sptr) && !IsMe(sptr))
return 0;
if (parc < 6)
return 0;
if (*parv[2] == 'G')
type = TKL_KILL | TKL_GLOBAL;
else if (*parv[2] == 'Z')
type = TKL_ZAP | TKL_GLOBAL;
else if (*parv[2] == 'z')
type = TKL_ZAP;
else if (*parv[2] == 'k')
type = TKL_KILL;
else if (*parv[2] == 's')
type = TKL_SHUN | TKL_GLOBAL;
else if (*parv[2] == 'Q')
type = TKL_NICK | TKL_GLOBAL;
else if (*parv[2] == 'q')
type = TKL_NICK;
else if (*parv[2] == 'F')
{
if (parc < 8)
{
sendto_realops("[BUG] m_tkl called with bogus spamfilter removal request [F], from=%s, parc=%d",
sptr->name, parc);
return 0; /* bogus */
}
type = TKL_SPAMF | TKL_GLOBAL;
if (parc >= 12)
reason = parv[11];
else if (parc >= 11)
reason = parv[10];
else
reason = parv[8];
}
else if (*parv[2] == 'f')
{
if (parc < 8)
{
sendto_realops("[BUG] m_tkl called with bogus spamfilter removal request [f], from=%s, parc=%d",
sptr->name, parc);
return 0; /* bogus */
}
type = TKL_SPAMF;
if (parc >= 12)
reason = parv[11];
else if (parc >= 11)
reason = parv[10];
else
reason = parv[8];
}
else
return 0;
switch (type)
{
case TKL_KILL:
strlcpy(txt, "K:Line", sizeof(txt));
break;
case TKL_ZAP:
strlcpy(txt, "Z:Line", sizeof(txt));
break;
case TKL_KILL | TKL_GLOBAL:
strlcpy(txt, "G:Line", sizeof(txt));
break;
case TKL_ZAP | TKL_GLOBAL:
strlcpy(txt, "Global Z:line", sizeof(txt));
break;
case TKL_SHUN | TKL_GLOBAL:
strlcpy(txt, "Shun", sizeof(txt));
break;
case TKL_NICK | TKL_GLOBAL:
strlcpy(txt, "Global Q:line", sizeof(txt));
break;
case TKL_NICK:
strlcpy(txt, "Q:line", sizeof(txt));
break;
default:
strlcpy(txt, "Unknown *:Line", sizeof(txt));
}
found = 0;
for (tk = tklines[tkl_hash(parv[2][0])]; tk; tk = tk->next)
{
if (tk->type == type)
{
int match = 0;
if (type & TKL_NICK)
{
if (!stricmp(tk->hostmask, parv[4]))
match = 1;
} else
if (type & TKL_SPAMF)
{
if (!strcmp(tk->hostmask, parv[4]) && !strcmp(tk->usermask, parv[3]) &&
!stricmp(tk->reason, reason))
match = 1;
} else /* all other types... */
if (!stricmp(tk->hostmask, parv[4]) && !stricmp(tk->usermask, parv[3]))
match = 1;
if (match)
{
strlcpy(gmt, asctime(gmtime((TS *)&tk->set_at)), sizeof(gmt));
iCstrip(gmt);
/* broadcast remove msg to opers... */
if (type & TKL_NICK)
{
if (!(*parv[3] == 'H'))
{
sendto_snomask(SNO_TKL, "%s removed %s %s (set at %s - reason: %s)",
parv[5], txt, tk->hostmask, gmt, tk->reason);
ircd_log(LOG_TKL, "%s removed %s %s (set at %s - reason: %s)",
parv[5], txt, tk->hostmask, gmt, tk->reason);
}
}
else if (type & TKL_SPAMF)
{
sendto_snomask(SNO_TKL, "%s removed Spamfilter '%s' (set at %s)",
parv[5], tk->reason, gmt);
ircd_log(LOG_TKL, "%s removed Spamfilter '%s' (set at %s)",
parv[5], tk->reason, gmt);
} else {
sendto_snomask(SNO_TKL,
"%s removed %s %s@%s (set at %s - reason: %s)",
parv[5], txt, tk->usermask,
tk->hostmask, gmt, tk->reason);
ircd_log(LOG_TKL, "%s removed %s %s@%s (set at %s - reason: %s)",
parv[5], txt, tk->usermask, tk->hostmask,
gmt, tk->reason);
}
if (type & TKL_SHUN)
tkl_check_local_remove_shun(tk);
RunHook5(HOOKTYPE_TKL_DEL, cptr, sptr, tk, parc, parv);
tkl_del_line(tk);
if (type & TKL_GLOBAL)
{
if (parc < 8)
sendto_server(cptr, 0, 0,
":%s TKL %s %s %s %s %s",
sptr->name, parv[1], parv[2], parv[3], parv[4], parv[5]);
else
sendto_server(cptr, 0, 0,
":%s TKL %s %s %s %s %s %s %s :%s",
sptr->name, parv[1], parv[2], parv[3], parv[4], parv[5],
parv[6], parv[7], reason);
}
break;
}
}
}
break;
case '?':
if (ValidatePermissionsForPath("server:info",sptr,NULL,NULL,NULL))
tkl_stats(sptr,0,NULL);
}
return 0;
}
/* execute_ban_action, a tkl helper. (Syzop/2003)
* PARAMETERS:
* sptr: the client which is affected
* action: type of ban (BAN_ACT*)
* reason: ban reason
* duration: duration of ban in seconds
* WHAT IT DOES:
* This function will shun/kline/gline/zline the user.
* If the action field is 0 (BAN_ACT_KILL) the user is
* just killed (and the time parameter is ignored).
* ASSUMES:
* This function assumes that sptr is locally connected.
* RETURN VALUE:
* -1 in case of block/tempshun, FLUSH_BUFFER in case of
* kill/zline/gline/etc.. (you should NOT read from 'sptr'
* after you got FLUSH_BUFFER!!!)
*/
int _place_host_ban(aClient *sptr, int action, char *reason, long duration)
{
switch(action)
{
case BAN_ACT_TEMPSHUN:
/* We simply mark this connection as shunned and do not add a ban record */
sendto_snomask(SNO_TKL, "Temporary shun added at user %s (%s@%s) [%s]",
sptr->name,
sptr->user ? sptr->user->username : "unknown",
sptr->user ? sptr->user->realhost : GetIP(sptr),
reason);
SetShunned(sptr);
break;
case BAN_ACT_SHUN:
case BAN_ACT_KLINE:
case BAN_ACT_ZLINE:
case BAN_ACT_GLINE:
case BAN_ACT_GZLINE:
{
char hostip[128], mo[100], mo2[100];
char *tkllayer[9] = {
me.name, /*0 server.name */
"+", /*1 +|- */
"?", /*2 type */
"*", /*3 user */
NULL, /*4 host */
NULL,
NULL, /*6 expire_at */
NULL, /*7 set_at */
NULL /*8 reason */
};
strlcpy(hostip, GetIP(sptr), sizeof(hostip));
if (action == BAN_ACT_KLINE)
tkllayer[2] = "k";
else if (action == BAN_ACT_ZLINE)
tkllayer[2] = "z";
else if (action == BAN_ACT_GZLINE)
tkllayer[2] = "Z";
else if (action == BAN_ACT_GLINE)
tkllayer[2] = "G";
else if (action == BAN_ACT_SHUN)
tkllayer[2] = "s";
tkllayer[4] = hostip;
tkllayer[5] = me.name;
if (!duration)
strlcpy(mo, "0", sizeof(mo)); /* perm */
else
ircsnprintf(mo, sizeof(mo), "%li", duration + TStime());
ircsnprintf(mo2, sizeof(mo2), "%li", TStime());
tkllayer[6] = mo;
tkllayer[7] = mo2;
tkllayer[8] = reason;
m_tkl(&me, &me, 9, tkllayer);
if (action == BAN_ACT_SHUN)
{
find_shun(sptr);
return -1;
} else
return find_tkline_match(sptr, 0);
}
case BAN_ACT_KILL:
default:
return exit_client(sptr, sptr, sptr, reason);
}
return -1;
}
/** This function compares two spamfilters ('one' and 'two') and will return
* a 'winner' based on which one has the strongest action.
* If both have equal action then some additional logic is applied simply
* to ensure we (almost) always return the same winner regardless of the
* order of the spamfilters (which may differ between servers).
*/
aTKline *choose_winning_spamfilter(aTKline *one, aTKline *two)
{
int n;
/* First, see if the action field differs... */
if (one->ptr.spamf->action != two->ptr.spamf->action)
{
/* We can simply compare the action. Highest (strongest) wins. */
if (one->ptr.spamf->action > two->ptr.spamf->action)
return one;
else
return two;
}
/* Ok, try comparing the regex then.. */
n = strcmp(one->reason, two->reason);
if (n < 0)
return one;
if (n > 0)
return two;
/* Hmm.. regex is identical. Try the 'reason' field. */
n = strcmp(one->ptr.spamf->tkl_reason, two->ptr.spamf->tkl_reason);
if (n < 0)
return one;
if (n > 0)
return two;
/* Hmm.. 'reason' is identical as well.
* Make a final decision, could still be identical but would be unlikely.
*/
return (one->subtype > two->subtype) ? one : two;
}
/** Checks if 'target' is on the spamfilter exception list.
* RETURNS 1 if found in list, 0 if not.
*/
static int target_is_spamexcept(char *target)
{
SpamExcept *e;
for (e = iConf.spamexcept; e; e = e->next)
{
if (!match(e->name, target))
return 1;
}
return 0;
}
int _dospamfilter_viruschan(aClient *sptr, aTKline *tk, int type)
{
char *xparv[3], chbuf[CHANNELLEN + 16], buf[2048];
aChannel *chptr;
int ret;
snprintf(buf, sizeof(buf), "0,%s", SPAMFILTER_VIRUSCHAN);
xparv[0] = sptr->name;
xparv[1] = buf;
xparv[2] = NULL;
/* RECURSIVE CAUTION in case we ever add blacklisted chans */
spamf_ugly_vchanoverride = 1;
ret = do_cmd(sptr, sptr, "JOIN", 2, xparv);
spamf_ugly_vchanoverride = 0;
if (ret == FLUSH_BUFFER)
return FLUSH_BUFFER; /* don't ask me how we could have died... */
sendnotice(sptr, "You are now restricted to talking in %s: %s",
SPAMFILTER_VIRUSCHAN, unreal_decodespace(tk->ptr.spamf->tkl_reason));
chptr = find_channel(SPAMFILTER_VIRUSCHAN, NULL);
if (chptr)
{
ircsnprintf(chbuf, sizeof(chbuf), "@%s", chptr->chname);
ircsnprintf(buf, sizeof(buf), "[Spamfilter] %s matched filter '%s' [%s] [%s]",
sptr->name, tk->reason, cmdname_by_spamftarget(type),
unreal_decodespace(tk->ptr.spamf->tkl_reason));
sendto_channelprefix_butone(NULL, &me, chptr, PREFIX_OP|PREFIX_ADMIN|PREFIX_OWNER,
":%s NOTICE %s :%s", me.name, chbuf, buf);
}
SetVirus(sptr);
return 0;
}
/** dospamfilter: executes the spamfilter onto the string.
* @param str The text (eg msg text, notice text, part text, quit text, etc
* @param type The spamfilter type (SPAMF_*)
* @param target The target as a text string (can be NULL, eg: for away)
* @param flags Any flags (SPAMFLAG_*)
* @param rettk Pointer to an aTKLline struct, _used for special circumstances only_
* RETURN VALUE:
* 0 if not matched, non-0 if it should be blocked.
* Return value can be FLUSH_BUFFER (-2) which means 'sptr' is
* _NOT_ valid anymore so you should return immediately
* (like from m_message, m_part, m_quit, etc).
*/
int _dospamfilter(aClient *sptr, char *str_in, int type, char *target, int flags, aTKline **rettk)
{
aTKline *tk;
aTKline *winner_tk = NULL;
char *str;
int ret = -1;
#ifdef SPAMFILTER_DETECTSLOW
struct rusage rnow, rprev;
long ms_past;
#endif
if (rettk)
*rettk = NULL; /* initialize to NULL */
if (type == SPAMF_USER)
str = str_in;
else
str = (char *)StripControlCodes(str_in);
/* (note: using sptr->user check here instead of IsPerson()
* due to SPAMF_USER where user isn't marked as client/person yet.
*/
if (!sptr->user || ValidatePermissionsForPath("immune:spamfilter",sptr,NULL,NULL,NULL) || IsULine(sptr))
return 0;
for (tk = tklines[tkl_hash('F')]; tk; tk = tk->next)
{
if (!(tk->subtype & type))
continue;
if ((flags & SPAMFLAG_NOWARN) && (tk->ptr.spamf->action == BAN_ACT_WARN))
continue;
#ifdef SPAMFILTER_DETECTSLOW
memset(&rnow, 0, sizeof(rnow));
memset(&rprev, 0, sizeof(rnow));
getrusage(RUSAGE_SELF, &rprev);
#endif
ret = unreal_match(tk->ptr.spamf->expr, str);
#ifdef SPAMFILTER_DETECTSLOW
getrusage(RUSAGE_SELF, &rnow);
ms_past = ((rnow.ru_utime.tv_sec - rprev.ru_utime.tv_sec) * 1000) +
((rnow.ru_utime.tv_usec - rprev.ru_utime.tv_usec) / 1000);
if ((SPAMFILTER_DETECTSLOW_FATAL > 0) && (ms_past > SPAMFILTER_DETECTSLOW_FATAL))
{
sendto_realops("[Spamfilter] WARNING: Too slow spamfilter detected (took %ld msec to execute) "
"-- spamfilter will be \002REMOVED!\002: %s", ms_past, tk->reason);
tkl_del_line(tk);
return 0; /* Act as if it didn't match, even if it did.. it's gone now anyway.. */
} else
if ((SPAMFILTER_DETECTSLOW_WARN > 0) && (ms_past > SPAMFILTER_DETECTSLOW_WARN))
{
sendto_realops("[Spamfilter] WARNING: SLOW Spamfilter detected (took %ld msec to execute): %s",
ms_past, tk->reason);
}
#endif
if (ret)
{
/* We have a match! */
char buf[1024];
char targetbuf[48];
if (target) {
targetbuf[0] = ' ';
strlcpy(targetbuf+1, target, sizeof(targetbuf)-1); /* cut it off */
} else
targetbuf[0] = '\0';
/* Hold on.. perhaps it's on the exceptions list... */
if (!winner_tk && target && target_is_spamexcept(target))
return 0; /* No problem! */
ircsnprintf(buf, sizeof(buf), "[Spamfilter] %s!%s@%s matches filter '%s': [%s%s: '%s'] [%s]",
sptr->name, sptr->user->username, sptr->user->realhost,
tk->reason,
cmdname_by_spamftarget(type), targetbuf, str,
unreal_decodespace(tk->ptr.spamf->tkl_reason));
sendto_snomask(SNO_SPAMF, "%s", buf);
sendto_server(NULL, 0, 0, ":%s SENDSNO S :%s", me.name, buf);
ircd_log(LOG_SPAMFILTER, "%s", buf);
RunHook6(HOOKTYPE_LOCAL_SPAMFILTER, sptr, str, str_in, type, target, tk);
/* If we should stop after the first match, we end here... */
if (SPAMFILTER_STOP_ON_FIRST_MATCH)
{
winner_tk = tk;
break;
}
/* Otherwise.. we set 'winner_tk' to the spamfilter with the strongest action. */
if (!winner_tk)
winner_tk = tk;
else
winner_tk = choose_winning_spamfilter(tk, winner_tk);
/* and continue.. */
}
}
tk = winner_tk;
if (!tk)
return 0; /* NOMATCH, we are done */
/* Spamfilter matched, take action: */
if (tk->ptr.spamf->action == BAN_ACT_BLOCK)
{
switch(type)
{
case SPAMF_USERMSG:
case SPAMF_USERNOTICE:
sendnotice(sptr, "Message to %s blocked: %s",
target, unreal_decodespace(tk->ptr.spamf->tkl_reason));
break;
case SPAMF_CHANMSG:
case SPAMF_CHANNOTICE:
sendto_one(sptr, ":%s 404 %s %s :Message blocked: %s",
me.name, sptr->name, target,
unreal_decodespace(tk->ptr.spamf->tkl_reason));
break;
case SPAMF_DCC:
sendnotice(sptr, "DCC to %s blocked: %s",
target, unreal_decodespace(tk->ptr.spamf->tkl_reason));
break;
case SPAMF_AWAY:
/* hack to deal with 'after-away-was-set-filters' */
if (sptr->user->away && !strcmp(str_in, sptr->user->away))
{
/* free away & broadcast the unset */
MyFree(sptr->user->away);
sptr->user->away = NULL;
sendto_server(sptr, 0, 0, ":%s AWAY", sptr->name);
}
break;
case SPAMF_TOPIC:
//...
sendnotice(sptr, "Setting of topic on %s to that text is blocked: %s",
target, unreal_decodespace(tk->ptr.spamf->tkl_reason));
break;
default:
break;
}
return -1;
} else
if (tk->ptr.spamf->action == BAN_ACT_WARN)
{
if ((type != SPAMF_USER) && (type != SPAMF_QUIT))
sendto_one(sptr, rpl_str(RPL_SPAMCMDFWD),
me.name, sptr->name, cmdname_by_spamftarget(type),
unreal_decodespace(tk->ptr.spamf->tkl_reason));
return 0;
} else
if (tk->ptr.spamf->action == BAN_ACT_DCCBLOCK)
{
if (type == SPAMF_DCC)
{
sendnotice(sptr, "DCC to %s blocked: %s",
target, unreal_decodespace(tk->ptr.spamf->tkl_reason));
sendnotice(sptr, "*** You have been blocked from sending files, "
"reconnect to regain permission to send files");
sptr->flags |= FLAGS_DCCBLOCK;
}
return -1;
} else
if (tk->ptr.spamf->action == BAN_ACT_VIRUSCHAN)
{
if (IsVirus(sptr)) /* Already tagged */
return 0;
/* There's a race condition for SPAMF_USER, so 'rettk' is used for SPAMF_USER
* when a user is currently connecting and filters are checked:
*/
if (!IsClient(sptr))
{
if (rettk)
*rettk = tk;
return -5;
}
dospamfilter_viruschan(sptr, tk, type);
return -5;
} else
return place_host_ban(sptr, tk->ptr.spamf->action,
unreal_decodespace(tk->ptr.spamf->tkl_reason), tk->ptr.spamf->tkl_duration);
return 0; /* NOTREACHED */
}