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