2007-01-25 07:40:21 +01:00
|
|
|
/* modules/m_xline.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002-2003 Lee Hardy <lee@leeh.co.uk>
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* 1.Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2.Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3.The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2007-01-25 08:23:01 +01:00
|
|
|
* $Id: m_xline.c 3161 2007-01-25 07:23:01Z nenolod $
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "send.h"
|
|
|
|
#include "channel.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "class.h"
|
|
|
|
#include "ircd.h"
|
|
|
|
#include "numeric.h"
|
2008-04-03 04:52:01 +02:00
|
|
|
#include "logger.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "s_serv.h"
|
|
|
|
#include "whowas.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "hash.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "s_conf.h"
|
|
|
|
#include "s_newconf.h"
|
2007-12-08 21:54:51 +01:00
|
|
|
#include "reject.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
static int mo_xline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
|
|
|
|
static int ms_xline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
|
|
|
|
static int me_xline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
|
|
|
|
static int mo_unxline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
|
|
|
|
static int ms_unxline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
|
|
|
|
static int me_unxline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
|
|
|
|
|
|
|
|
struct Message xline_msgtab = {
|
|
|
|
"XLINE", 0, 0, 0, MFLG_SLOW,
|
|
|
|
{mg_unreg, mg_not_oper, {ms_xline, 5}, {ms_xline, 5}, {me_xline, 5}, {mo_xline, 3}}
|
|
|
|
};
|
|
|
|
struct Message unxline_msgtab = {
|
|
|
|
"UNXLINE", 0, 0, 0, MFLG_SLOW,
|
|
|
|
{mg_unreg, mg_not_oper, {ms_unxline, 3}, {ms_unxline, 3}, {me_unxline, 2}, {mo_unxline, 2}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 xline_clist[] = { &xline_msgtab, &unxline_msgtab, NULL };
|
2007-01-25 08:23:01 +01:00
|
|
|
DECLARE_MODULE_AV1(xline, NULL, NULL, xline_clist, NULL, NULL, "$Revision: 3161 $");
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
static int valid_xline(struct Client *, const char *, const char *);
|
|
|
|
static void apply_xline(struct Client *client_p, const char *name,
|
|
|
|
const char *reason, int temp_time);
|
|
|
|
static void write_xline(struct Client *source_p, struct ConfItem *aconf);
|
|
|
|
static void propagate_xline(struct Client *source_p, const char *target,
|
|
|
|
int temp_time, const char *name,
|
|
|
|
const char *type, const char *reason);
|
|
|
|
static void cluster_xline(struct Client *source_p, int temp_time,
|
|
|
|
const char *name, const char *reason);
|
|
|
|
|
|
|
|
static void handle_remote_xline(struct Client *source_p, int temp_time,
|
|
|
|
const char *name, const char *reason);
|
|
|
|
static void handle_remote_unxline(struct Client *source_p, const char *name);
|
|
|
|
|
2007-11-30 23:35:14 +01:00
|
|
|
static void remove_xline(struct Client *source_p, const char *name);
|
2007-11-30 14:10:24 +01:00
|
|
|
static int remove_xline_from_file(struct Client *source_p, const char *gecos);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* m_xline()
|
|
|
|
*
|
|
|
|
* parv[1] - thing to xline
|
|
|
|
* parv[2] - optional type/reason
|
|
|
|
* parv[3] - reason
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
mo_xline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
|
|
|
const char *name;
|
|
|
|
const char *reason;
|
|
|
|
const char *target_server = NULL;
|
|
|
|
int temp_time;
|
|
|
|
int loc = 1;
|
|
|
|
|
|
|
|
if(!IsOperXline(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS),
|
|
|
|
me.name, source_p->name, "xline");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((temp_time = valid_temp_time(parv[loc])) >= 0)
|
|
|
|
loc++;
|
|
|
|
/* we just set temp_time to -1! */
|
|
|
|
else
|
|
|
|
temp_time = 0;
|
|
|
|
|
|
|
|
name = parv[loc];
|
|
|
|
loc++;
|
|
|
|
|
|
|
|
/* XLINE <gecos> ON <server> :<reason> */
|
|
|
|
if(parc >= loc+2 && !irccmp(parv[loc], "ON"))
|
|
|
|
{
|
|
|
|
if(!IsOperRemoteBan(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS),
|
|
|
|
me.name, source_p->name, "remoteban");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
target_server = parv[loc+1];
|
|
|
|
loc += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parc <= loc || EmptyString(parv[loc]))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
|
|
|
|
me.name, source_p->name, "XLINE");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
reason = parv[loc];
|
|
|
|
|
|
|
|
if(target_server != NULL)
|
|
|
|
{
|
|
|
|
propagate_xline(source_p, target_server, temp_time,
|
|
|
|
name, "2", reason);
|
|
|
|
|
|
|
|
if(!match(target_server, me.name))
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-01 22:18:48 +02:00
|
|
|
else if(rb_dlink_list_length(&cluster_conf_list) > 0)
|
2007-01-25 07:40:21 +01:00
|
|
|
cluster_xline(source_p, temp_time, name, reason);
|
|
|
|
|
2007-11-25 18:18:07 +01:00
|
|
|
if((aconf = find_xline_mask(name)) != NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_one(source_p, ":%s NOTICE %s :[%s] already X-Lined by [%s] - %s",
|
2007-11-25 18:19:26 +01:00
|
|
|
me.name, source_p->name, name, aconf->name, aconf->passwd);
|
2007-01-25 07:40:21 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!valid_xline(source_p, name, reason))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
apply_xline(source_p, name, reason, temp_time);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ms_xline()
|
|
|
|
*
|
|
|
|
* handles a remote xline
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
ms_xline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
/* parv[0] parv[1] parv[2] parv[3] parv[4]
|
|
|
|
* oper target serv xline type reason
|
|
|
|
*/
|
|
|
|
propagate_xline(source_p, parv[1], 0, parv[2], parv[3], parv[4]);
|
|
|
|
|
|
|
|
if(!IsPerson(source_p))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* destined for me? */
|
|
|
|
if(!match(parv[1], me.name))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
handle_remote_xline(source_p, 0, parv[2], parv[4]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
me_xline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
/* time name type :reason */
|
|
|
|
if(!IsPerson(source_p))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
handle_remote_xline(source_p, atoi(parv[1]), parv[2], parv[4]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_remote_xline(struct Client *source_p, int temp_time,
|
|
|
|
const char *name, const char *reason)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
|
|
|
|
|
|
|
if(!find_shared_conf(source_p->username, source_p->host,
|
2007-11-20 13:36:55 +01:00
|
|
|
source_p->servptr->name,
|
2007-01-25 07:40:21 +01:00
|
|
|
(temp_time > 0) ? SHARED_TXLINE : SHARED_PXLINE))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(!valid_xline(source_p, name, reason))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* already xlined */
|
2007-11-25 18:18:07 +01:00
|
|
|
if((aconf = find_xline_mask(name)) != NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2007-01-25 08:23:01 +01:00
|
|
|
sendto_one_notice(source_p, ":[%s] already X-Lined by [%s] - %s", name, aconf->name, aconf->passwd);
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
apply_xline(source_p, name, reason, temp_time);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* valid_xline()
|
|
|
|
*
|
|
|
|
* inputs - client xlining, gecos, reason and whether to warn
|
|
|
|
* outputs -
|
|
|
|
* side effects - checks the xline for validity, erroring if needed
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
valid_xline(struct Client *source_p, const char *gecos,
|
|
|
|
const char *reason)
|
|
|
|
{
|
|
|
|
if(EmptyString(reason))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
|
|
|
|
get_id(&me, source_p),
|
|
|
|
get_id(source_p, source_p), "XLINE");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(strchr(reason, ':') != NULL)
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p,
|
|
|
|
":Invalid character ':' in comment");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(strchr(reason, '"'))
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p,
|
|
|
|
":Invalid character '\"' in comment");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!valid_wild_card_simple(gecos))
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p,
|
|
|
|
":Please include at least %d non-wildcard "
|
|
|
|
"characters with the xline",
|
|
|
|
ConfigFileEntry.min_nonwildcard_simple);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
apply_xline(struct Client *source_p, const char *name, const char *reason,
|
|
|
|
int temp_time)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
|
|
|
|
|
|
|
aconf = make_conf();
|
|
|
|
aconf->status = CONF_XLINE;
|
|
|
|
|
|
|
|
if(strstr(name, "\\s"))
|
|
|
|
{
|
|
|
|
char *tmp = LOCAL_COPY(name);
|
|
|
|
char *orig = tmp;
|
|
|
|
char *new = tmp;
|
|
|
|
|
|
|
|
while(*orig)
|
|
|
|
{
|
|
|
|
if(*orig == '\\' && *(orig + 1) != '\0')
|
|
|
|
{
|
|
|
|
if(*(orig + 1) == 's')
|
|
|
|
{
|
|
|
|
*new++ = ' ';
|
|
|
|
orig += 2;
|
|
|
|
}
|
|
|
|
/* otherwise skip that and the escaped
|
|
|
|
* character after it, so we dont mistake
|
|
|
|
* \\s as \s --fl
|
|
|
|
*/
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*new++ = *orig++;
|
|
|
|
*new++ = *orig++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*new++ = *orig++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*new = '\0';
|
2008-04-02 01:26:34 +02:00
|
|
|
aconf->name = rb_strdup(tmp);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
2008-04-02 01:26:34 +02:00
|
|
|
aconf->name = rb_strdup(name);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-02 01:26:34 +02:00
|
|
|
aconf->passwd = rb_strdup(reason);
|
2007-01-25 07:40:21 +01:00
|
|
|
collapse(aconf->name);
|
|
|
|
|
|
|
|
if(temp_time > 0)
|
|
|
|
{
|
2008-04-02 01:53:20 +02:00
|
|
|
aconf->hold = rb_current_time() + temp_time;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s added temporary %d min. X-Line for [%s] [%s]",
|
|
|
|
get_oper_name(source_p), temp_time / 60,
|
|
|
|
aconf->name, reason);
|
|
|
|
ilog(L_KLINE, "X %s %d %s %s",
|
|
|
|
get_oper_name(source_p), temp_time / 60,
|
|
|
|
name, reason);
|
|
|
|
sendto_one_notice(source_p, ":Added temporary %d min. X-Line [%s]",
|
|
|
|
temp_time / 60, aconf->name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s added X-Line for [%s] [%s]",
|
|
|
|
get_oper_name(source_p),
|
|
|
|
aconf->name, aconf->passwd);
|
|
|
|
sendto_one_notice(source_p, ":Added X-Line for [%s] [%s]",
|
|
|
|
aconf->name, aconf->passwd);
|
|
|
|
write_xline(source_p, aconf);
|
|
|
|
ilog(L_KLINE, "X %s 0 %s %s",
|
|
|
|
get_oper_name(source_p), name, reason);
|
|
|
|
}
|
|
|
|
|
2008-04-02 01:44:26 +02:00
|
|
|
rb_dlinkAddAlloc(aconf, &xline_conf_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
check_xlines();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write_xline()
|
|
|
|
*
|
|
|
|
* inputs - gecos, reason, xline type
|
|
|
|
* outputs - writes an xline to the config
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
write_xline(struct Client *source_p, struct ConfItem *aconf)
|
|
|
|
{
|
|
|
|
char buffer[BUFSIZE * 2];
|
|
|
|
FILE *out;
|
|
|
|
const char *filename;
|
|
|
|
|
|
|
|
filename = ConfigFileEntry.xlinefile;
|
|
|
|
|
|
|
|
if((out = fopen(filename, "a")) == NULL)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "*** Problem opening %s ", filename);
|
|
|
|
sendto_one_notice(source_p, ":*** Problem opening file, xline added temporarily only");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-01 22:21:53 +02:00
|
|
|
rb_sprintf(buffer, "\"%s\",\"0\",\"%s\",\"%s\",%ld\n",
|
2007-01-25 07:40:21 +01:00
|
|
|
aconf->name, aconf->passwd,
|
2008-04-02 17:47:04 +02:00
|
|
|
get_oper_name(source_p), (long) rb_current_time());
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(fputs(buffer, out) == -1)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "*** Problem writing to %s", filename);
|
|
|
|
sendto_one_notice(source_p, ":*** Problem writing to file, xline added temporarily only");
|
|
|
|
fclose(out);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(fclose(out))
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "*** Problem writing to %s", filename);
|
|
|
|
sendto_one_notice(source_p, ":*** Problem writing to file, xline added temporarily only");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
propagate_xline(struct Client *source_p, const char *target,
|
|
|
|
int temp_time, const char *name, const char *type,
|
|
|
|
const char *reason)
|
|
|
|
{
|
|
|
|
if(!temp_time)
|
|
|
|
{
|
|
|
|
sendto_match_servs(source_p, target, CAP_CLUSTER, NOCAPS,
|
|
|
|
"XLINE %s %s %s :%s",
|
|
|
|
target, name, type, reason);
|
|
|
|
sendto_match_servs(source_p, target, CAP_ENCAP, CAP_CLUSTER,
|
|
|
|
"ENCAP %s XLINE %d %s 2 :%s",
|
|
|
|
target, temp_time, name, reason);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sendto_match_servs(source_p, target, CAP_ENCAP, NOCAPS,
|
|
|
|
"ENCAP %s XLINE %d %s %s :%s",
|
|
|
|
target, temp_time, name, type, reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cluster_xline(struct Client *source_p, int temp_time, const char *name,
|
|
|
|
const char *reason)
|
|
|
|
{
|
|
|
|
struct remote_conf *shared_p;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:18:48 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, cluster_conf_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
shared_p = ptr->data;
|
|
|
|
|
|
|
|
/* old protocol cant handle temps, and we dont really want
|
|
|
|
* to convert them to perm.. --fl
|
|
|
|
*/
|
|
|
|
if(!temp_time)
|
|
|
|
{
|
|
|
|
if(!(shared_p->flags & SHARED_PXLINE))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sendto_match_servs(source_p, shared_p->server, CAP_CLUSTER, NOCAPS,
|
|
|
|
"XLINE %s %s 2 :%s",
|
|
|
|
shared_p->server, name, reason);
|
|
|
|
sendto_match_servs(source_p, shared_p->server, CAP_ENCAP, CAP_CLUSTER,
|
|
|
|
"ENCAP %s XLINE 0 %s 2 :%s",
|
|
|
|
shared_p->server, name, reason);
|
|
|
|
}
|
|
|
|
else if(shared_p->flags & SHARED_TXLINE)
|
|
|
|
sendto_match_servs(source_p, shared_p->server, CAP_ENCAP, NOCAPS,
|
|
|
|
"ENCAP %s XLINE %d %s 2 :%s",
|
|
|
|
shared_p->server, temp_time, name, reason);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mo_unxline()
|
|
|
|
*
|
|
|
|
* parv[1] - thing to unxline
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
mo_unxline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
if(!IsOperXline(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS),
|
|
|
|
me.name, source_p->name, "xline");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(parc == 4 && !(irccmp(parv[2], "ON")))
|
|
|
|
{
|
|
|
|
if(!IsOperRemoteBan(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS),
|
|
|
|
me.name, source_p->name, "remoteban");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
propagate_generic(source_p, "UNXLINE", parv[3], CAP_CLUSTER,
|
|
|
|
"%s", parv[1]);
|
|
|
|
|
|
|
|
if(match(parv[3], me.name) == 0)
|
|
|
|
return 0;
|
|
|
|
}
|
2008-04-01 22:18:48 +02:00
|
|
|
else if(rb_dlink_list_length(&cluster_conf_list))
|
2007-01-25 07:40:21 +01:00
|
|
|
cluster_generic(source_p, "UNXLINE", SHARED_UNXLINE, CAP_CLUSTER,
|
|
|
|
"%s", parv[1]);
|
|
|
|
|
|
|
|
remove_xline(source_p, parv[1]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ms_unxline()
|
|
|
|
*
|
|
|
|
* handles a remote unxline
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
ms_unxline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
/* parv[0] parv[1] parv[2]
|
|
|
|
* oper target server gecos
|
|
|
|
*/
|
|
|
|
propagate_generic(source_p, "UNXLINE", parv[1], CAP_CLUSTER,
|
|
|
|
"%s", parv[2]);
|
|
|
|
|
|
|
|
if(!match(parv[1], me.name))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(!IsPerson(source_p))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
handle_remote_unxline(source_p, parv[2]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
me_unxline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
/* name */
|
|
|
|
if(!IsPerson(source_p))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
handle_remote_unxline(source_p, parv[1]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_remote_unxline(struct Client *source_p, const char *name)
|
|
|
|
{
|
|
|
|
if(!find_shared_conf(source_p->username, source_p->host,
|
2007-11-20 13:36:55 +01:00
|
|
|
source_p->servptr->name, SHARED_UNXLINE))
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
remove_xline(source_p, name);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-11-30 23:35:14 +01:00
|
|
|
static void
|
2007-11-30 14:10:24 +01:00
|
|
|
remove_xline(struct Client *source_p, const char *name)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:18:48 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, xline_conf_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
aconf = ptr->data;
|
|
|
|
|
|
|
|
if(!irccmp(aconf->name, name))
|
|
|
|
{
|
2007-11-30 14:10:24 +01:00
|
|
|
if (!aconf->hold)
|
|
|
|
{
|
|
|
|
if (!remove_xline_from_file(source_p, name))
|
2007-11-30 23:35:14 +01:00
|
|
|
return;
|
2007-11-30 14:10:24 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p,
|
|
|
|
":X-Line for [%s] is removed",
|
|
|
|
name);
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s has removed the temporary X-Line for: [%s]",
|
|
|
|
get_oper_name(source_p), name);
|
|
|
|
ilog(L_KLINE, "UX %s %s",
|
|
|
|
get_oper_name(source_p), name);
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2007-12-08 21:54:51 +01:00
|
|
|
remove_reject_mask(aconf->name, NULL);
|
2007-01-25 07:40:21 +01:00
|
|
|
free_conf(aconf);
|
2008-04-01 22:54:08 +02:00
|
|
|
rb_dlinkDestroy(ptr, &xline_conf_list);
|
2007-11-30 23:35:14 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-30 14:10:24 +01:00
|
|
|
sendto_one_notice(source_p, ":No X-Line for %s", name);
|
|
|
|
|
2007-11-30 23:35:14 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2007-11-30 23:35:14 +01:00
|
|
|
/* remove_xline_from_file()
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
|
|
|
* inputs - gecos to remove
|
|
|
|
* outputs -
|
|
|
|
* side effects - removes xline from conf, if exists
|
2007-11-30 14:10:24 +01:00
|
|
|
* - does not touch xline_conf_list
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
2007-11-30 14:10:24 +01:00
|
|
|
static int
|
|
|
|
remove_xline_from_file(struct Client *source_p, const char *huntgecos)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
FILE *in, *out;
|
|
|
|
char buf[BUFSIZE];
|
|
|
|
char buff[BUFSIZE];
|
|
|
|
char temppath[BUFSIZE];
|
|
|
|
const char *filename;
|
|
|
|
const char *gecos;
|
|
|
|
mode_t oldumask;
|
|
|
|
char *p;
|
|
|
|
int error_on_write = 0;
|
|
|
|
int found_xline = 0;
|
|
|
|
|
|
|
|
filename = ConfigFileEntry.xlinefile;
|
2008-04-01 22:21:53 +02:00
|
|
|
rb_snprintf(temppath, sizeof(temppath),
|
2007-01-25 07:40:21 +01:00
|
|
|
"%s.tmp", ConfigFileEntry.xlinefile);
|
|
|
|
|
|
|
|
if((in = fopen(filename, "r")) == NULL)
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p, ":Cannot open %s", filename);
|
2007-11-30 14:10:24 +01:00
|
|
|
return 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
oldumask = umask(0);
|
|
|
|
|
|
|
|
if((out = fopen(temppath, "w")) == NULL)
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p, ":Cannot open %s", temppath);
|
|
|
|
fclose(in);
|
|
|
|
umask(oldumask);
|
2007-11-30 14:10:24 +01:00
|
|
|
return 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
umask(oldumask);
|
|
|
|
|
|
|
|
while (fgets(buf, sizeof(buf), in))
|
|
|
|
{
|
|
|
|
if(error_on_write)
|
|
|
|
{
|
|
|
|
if(temppath != NULL)
|
|
|
|
(void) unlink(temppath);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-04-20 06:40:40 +02:00
|
|
|
rb_strlcpy(buff, buf, sizeof(buff));
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if((p = strchr(buff, '\n')) != NULL)
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
if((*buff == '\0') || (*buff == '#'))
|
|
|
|
{
|
|
|
|
error_on_write = (fputs(buf, out) < 0) ? YES : NO;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((gecos = getfield(buff)) == NULL)
|
|
|
|
{
|
|
|
|
error_on_write = (fputs(buf, out) < 0) ? YES : NO;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* matching.. */
|
|
|
|
if(irccmp(gecos, huntgecos) == 0)
|
|
|
|
found_xline++;
|
|
|
|
else
|
|
|
|
error_on_write = (fputs(buf, out) < 0) ? YES : NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(in);
|
|
|
|
if (fclose(out))
|
|
|
|
error_on_write = YES;
|
|
|
|
|
|
|
|
if(error_on_write)
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p,
|
|
|
|
":Couldn't write temp xline file, aborted");
|
2007-11-30 14:10:24 +01:00
|
|
|
return 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else if(found_xline == 0)
|
|
|
|
{
|
2007-11-30 14:10:24 +01:00
|
|
|
sendto_one_notice(source_p, ":Cannot find X-Line for %s in file", huntgecos);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(temppath != NULL)
|
|
|
|
(void) unlink(temppath);
|
2007-11-30 14:10:24 +01:00
|
|
|
return 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rename(temppath, filename))
|
|
|
|
{
|
|
|
|
sendto_one_notice(source_p, ":Couldn't rename temp file, aborted");
|
2007-11-30 14:10:24 +01:00
|
|
|
return 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sendto_one_notice(source_p, ":X-Line for [%s] is removed", huntgecos);
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s has removed the X-Line for: [%s]",
|
|
|
|
get_oper_name(source_p), huntgecos);
|
|
|
|
ilog(L_KLINE, "UX %s %s", get_oper_name(source_p), huntgecos);
|
2007-11-30 14:10:24 +01:00
|
|
|
|
|
|
|
return 1;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|