2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_rehash.c: Re-reads the configuration file.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "channel.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "ircd.h"
|
|
|
|
#include "s_serv.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "s_conf.h"
|
|
|
|
#include "s_newconf.h"
|
2008-04-03 04:52:01 +02:00
|
|
|
#include "logger.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "send.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "hostmask.h"
|
|
|
|
#include "reject.h"
|
|
|
|
#include "hash.h"
|
|
|
|
#include "cache.h"
|
2016-03-06 21:17:19 +01:00
|
|
|
#include "rb_radixtree.h"
|
2016-02-10 23:57:16 +01:00
|
|
|
#include "sslproc.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-07 08:52:45 +01:00
|
|
|
static const char rehash_desc[] =
|
|
|
|
"Provides the REHASH command to reload configuration and other files";
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void mo_rehash(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
|
|
|
static void me_rehash(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
2016-03-09 08:29:41 +01:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Message rehash_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"REHASH", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_rehash, 0}, {mo_rehash, 0}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 rehash_clist[] = { &rehash_msgtab, NULL };
|
2016-03-09 08:29:41 +01:00
|
|
|
|
2016-03-07 08:52:45 +01:00
|
|
|
DECLARE_MODULE_AV2(rehash, NULL, NULL, rehash_clist, NULL, NULL, NULL, NULL, rehash_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
struct hash_commands
|
|
|
|
{
|
|
|
|
const char *cmd;
|
|
|
|
void (*handler) (struct Client * source_p);
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_bans_loc(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is rehashing bans",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-23 14:52:32 +01:00
|
|
|
rehash_bans();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_dns(struct Client *source_p)
|
|
|
|
{
|
2014-03-03 05:25:47 +01:00
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is rehashing DNS",
|
2007-01-25 07:40:21 +01:00
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-09 10:46:04 +01:00
|
|
|
reload_nameservers();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-02-10 23:57:16 +01:00
|
|
|
static void
|
|
|
|
rehash_ssld(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is restarting ssld",
|
|
|
|
get_oper_name(source_p));
|
|
|
|
|
|
|
|
restart_ssld();
|
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
static void
|
|
|
|
rehash_motd(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s is forcing re-reading of MOTD file",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-20 05:24:50 +02:00
|
|
|
cache_user_motd();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_omotd(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s is forcing re-reading of OPER MOTD file",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
free_cachefile(oper_motd);
|
2016-03-25 00:45:28 +01:00
|
|
|
oper_motd = cache_file(ircd_paths[IRCD_PATH_IRCD_OMOTD], "opers.motd", 0);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_tklines(struct Client *source_p)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *ptr, *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp klines",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
for(i = 0; i < LAST_TEMP_TYPE; i++)
|
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, temp_klines[i].head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
aconf = ptr->data;
|
|
|
|
|
|
|
|
delete_one_address_conf(aconf->host, aconf);
|
2008-04-01 22:54:08 +02:00
|
|
|
rb_dlinkDestroy(ptr, &temp_klines[i]);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_tdlines(struct Client *source_p)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *ptr, *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp dlines",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
for(i = 0; i < LAST_TEMP_TYPE; i++)
|
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, temp_dlines[i].head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
aconf = ptr->data;
|
|
|
|
|
|
|
|
delete_one_address_conf(aconf->host, aconf);
|
2008-04-01 22:54:08 +02:00
|
|
|
rb_dlinkDestroy(ptr, &temp_dlines[i]);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_txlines(struct Client *source_p)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *ptr;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp xlines",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
aconf = ptr->data;
|
|
|
|
|
2010-03-05 00:37:56 +01:00
|
|
|
if(!aconf->hold || aconf->lifetime)
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
free_conf(aconf);
|
2008-04-01 22:54:08 +02:00
|
|
|
rb_dlinkDestroy(ptr, &xline_conf_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_tresvs(struct Client *source_p)
|
|
|
|
{
|
|
|
|
struct ConfItem *aconf;
|
2016-03-23 14:32:22 +01:00
|
|
|
rb_radixtree_iteration_state iter;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *ptr;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp resvs",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
RB_RADIXTREE_FOREACH(aconf, &iter, resv_tree)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2010-03-05 00:37:56 +01:00
|
|
|
if(!aconf->hold || aconf->lifetime)
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
2016-03-06 21:17:19 +01:00
|
|
|
rb_radixtree_delete(resv_tree, aconf->host);
|
2007-01-25 07:40:21 +01:00
|
|
|
free_conf(aconf);
|
|
|
|
}
|
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
aconf = ptr->data;
|
|
|
|
|
2010-03-05 00:37:56 +01:00
|
|
|
if(!aconf->hold || aconf->lifetime)
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
free_conf(aconf);
|
2008-04-01 22:54:08 +02:00
|
|
|
rb_dlinkDestroy(ptr, &resv_conf_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_rejectcache(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing reject cache",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
flush_reject();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-03-07 01:49:09 +01:00
|
|
|
static void
|
|
|
|
rehash_throttles(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing throttles",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2009-03-07 01:49:09 +01:00
|
|
|
flush_throttle();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
static void
|
|
|
|
rehash_help(struct Client *source_p)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
2014-03-03 05:25:47 +01:00
|
|
|
"%s is forcing re-reading of HELP files",
|
2007-01-25 07:40:21 +01:00
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
load_help();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rehash_nickdelay(struct Client *source_p)
|
|
|
|
{
|
|
|
|
struct nd_entry *nd;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *ptr;
|
|
|
|
rb_dlink_node *safe_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s is clearing the nick delay table",
|
|
|
|
get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:18:48 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, safe_ptr, nd_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
nd = ptr->data;
|
2014-03-03 05:25:47 +01:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
free_nd_entry(nd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
static struct hash_commands rehash_commands[] =
|
|
|
|
{
|
|
|
|
{"BANS", rehash_bans_loc },
|
|
|
|
{"DNS", rehash_dns },
|
2016-02-10 23:57:16 +01:00
|
|
|
{"SSLD", rehash_ssld },
|
2007-01-25 07:40:21 +01:00
|
|
|
{"MOTD", rehash_motd },
|
|
|
|
{"OMOTD", rehash_omotd },
|
|
|
|
{"TKLINES", rehash_tklines },
|
|
|
|
{"TDLINES", rehash_tdlines },
|
|
|
|
{"TXLINES", rehash_txlines },
|
|
|
|
{"TRESVS", rehash_tresvs },
|
|
|
|
{"REJECTCACHE", rehash_rejectcache },
|
2009-03-07 01:49:09 +01:00
|
|
|
{"THROTTLES", rehash_throttles },
|
2007-01-25 07:40:21 +01:00
|
|
|
{"HELP", rehash_help },
|
|
|
|
{"NICKDELAY", rehash_nickdelay },
|
|
|
|
{NULL, NULL }
|
|
|
|
};
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_rehash(struct Client *source_p, const char *type)
|
|
|
|
{
|
|
|
|
if (type != NULL)
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
char cmdbuf[100];
|
|
|
|
|
|
|
|
for (x = 0; rehash_commands[x].cmd != NULL && rehash_commands[x].handler != NULL;
|
|
|
|
x++)
|
|
|
|
{
|
|
|
|
if(irccmp(type, rehash_commands[x].cmd) == 0)
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(RPL_REHASHING), me.name,
|
|
|
|
source_p->name, rehash_commands[x].cmd);
|
|
|
|
ilog(L_MAIN, "REHASH %s From %s[%s]", type,
|
|
|
|
get_oper_name(source_p), source_p->sockhost);
|
2009-03-07 16:57:58 +01:00
|
|
|
rehash_commands[x].handler(source_p);
|
|
|
|
remote_rehash_oper_p = NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We are still here..we didn't match */
|
|
|
|
cmdbuf[0] = '\0';
|
|
|
|
for (x = 0; rehash_commands[x].cmd != NULL && rehash_commands[x].handler != NULL;
|
|
|
|
x++)
|
|
|
|
{
|
2008-04-20 06:44:04 +02:00
|
|
|
rb_strlcat(cmdbuf, " ", sizeof(cmdbuf));
|
|
|
|
rb_strlcat(cmdbuf, rehash_commands[x].cmd, sizeof(cmdbuf));
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2007-01-25 08:23:01 +01:00
|
|
|
sendto_one_notice(source_p, ":rehash one of:%s", cmdbuf);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(RPL_REHASHING), me.name, source_p->name,
|
|
|
|
ConfigFileEntry.configfile);
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"%s is rehashing server config file", get_oper_name(source_p));
|
2009-03-07 16:57:58 +01:00
|
|
|
if (!MyConnect(source_p))
|
|
|
|
remote_rehash_oper_p = source_p;
|
2007-01-25 07:40:21 +01:00
|
|
|
ilog(L_MAIN, "REHASH From %s[%s]", get_oper_name(source_p),
|
|
|
|
source_p->sockhost);
|
|
|
|
rehash(0);
|
2009-03-07 16:57:58 +01:00
|
|
|
remote_rehash_oper_p = NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mo_rehash - REHASH message handler
|
|
|
|
*
|
|
|
|
* parv[1] = rehash type or destination
|
|
|
|
* parv[2] = destination
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-02-11 03:54:17 +01:00
|
|
|
mo_rehash(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
const char *type = NULL, *target_server = NULL;
|
|
|
|
|
|
|
|
if(!IsOperRehash(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS),
|
|
|
|
me.name, source_p->name, "rehash");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (parc > 2)
|
|
|
|
type = parv[1], target_server = parv[2];
|
|
|
|
else if (parc > 1 && (strchr(parv[1], '.') || strchr(parv[1], '?') || strchr(parv[1], '*')))
|
|
|
|
type = NULL, target_server = parv[1];
|
|
|
|
else if (parc > 1)
|
|
|
|
type = parv[1], target_server = NULL;
|
|
|
|
else
|
|
|
|
type = NULL, target_server = NULL;
|
|
|
|
|
|
|
|
if (target_server != NULL)
|
|
|
|
{
|
|
|
|
if(!IsOperRemoteBan(source_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS),
|
|
|
|
me.name, source_p->name, "remoteban");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
sendto_match_servs(source_p, target_server,
|
|
|
|
CAP_ENCAP, NOCAPS,
|
|
|
|
"ENCAP %s REHASH %s",
|
|
|
|
target_server, type != NULL ? type : "");
|
|
|
|
if (match(target_server, me.name) == 0)
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
do_rehash(source_p, type);
|
|
|
|
}
|
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-02-11 03:54:17 +01:00
|
|
|
me_rehash(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
if (!IsPerson(source_p))
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if (!find_shared_conf(source_p->username, source_p->host,
|
2007-11-20 13:36:55 +01:00
|
|
|
source_p->servptr->name, SHARED_REHASH))
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
do_rehash(source_p, parc > 1 ? parv[1] : NULL);
|
|
|
|
}
|