]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_rehash.c
strip_colour(): strip ASCII 29 (mIRC 7 italics).
[irc/rqf/shadowircd.git] / modules / m_rehash.c
index 60d5a187adbffc0f086f050cd3400e332f3dd707..80333d1256205b4b4feb6417e3a8da511b29c045 100644 (file)
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
  *  USA
  *
- *  $Id: m_rehash.c 3161 2007-01-25 07:23:01Z nenolod $
  */
 
 #include "stdinc.h"
 #include "client.h"
 #include "channel.h"
 #include "common.h"
-#include "irc_string.h"
+#include "match.h"
 #include "ircd.h"
 #include "s_serv.h"
 #include "numeric.h"
@@ -67,6 +66,8 @@ rehash_bans_loc(struct Client *source_p)
 {
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is rehashing bans",
                                get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        rehash_bans(0);
 }
@@ -76,6 +77,8 @@ rehash_dns(struct Client *source_p)
 {
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is rehashing DNS", 
                             get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        /* reread /etc/resolv.conf and reopen res socket */
        restart_resolver();
@@ -87,9 +90,10 @@ 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));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
-       free_cachefile(user_motd);
-       user_motd = cache_file(MPATH, "ircd.motd", 0);
+       cache_user_motd();
 }
 
 static void
@@ -98,6 +102,8 @@ 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));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        free_cachefile(oper_motd);
        oper_motd = cache_file(OPATH, "opers.motd", 0);
@@ -112,6 +118,8 @@ rehash_tklines(struct Client *source_p)
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp klines",
                                get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        for(i = 0; i < LAST_TEMP_TYPE; i++)
        {
@@ -134,6 +142,8 @@ rehash_tdlines(struct Client *source_p)
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp dlines",
                                get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        for(i = 0; i < LAST_TEMP_TYPE; i++)
        {
@@ -156,12 +166,14 @@ rehash_txlines(struct Client *source_p)
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp xlines",
                                get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        RB_DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
        {
                aconf = ptr->data;
 
-               if(!aconf->hold)
+               if(!aconf->hold || aconf->lifetime)
                        continue;
 
                free_conf(aconf);
@@ -179,12 +191,14 @@ rehash_tresvs(struct Client *source_p)
 
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing temp resvs",
                                get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        HASH_WALK_SAFE(i, R_MAX, ptr, next_ptr, resvTable)
        {
                aconf = ptr->data;
 
-               if(!aconf->hold)
+               if(!aconf->hold || aconf->lifetime)
                        continue;
 
                free_conf(aconf);
@@ -196,7 +210,7 @@ rehash_tresvs(struct Client *source_p)
        {
                aconf = ptr->data;
 
-               if(!aconf->hold)
+               if(!aconf->hold || aconf->lifetime)
                        continue;
 
                free_conf(aconf);
@@ -209,16 +223,31 @@ rehash_rejectcache(struct Client *source_p)
 {
        sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing reject cache",
                                get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
        flush_reject();
 
 }
 
+static void
+rehash_throttles(struct Client *source_p)
+{
+       sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s is clearing throttles",
+                               get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
+       flush_throttle();
+
+}
+
 static void
 rehash_help(struct Client *source_p)
 {
        sendto_realops_snomask(SNO_GENERAL, L_ALL,
                             "%s is forcing re-reading of HELP files", 
                             get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
        load_help();
 }
 
@@ -232,6 +261,8 @@ rehash_nickdelay(struct Client *source_p)
        sendto_realops_snomask(SNO_GENERAL, L_ALL,
                             "%s is clearing the nick delay table",
                             get_oper_name(source_p));
+       if (!MyConnect(source_p))
+               remote_rehash_oper_p = source_p;
 
        RB_DLINK_FOREACH_SAFE(ptr, safe_ptr, nd_list.head)
        {
@@ -253,6 +284,7 @@ static struct hash_commands rehash_commands[] =
        {"TXLINES",     rehash_txlines          },
        {"TRESVS",      rehash_tresvs           },
        {"REJECTCACHE", rehash_rejectcache      },
+       {"THROTTLES",   rehash_throttles        },
        {"HELP",        rehash_help             },
        {"NICKDELAY",   rehash_nickdelay        },
        {NULL,          NULL                    }
@@ -274,9 +306,10 @@ do_rehash(struct Client *source_p, const char *type)
                        {
                                sendto_one(source_p, form_str(RPL_REHASHING), me.name,
                                           source_p->name, rehash_commands[x].cmd);
-                               rehash_commands[x].handler(source_p);
                                ilog(L_MAIN, "REHASH %s From %s[%s]", type,
                                     get_oper_name(source_p), source_p->sockhost);
+                               rehash_commands[x].handler(source_p);
+                               remote_rehash_oper_p = NULL;
                                return;
                        }
                }
@@ -286,8 +319,8 @@ do_rehash(struct Client *source_p, const char *type)
                for (x = 0; rehash_commands[x].cmd != NULL && rehash_commands[x].handler != NULL;
                     x++)
                {
-                       strlcat(cmdbuf, " ", sizeof(cmdbuf));
-                       strlcat(cmdbuf, rehash_commands[x].cmd, sizeof(cmdbuf));
+                       rb_strlcat(cmdbuf, " ", sizeof(cmdbuf));
+                       rb_strlcat(cmdbuf, rehash_commands[x].cmd, sizeof(cmdbuf));
                }
                sendto_one_notice(source_p, ":rehash one of:%s", cmdbuf);
        }
@@ -297,9 +330,12 @@ do_rehash(struct Client *source_p, const char *type)
                           ConfigFileEntry.configfile);
                sendto_realops_snomask(SNO_GENERAL, L_ALL,
                                     "%s is rehashing server config file", get_oper_name(source_p));
+               if (!MyConnect(source_p))
+                       remote_rehash_oper_p = source_p;
                ilog(L_MAIN, "REHASH From %s[%s]", get_oper_name(source_p),
                     source_p->sockhost);
                rehash(0);
+               remote_rehash_oper_p = NULL;
        }
 }