Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / m_stats.c
index 9cc561654627950fec9cd501aa5ca1cf3a0c66ba..ca9f39d209bd2da48e4630bd88a38395c9fe04e0 100644 (file)
@@ -90,6 +90,7 @@
 /*
  * XXX - ack!!!
  */
+#include "s_stats.h"
 #include "channel.h"
 #include "class.h"
 #include "client.h"
 #include <stdlib.h>
 #include <string.h>
 
+
 /*
  * m_stats - generic message handler
  *
  */
 int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 {
-  static char Sformat[] = ":%s %d %s Connection SendQ SendM SendKBytes "
-      "RcveM RcveKBytes :Open since";
-  static char Lformat[] = ":%s %d %s %s %u %u %u %u %u :" TIME_T_FMT;
   struct Message *mptr;
   struct Client *acptr;
-  struct Gline* gline;
   struct ConfItem *aconf;
   char stat = parc > 1 ? parv[1][0] : '\0';
+  const char **infotext = statsinfo;
   int i;
 
-/* m_stats is so obnoxiously full of special cases that the different
- * hunt_server() possiblites were becoming very messy. It now uses a
- * switch() so as to be easier to read and update as params change. 
- * -Ghostwolf 
- */
-  switch (stat)
-  {
-      /* open to all, standard # of params */
-    case 'U':
-    case 'u':
-    {
-      if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-
-      /* open to all, varying # of params */
-    case 'k':
-    case 'K':
-    case 'i':
-    case 'I':
-    case 'p':
-    case 'P':
-    {
-      if (parc > 3)
-      {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      else
-      {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      break;
-    }
-
-      /* oper only, varying # of params */
-    case 'l':
-    case 'L':
-    case 'M':
-    {
-      if (parc == 4)
-      {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      else if (parc > 4)
-      {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s %s :%s", 2, parc,
-            parv) != HUNTED_ISME)
-          return 0;
-      }
-      else if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-
-      /* oper only, standard # of params */
-    default:
-    {
-      if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-  }
+  if (hunt_stats(cptr, sptr, parc, parv, stat) != HUNTED_ISME)
+    return 0;
 
   switch (stat)
   {
@@ -256,7 +185,8 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
        * are invisible not being visible to 'foreigners' who use
        * a wild card based search to list it.
        */
-      sendto_one(sptr, Sformat, me.name, RPL_STATSLINKINFO, parv[0]);
+      send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO, "Connection SendQ "
+                "SendM SendKBytes RcveM RcveKBytes :Open since");
       for (i = 0; i <= HighestFd; i++)
       {
         if (!(acptr = LocalClientArray[i]))
@@ -264,11 +194,8 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
         /* Don't return clients when this is a request for `all' */
         if (doall && IsUser(acptr))
           continue;
-        /* Don't show invisible people to unauthorized people when using
-         * wildcards  -- Is this still needed now /stats is oper only ? */
-        if (IsInvisible(acptr) && (doall || wilds) &&
-            !(MyConnect(sptr) && IsOper(sptr)) &&
-            !IsAnOper(acptr) && (acptr != sptr))
+        /* Don't show invisible people to non opers unless they know the nick */
+        if (IsInvisible(acptr) && (doall || wilds) && !IsAnOper(acptr) && (acptr != sptr))
           continue;
         /* Only show the ones that match the given mask - if any */
         if (!doall && wilds && match(name, acptr->name))
@@ -276,10 +203,11 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
         /* Skip all that do not match the specific query */
         if (!(doall || wilds) && 0 != ircd_strcmp(name, acptr->name))
           continue;
-        sendto_one(sptr, Lformat, me.name, RPL_STATSLINKINFO, parv[0],
-                   acptr->name, (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
-                   (int)acptr->sendK, (int)acptr->receiveM, (int)acptr->receiveK,
-                   CurrentTime - acptr->firsttime);
+       send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO,
+                  "%s %u %u %u %u %u :%Tu", (*acptr->name) ? acptr->name : "<unregistered>",
+                  (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
+                  (int)acptr->sendK, (int)acptr->receiveM,
+                  (int)acptr->receiveK, CurrentTime - acptr->firsttime);
       }
       break;
     }
@@ -289,15 +217,11 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       break;
     case 'G':
     case 'g': /* send glines */
-      gline_remove_expired(TStime());
-      for (gline = GlobalGlineList; gline; gline = gline->next) {
-        sendto_one(sptr, rpl_str(RPL_STATSGLINE), me.name,
-                   sptr->name, 'G', gline->name, gline->host,
-                   gline->expire, gline->reason);
-      }
+      gline_stats(sptr);
       break;
     case 'H':
     case 'h':
+      report_configured_links(sptr, CONF_HUB | CONF_LEAF);
       break;
     case 'I':
     case 'i':
@@ -308,14 +232,11 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       int wilds, count;
       char *user, *host, *p;
       int conf_status = (stat == 'k' || stat == 'K') ? CONF_KLINE : CONF_CLIENT;
-      if ((MyUser(sptr) || IsOper(sptr)) && parc < 4)
+      if (parc < 4)
       {
         report_configured_links(sptr, conf_status);
         break;
       }
-      if (parc < 4 || *parv[3] == '\0')
-        return need_more_params(sptr,
-                        (conf_status & CONF_KLINE) ? "STATS K" : "STATS I");
 
       wilds = 0;
       for (p = parv[3]; *p; p++)
@@ -332,13 +253,8 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
           break;
         }
       }
-      if (!(MyConnect(sptr) || IsOper(sptr)))
-      {
-        wilds = 0;
-        count = 3;
-      }
-      else
-        count = 1000;
+
+      count = 1000;
 
       if (conf_status == CONF_CLIENT)
       {
@@ -371,9 +287,10 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
                 (wilds && !mmatch(host, aconf->host) &&
                 (!user || !mmatch(user, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSKLINE), me.name,
-                  sptr->name, 'K', aconf->host, aconf->passwd, aconf->name,
-                  aconf->port, get_conf_class(aconf));
+             send_reply(sptr, RPL_STATSKLINE,
+                        (aconf->status & CONF_KILL) ? 'K' : 'k', aconf->host,
+                        aconf->passwd, aconf->name, aconf->port,
+                        get_conf_class(aconf));
               if (--count == 0)
                 break;
             }
@@ -385,9 +302,8 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
                 (wilds && (!mmatch(host, aconf->host) ||
                 !mmatch(host, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSILINE), me.name,
-                  sptr->name, 'I', aconf->host, aconf->name,
-                  aconf->port, get_conf_class(aconf));
+             send_reply(sptr, RPL_STATSILINE, 'I', aconf->host, aconf->name,
+                        aconf->port, get_conf_class(aconf));
               if (--count == 0)
                 break;
             }
@@ -398,20 +314,20 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     }
     case 'M':
 #if !defined(NDEBUG)
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
-          me.name, parv[0], fda_get_byte_count(), fda_get_block_count());
+      send_reply(sptr, RPL_STATMEMTOT, fda_get_byte_count(),
+                fda_get_block_count());
 #endif
 
 #if 0
 #ifdef MEMSIZESTATS
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
+      sendto_one(sptr, rpl_str(RPL_STATMEMTOT), /* XXX DEAD */
           me.name, parv[0], get_mem_size(), get_alloc_cnt());
 #endif
 #ifdef MEMLEAKSTATS
       report_memleak_stats(sptr, parc, parv);
 #endif
 #if !defined(MEMSIZESTATS) && !defined(MEMLEAKSTATS)
-      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring "
+      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring " /* XXX DEAD */
           "is not enabled on this server", me.name, parv[0]);
 #endif
 #endif /* 0 */
@@ -419,8 +335,8 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     case 'm':
       for (mptr = msgtab; mptr->cmd; mptr++)
         if (mptr->count)
-          sendto_one(sptr, rpl_str(RPL_STATSCOMMANDS),
-              me.name, parv[0], mptr->cmd, mptr->count, mptr->bytes);
+         send_reply(sptr, RPL_STATSCOMMANDS, mptr->cmd, mptr->count,
+                    mptr->bytes);
       break;
     case 'o':
     case 'O':
@@ -431,11 +347,9 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       /*
        * show listener ports
        * show hidden ports to opers, if there are more than 3 parameters,
-       * interpret the fourth parameter as the port number, limit non-local
-       * or non-oper results to 8 ports.
+       * interpret the fourth parameter as the port number.
        */ 
-      show_ports(sptr, IsOper(sptr), (parc > 3) ? atoi(parv[3]) : 0, 
-                 (MyUser(sptr) || IsOper(sptr)) ? 100 : 8);
+      show_ports(sptr, 0, (parc > 3) ? atoi(parv[3]) : 0, 100);
       break;
     case 'R':
     case 'r':
@@ -463,10 +377,9 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       time_t nowr;
 
       nowr = CurrentTime - me.since;
-      sendto_one(sptr, rpl_str(RPL_STATSUPTIME), me.name, parv[0],
-          nowr / 86400, (nowr / 3600) % 24, (nowr / 60) % 60, nowr % 60);
-      sendto_one(sptr, rpl_str(RPL_STATSCONN), me.name, parv[0],
-          max_connection_count, max_client_count);
+      send_reply(sptr, RPL_STATSUPTIME, nowr / 86400, (nowr / 3600) % 24,
+                (nowr / 60) % 60, nowr % 60);
+      send_reply(sptr, RPL_STATSCONN, max_connection_count, max_client_count);
       break;
     }
     case 'W':
@@ -489,9 +402,11 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       break;
     default:
       stat = '*';
+      while (*infotext)
+       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :%s", sptr, *infotext++);
       break;
   }
-  sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, parv[0], stat);
+  send_reply(sptr, RPL_ENDOFSTATS, stat);
   return 0;
 }
 
@@ -520,88 +435,14 @@ int m_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
  */
 int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 {
-  static char Sformat[] = ":%s %d %s Connection SendQ SendM SendKBytes "
-      "RcveM RcveKBytes :Open since";
-  static char Lformat[] = ":%s %d %s %s %u %u %u %u %u :" TIME_T_FMT;
   struct Message *mptr;
   struct Client *acptr;
-  struct Gline* gline;
   struct ConfItem *aconf;
   char stat = parc > 1 ? parv[1][0] : '\0';
   int i;
 
-/* m_stats is so obnoxiously full of special cases that the different
- * hunt_server() possiblites were becoming very messy. It now uses a
- * switch() so as to be easier to read and update as params change. 
- * -Ghostwolf 
- */
-  switch (stat)
-  {
-      /* open to all, standard # of params */
-    case 'U':
-    case 'u':
-    {
-      if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-
-      /* open to all, varying # of params */
-    case 'k':
-    case 'K':
-    case 'i':
-    case 'I':
-    case 'p':
-    case 'P':
-    {
-      if (parc > 3)
-      {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      else
-      {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      break;
-    }
-
-      /* oper only, varying # of params */
-    case 'l':
-    case 'L':
-    case 'M':
-    {
-      if (parc == 4)
-      {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      else if (parc > 4)
-      {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s %s :%s", 2, parc,
-            parv) != HUNTED_ISME)
-          return 0;
-      }
-      else if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-
-      /* oper only, standard # of params */
-    default:
-    {
-      if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-  }
+  if (hunt_stats(cptr, sptr, parc, parv, stat) != HUNTED_ISME)
+    return 0;
 
   switch (stat)
   {
@@ -630,7 +471,8 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
        * are invisible not being visible to 'foreigners' who use
        * a wild card based search to list it.
        */
-      sendto_one(sptr, Sformat, me.name, RPL_STATSLINKINFO, parv[0]);
+      send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO, "Connection SendQ "
+                "SendM SendKBytes RcveM RcveKBytes :Open since");
       for (i = 0; i <= HighestFd; i++)
       {
         if (!(acptr = LocalClientArray[i]))
@@ -639,37 +481,30 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
         if (doall && IsUser(acptr))
           continue;
         /* Don't show invisible people to unauthorized people when using
-         * wildcards  -- Is this still needed now /stats is oper only ? */
-        if (IsInvisible(acptr) && (doall || wilds) &&
-            !(MyConnect(sptr) && IsOper(sptr)) &&
-            !IsAnOper(acptr) && (acptr != sptr))
-          continue;
+         * wildcards  -- Is this still needed now /stats is oper only ? 
+        * Not here, because ms_stats is specifically a remote command, 
+        * thus the check was removed. -Ghostwolf */
         /* Only show the ones that match the given mask - if any */
         if (!doall && wilds && match(name, acptr->name))
           continue;
         /* Skip all that do not match the specific query */
         if (!(doall || wilds) && 0 != ircd_strcmp(name, acptr->name))
           continue;
-        sendto_one(sptr, Lformat, me.name, RPL_STATSLINKINFO, parv[0],
-            acptr->name, (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
-            (int)acptr->sendK, (int)acptr->receiveM, (int)acptr->receiveK,
-            CurrentTime - acptr->firsttime);
+       send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO,
+                  "%s %u %u %u %u %u :%Tu", acptr->name,
+                  (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
+                  (int)acptr->sendK, (int)acptr->receiveM,
+                  (int)acptr->receiveK, CurrentTime - acptr->firsttime);
       }
       break;
     }
     case 'C':
     case 'c':
-      if (IsAnOper(sptr))
-        report_configured_links(sptr, CONF_SERVER);
+      report_configured_links(sptr, CONF_SERVER);
       break;
     case 'G':
     case 'g': /* send glines */
-      gline_remove_expired(TStime());
-      for (gline = GlobalGlineList; gline; gline = gline->next) {
-        sendto_one(sptr, rpl_str(RPL_STATSGLINE), me.name,
-                   sptr->name, 'G', gline->name, gline->host,
-                   gline->expire, gline->reason);
-      }
+      gline_stats(sptr);
       break;
     case 'H':
     case 'h':
@@ -684,7 +519,7 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       int wilds, count;
       char *user, *host, *p;
       int conf_status = (stat == 'k' || stat == 'K') ? CONF_KLINE : CONF_CLIENT;
-      if ((MyUser(sptr) || IsOper(sptr)) && parc < 4)
+      if (IsOper(sptr) && parc < 4)
       {
         report_configured_links(sptr, conf_status);
         break;
@@ -708,7 +543,7 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
           break;
         }
       }
-      if (!(MyConnect(sptr) || IsOper(sptr)))
+      if (!IsOper(sptr))
       {
         wilds = 0;
         count = 3;
@@ -747,9 +582,10 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
                 (wilds && !mmatch(host, aconf->host) &&
                 (!user || !mmatch(user, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSKLINE), me.name,
-                  sptr->name, 'K', aconf->host, aconf->passwd, aconf->name,
-                  aconf->port, get_conf_class(aconf));
+             send_reply(sptr, RPL_STATSKLINE,
+                        (aconf->status & CONF_KILL) ? 'K' : 'k', aconf->host,
+                        aconf->passwd, aconf->name, aconf->port,
+                        get_conf_class(aconf));
               if (--count == 0)
                 break;
             }
@@ -761,9 +597,8 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
                 (wilds && (!mmatch(host, aconf->host) ||
                 !mmatch(host, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSILINE), me.name,
-                  sptr->name, 'I', aconf->host, aconf->name,
-                  aconf->port, get_conf_class(aconf));
+             send_reply(sptr, RPL_STATSILINE, 'I', aconf->host, aconf->name,
+                        aconf->port, get_conf_class(aconf));
               if (--count == 0)
                 break;
             }
@@ -774,20 +609,20 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     }
     case 'M':
 #if !defined(NDEBUG)
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
-          me.name, parv[0], fda_get_byte_count(), fda_get_block_count());
+      send_reply(sptr, RPL_STATMEMTOT, fda_get_byte_count(),
+                fda_get_block_count());
 #endif
 
 #if 0
 #ifdef MEMSIZESTATS
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
+      sendto_one(sptr, rpl_str(RPL_STATMEMTOT), /* XXX DEAD */
           me.name, parv[0], get_mem_size(), get_alloc_cnt());
 #endif
 #ifdef MEMLEAKSTATS
       report_memleak_stats(sptr, parc, parv);
 #endif
 #if !defined(MEMSIZESTATS) && !defined(MEMLEAKSTATS)
-      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring "
+      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring " /* XXX DEAD */
           "is not enabled on this server", me.name, parv[0]);
 #endif
 #endif /* 0 */
@@ -795,8 +630,8 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     case 'm':
       for (mptr = msgtab; mptr->cmd; mptr++)
         if (mptr->count)
-          sendto_one(sptr, rpl_str(RPL_STATSCOMMANDS),
-              me.name, parv[0], mptr->cmd, mptr->count, mptr->bytes);
+         send_reply(sptr, RPL_STATSCOMMANDS, mptr->cmd, mptr->count,
+                    mptr->bytes);
       break;
     case 'o':
     case 'O':
@@ -810,8 +645,7 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
        * interpret the fourth parameter as the port number, limit non-local
        * or non-oper results to 8 ports.
        */ 
-      show_ports(sptr, IsOper(sptr), (parc > 3) ? atoi(parv[3]) : 0, 
-                 (MyUser(sptr) || IsOper(sptr)) ? 100 : 8);
+      show_ports(sptr, IsOper(sptr), (parc > 3) ? atoi(parv[3]) : 0, IsOper(sptr) ? 100 : 8);
       break;
     case 'R':
     case 'r':
@@ -839,10 +673,9 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       time_t nowr;
 
       nowr = CurrentTime - me.since;
-      sendto_one(sptr, rpl_str(RPL_STATSUPTIME), me.name, parv[0],
-          nowr / 86400, (nowr / 3600) % 24, (nowr / 60) % 60, nowr % 60);
-      sendto_one(sptr, rpl_str(RPL_STATSCONN), me.name, parv[0],
-          max_connection_count, max_client_count);
+      send_reply(sptr, RPL_STATSUPTIME, nowr / 86400, (nowr / 3600) % 24,
+                (nowr / 60) % 60, nowr % 60);
+      send_reply(sptr, RPL_STATSCONN, max_connection_count, max_client_count);
       break;
     }
     case 'W':
@@ -867,7 +700,7 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       stat = '*';
       break;
   }
-  sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, parv[0], stat);
+  send_reply(sptr, RPL_ENDOFSTATS, stat);
   return 0;
 }
 
@@ -896,88 +729,15 @@ int ms_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
  */
 int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 {
-  static char Sformat[] = ":%s %d %s Connection SendQ SendM SendKBytes "
-      "RcveM RcveKBytes :Open since";
-  static char Lformat[] = ":%s %d %s %s %u %u %u %u %u :" TIME_T_FMT;
   struct Message *mptr;
   struct Client *acptr;
-  struct Gline* gline;
   struct ConfItem *aconf;
   char stat = parc > 1 ? parv[1][0] : '\0';
+  const char **infotext = statsinfo;
   int i;
 
-/* m_stats is so obnoxiously full of special cases that the different
- * hunt_server() possiblites were becoming very messy. It now uses a
- * switch() so as to be easier to read and update as params change. 
- * -Ghostwolf 
- */
-  switch (stat)
-  {
-      /* open to all, standard # of params */
-    case 'U':
-    case 'u':
-    {
-      if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-
-      /* open to all, varying # of params */
-    case 'k':
-    case 'K':
-    case 'i':
-    case 'I':
-    case 'p':
-    case 'P':
-    {
-      if (parc > 3)
-      {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      else
-      {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      break;
-    }
-
-      /* oper only, varying # of params */
-    case 'l':
-    case 'L':
-    case 'M':
-    {
-      if (parc == 4)
-      {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
-            != HUNTED_ISME)
-          return 0;
-      }
-      else if (parc > 4)
-      {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s %s :%s", 2, parc,
-            parv) != HUNTED_ISME)
-          return 0;
-      }
-      else if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-
-      /* oper only, standard # of params */
-    default:
-    {
-      if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
-          != HUNTED_ISME)
-        return 0;
-      break;
-    }
-  }
+  if (hunt_stats(cptr, sptr, parc, parv, stat) != HUNTED_ISME)
+    return 0;
 
   switch (stat)
   {
@@ -1006,7 +766,8 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
        * are invisible not being visible to 'foreigners' who use
        * a wild card based search to list it.
        */
-      sendto_one(sptr, Sformat, me.name, RPL_STATSLINKINFO, parv[0]);
+      send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO, "Connection SendQ "
+                "SendM SendKBytes RcveM RcveKBytes :Open since");
       for (i = 0; i <= HighestFd; i++)
       {
         if (!(acptr = LocalClientArray[i]))
@@ -1014,22 +775,17 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
         /* Don't return clients when this is a request for `all' */
         if (doall && IsUser(acptr))
           continue;
-        /* Don't show invisible people to unauthorized people when using
-         * wildcards  -- Is this still needed now /stats is oper only ? */
-        if (IsInvisible(acptr) && (doall || wilds) &&
-            !(MyConnect(sptr) && IsOper(sptr)) &&
-            !IsAnOper(acptr) && (acptr != sptr))
-          continue;
         /* Only show the ones that match the given mask - if any */
         if (!doall && wilds && match(name, acptr->name))
           continue;
         /* Skip all that do not match the specific query */
         if (!(doall || wilds) && 0 != ircd_strcmp(name, acptr->name))
           continue;
-        sendto_one(sptr, Lformat, me.name, RPL_STATSLINKINFO, parv[0],
-            acptr->name, (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
-            (int)acptr->sendK, (int)acptr->receiveM, (int)acptr->receiveK,
-            CurrentTime - acptr->firsttime);
+       send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO,
+                  "%s %u %u %u %u %u :%Tu", acptr->name,
+                  (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
+                  (int)acptr->sendK, (int)acptr->receiveM,
+                  (int)acptr->receiveK, CurrentTime - acptr->firsttime);
       }
       break;
     }
@@ -1039,12 +795,7 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       break;
     case 'G':
     case 'g': /* send glines */
-      gline_remove_expired(TStime());
-      for (gline = GlobalGlineList; gline; gline = gline->next) {
-        sendto_one(sptr, rpl_str(RPL_STATSGLINE), me.name,
-                   sptr->name, 'G', gline->name, gline->host,
-                   gline->expire, gline->reason);
-      }
+      gline_stats(sptr);
       break;
     case 'H':
     case 'h':
@@ -1059,14 +810,11 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       int wilds, count;
       char *user, *host, *p;
       int conf_status = (stat == 'k' || stat == 'K') ? CONF_KLINE : CONF_CLIENT;
-      if ((MyUser(sptr) || IsOper(sptr)) && parc < 4)
+      if (parc < 4)
       {
         report_configured_links(sptr, conf_status);
         break;
       }
-      if (parc < 4 || *parv[3] == '\0')
-        return need_more_params(sptr,
-                        (conf_status & CONF_KLINE) ? "STATS K" : "STATS I");
 
       wilds = 0;
       for (p = parv[3]; *p; p++)
@@ -1083,13 +831,8 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
           break;
         }
       }
-      if (!(MyConnect(sptr) || IsOper(sptr)))
-      {
-        wilds = 0;
-        count = 3;
-      }
-      else
-        count = 1000;
+
+      count = 1000;
 
       if (conf_status == CONF_CLIENT)
       {
@@ -1122,9 +865,10 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
                 (wilds && !mmatch(host, aconf->host) &&
                 (!user || !mmatch(user, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSKLINE), me.name,
-                  sptr->name, 'K', aconf->host, aconf->passwd, aconf->name,
-                  aconf->port, get_conf_class(aconf));
+             send_reply(sptr, RPL_STATSKLINE,
+                        (aconf->status & CONF_KILL) ? 'K' : 'k', aconf->host,
+                        aconf->passwd, aconf->name, aconf->port,
+                        get_conf_class(aconf));
               if (--count == 0)
                 break;
             }
@@ -1136,9 +880,8 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
                 (wilds && (!mmatch(host, aconf->host) ||
                 !mmatch(host, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSILINE), me.name,
-                  sptr->name, 'I', aconf->host, aconf->name,
-                  aconf->port, get_conf_class(aconf));
+             send_reply(sptr, RPL_STATSILINE, 'I', aconf->host, aconf->name,
+                        aconf->port, get_conf_class(aconf));
               if (--count == 0)
                 break;
             }
@@ -1149,20 +892,20 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     }
     case 'M':
 #if !defined(NDEBUG)
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
-          me.name, parv[0], fda_get_byte_count(), fda_get_block_count());
+      send_reply(sptr, RPL_STATMEMTOT, fda_get_byte_count(),
+                fda_get_block_count());
 #endif
 
 #if 0
 #ifdef MEMSIZESTATS
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
+      sendto_one(sptr, rpl_str(RPL_STATMEMTOT), /* XXX DEAD */
           me.name, parv[0], get_mem_size(), get_alloc_cnt());
 #endif
 #ifdef MEMLEAKSTATS
       report_memleak_stats(sptr, parc, parv);
 #endif
 #if !defined(MEMSIZESTATS) && !defined(MEMLEAKSTATS)
-      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring "
+      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring " /* XXX DEAD */
           "is not enabled on this server", me.name, parv[0]);
 #endif
 #endif /* 0 */
@@ -1170,8 +913,8 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     case 'm':
       for (mptr = msgtab; mptr->cmd; mptr++)
         if (mptr->count)
-          sendto_one(sptr, rpl_str(RPL_STATSCOMMANDS),
-              me.name, parv[0], mptr->cmd, mptr->count, mptr->bytes);
+         send_reply(sptr, RPL_STATSCOMMANDS, mptr->cmd, mptr->count,
+                    mptr->bytes);
       break;
     case 'o':
     case 'O':
@@ -1185,8 +928,7 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
        * interpret the fourth parameter as the port number, limit non-local
        * or non-oper results to 8 ports.
        */ 
-      show_ports(sptr, IsOper(sptr), (parc > 3) ? atoi(parv[3]) : 0, 
-                 (MyUser(sptr) || IsOper(sptr)) ? 100 : 8);
+      show_ports(sptr, 1, (parc > 3) ? atoi(parv[3]) : 0, 100);
       break;
     case 'R':
     case 'r':
@@ -1214,10 +956,9 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       time_t nowr;
 
       nowr = CurrentTime - me.since;
-      sendto_one(sptr, rpl_str(RPL_STATSUPTIME), me.name, parv[0],
-          nowr / 86400, (nowr / 3600) % 24, (nowr / 60) % 60, nowr % 60);
-      sendto_one(sptr, rpl_str(RPL_STATSCONN), me.name, parv[0],
-          max_connection_count, max_client_count);
+      send_reply(sptr, RPL_STATSUPTIME, nowr / 86400, (nowr / 3600) % 24,
+                (nowr / 60) % 60, nowr % 60);
+      send_reply(sptr, RPL_STATSCONN, max_connection_count, max_client_count);
       break;
     }
     case 'W':
@@ -1240,9 +981,11 @@ int mo_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
       break;
     default:
       stat = '*';
+      while (*infotext)
+       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :%s", sptr, *infotext++);
       break;
   }
-  sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, parv[0], stat);
+  send_reply(sptr, RPL_ENDOFSTATS, stat);
   return 0;
 }
 
@@ -1293,7 +1036,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     case 'U':
     case 'u':
     {
-      if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
+      if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv) /* XXX DEAD */
           != HUNTED_ISME)
         return 0;
       break;
@@ -1309,13 +1052,13 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     {
       if (parc > 3)
       {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
+        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv) /* XXX DEAD */
             != HUNTED_ISME)
           return 0;
       }
       else
       {
-        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
+        if (hunt_server(0, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv) /* XXX DEAD */
             != HUNTED_ISME)
           return 0;
       }
@@ -1329,17 +1072,17 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     {
       if (parc == 4)
       {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv)
+        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s :%s", 2, parc, parv) /* XXX DEAD */
             != HUNTED_ISME)
           return 0;
       }
       else if (parc > 4)
       {
-        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s %s :%s", 2, parc,
+        if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s %s %s :%s", 2, parc, /* XXX DEAD */
             parv) != HUNTED_ISME)
           return 0;
       }
-      else if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
+      else if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv) /* XXX DEAD */
           != HUNTED_ISME)
         return 0;
       break;
@@ -1348,7 +1091,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
       /* oper only, standard # of params */
     default:
     {
-      if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv)
+      if (hunt_server(1, cptr, sptr, "%s%s " TOK_STATS " %s :%s", 2, parc, parv) /* XXX DEAD */
           != HUNTED_ISME)
         return 0;
       break;
@@ -1382,7 +1125,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
        * are invisible not being visible to 'foreigners' who use
        * a wild card based search to list it.
        */
-      sendto_one(sptr, Sformat, me.name, RPL_STATSLINKINFO, parv[0]);
+      sendto_one(sptr, Sformat, me.name, RPL_STATSLINKINFO, parv[0]); /* XXX DEAD */
       for (i = 0; i <= HighestFd; i++)
       {
         if (!(acptr = LocalClientArray[i]))
@@ -1402,7 +1145,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
         /* Skip all that do not match the specific query */
         if (!(doall || wilds) && 0 != ircd_strcmp(name, acptr->name))
           continue;
-        sendto_one(sptr, Lformat, me.name, RPL_STATSLINKINFO, parv[0],
+        sendto_one(sptr, Lformat, me.name, RPL_STATSLINKINFO, parv[0], /* XXX DEAD */
                    acptr->name,
                    (int)DBufLength(&acptr->sendQ), (int)acptr->sendM,
                    (int)acptr->sendK, (int)acptr->receiveM, (int)acptr->receiveK,
@@ -1418,7 +1161,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     case 'g': /* send glines */
       gline_remove_expired(TStime());
       for (gline = GlobalGlineList; gline; gline = gline->next) {
-        sendto_one(sptr, rpl_str(RPL_STATSGLINE), me.name,
+        sendto_one(sptr, rpl_str(RPL_STATSGLINE), me.name, /* XXX DEAD */
                    sptr->name, 'G', gline->name, gline->host,
                    gline->expire, gline->reason);
       }
@@ -1499,7 +1242,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
                 (wilds && !mmatch(host, aconf->host) &&
                 (!user || !mmatch(user, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSKLINE), me.name,
+              sendto_one(sptr, rpl_str(RPL_STATSKLINE), me.name, /* XXX DEAD */
                   sptr->name, 'K', aconf->host, aconf->passwd, aconf->name,
                   aconf->port, get_conf_class(aconf));
               if (--count == 0)
@@ -1513,7 +1256,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
                 (wilds && (!mmatch(host, aconf->host) ||
                 !mmatch(host, aconf->name))))
             {
-              sendto_one(sptr, rpl_str(RPL_STATSILINE), me.name,
+              sendto_one(sptr, rpl_str(RPL_STATSILINE), me.name, /* XXX DEAD */
                   sptr->name, 'I', aconf->host, aconf->name,
                   aconf->port, get_conf_class(aconf));
               if (--count == 0)
@@ -1526,20 +1269,20 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     }
     case 'M':
 #if !defined(NDEBUG)
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
+      sendto_one(sptr, rpl_str(RPL_STATMEMTOT), /* XXX DEAD */
           me.name, parv[0], fda_get_byte_count(), fda_get_block_count());
 #endif
 
 #if 0
 #ifdef MEMSIZESTATS
-      sendto_one(sptr, rpl_str(RPL_STATMEMTOT),
+      sendto_one(sptr, rpl_str(RPL_STATMEMTOT), /* XXX DEAD */
           me.name, parv[0], get_mem_size(), get_alloc_cnt());
 #endif
 #ifdef MEMLEAKSTATS
       report_memleak_stats(sptr, parc, parv);
 #endif
 #if !defined(MEMSIZESTATS) && !defined(MEMLEAKSTATS)
-      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring "
+      sendto_one(sptr, ":%s NOTICE %s :stats M : Memory allocation monitoring " /* XXX DEAD */
           "is not enabled on this server", me.name, parv[0]);
 #endif
 #endif /* 0 */
@@ -1547,7 +1290,7 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
     case 'm':
       for (mptr = msgtab; mptr->cmd; mptr++)
         if (mptr->count)
-          sendto_one(sptr, rpl_str(RPL_STATSCOMMANDS),
+          sendto_one(sptr, rpl_str(RPL_STATSCOMMANDS), /* XXX DEAD */
               me.name, parv[0], mptr->cmd, mptr->count, mptr->bytes);
       break;
     case 'o':
@@ -1591,9 +1334,9 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
       time_t nowr;
 
       nowr = CurrentTime - me.since;
-      sendto_one(sptr, rpl_str(RPL_STATSUPTIME), me.name, parv[0],
+      sendto_one(sptr, rpl_str(RPL_STATSUPTIME), me.name, parv[0], /* XXX DEAD */
                  nowr / 86400, (nowr / 3600) % 24, (nowr / 60) % 60, nowr % 60);
-      sendto_one(sptr, rpl_str(RPL_STATSCONN), me.name, parv[0],
+      sendto_one(sptr, rpl_str(RPL_STATSCONN), me.name, parv[0], /* XXX DEAD */
                  max_connection_count, max_client_count);
       break;
     }
@@ -1619,7 +1362,9 @@ int m_stats(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
       stat = '*';
       break;
   }
-  sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, parv[0], stat);
+  sendto_one(sptr, rpl_str(RPL_ENDOFSTATS), me.name, parv[0], stat); /* XXX DEAD */
   return 0;
 }
 #endif /* 0 */
+
+