ircu2.10.12 pk910 fork
[ircu2.10.12-pk.git] / ircd / s_stats.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_stats.c
3  * Copyright (C) 2000 Joseph Bongaarts
4  *
5  * See file AUTHORS in IRC package for additional names of
6  * the programmers.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 1, or (at your option)
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22 #include "config.h"
23
24 #include "class.h"
25 #include "client.h"
26 #include "gline.h"
27 #include "hash.h"
28 #include "ircd.h"
29 #include "ircd_chattr.h"
30 #include "ircd_events.h"
31 #include "ircd_features.h"
32 #include "ircd_crypt.h"
33 #include "ircd_log.h"
34 #include "ircd_reply.h"
35 #include "ircd_string.h"
36 #include "listener.h"
37 #include "list.h"
38 #include "match.h"
39 #include "motd.h"
40 #include "msg.h"
41 #include "msgq.h"
42 #include "numeric.h"
43 #include "numnicks.h"
44 #include "querycmds.h"
45 #include "res.h"
46 #include "s_auth.h"
47 #include "s_bsd.h"
48 #include "s_conf.h"
49 #include "s_debug.h"
50 #include "s_misc.h"
51 #include "s_serv.h"
52 #include "s_stats.h"
53 #include "s_user.h"
54 #include "send.h"
55 #include "struct.h"
56 #include "userload.h"
57
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include <sys/time.h>
62
63 /** @file
64  * @brief Report configuration lines and other statistics from this
65  * server.
66  * @version $Id: s_stats.c 1628 2006-03-14 14:56:51Z entrope $
67  *
68  * Note: The info is reported in the order the server uses
69  *       it--not reversed as in ircd.conf!
70  */
71
72 /* The statsinfo array should only be used in this file, but just TRY
73  * telling the compiler that you want to forward declare a static
74  * array without specifying a length, and see how it responds.  So we
75  * forward declare it "extern".
76  */
77 extern struct StatDesc statsinfo[];
78
79 /** Report items from #GlobalConfList.
80  * Uses sd->sd_funcdata as a filter for ConfItem::status.
81  * @param[in] sptr Client requesting statistics.
82  * @param[in] sd Stats descriptor for request.
83  * @param[in] param Extra parameter from user (ignored).
84  */
85 static void
86 stats_configured_links(struct Client *sptr, const struct StatDesc* sd,
87                        char* param)
88 {
89   static char null[] = "<NULL>";
90   struct ConfItem *tmp;
91   unsigned short int port;
92   int maximum;
93   char *host, *pass, *name, *username, *hub_limit;
94
95   for (tmp = GlobalConfList; tmp; tmp = tmp->next)
96   {
97     if ((tmp->status & sd->sd_funcdata))
98     {
99       host = BadPtr(tmp->host) ? null : tmp->host;
100       pass = BadPtr(tmp->passwd) ? null : tmp->passwd;
101       name = BadPtr(tmp->name) ? null : tmp->name;
102       username = BadPtr(tmp->username) ? null : tmp->username;
103       hub_limit = BadPtr(tmp->hub_limit) ? null : tmp->hub_limit;
104       maximum = tmp->maximum;
105       port = tmp->address.port;
106
107       if (tmp->status & CONF_UWORLD)
108         send_reply(sptr, RPL_STATSULINE, host);
109       else if (tmp->status & CONF_SERVER)
110         send_reply(sptr, RPL_STATSCLINE, name, port, maximum, hub_limit, get_conf_class(tmp));
111       else if (tmp->status & CONF_CLIENT)
112         send_reply(sptr, RPL_STATSILINE,
113                    (tmp->username ? tmp->username : ""), (tmp->username ? "@" : ""),
114                    (tmp->host ? tmp->host : "*"), maximum,
115                    (name[0] == ':' ? "0" : ""), (tmp->name ? tmp->name : "*"),
116                    port, get_conf_class(tmp));
117       else if (tmp->status & CONF_OPERATOR)
118         send_reply(sptr, RPL_STATSOLINE,
119                    ((FlagHas(&tmp->privs_dirty, PRIV_PROPAGATE)
120                      && FlagHas(&tmp->privs, PRIV_PROPAGATE))
121                     || (FlagHas(&tmp->conn_class->privs_dirty, PRIV_PROPAGATE)
122                         && FlagHas(&tmp->conn_class->privs, PRIV_PROPAGATE)))
123                    ? 'O' : 'o', username, host, name, get_conf_class(tmp));
124     }
125   }
126 }
127
128 /** Report connection rules from conf_get_crule_list().
129  * Uses sd->sd_funcdata as a filter for CRuleConf::type.
130  * @param[in] to Client requesting statistics.
131  * @param[in] sd Stats descriptor for request.
132  * @param[in] param Extra parameter from user (ignored).
133  */
134 static void
135 stats_crule_list(struct Client* to, const struct StatDesc *sd,
136                  char *param)
137 {
138   const struct CRuleConf* p = conf_get_crule_list();
139
140   for ( ; p; p = p->next)
141   {
142     if (p->type & sd->sd_funcdata)
143       send_reply(to, RPL_STATSDLINE, (p->type & CRULE_ALL ? 'D' : 'd'), p->hostmask, p->rule);
144   }
145 }
146
147 /** Report active event engine name.
148  * @param[in] to Client requesting statistics.
149  * @param[in] sd Stats descriptor for request (ignored).
150  * @param[in] param Extra parameter from user (ignored).
151  */
152 static void
153 stats_engine(struct Client *to, const struct StatDesc *sd, char *param)
154 {
155   send_reply(to, RPL_STATSENGINE, engine_name());
156 }
157
158 /** Report client access lists.
159  * @param[in] to Client requesting statistics.
160  * @param[in] sd Stats descriptor for request.
161  * @param[in] param Filter for hostname or IP (NULL to show all).
162  */
163 static void
164 stats_access(struct Client *to, const struct StatDesc *sd, char *param)
165 {
166   struct ConfItem *aconf;
167   int wilds = 0;
168   int count = 1000;
169
170   if (!param)
171   {
172     stats_configured_links(to, sd, param);
173     return;
174   }
175
176   wilds = string_has_wildcards(param);
177
178   for (aconf = GlobalConfList; aconf; aconf = aconf->next)
179   {
180     if (aconf->status != CONF_CLIENT)
181       continue;
182     if (wilds ? ((aconf->host && !mmatch(aconf->host, param))
183                  || (aconf->name && !mmatch(aconf->name, param)))
184         : ((aconf->host && !match(param, aconf->host))
185            || (aconf->name && !match(param, aconf->name))))
186     {
187       send_reply(to, RPL_STATSILINE,
188                  (aconf->username ? aconf->username : ""), (aconf->username ? "@" : ""), 
189                  (aconf->host ? aconf->host : "*"), aconf->maximum,
190                  (aconf->name && aconf->name[0] == ':' ? "0":""),
191                  aconf->name ? aconf->name : "*",
192                  aconf->address.port, get_conf_class(aconf));
193       if (--count == 0)
194         break;
195     }
196   }
197 }
198
199
200 /** Report DenyConf entries.
201  * @param[in] to Client requesting list.
202  */
203 static void
204 report_deny_list(struct Client* to)
205 {
206   const struct DenyConf* p = conf_get_deny_list();
207   for ( ; p; p = p->next)
208     send_reply(to, RPL_STATSKLINE, p->bits > 0 ? 'k' : 'K',
209                p->usermask ? p->usermask : "*",
210                p->hostmask ? p->hostmask : "*",
211                p->message ? p->message : "(none)",
212                p->realmask ? p->realmask : "*");
213 }
214
215 /** Report K/k-lines to a user.
216  * @param[in] sptr Client requesting statistics.
217  * @param[in] sd Stats descriptor for request (ignored).
218  * @param[in] mask Filter for hostmasks to show.
219  */
220 static void
221 stats_klines(struct Client *sptr, const struct StatDesc *sd, char *mask)
222 {
223   int wilds = 0;
224   int count = 3;
225   int limit_query = 0;
226   char *user  = 0;
227   char *host;
228   const struct DenyConf* conf;
229
230   if (!IsAnOper(sptr))
231     limit_query = 1;
232
233   if (!mask)
234   {
235     if (limit_query)
236       need_more_params(sptr, "STATS K");
237     else
238       report_deny_list(sptr);
239     return;
240   }
241
242   if (!limit_query)
243   {
244     wilds = string_has_wildcards(mask);
245     count = 1000;
246   }
247   if ((host = strchr(mask, '@')))
248   {
249     user = mask;
250     *host++ = '\0';
251   }
252   else
253     host = mask;
254
255   for (conf = conf_get_deny_list(); conf; conf = conf->next)
256   {
257     /* Skip this block if the user is searching for a user-matching
258      * mask but the current Kill doesn't have a usermask, or if user
259      * is searching for a host-matching mask but the Kill has no
260      * hostmask, or if the user mask is specified and doesn't match,
261      * or if the host mask is specified and doesn't match.
262      */
263     if ((user && !conf->usermask)
264         || (host && !conf->hostmask)
265         || (user && conf->usermask
266             && (wilds
267                 ? mmatch(user, conf->usermask)
268                 : match(conf->usermask, user)))
269         || (host && conf->hostmask
270             && (wilds
271                 ? mmatch(host, conf->hostmask)
272                 : match(conf->hostmask, host))))
273       continue;
274     send_reply(sptr, RPL_STATSKLINE, conf->bits > 0 ? 'k' : 'K',
275                conf->usermask ? conf->usermask : "*",
276                conf->hostmask ? conf->hostmask : "*",
277                conf->message ? conf->message : "(none)",
278                conf->realmask ? conf->realmask : "*");
279     if (--count == 0)
280       return;
281   }
282 }
283
284 /** Report on servers and/or clients connected to the network.
285  * @param[in] sptr Client requesting statistics.
286  * @param[in] sd Stats descriptor for request (ignored).
287  * @param[in] name Filter for client names to show.
288  */
289 static void
290 stats_links(struct Client* sptr, const struct StatDesc* sd, char* name)
291 {
292   struct Client *acptr;
293   int i;
294   int wilds = 0;
295
296   if (name)
297     wilds = string_has_wildcards(name);
298
299   /*
300    * Send info about connections which match, or all if the
301    * mask matches me.name.  Only restrictions are on those who
302    * are invisible not being visible to 'foreigners' who use
303    * a wild card based search to list it.
304    */
305   send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO, "Connection SendQ "
306              "SendM SendKBytes RcveM RcveKBytes :Open since");
307     for (i = 0; i <= HighestFd; i++)
308     {
309       if (!(acptr = LocalClientArray[i]))
310         continue;
311       /* Don't return clients when this is a request for `all' */
312       if (!name && IsUser(acptr))
313         continue;
314       /* Don't show invisible people to non opers unless they know the nick */
315       if (IsInvisible(acptr) && (!name || wilds) && !IsAnOper(acptr) &&
316           (acptr != sptr))
317         continue;
318       /* Only show the ones that match the given mask - if any */
319       if (name && wilds && match(name, cli_name(acptr)))
320         continue;
321       /* Skip all that do not match the specific query */
322       if (!(!name || wilds) && 0 != ircd_strcmp(name, cli_name(acptr)))
323         continue;
324       send_reply(sptr, SND_EXPLICIT | RPL_STATSLINKINFO,
325                  "%s %u %u %Lu %u %Lu :%Tu",
326                  (*(cli_name(acptr))) ? cli_name(acptr) : "<unregistered>",
327                  (int)MsgQLength(&(cli_sendQ(acptr))), (int)cli_sendM(acptr),
328                  (cli_sendB(acptr) >> 10), (int)cli_receiveM(acptr),
329                  (cli_receiveB(acptr) >> 10), CurrentTime - cli_firsttime(acptr));
330     }
331 }
332
333 /** Report on loaded modules.
334  * @param[in] to Client requesting statistics.
335  * @param[in] sd Stats descriptor for request (ignored).
336  * @param[in] param Extra parameter from user (ignored).
337  */
338 static void
339 stats_modules(struct Client* to, const struct StatDesc* sd, char* param)
340 {
341 crypt_mechs_t* mechs;
342
343   send_reply(to, SND_EXPLICIT | RPL_STATSLLINE, 
344    "Module  Description      Entry Point");
345
346  /* atm the only "modules" we have are the crypto mechanisms,
347     eventualy they'll be part of a global dl module list, for now
348     i'll just output data about them -- hikari */
349
350  if(crypt_mechs_root == NULL)
351   return;
352
353  mechs = crypt_mechs_root->next;
354
355  for(;;)
356  {
357   if(mechs == NULL)
358    return;
359
360   send_reply(to, SND_EXPLICIT | RPL_STATSLLINE, 
361    "%s  %s     0x%X", 
362    mechs->mech->shortname, mechs->mech->description, 
363    mechs->mech->crypt_function);
364
365   mechs = mechs->next;
366  }
367
368 }
369
370 /** Report how many times each command has been used.
371  * @param[in] to Client requesting statistics.
372  * @param[in] sd Stats descriptor for request (ignored).
373  * @param[in] param Extra parameter from user (ignored).
374  */
375 static void
376 stats_commands(struct Client* to, const struct StatDesc* sd, char* param)
377 {
378   struct Message *mptr;
379
380   for (mptr = msgtab; mptr->cmd; mptr++)
381     if (mptr->count)
382       send_reply(to, RPL_STATSCOMMANDS, mptr->cmd, mptr->count, mptr->bytes);
383 }
384
385 /** List channel quarantines.
386  * @param[in] to Client requesting statistics.
387  * @param[in] sd Stats descriptor for request (ignored).
388  * @param[in] param Filter for quarantined channel names.
389  */
390 static void
391 stats_quarantine(struct Client* to, const struct StatDesc* sd, char* param)
392 {
393   struct qline *qline;
394
395   for (qline = GlobalQuarantineList; qline; qline = qline->next)
396   {
397     if (param && match(param, qline->chname)) /* narrow search */
398       continue;
399     send_reply(to, RPL_STATSQLINE, qline->chname, qline->reason);
400   }
401 }
402
403 /** List service pseudo-command mappings.
404  * @param[in] to Client requesting statistics.
405  * @param[in] sd Stats descriptor for request (ignored).
406  * @param[in] param Extra parameter from user (ignored).
407  */
408 static void
409 stats_mapping(struct Client *to, const struct StatDesc* sd, char* param)
410 {
411   struct s_map *map;
412
413   send_reply(to, RPL_STATSRLINE, "Command", "Name", "Prepend", "Target");
414   for (map = GlobalServiceMapList; map; map = map->next) {
415     struct nick_host *nh;
416     for (nh = map->services; nh; nh = nh->next) {
417       send_reply(to, RPL_STATSRLINE, map->command, map->name,
418                  (map->prepend ? map->prepend : "*"), nh->nick);
419     }
420   }
421 }
422
423 /** Report server uptime and maximum connection/client counts.
424  * @param[in] to Client requesting statistics.
425  * @param[in] sd Stats descriptor for request (ignored).
426  * @param[in] param Extra parameter from user (ignored).
427  */
428 static void
429 stats_uptime(struct Client* to, const struct StatDesc* sd, char* param)
430 {
431   time_t nowr;
432
433   nowr = CurrentTime - cli_since(&me);
434   send_reply(to, RPL_STATSUPTIME, nowr / 86400, (nowr / 3600) % 24,
435              (nowr / 60) % 60, nowr % 60);
436   send_reply(to, RPL_STATSCONN, max_connection_count, max_client_count);
437 }
438
439 /** Verbosely report on servers connected to the network.
440  * If sd->sd_funcdata != 0, then display in a more human-friendly format.
441  * @param[in] sptr Client requesting statistics.
442  * @param[in] sd Stats descriptor for request.
443  * @param[in] param Filter for server names to display.
444  */
445 static void
446 stats_servers_verbose(struct Client* sptr, const struct StatDesc* sd,
447                       char* param)
448 {
449   struct Client *acptr;
450   const char *fmt;
451
452   /*
453    * lowercase 'v' is for human-readable,
454    * uppercase 'V' is for machine-readable
455    */
456   if (sd->sd_funcdata) {
457     send_reply(sptr, SND_EXPLICIT | RPL_STATSVERBOSE,
458                "%-20s %-20s Flags Hops Numeric   Lag  RTT   Up Down "
459                "Clients/Max Proto %-10s :Info", "Servername", "Uplink",
460                "LinkTS");
461     fmt = "%-20s %-20s %c%c%c%c%c  %4i %s %-4i %5i %4i %4i %4i %5i %5i P%-2i   %Tu :%s";
462   } else {
463     fmt = "%s %s %c%c%c%c%c %i %s %i %i %i %i %i %i %i P%i %Tu :%s";
464   }
465
466   for (acptr = GlobalClientList; acptr; acptr = cli_next(acptr))
467   {
468     if (!IsServer(acptr) && !IsMe(acptr))
469       continue;
470     /* narrow search */
471     if (param && match(param, cli_name(acptr)))
472       continue;
473     send_reply(sptr, SND_EXPLICIT | RPL_STATSVERBOSE, fmt,
474                cli_name(acptr),
475                cli_name(cli_serv(acptr)->up),
476                IsBurst(acptr) ? 'B' : '-',
477                IsBurstAck(acptr) ? 'A' : '-',
478                IsHub(acptr) ? 'H' : '-',
479                IsService(acptr) ? 'S' : '-',
480                IsIPv6(acptr) ? '6' : '-',
481                cli_hopcount(acptr),
482                NumServ(acptr),
483                base64toint(cli_yxx(acptr)),
484                cli_serv(acptr)->lag,
485                cli_serv(acptr)->asll_rtt,
486                cli_serv(acptr)->asll_to,
487                cli_serv(acptr)->asll_from,
488                (acptr == &me ? UserStats.local_clients : cli_serv(acptr)->clients),
489                cli_serv(acptr)->nn_mask,
490                cli_serv(acptr)->prot,
491                cli_serv(acptr)->timestamp,
492                cli_info(acptr));
493   }
494 }
495
496 /** Display objects allocated (and total memory used by them) for
497  * several types of structures.
498  * @param[in] to Client requesting statistics.
499  * @param[in] sd Stats descriptor for request (ignored).
500  * @param[in] param Extra parameter from user (ignored).
501  */
502 static void
503 stats_meminfo(struct Client* to, const struct StatDesc* sd, char* param)
504 {
505   extern void bans_send_meminfo(struct Client *cptr);
506
507   class_send_meminfo(to);
508   bans_send_meminfo(to);
509   send_listinfo(to, 0);
510 }
511
512 /** Send a list of available statistics.
513  * @param[in] to Client requesting statistics.
514  * @param[in] sd Stats descriptor for request.
515  * @param[in] param Extra parameter from user (ignored).
516  */
517 static void
518 stats_help(struct Client* to, const struct StatDesc* sd, char* param)
519 {
520   struct StatDesc *asd;
521
522   /* only if it's my user */
523   if (MyUser(to))
524     for (asd = statsinfo; asd->sd_name; asd++)
525       if (asd != sd) /* don't send the help for us */
526         sendcmdto_one(&me, CMD_NOTICE, to, "%C :%c (%s) - %s", to, asd->sd_c,
527                       asd->sd_name, asd->sd_desc);
528 }
529
530 /** Contains information about all statistics. */
531 struct StatDesc statsinfo[] = {
532   { 'a', "nameservers", STAT_FLAG_OPERFEAT|STAT_FLAG_LOCONLY, FEAT_HIS_STATS_a,
533     report_dns_servers, 0,
534     "DNS servers." },
535   { 'c', "connect", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_c,
536     stats_configured_links, CONF_SERVER,
537     "Remote server connection lines." },
538   { 'd', "maskrules", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_d,
539     stats_crule_list, CRULE_MASK,
540     "Dynamic routing configuration." },
541   { 'D', "crules", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_d,
542     stats_crule_list, CRULE_ALL,
543     "Dynamic routing configuration." },
544   { 'e', "engine", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_e,
545     stats_engine, 0,
546     "Report server event loop engine." },
547   { 'f', "features", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_f,
548     feature_report, 0,
549     "Feature settings." },
550   { 'g', "glines", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_g,
551     gline_stats, 0,
552     "Global bans (G-lines)." },
553   { 'i', "access", (STAT_FLAG_OPERFEAT | STAT_FLAG_VARPARAM), FEAT_HIS_STATS_i,
554     stats_access, CONF_CLIENT,
555     "Connection authorization lines." },
556   { 'j', "histogram", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_j,
557     msgq_histogram, 0,
558     "Message length histogram." },
559   { 'J', "jupes", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_J,
560     stats_nickjupes, 0,
561     "Nickname jupes." },
562   { 'k', "klines", (STAT_FLAG_OPERFEAT | STAT_FLAG_VARPARAM), FEAT_HIS_STATS_k,
563     stats_klines, 0,
564     "Local bans (K-Lines)." },
565   { 'l', "links", (STAT_FLAG_OPERFEAT | STAT_FLAG_VARPARAM | STAT_FLAG_CASESENS),
566     FEAT_HIS_STATS_l,
567     stats_links, 0,
568     "Current connections information." },
569   { 'L', "modules", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS),
570     FEAT_HIS_STATS_L,
571     stats_modules, 0,
572     "Dynamically loaded modules." },
573   { 'm', "commands", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_m,
574     stats_commands, 0,
575     "Message usage information." },
576   { 'o', "operators", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_o,
577     stats_configured_links, CONF_OPERATOR,
578     "Operator information." },
579   { 'p', "ports", (STAT_FLAG_OPERFEAT | STAT_FLAG_VARPARAM), FEAT_HIS_STATS_p,
580     show_ports, 0,
581     "Listening ports." },
582   { 'q', "quarantines", (STAT_FLAG_OPERONLY | STAT_FLAG_VARPARAM), FEAT_HIS_STATS_q,
583     stats_quarantine, 0,
584     "Quarantined channels list." },
585   { 'R', "mappings", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_R,
586     stats_mapping, 0,
587     "Service mappings." },
588 #ifdef DEBUGMODE
589   { 'r', "usage", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_r,
590     send_usage, 0,
591     "System resource usage (Debug only)." },
592 #endif
593   { 'T', "motds", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_T,
594     motd_report, 0,
595     "Configured Message Of The Day files." },
596   { 't', "locals", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_t,
597     tstats, 0,
598     "Local connection statistics (Total SND/RCV, etc)." },
599   { 'U', "uworld", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_U,
600     stats_configured_links, CONF_UWORLD,
601     "Service server information." },
602   { 'u', "uptime", (STAT_FLAG_OPERFEAT | STAT_FLAG_CASESENS), FEAT_HIS_STATS_u,
603     stats_uptime, 0,
604     "Current uptime & highest connection count." },
605   { 'v', "vservers", (STAT_FLAG_OPERFEAT | STAT_FLAG_VARPARAM | STAT_FLAG_CASESENS), FEAT_HIS_STATS_v,
606     stats_servers_verbose, 1,
607     "Verbose server information." },
608   { 'V', "vserversmach", (STAT_FLAG_OPERFEAT | STAT_FLAG_VARPARAM | STAT_FLAG_CASESENS), FEAT_HIS_STATS_v,
609     stats_servers_verbose, 0,
610     "Verbose server information." },
611   { 'w', "userload", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_w,
612     calc_load, 0,
613     "Userload statistics." },
614   { 'x', "memusage", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_x,
615     stats_meminfo, 0,
616     "List usage information." },
617   { 'y', "classes", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_y,
618     report_classes, 0,
619     "Connection classes." },
620   { 'z', "memory", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_z,
621     count_memory, 0,
622     "Memory/Structure allocation information." },
623   { ' ', "iauth", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_IAUTH,
624     report_iauth_stats, 0,
625     "IAuth statistics." },
626   { ' ', "iauthconf", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_IAUTH,
627     report_iauth_conf, 0,
628     "IAuth configuration." },
629   { '*', "help", STAT_FLAG_CASESENS, FEAT_LAST_F,
630     stats_help, 0,
631     "Send help for stats." },
632   { '\0', 0, FEAT_LAST_F, 0, 0, 0 }
633 };
634
635 /** Maps from characters to statistics descriptors.
636  * Statistics descriptors with no single-character alias are not included.
637  */
638 static struct StatDesc *statsmap[256];
639 /** Number of statistics descriptors. */
640 static int statscount;
641
642 /** Compare two StatDesc structures by long name (StatDesc::sd_name).
643  * @param[in] a_ Pointer to a StatDesc.
644  * @param[in] b_ Pointer to a StatDesc.
645  * @return Less than, equal to, or greater than zero if \a a_ is
646  * lexicographically less than, equal to, or greater than \a b_.
647  */
648 static int
649 stats_cmp(const void *a_, const void *b_)
650 {
651   const struct StatDesc *a = a_;
652   const struct StatDesc *b = b_;
653   return ircd_strcmp(a->sd_name, b->sd_name);
654 }
655
656 /** Compare a StatDesc's name against a string.
657  * @param[in] key Pointer to a null-terminated string.
658  * @param[in] sd_ Pointer to a StatDesc.
659  * @return Less than, equal to, or greater than zero if \a key is
660  * lexicographically less than, equal to, or greater than \a
661  * sd_->sd_name.
662  */
663 static int
664 stats_search(const void *key, const void *sd_)
665 {
666   const struct StatDesc *sd = sd_;
667   return ircd_strcmp(key, sd->sd_name);
668 }
669
670 /** Look up a stats handler.  If name_or_char is just one character
671  * long, use that as a character index; otherwise, look it up by name
672  * in #statsinfo.
673  * @param[in] name_or_char Null-terminated string to look up.
674  * @return The statistics descriptor for \a name_or_char (NULL if none).
675  */
676 const struct StatDesc *
677 stats_find(const char *name_or_char)
678 {
679   if (!name_or_char[1])
680     return statsmap[name_or_char[0] - CHAR_MIN];
681   else
682     return bsearch(name_or_char, statsinfo, statscount, sizeof(statsinfo[0]), stats_search);
683 }
684
685 /** Build statsmap from the statsinfo array. */
686 void
687 stats_init(void)
688 {
689   struct StatDesc *sd;
690
691   /* Count number of stats entries and sort them. */
692   for (statscount = 0, sd = statsinfo; sd->sd_name; sd++, statscount++) {}
693   qsort(statsinfo, statscount, sizeof(statsinfo[0]), stats_cmp);
694
695   /* Build the mapping */
696   for (sd = statsinfo; sd->sd_name; sd++)
697   {
698     if (!sd->sd_c)
699       continue;
700     else if (sd->sd_flags & STAT_FLAG_CASESENS)
701       /* case sensitive character... */
702       statsmap[sd->sd_c - CHAR_MIN] = sd;
703     else
704     {
705       /* case insensitive--make sure to put in two entries */
706       statsmap[ToLower(sd->sd_c) - CHAR_MIN] = sd;
707       statsmap[ToUpper(sd->sd_c) - CHAR_MIN] = sd;
708     }
709   }
710 }