]> jfr.im git - solanum.git/blame - modules/m_stats.c
Rework oper hiding
[solanum.git] / modules / m_stats.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * m_stats.c: Sends the user statistics or config information.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
212380e3
AC
23 */
24
25#include "stdinc.h"
212380e3
AC
26#include "class.h" /* report_classes */
27#include "client.h" /* Client */
4562c604 28#include "match.h"
212380e3
AC
29#include "ircd.h" /* me */
30#include "listener.h" /* show_ports */
212380e3
AC
31#include "msg.h" /* Message */
32#include "hostmask.h" /* report_mtrie_conf_links */
33#include "numeric.h" /* ERR_xxx */
34#include "scache.h" /* list_scache */
35#include "send.h" /* sendto_one */
212380e3
AC
36#include "s_conf.h" /* ConfItem */
37#include "s_serv.h" /* hunt_server */
47adde3d 38#include "s_stats.h"
212380e3 39#include "s_user.h" /* show_opers */
212380e3
AC
40#include "parse.h"
41#include "modules.h"
42#include "hook.h"
43#include "s_newconf.h"
44#include "hash.h"
47adde3d
VY
45#include "reject.h"
46#include "whowas.h"
a4bf26dd 47#include "rb_radixtree.h"
eb1b303d 48#include "sslproc.h"
169a1c35 49#include "s_assert.h"
212380e3 50
3abc337f
AW
51static const char stats_desc[] =
52 "Provides the STATS command to inspect various server/network information";
212380e3 53
3c7d6fcc 54static void m_stats (struct MsgBuf *, struct Client *, struct Client *, int, const char **);
eeabf33a 55
212380e3 56struct Message stats_msgtab = {
788e2d59 57 "STATS", false, false, false, false,
212380e3
AC
58 {mg_unreg, {m_stats, 2}, {m_stats, 3}, mg_ignore, mg_ignore, {m_stats, 2}}
59};
60
61int doing_stats_hook;
62int doing_stats_p_hook;
63
64mapi_clist_av1 stats_clist[] = { &stats_msgtab, NULL };
65mapi_hlist_av1 stats_hlist[] = {
66 { "doing_stats", &doing_stats_hook },
67 { "doing_stats_p", &doing_stats_p_hook },
68 { NULL, NULL }
69};
70
3abc337f 71DECLARE_MODULE_AV2(stats, NULL, NULL, stats_clist, stats_hlist, NULL, NULL, NULL, stats_desc);
212380e3
AC
72
73const char *Lformat = "%s %u %u %u %u %u :%u %u %s";
74
3c7d6fcc
EM
75static void stats_l_list(struct Client *s, const char *, bool, bool, rb_dlink_list *, char,
76 bool (*check_fn)(struct Client *target_p));
212380e3
AC
77static void stats_l_client(struct Client *source_p, struct Client *target_p,
78 char statchar);
79
ea2d2700 80static int stats_spy(struct Client *, char, const char *);
212380e3
AC
81static void stats_p_spy(struct Client *);
82
788e2d59
EM
83typedef void (*handler_t)(struct Client *source_p);
84typedef void (*handler_parv_t)(struct Client *source_p, int parc, const char *parv[]);
85
963c3faa 86struct stats_cmd
212380e3 87{
788e2d59
EM
88 union
89 {
90 handler_t handler;
91 handler_parv_t handler_parv;
92 };
93 bool need_parv;
94 bool need_oper;
95 bool need_admin;
212380e3
AC
96};
97
8a26cd19 98static void stats_dns_servers(struct Client *);
212380e3
AC
99static void stats_delay(struct Client *);
100static void stats_hash(struct Client *);
101static void stats_connect(struct Client *);
102static void stats_tdeny(struct Client *);
103static void stats_deny(struct Client *);
104static void stats_exempt(struct Client *);
105static void stats_events(struct Client *);
416d868e 106static void stats_prop_klines(struct Client *);
212380e3
AC
107static void stats_hubleaf(struct Client *);
108static void stats_auth(struct Client *);
109static void stats_tklines(struct Client *);
110static void stats_klines(struct Client *);
111static void stats_messages(struct Client *);
112static void stats_dnsbl(struct Client *);
113static void stats_oper(struct Client *);
3a177354 114static void stats_privset(struct Client *);
212380e3
AC
115static void stats_operedup(struct Client *);
116static void stats_ports(struct Client *);
117static void stats_tresv(struct Client *);
118static void stats_resv(struct Client *);
eb1b303d 119static void stats_ssld(struct Client *);
212380e3
AC
120static void stats_usage(struct Client *);
121static void stats_tstats(struct Client *);
122static void stats_uptime(struct Client *);
123static void stats_shared(struct Client *);
124static void stats_servers(struct Client *);
125static void stats_tgecos(struct Client *);
126static void stats_gecos(struct Client *);
127static void stats_class(struct Client *);
128static void stats_memory(struct Client *);
129static void stats_servlinks(struct Client *);
130static void stats_ltrace(struct Client *, int, const char **);
131static void stats_ziplinks(struct Client *);
a235e410 132static void stats_comm(struct Client *);
ac37f16a
AC
133static void stats_capability(struct Client *);
134
95b03246
EM
135#define HANDLER_NORM(fn, oper, admin) { { .handler = fn }, false, oper, admin }
136#define HANDLER_PARV(fn, oper, admin) { { .handler_parv = fn }, true, oper, admin }
137
212380e3 138/* This table contains the possible stats items, in order:
963c3faa
EM
139 * stats letter, function to call, operonly? adminonly? --fl_
140 *
141 * Previously in this table letters were a column. I fixed it to use modern
788e2d59 142 * C initalisers so we don't have to iterate anymore
963c3faa 143 * --Elizafox
212380e3 144 */
6f39a80e 145static struct stats_cmd stats_cmd_table[256] = {
95b03246
EM
146/* letter handler oper admin */
147 ['a'] = HANDLER_NORM(stats_dns_servers, true, true),
148 ['A'] = HANDLER_NORM(stats_dns_servers, true, true),
149 ['b'] = HANDLER_NORM(stats_delay, true, true),
150 ['B'] = HANDLER_NORM(stats_hash, true, true),
151 ['c'] = HANDLER_NORM(stats_connect, false, false),
152 ['C'] = HANDLER_NORM(stats_capability, true, false),
153 ['d'] = HANDLER_NORM(stats_tdeny, true, false),
154 ['D'] = HANDLER_NORM(stats_deny, true, false),
155 ['e'] = HANDLER_NORM(stats_exempt, true, false),
156 ['E'] = HANDLER_NORM(stats_events, true, true),
157 ['f'] = HANDLER_NORM(stats_comm, true, true),
158 ['F'] = HANDLER_NORM(stats_comm, true, true),
159 ['g'] = HANDLER_NORM(stats_prop_klines, true, false),
160 ['h'] = HANDLER_NORM(stats_hubleaf, false, false),
161 ['H'] = HANDLER_NORM(stats_hubleaf, false, false),
162 ['i'] = HANDLER_NORM(stats_auth, false, false),
163 ['I'] = HANDLER_NORM(stats_auth, false, false),
164 ['k'] = HANDLER_NORM(stats_tklines, false, false),
165 ['K'] = HANDLER_NORM(stats_klines, false, false),
166 ['l'] = HANDLER_PARV(stats_ltrace, false, false),
167 ['L'] = HANDLER_PARV(stats_ltrace, false, false),
168 ['m'] = HANDLER_NORM(stats_messages, false, false),
169 ['M'] = HANDLER_NORM(stats_messages, false, false),
170 ['n'] = HANDLER_NORM(stats_dnsbl, false, false),
171 ['o'] = HANDLER_NORM(stats_oper, false, false),
172 ['O'] = HANDLER_NORM(stats_privset, true, false),
173 ['p'] = HANDLER_NORM(stats_operedup, false, false),
174 ['P'] = HANDLER_NORM(stats_ports, false, false),
175 ['q'] = HANDLER_NORM(stats_tresv, true, false),
176 ['Q'] = HANDLER_NORM(stats_resv, true, false),
177 ['r'] = HANDLER_NORM(stats_usage, true, false),
178 ['R'] = HANDLER_NORM(stats_usage, true, false),
179 ['s'] = HANDLER_NORM(stats_ssld, true, true),
180 ['S'] = HANDLER_NORM(stats_ssld, true, true),
181 ['t'] = HANDLER_NORM(stats_tstats, true, false),
182 ['T'] = HANDLER_NORM(stats_tstats, true, false),
183 ['u'] = HANDLER_NORM(stats_uptime, false, false),
184 ['U'] = HANDLER_NORM(stats_shared, true, false),
185 ['v'] = HANDLER_NORM(stats_servers, false, false),
186 ['V'] = HANDLER_NORM(stats_servers, false, false),
187 ['x'] = HANDLER_NORM(stats_tgecos, true, false),
188 ['X'] = HANDLER_NORM(stats_gecos, true, false),
189 ['y'] = HANDLER_NORM(stats_class, false, false),
190 ['Y'] = HANDLER_NORM(stats_class, false, false),
191 ['z'] = HANDLER_NORM(stats_memory, true, false),
192 ['Z'] = HANDLER_NORM(stats_ziplinks, true, false),
193 ['?'] = HANDLER_NORM(stats_servlinks, false, false),
212380e3
AC
194};
195
196/*
197 * m_stats by fl_
963c3faa 198 * Modified heavily by Elizafox
212380e3
AC
199 * parv[1] = stat letter/command
200 * parv[2] = (if present) server/mask in stats L, or target
201 *
202 * This will search the tables for the appropriate stats letter,
55abcbb2 203 * if found execute it.
212380e3 204 */
3c7d6fcc 205static void
428ca87b 206m_stats(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
207{
208 static time_t last_used = 0;
963c3faa 209 struct stats_cmd *cmd;
e23126c8 210 unsigned char statchar;
ea2d2700 211 int did_stats = 0;
212380e3
AC
212
213 statchar = parv[1][0];
214
215 if(MyClient(source_p) && !IsOper(source_p))
216 {
217 /* Check the user is actually allowed to do /stats, and isnt flooding */
e3354945 218 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
212380e3
AC
219 {
220 /* safe enough to give this on a local connect only */
221 sendto_one(source_p, form_str(RPL_LOAD2HI),
222 me.name, source_p->name, "STATS");
55abcbb2 223 sendto_one_numeric(source_p, RPL_ENDOFSTATS,
212380e3 224 form_str(RPL_ENDOFSTATS), statchar);
3c7d6fcc 225 return;
212380e3
AC
226 }
227 else
e3354945 228 last_used = rb_current_time();
212380e3
AC
229 }
230
231 if(hunt_server (client_p, source_p, ":%s STATS %s :%s", 2, parc, parv) != HUNTED_ISME)
3c7d6fcc 232 return;
212380e3 233
788e2d59
EM
234 if(tolower(statchar) != 'l')
235 /* FIXME */
ea2d2700
AC
236 did_stats = stats_spy(source_p, statchar, NULL);
237
238 /* if did_stats is true, a module grabbed this STATS request */
963c3faa 239 if(did_stats)
ea2d2700 240 goto stats_out;
212380e3 241
963c3faa
EM
242 /* Look up */
243 cmd = &stats_cmd_table[statchar];
244 if(cmd->handler != NULL)
212380e3 245 {
963c3faa
EM
246 /* The stats table says what privs are needed, so check --fl_ */
247 /* Called for remote clients and for local opers, so check need_admin
248 * and need_oper
249 */
250 if(cmd->need_admin && !IsOperAdmin(source_p))
212380e3 251 {
963c3faa
EM
252 sendto_one(source_p, form_str(ERR_NOPRIVS),
253 me.name, source_p->name, "admin");
254 goto stats_out;
212380e3 255 }
963c3faa
EM
256 if(cmd->need_oper && !IsOper(source_p))
257 {
258 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
259 form_str (ERR_NOPRIVILEGES));
260 goto stats_out;
261 }
262
788e2d59
EM
263 if(cmd->need_parv)
264 cmd->handler_parv(source_p, parc, parv);
265 else
266 cmd->handler(source_p);
212380e3
AC
267 }
268
ea2d2700 269stats_out:
212380e3 270 /* Send the end of stats notice, and the stats_spy */
55abcbb2 271 sendto_one_numeric(source_p, RPL_ENDOFSTATS,
212380e3 272 form_str(RPL_ENDOFSTATS), statchar);
212380e3
AC
273}
274
275static void
8a26cd19 276stats_dns_servers (struct Client *source_p)
212380e3 277{
55799c6b
EM
278 rb_dlink_node *n;
279
280 RB_DLINK_FOREACH(n, nameservers.head)
281 {
282 sendto_one_numeric(source_p, RPL_STATSDEBUG, "A %s", (char *)n->data);
283 }
212380e3
AC
284}
285
286static void
287stats_delay(struct Client *source_p)
288{
289 struct nd_entry *nd;
4177311e 290 rb_dictionary_iter iter;
212380e3 291
56f84ded 292 RB_DICTIONARY_FOREACH(nd, &iter, nd_dict)
212380e3 293 {
e4b9c8e1 294 sendto_one_notice(source_p, ":Delaying: %s for %ld",
212380e3
AC
295 nd->name, (long) nd->expire);
296 }
212380e3
AC
297}
298
21d5a11c
AC
299static void
300stats_hash_cb(const char *buf, void *client_p)
301{
302 sendto_one_numeric(client_p, RPL_STATSDEBUG, "B :%s", buf);
303}
304
212380e3
AC
305static void
306stats_hash(struct Client *source_p)
307{
8dacf9e9
AC
308 sendto_one_numeric(source_p, RPL_STATSDEBUG, "B :%-30s %-15s %-10s %-10s %-10s %-10s",
309 "NAME", "TYPE", "OBJECTS", "DEPTH SUM", "AVG DEPTH", "MAX DEPTH");
21d5a11c 310
a4bf26dd
EM
311 rb_dictionary_stats_walk(stats_hash_cb, source_p);
312 rb_radixtree_stats_walk(stats_hash_cb, source_p);
212380e3
AC
313}
314
315static void
316stats_connect(struct Client *source_p)
317{
6003ce76 318 static char buf[BUFSIZE];
212380e3
AC
319 struct server_conf *server_p;
320 char *s;
5b96d9a6 321 rb_dlink_node *ptr;
212380e3 322
55abcbb2 323 if((ConfigFileEntry.stats_c_oper_only ||
212380e3
AC
324 (ConfigServerHide.flatten_links && !IsExemptShide(source_p))) &&
325 !IsOper(source_p))
326 {
327 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
328 form_str(ERR_NOPRIVILEGES));
329 return;
330 }
331
5b96d9a6 332 RB_DLINK_FOREACH(ptr, server_conf_list.head)
212380e3
AC
333 {
334 server_p = ptr->data;
335
336 if(ServerConfIllegal(server_p))
337 continue;
338
212380e3
AC
339 s = buf;
340
341 if(IsOper(source_p))
342 {
343 if(ServerConfAutoconn(server_p))
344 *s++ = 'A';
6003ce76
SA
345 if(ServerConfSCTP(server_p))
346 *s++ = 'M';
8bd5767b 347 if(ServerConfSSL(server_p))
f53ed7f8 348 *s++ = 'S';
212380e3
AC
349 if(ServerConfTb(server_p))
350 *s++ = 'T';
351 if(ServerConfCompressed(server_p))
352 *s++ = 'Z';
353 }
354
f76ca178 355 if(s == buf)
212380e3
AC
356 *s++ = '*';
357
358 *s = '\0';
359
55abcbb2 360 sendto_one_numeric(source_p, RPL_STATSCLINE,
212380e3 361 form_str(RPL_STATSCLINE),
55abcbb2 362 "*@127.0.0.1",
212380e3 363 buf, server_p->name,
30857341
SA
364 server_p->port, server_p->class_name,
365 server_p->certfp ? server_p->certfp : "*");
212380e3
AC
366 }
367}
368
369/* stats_tdeny()
370 *
371 * input - client to report to
372 * output - none
373 * side effects - client is given temp dline list.
374 */
375static void
376stats_tdeny (struct Client *source_p)
377{
378 char *host, *pass, *user, *oper_reason;
379 struct AddressRec *arec;
380 struct ConfItem *aconf;
381 int i;
382
383 for (i = 0; i < ATABLE_SIZE; i++)
384 {
385 for (arec = atable[i]; arec; arec = arec->next)
386 {
387 if(arec->type == CONF_DLINE)
388 {
389 aconf = arec->aconf;
390
391 if(!(aconf->flags & CONF_FLAGS_TEMPORARY))
392 continue;
393
394 get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
395
55abcbb2 396 sendto_one_numeric(source_p, RPL_STATSDLINE,
212380e3
AC
397 form_str (RPL_STATSDLINE),
398 'd', host, pass,
399 oper_reason ? "|" : "",
400 oper_reason ? oper_reason : "");
401 }
402 }
403 }
404}
405
406/* stats_deny()
407 *
408 * input - client to report to
409 * output - none
410 * side effects - client is given dline list.
411 */
412static void
413stats_deny (struct Client *source_p)
414{
415 char *host, *pass, *user, *oper_reason;
416 struct AddressRec *arec;
417 struct ConfItem *aconf;
418 int i;
419
420 for (i = 0; i < ATABLE_SIZE; i++)
421 {
422 for (arec = atable[i]; arec; arec = arec->next)
423 {
424 if(arec->type == CONF_DLINE)
425 {
426 aconf = arec->aconf;
427
428 if(aconf->flags & CONF_FLAGS_TEMPORARY)
429 continue;
430
431 get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
432
55abcbb2 433 sendto_one_numeric(source_p, RPL_STATSDLINE,
212380e3
AC
434 form_str (RPL_STATSDLINE),
435 'D', host, pass,
436 oper_reason ? "|" : "",
437 oper_reason ? oper_reason : "");
438 }
439 }
440 }
441}
442
443
444/* stats_exempt()
445 *
446 * input - client to report to
447 * output - none
448 * side effects - client is given list of exempt blocks
449 */
450static void
451stats_exempt(struct Client *source_p)
452{
29c92cf9
JB
453 char *name, *host, *user, *classname;
454 const char *pass;
212380e3
AC
455 struct AddressRec *arec;
456 struct ConfItem *aconf;
457 int i, port;
458
459 if(ConfigFileEntry.stats_e_disabled)
460 {
22f2f68a
JT
461 sendto_one_numeric(source_p, ERR_DISABLED,
462 form_str(ERR_DISABLED), "STATS e");
212380e3
AC
463 return;
464 }
465
466 for (i = 0; i < ATABLE_SIZE; i++)
467 {
468 for (arec = atable[i]; arec; arec = arec->next)
469 {
470 if(arec->type == CONF_EXEMPTDLINE)
471 {
472 aconf = arec->aconf;
473 get_printable_conf (aconf, &name, &host, &pass,
474 &user, &port, &classname);
475
55abcbb2 476 sendto_one_numeric(source_p, RPL_STATSDLINE,
212380e3
AC
477 form_str(RPL_STATSDLINE),
478 'e', host, pass, "", "");
479 }
480 }
481 }}
482
483
f237e31a
JT
484static void
485stats_events_cb(char *str, void *ptr)
486{
487 sendto_one_numeric(ptr, RPL_STATSDEBUG, "E :%s", str);
488}
489
490static void
491stats_events (struct Client *source_p)
492{
493 rb_dump_events(stats_events_cb, source_p);
212380e3
AC
494}
495
416d868e
JT
496static void
497stats_prop_klines(struct Client *source_p)
498{
499 struct ConfItem *aconf;
500 rb_dlink_node *ptr;
501 char *user, *host, *pass, *oper_reason;
502
503 RB_DLINK_FOREACH(ptr, prop_bans.head)
504 {
505 aconf = ptr->data;
506
507 /* Skip non-klines and deactivated klines. */
508 if(aconf->status != CONF_KILL)
509 continue;
510
55abcbb2 511 get_printable_kline(source_p, aconf, &host, &pass,
416d868e
JT
512 &user, &oper_reason);
513
514 sendto_one_numeric(source_p, RPL_STATSKLINE,
515 form_str(RPL_STATSKLINE),
516 'g', host, user, pass,
517 oper_reason ? "|" : "",
518 oper_reason ? oper_reason : "");
519 }
520}
521
212380e3
AC
522static void
523stats_hubleaf(struct Client *source_p)
524{
525 struct remote_conf *hub_p;
5b96d9a6 526 rb_dlink_node *ptr;
212380e3 527
55abcbb2 528 if((ConfigFileEntry.stats_h_oper_only ||
212380e3
AC
529 (ConfigServerHide.flatten_links && !IsExemptShide(source_p))) &&
530 !IsOper(source_p))
531 {
532 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
533 form_str (ERR_NOPRIVILEGES));
534 return;
535 }
536
5b96d9a6 537 RB_DLINK_FOREACH(ptr, hubleaf_conf_list.head)
212380e3
AC
538 {
539 hub_p = ptr->data;
540
541 if(hub_p->flags & CONF_HUB)
542 sendto_one_numeric(source_p, RPL_STATSHLINE,
543 form_str(RPL_STATSHLINE),
544 hub_p->host, hub_p->server);
545 else
546 sendto_one_numeric(source_p, RPL_STATSLLINE,
547 form_str(RPL_STATSLLINE),
548 hub_p->host, hub_p->server);
549 }
550}
551
552
553static void
554stats_auth (struct Client *source_p)
555{
556 /* Oper only, if unopered, return ERR_NOPRIVS */
557 if((ConfigFileEntry.stats_i_oper_only == 2) && !IsOper (source_p))
558 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
559 form_str (ERR_NOPRIVILEGES));
560
561 /* If unopered, Only return matching auth blocks */
562 else if((ConfigFileEntry.stats_i_oper_only == 1) && !IsOper (source_p))
563 {
564 struct ConfItem *aconf;
29c92cf9
JB
565 char *name, *host, *user, *classname;
566 const char *pass = "*";
212380e3
AC
567 int port;
568
569 if(MyConnect (source_p))
570 aconf = find_conf_by_address (source_p->host, source_p->sockhost, NULL,
571 (struct sockaddr *)&source_p->localClient->ip,
572 CONF_CLIENT,
2d77d121 573 GET_SS_FAMILY(&source_p->localClient->ip),
40c1fd47 574 source_p->username, NULL);
212380e3
AC
575 else
576 aconf = find_conf_by_address (source_p->host, NULL, NULL, NULL, CONF_CLIENT,
40c1fd47 577 0, source_p->username, NULL);
212380e3
AC
578
579 if(aconf == NULL)
580 return;
581
582 get_printable_conf (aconf, &name, &host, &pass, &user, &port, &classname);
40c1fd47
VY
583 if(!EmptyString(aconf->spasswd))
584 pass = aconf->spasswd;
212380e3
AC
585
586 sendto_one_numeric(source_p, RPL_STATSILINE, form_str(RPL_STATSILINE),
40c1fd47 587 name, pass, show_iline_prefix(source_p, aconf, user),
212380e3
AC
588 host, port, classname);
589 }
590
591 /* Theyre opered, or allowed to see all auth blocks */
592 else
593 report_auth (source_p);
594}
595
596
597static void
598stats_tklines(struct Client *source_p)
599{
600 /* Oper only, if unopered, return ERR_NOPRIVS */
601 if((ConfigFileEntry.stats_k_oper_only == 2) && !IsOper (source_p))
602 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
603 form_str (ERR_NOPRIVILEGES));
604
605 /* If unopered, Only return matching klines */
606 else if((ConfigFileEntry.stats_k_oper_only == 1) && !IsOper (source_p))
607 {
608 struct ConfItem *aconf;
609 char *host, *pass, *user, *oper_reason;
610
611 if(MyConnect (source_p))
612 aconf = find_conf_by_address (source_p->host, source_p->sockhost, NULL,
613 (struct sockaddr *)&source_p->localClient->ip,
614 CONF_KILL,
2d77d121 615 GET_SS_FAMILY(&source_p->localClient->ip),
40c1fd47 616 source_p->username, NULL);
212380e3
AC
617 else
618 aconf = find_conf_by_address (source_p->host, NULL, NULL, NULL, CONF_KILL,
40c1fd47 619 0, source_p->username, NULL);
212380e3
AC
620
621 if(aconf == NULL)
622 return;
623
624 /* dont report a permanent kline as a tkline */
625 if((aconf->flags & CONF_FLAGS_TEMPORARY) == 0)
626 return;
627
628 get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
629
55abcbb2 630 sendto_one_numeric(source_p, RPL_STATSKLINE,
d8f0b5d7 631 form_str(RPL_STATSKLINE), (aconf->flags & CONF_FLAGS_TEMPORARY) ? 'k' : 'K',
0a621c4b 632 host, user, pass, oper_reason ? "|" : "",
212380e3
AC
633 oper_reason ? oper_reason : "");
634 }
635 /* Theyre opered, or allowed to see all klines */
636 else
637 {
638 struct ConfItem *aconf;
5b96d9a6 639 rb_dlink_node *ptr;
212380e3
AC
640 int i;
641 char *user, *host, *pass, *oper_reason;
642
643 for(i = 0; i < LAST_TEMP_TYPE; i++)
644 {
5b96d9a6 645 RB_DLINK_FOREACH(ptr, temp_klines[i].head)
212380e3
AC
646 {
647 aconf = ptr->data;
648
55abcbb2 649 get_printable_kline(source_p, aconf, &host, &pass,
212380e3
AC
650 &user, &oper_reason);
651
652 sendto_one_numeric(source_p, RPL_STATSKLINE,
653 form_str(RPL_STATSKLINE),
654 'k', host, user, pass,
655 oper_reason ? "|" : "",
656 oper_reason ? oper_reason : "");
657 }
658 }
659 }
660}
661
34c10ca8
EM
662/* report_Klines()
663 *
664 * inputs - Client to report to, mask
665 * outputs -
666 * side effects - Reports configured K-lines to client_p.
667 */
668static void
669report_Klines(struct Client *source_p)
670{
671 char *host, *pass, *user, *oper_reason;
672 struct AddressRec *arec;
673 struct ConfItem *aconf = NULL;
674 int i;
675
676 for (i = 0; i < ATABLE_SIZE; i++)
677 {
678 for (arec = atable[i]; arec; arec = arec->next)
679 {
680 if(arec->type == CONF_KILL)
681 {
682 aconf = arec->aconf;
683
684 /* its a tempkline, theyre reported elsewhere */
685 if(aconf->flags & CONF_FLAGS_TEMPORARY)
686 continue;
687
688 get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
689 sendto_one_numeric(source_p, RPL_STATSKLINE,
690 form_str(RPL_STATSKLINE),
691 'K', host, user, pass,
692 oper_reason ? "|" : "",
693 oper_reason ? oper_reason : "");
694 }
695 }
696 }
697}
698
212380e3
AC
699static void
700stats_klines(struct Client *source_p)
701{
702 /* Oper only, if unopered, return ERR_NOPRIVS */
703 if((ConfigFileEntry.stats_k_oper_only == 2) && !IsOper (source_p))
704 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
705 form_str (ERR_NOPRIVILEGES));
706
707 /* If unopered, Only return matching klines */
708 else if((ConfigFileEntry.stats_k_oper_only == 1) && !IsOper (source_p))
709 {
710 struct ConfItem *aconf;
711 char *host, *pass, *user, *oper_reason;
712
713 /* search for a kline */
714 if(MyConnect (source_p))
715 aconf = find_conf_by_address (source_p->host, source_p->sockhost, NULL,
716 (struct sockaddr *)&source_p->localClient->ip,
717 CONF_KILL,
2d77d121 718 GET_SS_FAMILY(&source_p->localClient->ip),
40c1fd47 719 source_p->username, NULL);
212380e3
AC
720 else
721 aconf = find_conf_by_address (source_p->host, NULL, NULL, NULL, CONF_KILL,
40c1fd47 722 0, source_p->username, NULL);
212380e3
AC
723
724 if(aconf == NULL)
725 return;
726
212380e3
AC
727 get_printable_kline(source_p, aconf, &host, &pass, &user, &oper_reason);
728
729 sendto_one_numeric(source_p, RPL_STATSKLINE, form_str(RPL_STATSKLINE),
d8f0b5d7 730 (aconf->flags & CONF_FLAGS_TEMPORARY) ? 'k' : 'K',
0a621c4b 731 host, user, pass, oper_reason ? "|" : "",
212380e3
AC
732 oper_reason ? oper_reason : "");
733 }
734 /* Theyre opered, or allowed to see all klines */
735 else
736 report_Klines (source_p);
737}
738
739static void
740stats_messages(struct Client *source_p)
741{
4177311e 742 rb_dictionary_iter iter;
e8f1c19e 743 struct Message *msg;
e8f1c19e 744
56f84ded 745 RB_DICTIONARY_FOREACH(msg, &iter, cmd_dict)
e8f1c19e
EM
746 {
747 s_assert(msg->cmd != NULL);
748 sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
749 form_str(RPL_STATSCOMMANDS),
750 msg->cmd, msg->count,
751 msg->bytes, msg->rcount);
752 }
212380e3
AC
753}
754
755static void
756stats_dnsbl(struct Client *source_p)
757{
d3f6b808 758 rb_dictionary_iter iter;
5e9a3f86 759 struct BlacklistStats *stats;
212380e3 760
896370cc
SA
761 if(bl_stats == NULL)
762 return;
763
d3f6b808 764 RB_DICTIONARY_FOREACH(stats, &iter, bl_stats)
212380e3 765 {
212380e3 766 /* use RPL_STATSDEBUG for now -- jilles */
d3f6b808
EM
767 sendto_one_numeric(source_p, RPL_STATSDEBUG, "n :%d %s",
768 stats->hits, (const char *)iter.cur->key);
212380e3
AC
769 }
770}
771
772static void
773stats_oper(struct Client *source_p)
774{
775 struct oper_conf *oper_p;
5b96d9a6 776 rb_dlink_node *ptr;
212380e3
AC
777
778 if(!IsOper(source_p) && ConfigFileEntry.stats_o_oper_only)
779 {
780 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
781 form_str (ERR_NOPRIVILEGES));
782 return;
783 }
784
5b96d9a6 785 RB_DLINK_FOREACH(ptr, oper_conf_list.head)
212380e3
AC
786 {
787 oper_p = ptr->data;
55abcbb2
KB
788
789 sendto_one_numeric(source_p, RPL_STATSOLINE,
212380e3
AC
790 form_str(RPL_STATSOLINE),
791 oper_p->username, oper_p->host, oper_p->name,
880c94ad 792 IsOper(source_p) ? oper_p->privset->name : "0", "-1");
212380e3
AC
793 }
794}
795
ac37f16a
AC
796static void
797stats_capability_walk(const char *line, void *data)
798{
799 struct Client *client_p = data;
800
801 sendto_one_numeric(client_p, RPL_STATSDEBUG, "C :%s", line);
802}
803
804static void
805stats_capability(struct Client *client_p)
806{
807 capability_index_stats(stats_capability_walk, client_p);
808}
809
3a177354
JT
810static void
811stats_privset(struct Client *source_p)
812{
813 privilegeset_report(source_p);
814}
212380e3
AC
815
816/* stats_operedup()
817 *
818 * input - client pointer
819 * output - none
820 * side effects - client is shown a list of active opers
821 */
822static void
823stats_operedup (struct Client *source_p)
824{
825 struct Client *target_p;
5b96d9a6 826 rb_dlink_node *oper_ptr;
212380e3
AC
827 unsigned int count = 0;
828
5b96d9a6 829 RB_DLINK_FOREACH (oper_ptr, oper_list.head)
212380e3
AC
830 {
831 target_p = oper_ptr->data;
832
1123eefc 833 if(!SeesOper(target_p, source_p))
212380e3
AC
834 continue;
835
c127b45b 836 if(target_p->user->away)
212380e3
AC
837 continue;
838
839 count++;
840
841 sendto_one_numeric(source_p, RPL_STATSDEBUG,
842 "p :%s (%s@%s)",
55abcbb2 843 target_p->name, target_p->username,
212380e3
AC
844 target_p->host);
845 }
846
847 sendto_one_numeric(source_p, RPL_STATSDEBUG,
848 "p :%u staff members", count);
849
850 stats_p_spy (source_p);
851}
852
853static void
854stats_ports (struct Client *source_p)
855{
856 if(!IsOper (source_p) && ConfigFileEntry.stats_P_oper_only)
857 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
858 form_str (ERR_NOPRIVILEGES));
859 else
860 show_ports (source_p);
861}
862
863static void
864stats_tresv(struct Client *source_p)
865{
866 struct ConfItem *aconf;
2fc6772e 867 rb_radixtree_iteration_state state;
5b96d9a6 868 rb_dlink_node *ptr;
212380e3 869
5b96d9a6 870 RB_DLINK_FOREACH(ptr, resv_conf_list.head)
212380e3
AC
871 {
872 aconf = ptr->data;
873 if(aconf->hold)
55abcbb2 874 sendto_one_numeric(source_p, RPL_STATSQLINE,
212380e3 875 form_str(RPL_STATSQLINE),
70ea02eb 876 'q', aconf->port, aconf->host, aconf->passwd);
212380e3
AC
877 }
878
a4bf26dd 879 RB_RADIXTREE_FOREACH(aconf, &state, resv_tree)
212380e3 880 {
212380e3 881 if(aconf->hold)
55abcbb2 882 sendto_one_numeric(source_p, RPL_STATSQLINE,
212380e3 883 form_str(RPL_STATSQLINE),
70ea02eb 884 'q', aconf->port, aconf->host, aconf->passwd);
212380e3 885 }
212380e3
AC
886}
887
888
889static void
890stats_resv(struct Client *source_p)
891{
892 struct ConfItem *aconf;
2fc6772e 893 rb_radixtree_iteration_state state;
5b96d9a6 894 rb_dlink_node *ptr;
212380e3 895
5b96d9a6 896 RB_DLINK_FOREACH(ptr, resv_conf_list.head)
212380e3
AC
897 {
898 aconf = ptr->data;
899 if(!aconf->hold)
55abcbb2 900 sendto_one_numeric(source_p, RPL_STATSQLINE,
212380e3 901 form_str(RPL_STATSQLINE),
23959371 902 'Q', aconf->port, aconf->host, aconf->passwd);
212380e3
AC
903 }
904
a4bf26dd 905 RB_RADIXTREE_FOREACH(aconf, &state, resv_tree)
212380e3 906 {
212380e3 907 if(!aconf->hold)
55abcbb2 908 sendto_one_numeric(source_p, RPL_STATSQLINE,
212380e3 909 form_str(RPL_STATSQLINE),
23959371 910 'Q', aconf->port, aconf->host, aconf->passwd);
212380e3 911 }
212380e3
AC
912}
913
eb1b303d 914static void
e9ffc3c1 915stats_ssld_foreach(void *data, pid_t pid, int cli_count, enum ssld_status status, const char *version)
eb1b303d
SA
916{
917 struct Client *source_p = data;
918
919 sendto_one_numeric(source_p, RPL_STATSDEBUG,
e9ffc3c1 920 "S :%u %c %u :%s",
eb1b303d
SA
921 pid,
922 status == SSLD_DEAD ? 'D' : (status == SSLD_SHUTDOWN ? 'S' : 'A'),
e9ffc3c1
SA
923 cli_count,
924 version);
eb1b303d
SA
925}
926
927static void
928stats_ssld(struct Client *source_p)
929{
930 ssld_foreach_info(stats_ssld_foreach, source_p);
931}
932
212380e3
AC
933static void
934stats_usage (struct Client *source_p)
935{
2d77d121 936#ifndef _WIN32
212380e3
AC
937 struct rusage rus;
938 time_t secs;
939 time_t rup;
940#ifdef hz
941# define hzz hz
942#else
943# ifdef HZ
944# define hzz HZ
945# else
946 int hzz = 1;
947# endif
948#endif
949
950 if(getrusage(RUSAGE_SELF, &rus) == -1)
951 {
952 sendto_one_notice(source_p, ":Getruseage error: %s.",
953 strerror(errno));
954 return;
955 }
956 secs = rus.ru_utime.tv_sec + rus.ru_stime.tv_sec;
957 if(0 == secs)
958 secs = 1;
959
e3354945 960 rup = (rb_current_time() - startup_time) * hzz;
212380e3
AC
961 if(0 == rup)
962 rup = 1;
55abcbb2 963
212380e3 964 sendto_one_numeric(source_p, RPL_STATSDEBUG,
e4ce3b54 965 "R :CPU Secs %d:%02d User %d:%02d System %d:%02d",
212380e3
AC
966 (int) (secs / 60), (int) (secs % 60),
967 (int) (rus.ru_utime.tv_sec / 60),
968 (int) (rus.ru_utime.tv_sec % 60),
55abcbb2 969 (int) (rus.ru_stime.tv_sec / 60),
212380e3
AC
970 (int) (rus.ru_stime.tv_sec % 60));
971 sendto_one_numeric(source_p, RPL_STATSDEBUG,
972 "R :RSS %ld ShMem %ld Data %ld Stack %ld",
55abcbb2 973 rus.ru_maxrss, (rus.ru_ixrss / rup),
212380e3
AC
974 (rus.ru_idrss / rup), (rus.ru_isrss / rup));
975 sendto_one_numeric(source_p, RPL_STATSDEBUG,
976 "R :Swaps %d Reclaims %d Faults %d",
977 (int) rus.ru_nswap, (int) rus.ru_minflt, (int) rus.ru_majflt);
978 sendto_one_numeric(source_p, RPL_STATSDEBUG,
979 "R :Block in %d out %d",
980 (int) rus.ru_inblock, (int) rus.ru_oublock);
981 sendto_one_numeric(source_p, RPL_STATSDEBUG,
982 "R :Msg Rcv %d Send %d",
983 (int) rus.ru_msgrcv, (int) rus.ru_msgsnd);
984 sendto_one_numeric(source_p, RPL_STATSDEBUG,
985 "R :Signals %d Context Vol. %d Invol %d",
55abcbb2 986 (int) rus.ru_nsignals, (int) rus.ru_nvcsw,
212380e3 987 (int) rus.ru_nivcsw);
2d77d121 988#endif
212380e3
AC
989}
990
54ac8b60
VY
991static void
992stats_tstats (struct Client *source_p)
993{
47adde3d
VY
994 struct Client *target_p;
995 struct ServerStatistics sp;
996 rb_dlink_node *ptr;
997
998 memcpy(&sp, &ServerStats, sizeof(struct ServerStatistics));
999
8bd5767b
JT
1000 RB_DLINK_FOREACH(ptr, serv_list.head)
1001 {
1002 target_p = ptr->data;
1003
1004 sp.is_sbs += target_p->localClient->sendB;
1005 sp.is_sbr += target_p->localClient->receiveB;
679ccbe5 1006 sp.is_sti += (unsigned long long)(rb_current_time() - target_p->localClient->firsttime);
8bd5767b
JT
1007 sp.is_sv++;
1008 }
1009
1010 RB_DLINK_FOREACH(ptr, lclient_list.head)
1011 {
1012 target_p = ptr->data;
1013
1014 sp.is_cbs += target_p->localClient->sendB;
1015 sp.is_cbr += target_p->localClient->receiveB;
679ccbe5 1016 sp.is_cti += (unsigned long long)(rb_current_time() - target_p->localClient->firsttime);
8bd5767b 1017 sp.is_cl++;
47adde3d
VY
1018 }
1019
1020 RB_DLINK_FOREACH(ptr, unknown_list.head)
1021 {
1022 sp.is_ni++;
1023 }
1024
1025 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1026 "T :accepts %u refused %u", sp.is_ac, sp.is_ref);
1027 sendto_one_numeric(source_p, RPL_STATSDEBUG,
55abcbb2 1028 "T :rejected %u delaying %lu",
43946961 1029 sp.is_rej, delay_exit_length());
ae09cb7d
JT
1030 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1031 "T :throttled refused %u throttle list size %lu", sp.is_thr, throttle_size());
47adde3d
VY
1032 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1033 "T :nicks being delayed %lu",
1034 get_nd_count());
1035 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1036 "T :unknown commands %u prefixes %u",
1037 sp.is_unco, sp.is_unpf);
1038 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1039 "T :nick collisions %u saves %u unknown closes %u",
1040 sp.is_kill, sp.is_save, sp.is_ni);
1041 sendto_one_numeric(source_p, RPL_STATSDEBUG,
55abcbb2 1042 "T :wrong direction %u empty %u",
47adde3d
VY
1043 sp.is_wrdi, sp.is_empt);
1044 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1045 "T :numerics seen %u", sp.is_num);
1046 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1047 "T :tgchange blocked msgs %u restricted addrs %lu",
1048 sp.is_tgch, rb_dlink_list_length(&tgchange_list));
e88a1f1b
KB
1049 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1050 "T :ratelimit blocked commands %u", sp.is_rl);
47adde3d
VY
1051 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1052 "T :auth successes %u fails %u",
1053 sp.is_asuc, sp.is_abad);
1054 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1055 "T :sasl successes %u fails %u",
1056 sp.is_ssuc, sp.is_sbad);
1057 sendto_one_numeric(source_p, RPL_STATSDEBUG, "T :Client Server");
1058 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1059 "T :connected %u %u", sp.is_cl, sp.is_sv);
8bd5767b
JT
1060 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1061 "T :bytes sent %lluK %lluK",
55abcbb2 1062 sp.is_cbs / 1024,
8bd5767b
JT
1063 sp.is_sbs / 1024);
1064 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1065 "T :bytes recv %lluK %lluK",
55abcbb2 1066 sp.is_cbr / 1024,
7685dd09 1067 sp.is_sbr / 1024);
8bd5767b 1068 sendto_one_numeric(source_p, RPL_STATSDEBUG,
679ccbe5
AS
1069 "T :time connected %llu %llu",
1070 sp.is_cti, sp.is_sti);
212380e3
AC
1071}
1072
1073static void
1074stats_uptime (struct Client *source_p)
1075{
1076 time_t now;
1077
e3354945 1078 now = rb_current_time() - startup_time;
55abcbb2 1079 sendto_one_numeric(source_p, RPL_STATSUPTIME,
212380e3 1080 form_str (RPL_STATSUPTIME),
77910830
JT
1081 (int)(now / 86400), (int)((now / 3600) % 24),
1082 (int)((now / 60) % 60), (int)(now % 60));
212380e3
AC
1083 sendto_one_numeric(source_p, RPL_STATSCONN,
1084 form_str (RPL_STATSCONN),
55abcbb2 1085 MaxConnectionCount, MaxClientCount,
212380e3
AC
1086 Count.totalrestartcount);
1087}
1088
1089struct shared_flags
1090{
1091 int flag;
1092 char letter;
1093};
1094static struct shared_flags shared_flagtable[] =
1095{
1096 { SHARED_PKLINE, 'K' },
1097 { SHARED_TKLINE, 'k' },
1098 { SHARED_UNKLINE, 'U' },
1099 { SHARED_PXLINE, 'X' },
1100 { SHARED_TXLINE, 'x' },
1101 { SHARED_UNXLINE, 'Y' },
1102 { SHARED_PRESV, 'Q' },
1103 { SHARED_TRESV, 'q' },
1104 { SHARED_UNRESV, 'R' },
1105 { SHARED_LOCOPS, 'L' },
1106 { SHARED_REHASH, 'H' },
7d91f0da
JT
1107 { SHARED_TDLINE, 'd' },
1108 { SHARED_PDLINE, 'D' },
1109 { SHARED_UNDLINE, 'E' },
fe749d37 1110 { SHARED_GRANT, 'G' },
cc7ae51c 1111 { SHARED_DIE, 'I' },
212380e3
AC
1112 { 0, '\0'}
1113};
1114
1115
1116static void
1117stats_shared (struct Client *source_p)
1118{
1119 struct remote_conf *shared_p;
5b96d9a6 1120 rb_dlink_node *ptr;
59134282 1121 char buf[sizeof(shared_flagtable)/sizeof(shared_flagtable[0])];
212380e3
AC
1122 char *p;
1123 int i;
1124
5b96d9a6 1125 RB_DLINK_FOREACH(ptr, shared_conf_list.head)
212380e3
AC
1126 {
1127 shared_p = ptr->data;
1128
1129 p = buf;
1130
1131 *p++ = 'c';
1132
1133 for(i = 0; shared_flagtable[i].flag != 0; i++)
1134 {
1135 if(shared_p->flags & shared_flagtable[i].flag)
1136 *p++ = shared_flagtable[i].letter;
1137 }
1138
1139 *p = '\0';
1140
55abcbb2 1141 sendto_one_numeric(source_p, RPL_STATSULINE,
212380e3
AC
1142 form_str(RPL_STATSULINE),
1143 shared_p->server, shared_p->username,
1144 shared_p->host, buf);
1145 }
1146
5b96d9a6 1147 RB_DLINK_FOREACH(ptr, cluster_conf_list.head)
212380e3
AC
1148 {
1149 shared_p = ptr->data;
1150
1151 p = buf;
1152
1153 *p++ = 'C';
1154
1155 for(i = 0; shared_flagtable[i].flag != 0; i++)
1156 {
1157 if(shared_p->flags & shared_flagtable[i].flag)
1158 *p++ = shared_flagtable[i].letter;
1159 }
1160
1161 *p = '\0';
1162
55abcbb2 1163 sendto_one_numeric(source_p, RPL_STATSULINE,
212380e3
AC
1164 form_str(RPL_STATSULINE),
1165 shared_p->server, "*", "*", buf);
1166 }
1167}
1168
1169/* stats_servers()
1170 *
1171 * input - client pointer
1172 * output - none
1173 * side effects - client is shown lists of who connected servers
1174 */
1175static void
1176stats_servers (struct Client *source_p)
1177{
1178 struct Client *target_p;
5b96d9a6 1179 rb_dlink_node *ptr;
212380e3
AC
1180 time_t seconds;
1181 int days, hours, minutes;
1182 int j = 0;
1183
1184 if(ConfigServerHide.flatten_links && !IsOper(source_p) &&
1185 !IsExemptShide(source_p))
1186 {
1187 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
1188 form_str (ERR_NOPRIVILEGES));
1189 return;
1190 }
1191
5b96d9a6 1192 RB_DLINK_FOREACH (ptr, serv_list.head)
212380e3
AC
1193 {
1194 target_p = ptr->data;
1195
1196 j++;
e3354945 1197 seconds = rb_current_time() - target_p->localClient->firsttime;
212380e3
AC
1198
1199 days = (int) (seconds / 86400);
1200 seconds %= 86400;
1201 hours = (int) (seconds / 3600);
1202 seconds %= 3600;
1203 minutes = (int) (seconds / 60);
1204 seconds %= 60;
1205
1206 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1207 "V :%s (%s!*@*) Idle: %d SendQ: %d "
1208 "Connected: %d day%s, %d:%02d:%02d",
1209 target_p->name,
1210 (target_p->serv->by[0] ? target_p->serv->by : "Remote."),
e3354945 1211 (int) (rb_current_time() - target_p->localClient->lasttime),
e8e79621 1212 (int) rb_linebuf_len (&target_p->localClient->buf_sendq),
55abcbb2 1213 days, (days == 1) ? "" : "s", hours, minutes,
212380e3
AC
1214 (int) seconds);
1215 }
1216
1217 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1218 "V :%d Server(s)", j);
1219}
1220
1221static void
1222stats_tgecos(struct Client *source_p)
1223{
1224 struct ConfItem *aconf;
5b96d9a6 1225 rb_dlink_node *ptr;
212380e3 1226
5b96d9a6 1227 RB_DLINK_FOREACH(ptr, xline_conf_list.head)
212380e3
AC
1228 {
1229 aconf = ptr->data;
1230
1231 if(aconf->hold)
1232 sendto_one_numeric(source_p, RPL_STATSXLINE,
1233 form_str(RPL_STATSXLINE),
23959371 1234 'x', aconf->port, aconf->host,
212380e3
AC
1235 aconf->passwd);
1236 }
1237}
1238
1239static void
1240stats_gecos(struct Client *source_p)
1241{
1242 struct ConfItem *aconf;
5b96d9a6 1243 rb_dlink_node *ptr;
212380e3 1244
5b96d9a6 1245 RB_DLINK_FOREACH(ptr, xline_conf_list.head)
212380e3
AC
1246 {
1247 aconf = ptr->data;
1248
1249 if(!aconf->hold)
1250 sendto_one_numeric(source_p, RPL_STATSXLINE,
1251 form_str(RPL_STATSXLINE),
55abcbb2 1252 'X', aconf->port, aconf->host,
212380e3
AC
1253 aconf->passwd);
1254 }
1255}
1256
1257static void
1258stats_class(struct Client *source_p)
1259{
1260 if(ConfigFileEntry.stats_y_oper_only && !IsOper(source_p))
1261 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
1262 form_str (ERR_NOPRIVILEGES));
1263 else
1264 report_classes(source_p);
1265}
1266
1267static void
1268stats_memory (struct Client *source_p)
1269{
47adde3d
VY
1270 struct Client *target_p;
1271 struct Channel *chptr;
47adde3d
VY
1272 rb_dlink_node *rb_dlink;
1273 rb_dlink_node *ptr;
1274 int channel_count = 0;
1275 int local_client_conf_count = 0; /* local client conf links */
1276 int users_counted = 0; /* user structs */
1277
1278 int channel_users = 0;
1279 int channel_invites = 0;
1280 int channel_bans = 0;
1281 int channel_except = 0;
1282 int channel_invex = 0;
1283 int channel_quiets = 0;
1284
1285 int class_count = 0; /* classes */
1286 int conf_count = 0; /* conf lines */
1287 int users_invited_count = 0; /* users invited */
1288 int user_channels = 0; /* users in channels */
c127b45b 1289 int aways_counted = 0;
47adde3d
VY
1290 size_t number_servers_cached; /* number of servers cached by scache */
1291
1292 size_t channel_memory = 0;
1293 size_t channel_ban_memory = 0;
1294 size_t channel_except_memory = 0;
1295 size_t channel_invex_memory = 0;
1296 size_t channel_quiet_memory = 0;
1297
c127b45b 1298 size_t away_memory = 0; /* memory used by aways */
47adde3d
VY
1299 size_t ww = 0; /* whowas array count */
1300 size_t wwm = 0; /* whowas array memory used */
1301 size_t conf_memory = 0; /* memory used by conf lines */
1302 size_t mem_servers_cached; /* memory used by scache */
1303
1304 size_t linebuf_count = 0;
1305 size_t linebuf_memory_used = 0;
1306
1307 size_t total_channel_memory = 0;
1308 size_t totww = 0;
1309
1310 size_t local_client_count = 0;
1311 size_t local_client_memory_used = 0;
1312
1313 size_t remote_client_count = 0;
1314 size_t remote_client_memory_used = 0;
1315
1316 size_t total_memory = 0;
1317
b47f8a4f 1318 whowas_memory_usage(&ww, &wwm);
47adde3d
VY
1319
1320 RB_DLINK_FOREACH(ptr, global_client_list.head)
1321 {
1322 target_p = ptr->data;
1323 if(MyConnect(target_p))
1324 {
1325 local_client_conf_count++;
1326 }
1327
1328 if(target_p->user)
1329 {
1330 users_counted++;
1331 users_invited_count += rb_dlink_list_length(&target_p->user->invited);
1332 user_channels += rb_dlink_list_length(&target_p->user->channel);
c127b45b
SB
1333 if(target_p->user->away)
1334 {
1335 aways_counted++;
1336 away_memory += (strlen(target_p->user->away) + 1);
1337 }
47adde3d
VY
1338 }
1339 }
1340
1341 /* Count up all channels, ban lists, except lists, Invex lists */
1342 RB_DLINK_FOREACH(ptr, global_channel_list.head)
1343 {
1344 chptr = ptr->data;
1345 channel_count++;
1346 channel_memory += (strlen(chptr->chname) + sizeof(struct Channel));
1347
1348 channel_users += rb_dlink_list_length(&chptr->members);
1349 channel_invites += rb_dlink_list_length(&chptr->invites);
1350
1351 RB_DLINK_FOREACH(rb_dlink, chptr->banlist.head)
1352 {
47adde3d
VY
1353 channel_bans++;
1354
1355 channel_ban_memory += sizeof(rb_dlink_node) + sizeof(struct Ban);
1356 }
1357
1358 RB_DLINK_FOREACH(rb_dlink, chptr->exceptlist.head)
1359 {
47adde3d
VY
1360 channel_except++;
1361
1362 channel_except_memory += (sizeof(rb_dlink_node) + sizeof(struct Ban));
1363 }
1364
1365 RB_DLINK_FOREACH(rb_dlink, chptr->invexlist.head)
1366 {
47adde3d
VY
1367 channel_invex++;
1368
1369 channel_invex_memory += (sizeof(rb_dlink_node) + sizeof(struct Ban));
1370 }
1371
1372 RB_DLINK_FOREACH(rb_dlink, chptr->quietlist.head)
1373 {
47adde3d
VY
1374 channel_quiets++;
1375
1376 channel_quiet_memory += (sizeof(rb_dlink_node) + sizeof(struct Ban));
1377 }
1378 }
1379
1380 /* count up all classes */
1381
1382 class_count = rb_dlink_list_length(&class_list) + 1;
1383
1384 rb_count_rb_linebuf_memory(&linebuf_count, &linebuf_memory_used);
1385
1386 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1387 "z :Users %u(%lu) Invites %u(%lu)",
1388 users_counted,
1389 (unsigned long) users_counted * sizeof(struct User),
55abcbb2 1390 users_invited_count,
47adde3d
VY
1391 (unsigned long) users_invited_count * sizeof(rb_dlink_node));
1392
1393 sendto_one_numeric(source_p, RPL_STATSDEBUG,
c127b45b 1394 "z :User channels %u(%lu) Aways %u(%d)",
47adde3d 1395 user_channels,
c127b45b
SB
1396 (unsigned long) user_channels * sizeof(rb_dlink_node),
1397 aways_counted, (int) away_memory);
47adde3d
VY
1398
1399 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1400 "z :Attached confs %u(%lu)",
1401 local_client_conf_count,
1402 (unsigned long) local_client_conf_count * sizeof(rb_dlink_node));
1403
1404 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1405 "z :Conflines %u(%d)", conf_count, (int) conf_memory);
1406
1407 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1408 "z :Classes %u(%lu)",
55abcbb2 1409 class_count,
47adde3d
VY
1410 (unsigned long) class_count * sizeof(struct Class));
1411
1412 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1413 "z :Channels %u(%d)",
1414 channel_count, (int) channel_memory);
1415
1416 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1417 "z :Bans %u(%d) Exceptions %u(%d) Invex %u(%d) Quiets %u(%d)",
1418 channel_bans, (int) channel_ban_memory,
1419 channel_except, (int) channel_except_memory,
1420 channel_invex, (int) channel_invex_memory,
1421 channel_quiets, (int) channel_quiet_memory);
1422
1423 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1424 "z :Channel members %u(%lu) invite %u(%lu)",
1425 channel_users,
1426 (unsigned long) channel_users * sizeof(rb_dlink_node),
55abcbb2 1427 channel_invites,
47adde3d
VY
1428 (unsigned long) channel_invites * sizeof(rb_dlink_node));
1429
1430 total_channel_memory = channel_memory +
1431 channel_ban_memory +
1432 channel_users * sizeof(rb_dlink_node) + channel_invites * sizeof(rb_dlink_node);
1433
1434 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1435 "z :Whowas array %ld(%ld)",
1436 (long)ww, (long)wwm);
1437
1438 totww = wwm;
1439
1440 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1441 "z :Hash: client %u(%ld) chan %u(%ld)",
55abcbb2 1442 U_MAX, (long)(U_MAX * sizeof(rb_dlink_list)),
47adde3d
VY
1443 CH_MAX, (long)(CH_MAX * sizeof(rb_dlink_list)));
1444
1445 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1446 "z :linebuf %ld(%ld)",
1447 (long)linebuf_count, (long)linebuf_memory_used);
1448
1449 count_scache(&number_servers_cached, &mem_servers_cached);
1450
1451 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1452 "z :scache %ld(%ld)",
1453 (long)number_servers_cached, (long)mem_servers_cached);
1454
1455 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1456 "z :hostname hash %d(%ld)",
1457 HOST_MAX, (long)HOST_MAX * sizeof(rb_dlink_list));
1458
1459 total_memory = totww + total_channel_memory + conf_memory +
1460 class_count * sizeof(struct Class);
1461
1462 total_memory += mem_servers_cached;
1463 sendto_one_numeric(source_p, RPL_STATSDEBUG,
55abcbb2
KB
1464 "z :Total: whowas %d channel %d conf %d",
1465 (int) totww, (int) total_channel_memory,
47adde3d
VY
1466 (int) conf_memory);
1467
1468 count_local_client_memory(&local_client_count, &local_client_memory_used);
1469 total_memory += local_client_memory_used;
1470
1471 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1472 "z :Local client Memory in use: %ld(%ld)",
1473 (long)local_client_count, (long)local_client_memory_used);
1474
1475
1476 count_remote_client_memory(&remote_client_count, &remote_client_memory_used);
1477 total_memory += remote_client_memory_used;
1478
1479 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1480 "z :Remote client Memory in use: %ld(%ld)",
1481 (long)remote_client_count,
1482 (long)remote_client_memory_used);
212380e3
AC
1483}
1484
1485static void
1486stats_ziplinks (struct Client *source_p)
1487{
5b96d9a6 1488 rb_dlink_node *ptr;
212380e3 1489 struct Client *target_p;
4c79bbd3 1490 struct ZipStats *zipstats;
212380e3 1491 int sent_data = 0;
70b72a07 1492 char buf[128], buf1[128];
5b96d9a6 1493 RB_DLINK_FOREACH (ptr, serv_list.head)
212380e3
AC
1494 {
1495 target_p = ptr->data;
1496 if(IsCapable (target_p, CAP_ZIP))
1497 {
55abcbb2 1498 zipstats = target_p->localClient->zipstats;
4c79bbd3
VY
1499 sprintf(buf, "%.2f%%", zipstats->out_ratio);
1500 sprintf(buf1, "%.2f%%", zipstats->in_ratio);
212380e3 1501 sendto_one_numeric(source_p, RPL_STATSDEBUG,
70b72a07 1502 "Z :ZipLinks stats for %s send[%s compression "
4c79bbd3
VY
1503 "(%llu kB data/%llu kB wire)] recv[%s compression "
1504 "(%llu kB data/%llu kB wire)]",
212380e3 1505 target_p->name,
55abcbb2
KB
1506 buf, zipstats->out >> 10,
1507 zipstats->out_wire >> 10, buf1,
4c79bbd3 1508 zipstats->in >> 10, zipstats->in_wire >> 10);
212380e3
AC
1509 sent_data++;
1510 }
1511 }
1512
1513 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1514 "Z :%u ziplink(s)", sent_data);
1515}
1516
1517static void
1518stats_servlinks (struct Client *source_p)
1519{
1520 static char Sformat[] = ":%s %d %s %s %u %u %u %u %u :%u %u %s";
1521 long uptime, sendK, receiveK;
1522 struct Client *target_p;
5b96d9a6 1523 rb_dlink_node *ptr;
212380e3 1524 int j = 0;
70b72a07 1525 char buf[128];
212380e3
AC
1526
1527 if(ConfigServerHide.flatten_links && !IsOper (source_p) &&
1528 !IsExemptShide(source_p))
1529 {
1530 sendto_one_numeric(source_p, ERR_NOPRIVILEGES,
1531 form_str (ERR_NOPRIVILEGES));
1532 return;
1533 }
1534
1535 sendK = receiveK = 0;
1536
5b96d9a6 1537 RB_DLINK_FOREACH (ptr, serv_list.head)
212380e3
AC
1538 {
1539 target_p = ptr->data;
1540
1541 j++;
1542 sendK += target_p->localClient->sendK;
1543 receiveK += target_p->localClient->receiveK;
1544
1545 sendto_one(source_p, Sformat,
1546 get_id(&me, source_p), RPL_STATSLINKINFO, get_id(source_p, source_p),
b3ebc7ab 1547 target_p->name,
d269d0b6 1548 (int) rb_linebuf_len (&target_p->localClient->buf_sendq),
212380e3
AC
1549 (int) target_p->localClient->sendM,
1550 (int) target_p->localClient->sendK,
1551 (int) target_p->localClient->receiveM,
1552 (int) target_p->localClient->receiveK,
e3354945 1553 rb_current_time() - target_p->localClient->firsttime,
55abcbb2 1554 (rb_current_time() > target_p->localClient->lasttime) ?
e3354945 1555 (rb_current_time() - target_p->localClient->lasttime) : 0,
212380e3
AC
1556 IsOper (source_p) ? show_capabilities (target_p) : "TS");
1557 }
1558
1559 sendto_one_numeric(source_p, RPL_STATSDEBUG,
1560 "? :%u total server(s)", j);
1561
70b72a07 1562 snprintf(buf, sizeof buf, "%7.2f", _GMKv ((sendK)));
212380e3 1563 sendto_one_numeric(source_p, RPL_STATSDEBUG,
70b72a07
JT
1564 "? :Sent total : %s %s",
1565 buf, _GMKs (sendK));
1566 snprintf(buf, sizeof buf, "%7.2f", _GMKv ((receiveK)));
212380e3 1567 sendto_one_numeric(source_p, RPL_STATSDEBUG,
70b72a07
JT
1568 "? :Recv total : %s %s",
1569 buf, _GMKs (receiveK));
212380e3 1570
e3354945 1571 uptime = (rb_current_time() - startup_time);
70b72a07 1572 snprintf(buf, sizeof buf, "%7.2f %s (%4.1f K/s)",
55abcbb2 1573 _GMKv (me.localClient->sendK),
212380e3
AC
1574 _GMKs (me.localClient->sendK),
1575 (float) ((float) me.localClient->sendK / (float) uptime));
70b72a07
JT
1576 sendto_one_numeric(source_p, RPL_STATSDEBUG, "? :Server send: %s", buf);
1577 snprintf(buf, sizeof buf, "%7.2f %s (%4.1f K/s)",
212380e3
AC
1578 _GMKv (me.localClient->receiveK),
1579 _GMKs (me.localClient->receiveK),
1580 (float) ((float) me.localClient->receiveK / (float) uptime));
70b72a07 1581 sendto_one_numeric(source_p, RPL_STATSDEBUG, "? :Server recv: %s", buf);
212380e3
AC
1582}
1583
3c7d6fcc 1584static inline bool
4727c0f5
AC
1585stats_l_should_show_oper(struct Client *target_p)
1586{
3c7d6fcc 1587 return (!IsOperInvis(target_p));
4727c0f5
AC
1588}
1589
212380e3
AC
1590static void
1591stats_ltrace(struct Client *source_p, int parc, const char *parv[])
1592{
3c7d6fcc
EM
1593 bool doall = false;
1594 bool wilds = false;
212380e3
AC
1595 const char *name;
1596 char statchar = parv[1][0];
1597
1598 /* this is def targeted at us somehow.. */
1599 if(parc > 2 && !EmptyString(parv[2]))
1600 {
1601 /* directed at us generically? */
1602 if(match(parv[2], me.name) ||
1603 (!MyClient(source_p) && !irccmp(parv[2], me.id)))
1604 {
1605 name = me.name;
3c7d6fcc 1606 doall = true;
212380e3
AC
1607 }
1608 else
1609 {
1610 name = parv[2];
1611 wilds = strchr(name, '*') || strchr(name, '?');
1612 }
1613
1614 /* must be directed at a specific person thats not us */
1615 if(!doall && !wilds)
1616 {
1617 struct Client *target_p;
1618
1619 if(MyClient(source_p))
1620 target_p = find_named_person(name);
1621 else
1622 target_p = find_person(name);
1623
1624 if(target_p != NULL)
1625 {
1626 stats_spy(source_p, statchar, target_p->name);
1627 stats_l_client(source_p, target_p, statchar);
1628 }
1629 else
1630 sendto_one_numeric(source_p, ERR_NOSUCHSERVER,
1631 form_str(ERR_NOSUCHSERVER),
1632 name);
1633
1634 return;
1635 }
1636 }
1637 else
1638 {
1639 name = me.name;
3c7d6fcc 1640 doall = true;
212380e3
AC
1641 }
1642
1643 stats_spy(source_p, statchar, name);
1644
1645 if(doall)
1646 {
1647 /* local opers get everyone */
1648 if(MyOper(source_p))
1649 {
e82bda18
AC
1650 stats_l_list(source_p, name, doall, wilds, &unknown_list, statchar, NULL);
1651 stats_l_list(source_p, name, doall, wilds, &lclient_list, statchar, NULL);
212380e3
AC
1652 }
1653 else
1654 {
1655 /* they still need themselves if theyre local.. */
1656 if(MyClient(source_p))
1657 stats_l_client(source_p, source_p, statchar);
1658
4727c0f5 1659 stats_l_list(source_p, name, doall, wilds, &local_oper_list, statchar, stats_l_should_show_oper);
212380e3
AC
1660 }
1661
1662 if (!ConfigServerHide.flatten_links || IsOper(source_p) ||
1663 IsExemptShide(source_p))
e82bda18 1664 stats_l_list(source_p, name, doall, wilds, &serv_list, statchar, NULL);
212380e3
AC
1665
1666 return;
1667 }
1668
1669 /* ok, at this point theyre looking for a specific client whos on
1670 * our server.. but it contains a wildcard. --fl
1671 */
e82bda18 1672 stats_l_list(source_p, name, doall, wilds, &lclient_list, statchar, NULL);
212380e3
AC
1673
1674 return;
1675}
1676
212380e3 1677static void
3c7d6fcc
EM
1678stats_l_list(struct Client *source_p, const char *name, bool doall, bool wilds,
1679 rb_dlink_list * list, char statchar, bool (*check_fn)(struct Client *target_p))
212380e3 1680{
5b96d9a6 1681 rb_dlink_node *ptr;
212380e3
AC
1682 struct Client *target_p;
1683
1684 /* send information about connections which match. note, we
1685 * dont need tests for IsInvisible(), because non-opers will
1686 * never get here for normal clients --fl
1687 */
5b96d9a6 1688 RB_DLINK_FOREACH(ptr, list->head)
212380e3
AC
1689 {
1690 target_p = ptr->data;
1691
1692 if(!doall && wilds && !match(name, target_p->name))
1693 continue;
1694
e82bda18
AC
1695 if (check_fn == NULL || check_fn(target_p))
1696 stats_l_client(source_p, target_p, statchar);
212380e3
AC
1697 }
1698}
1699
1700void
1701stats_l_client(struct Client *source_p, struct Client *target_p,
1702 char statchar)
1703{
1704 if(IsAnyServer(target_p))
1705 {
1706 sendto_one_numeric(source_p, RPL_STATSLINKINFO, Lformat,
b3ebc7ab 1707 target_p->name,
d269d0b6 1708 (int) rb_linebuf_len(&target_p->localClient->buf_sendq),
212380e3
AC
1709 (int) target_p->localClient->sendM,
1710 (int) target_p->localClient->sendK,
1711 (int) target_p->localClient->receiveM,
1712 (int) target_p->localClient->receiveK,
e3354945 1713 rb_current_time() - target_p->localClient->firsttime,
55abcbb2 1714 (rb_current_time() > target_p->localClient->lasttime) ?
e3354945 1715 (rb_current_time() - target_p->localClient->lasttime) : 0,
212380e3
AC
1716 IsOper(source_p) ? show_capabilities(target_p) : "-");
1717 }
1718
1719 else
1720 {
1721 sendto_one_numeric(source_p, RPL_STATSLINKINFO, Lformat,
1722 show_ip(source_p, target_p) ?
1723 (IsUpper(statchar) ?
1724 get_client_name(target_p, SHOW_IP) :
1725 get_client_name(target_p, HIDE_IP)) :
1726 get_client_name(target_p, MASK_IP),
d269d0b6 1727 (int) rb_linebuf_len(&target_p->localClient->buf_sendq),
212380e3
AC
1728 (int) target_p->localClient->sendM,
1729 (int) target_p->localClient->sendK,
1730 (int) target_p->localClient->receiveM,
1731 (int) target_p->localClient->receiveK,
e3354945 1732 rb_current_time() - target_p->localClient->firsttime,
55abcbb2 1733 (rb_current_time() > target_p->localClient->lasttime) ?
e3354945 1734 (rb_current_time() - target_p->localClient->lasttime) : 0,
212380e3
AC
1735 "-");
1736 }
1737}
1738
f237e31a
JT
1739static void
1740rb_dump_fd_callback(int fd, const char *desc, void *data)
1741{
1742 struct Client *source_p = data;
1743 sendto_one_numeric(source_p, RPL_STATSDEBUG, "F :fd %-3d desc '%s'", fd, desc);
1744}
1745
1746static void
1747stats_comm(struct Client *source_p)
1748{
1749 rb_dump_fd(rb_dump_fd_callback, source_p);
a235e410
VY
1750}
1751
212380e3
AC
1752/*
1753 * stats_spy
1754 *
1755 * inputs - pointer to client doing the /stats
1756 * - char letter they are doing /stats on
1757 * output - none
1758 * side effects -
1759 * This little helper function reports to opers if configured.
212380e3 1760 */
ea2d2700 1761static int
212380e3
AC
1762stats_spy(struct Client *source_p, char statchar, const char *name)
1763{
1764 hook_data_int data;
1765
1766 data.client = source_p;
1767 data.arg1 = name;
1768 data.arg2 = (int) statchar;
ea2d2700 1769 data.result = 0;
212380e3
AC
1770
1771 call_hook(doing_stats_hook, &data);
ea2d2700
AC
1772
1773 return data.result;
212380e3
AC
1774}
1775
1776/* stats_p_spy()
1777 *
1778 * input - pointer to client doing stats
1779 * ouput -
1780 * side effects - call hook doing_stats_p
1781 */
1782static void
1783stats_p_spy (struct Client *source_p)
1784{
1785 hook_data data;
1786
1787 data.client = source_p;
1788 data.arg1 = data.arg2 = NULL;
1789
1790 call_hook(doing_stats_p_hook, &data);
1791}