ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_stats.c
Revision: 1576
Committed: Thu Oct 18 14:41:13 2012 UTC (12 years, 10 months ago) by michael
Content type: text/x-csrc
Original Path: ircd-hybrid-8/modules/m_stats.c
File size: 49558 byte(s)
Log Message:
- Fixed bug in stats_klines() showing oper_reason to unopered clients
- Fixed /stats d|D showing "(null)" if there's no oper_reason

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * m_stats.c: Sends the user statistics or config information.
4 *
5 * Copyright (C) 2002 by the past and present ircd coders, and others.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 #include "stdinc.h"
26 #include "list.h" /* dlink_node/dlink_list */
27 #include "balloc.h"
28 #include "client.h" /* Client */
29 #include "irc_string.h"
30 #include "ircd.h" /* me */
31 #include "listener.h" /* show_ports */
32 #include "s_gline.h"
33 #include "hostmask.h"
34 #include "numeric.h" /* ERR_xxx */
35 #include "send.h" /* sendto_one */
36 #include "fdlist.h" /* PF and friends */
37 #include "s_bsd.h" /* highest_fd */
38 #include "conf.h" /* AccessItem, report_configured_links */
39 #include "s_misc.h" /* serv_info */
40 #include "s_serv.h" /* hunt_server */
41 #include "s_user.h" /* show_opers */
42 #include "event.h" /* events */
43 #include "dbuf.h"
44 #include "hook.h"
45 #include "parse.h"
46 #include "modules.h"
47 #include "resv.h" /* report_resv */
48 #include "whowas.h"
49 #include "watch.h"
50 #include "irc_res.h"
51
52
53 const char *from, *to;
54
55 /*
56 * This is part of the STATS replies. There is no offical numeric for this
57 * since this isnt an official command, in much the same way as HASH isnt.
58 * It is also possible that some systems wont support this call or have
59 * different field names for "struct rusage".
60 * -avalon
61 */
62 static void
63 stats_usage(struct Client *source_p, int parc, char *parv[])
64 {
65 struct rusage rus;
66 time_t secs;
67 time_t rup;
68 #ifdef hz
69 # define hzz hz
70 #else
71 # ifdef HZ
72 # define hzz HZ
73 # else
74 int hzz = 1;
75 # endif
76 #endif
77
78 if (getrusage(RUSAGE_SELF, &rus) == -1)
79 {
80 sendto_one(source_p, ":%s NOTICE %s :Getruseage error: %s",
81 me.name, source_p->name, strerror(errno));
82 return;
83 }
84
85 secs = rus.ru_utime.tv_sec + rus.ru_stime.tv_sec;
86
87 if (secs == 0)
88 secs = 1;
89
90 rup = (CurrentTime - me.localClient->since) * hzz;
91
92 if (rup == 0)
93 rup = 1;
94
95 sendto_one(source_p,
96 ":%s %d %s R :CPU Secs %d:%d User %d:%d System %d:%d",
97 me.name, RPL_STATSDEBUG, source_p->name, (int)(secs/60), (int)(secs%60),
98 (int)(rus.ru_utime.tv_sec/60), (int)(rus.ru_utime.tv_sec%60),
99 (int)(rus.ru_stime.tv_sec/60), (int)(rus.ru_stime.tv_sec%60));
100 sendto_one(source_p, ":%s %d %s R :RSS %ld ShMem %ld Data %ld Stack %ld",
101 me.name, RPL_STATSDEBUG, source_p->name, rus.ru_maxrss,
102 (rus.ru_ixrss / rup), (rus.ru_idrss / rup),
103 (rus.ru_isrss / rup));
104 sendto_one(source_p, ":%s %d %s R :Swaps %d Reclaims %d Faults %d",
105 me.name, RPL_STATSDEBUG, source_p->name, (int)rus.ru_nswap,
106 (int)rus.ru_minflt, (int)rus.ru_majflt);
107 sendto_one(source_p, ":%s %d %s R :Block in %d out %d",
108 me.name, RPL_STATSDEBUG, source_p->name, (int)rus.ru_inblock,
109 (int)rus.ru_oublock);
110 sendto_one(source_p, ":%s %d %s R :Msg Rcv %d Send %d",
111 me.name, RPL_STATSDEBUG, source_p->name, (int)rus.ru_msgrcv,
112 (int)rus.ru_msgsnd);
113 sendto_one(source_p, ":%s %d %s R :Signals %d Context Vol. %d Invol %d",
114 me.name, RPL_STATSDEBUG, source_p->name, (int)rus.ru_nsignals,
115 (int)rus.ru_nvcsw, (int)rus.ru_nivcsw);
116 }
117
118 static void
119 stats_memory(struct Client *source_p, int parc, char *parv[])
120 {
121 const dlink_node *gptr = NULL;
122 const dlink_node *dlink = NULL;
123
124 unsigned int local_client_conf_count = 0; /* local client conf links */
125 unsigned int users_counted = 0; /* user structs */
126
127 unsigned int channel_members = 0;
128 unsigned int channel_invites = 0;
129 unsigned int channel_bans = 0;
130 unsigned int channel_except = 0;
131 unsigned int channel_invex = 0;
132
133 unsigned int wwu = 0; /* whowas users */
134 unsigned int class_count = 0; /* classes */
135 unsigned int aways_counted = 0;
136 unsigned int number_ips_stored; /* number of ip addresses hashed */
137
138 uint64_t channel_memory = 0;
139 uint64_t channel_ban_memory = 0;
140 uint64_t channel_except_memory = 0;
141 uint64_t channel_invex_memory = 0;
142
143 unsigned int safelist_count = 0;
144 uint64_t safelist_memory = 0;
145
146 uint64_t wwm = 0; /* whowas array memory used */
147 uint64_t conf_memory = 0; /* memory used by conf lines */
148 uint64_t mem_ips_stored; /* memory used by ip address hash */
149
150 uint64_t total_channel_memory = 0;
151 uint64_t totww = 0;
152
153 unsigned int local_client_count = 0;
154 unsigned int remote_client_count = 0;
155
156 uint64_t local_client_memory_used = 0;
157 uint64_t remote_client_memory_used = 0;
158
159 uint64_t total_memory = 0;
160 unsigned int topic_count = 0;
161
162 unsigned int watch_list_headers = 0; /* watchlist headers */
163 unsigned int watch_list_entries = 0; /* watchlist entries */
164 uint64_t watch_list_memory = 0; /* watchlist memory used */
165
166
167 DLINK_FOREACH(gptr, global_client_list.head)
168 {
169 struct Client *target_p = gptr->data;
170
171 if (MyConnect(target_p))
172 {
173 ++local_client_count;
174 local_client_conf_count += dlink_list_length(&target_p->localClient->confs);
175 watch_list_entries += dlink_list_length(&target_p->localClient->watches);
176 }
177 else
178 ++remote_client_count;
179
180 if (IsClient(target_p))
181 {
182 ++users_counted;
183
184 if (target_p->away[0])
185 ++aways_counted;
186 }
187 }
188
189 /* Count up all channels, ban lists, except lists, Invex lists */
190 channel_memory = dlink_list_length(&global_channel_list) *
191 sizeof(struct Channel);
192 DLINK_FOREACH(gptr, global_channel_list.head)
193 {
194 const struct Ban *actualBan;
195 const struct Channel *chptr = gptr->data;
196
197 channel_members += dlink_list_length(&chptr->members);
198 channel_invites += dlink_list_length(&chptr->invites);
199
200 if (chptr->topic[0])
201 ++topic_count;
202
203 channel_bans += dlink_list_length(&chptr->banlist);
204 channel_ban_memory += dlink_list_length(&chptr->banlist) * sizeof(struct Ban);
205
206 DLINK_FOREACH(dlink, chptr->banlist.head)
207 {
208 actualBan = dlink->data;
209 assert(actualBan->who);
210
211 channel_ban_memory += actualBan->len + 1;
212 channel_ban_memory += strlen(actualBan->who) + 1;
213 }
214
215 channel_except += dlink_list_length(&chptr->exceptlist);
216 channel_except_memory += dlink_list_length(&chptr->exceptlist) * sizeof(struct Ban);
217
218 DLINK_FOREACH(dlink, chptr->exceptlist.head)
219 {
220 actualBan = dlink->data;
221 assert(actualBan->who);
222
223 channel_except_memory += actualBan->len + 1;
224 channel_except_memory += strlen(actualBan->who) + 1;
225 }
226
227 channel_invex += dlink_list_length(&chptr->invexlist);
228 channel_invex_memory += dlink_list_length(&chptr->invexlist) * sizeof(struct Ban);
229
230 DLINK_FOREACH(dlink, chptr->invexlist.head)
231 {
232 actualBan = dlink->data;
233 assert(actualBan->who);
234
235 channel_invex_memory += actualBan->len + 1;
236 channel_invex_memory += strlen(actualBan->who) + 1;
237 }
238 }
239
240 if ((safelist_count = dlink_list_length(&listing_client_list)))
241 {
242 safelist_memory = safelist_count * sizeof(struct ListTask);
243 DLINK_FOREACH(gptr, listing_client_list.head)
244 {
245 const struct Client *acptr = gptr->data;
246
247 DLINK_FOREACH(dlink, acptr->localClient->list_task->show_mask.head)
248 safelist_memory += strlen(dlink->data);
249
250 DLINK_FOREACH(dlink, acptr->localClient->list_task->hide_mask.head)
251 safelist_memory += strlen(dlink->data);
252 }
253 }
254
255 #if 0
256 /* XXX THIS has to be fixed !!!! -db */
257 /* count up all config items */
258 DLINK_FOREACH(dlink, ConfigItemList.head)
259 {
260 aconf = dlink->data;
261 conf_memory += aconf->host ? strlen(aconf->host)+1 : 0;
262 conf_memory += aconf->passwd ? strlen(aconf->passwd)+1 : 0;
263 conf_memory += aconf->name ? strlen(aconf->name)+1 : 0;
264 conf_memory += sizeof(struct AccessItem);
265 }
266 #endif
267 /* count up all classes */
268 class_count = dlink_list_length(&class_items);
269
270 count_whowas_memory(&wwu, &wwm);
271 watch_count_memory(&watch_list_headers, &watch_list_memory);
272
273 sendto_one(source_p, ":%s %d %s z :WATCH headers %u(%u) entries %d(%u)",
274 me.name, RPL_STATSDEBUG, source_p->name, watch_list_headers,
275 watch_list_memory, watch_list_entries,
276 watch_list_entries * sizeof(dlink_node) * 2);
277
278 sendto_one(source_p, ":%s %d %s z :Clients %u(%u)",
279 me.name, RPL_STATSDEBUG, source_p->name, users_counted,
280 (users_counted * sizeof(struct Client)));
281
282 sendto_one(source_p, ":%s %d %s z :User aways %u",
283 me.name, RPL_STATSDEBUG, source_p->name,
284 aways_counted);
285
286 sendto_one(source_p, ":%s %d %s z :Attached confs %u(%llu)",
287 me.name, RPL_STATSDEBUG, source_p->name,
288 local_client_conf_count,
289 (unsigned long long)(local_client_conf_count * sizeof(dlink_node)));
290
291 sendto_one(source_p, ":%s %d %s z :Resv channels %u(%lu) nicks %u(%lu)",
292 me.name, RPL_STATSDEBUG, source_p->name,
293 dlink_list_length(&resv_channel_list),
294 dlink_list_length(&resv_channel_list) * sizeof(struct ResvChannel),
295 dlink_list_length(&nresv_items),
296 dlink_list_length(&nresv_items) * sizeof(struct MatchItem));
297
298 sendto_one(source_p, ":%s %d %s z :Classes %u(%llu)",
299 me.name, RPL_STATSDEBUG, source_p->name,
300 class_count, (unsigned long long)(class_count * sizeof(struct ClassItem)));
301
302 sendto_one(source_p, ":%s %d %s z :Channels %uu(%llu) Topics %u(%u)",
303 me.name, RPL_STATSDEBUG, source_p->name,
304 dlink_list_length(&global_channel_list),
305 channel_memory, topic_count, topic_count *
306 (TOPICLEN + 1 + USERHOST_REPLYLEN));
307
308 sendto_one(source_p, ":%s %d %s z :Bans %u(%llu)",
309 me.name, RPL_STATSDEBUG, source_p->name,
310 channel_bans, channel_ban_memory);
311
312 sendto_one(source_p, ":%s %d %s z :Exceptions %u(%llu)",
313 me.name, RPL_STATSDEBUG, source_p->name,
314 channel_except, channel_except_memory);
315
316 sendto_one(source_p, ":%s %d %s z :Invex %u(%llu)",
317 me.name, RPL_STATSDEBUG, source_p->name,
318 channel_invex, channel_invex_memory);
319
320 sendto_one(source_p, ":%s %d %s z :Channel members %u(%llu) invites %u(%llu)",
321 me.name, RPL_STATSDEBUG, source_p->name, channel_members,
322 (unsigned long long)(channel_members * sizeof(struct Membership)),
323 channel_invites, (unsigned long long)channel_invites *
324 sizeof(dlink_node) * 2);
325
326 total_channel_memory = channel_memory + channel_ban_memory +
327 channel_members * sizeof(struct Membership) +
328 (channel_invites * sizeof(dlink_node)*2);
329
330 sendto_one(source_p, ":%s %d %s z :Safelist %u(%llu)",
331 me.name, RPL_STATSDEBUG, source_p->name,
332 safelist_count, safelist_memory);
333
334 sendto_one(source_p, ":%s %d %s z :Whowas users %u(%llu)",
335 me.name, RPL_STATSDEBUG, source_p->name,
336 wwu, (unsigned long long)(wwu * sizeof(struct Client)));
337
338 sendto_one(source_p, ":%s %d %s z :Whowas array %u(%llu)",
339 me.name, RPL_STATSDEBUG, source_p->name,
340 NICKNAMEHISTORYLENGTH, wwm);
341
342 totww = wwu * sizeof(struct Client) + wwm;
343
344 count_ip_hash(&number_ips_stored,&mem_ips_stored);
345 sendto_one(source_p, ":%s %d %s z :iphash %u(%llu)",
346 me.name, RPL_STATSDEBUG, source_p->name,
347 number_ips_stored, mem_ips_stored);
348
349 total_memory = totww + total_channel_memory + conf_memory + class_count *
350 sizeof(struct ClassItem);
351 sendto_one(source_p, ":%s %d %s z :Total: whowas %llu channel %llu conf %llu",
352 me.name, RPL_STATSDEBUG, source_p->name, totww,
353 total_channel_memory, conf_memory);
354
355 local_client_memory_used = local_client_count*(sizeof(struct Client) + sizeof(struct LocalUser));
356 total_memory += local_client_memory_used;
357 sendto_one(source_p, ":%s %d %s z :Local client Memory in use: %u(%llu)",
358 me.name, RPL_STATSDEBUG, source_p->name, local_client_count,
359 local_client_memory_used);
360
361 remote_client_memory_used = remote_client_count * sizeof(struct Client);
362 total_memory += remote_client_memory_used;
363 sendto_one(source_p, ":%s %d %s z :Remote client Memory in use: %u(%llu)",
364 me.name, RPL_STATSDEBUG, source_p->name, remote_client_count,
365 remote_client_memory_used);
366
367 block_heap_report_stats(source_p);
368
369 sendto_one(source_p,
370 ":%s %d %s z :TOTAL: %llu",
371 me.name, RPL_STATSDEBUG, source_p->name,
372 total_memory);
373 }
374
375 static void
376 stats_dns_servers(struct Client *source_p)
377 {
378 report_dns_servers(source_p);
379 }
380
381 static void
382 stats_connect(struct Client *source_p, int parc, char *parv[])
383 {
384 report_confitem_types(source_p, SERVER_TYPE);
385 }
386
387 /* stats_deny()
388 *
389 * input - client to report to
390 * output - none
391 * side effects - client is given dline list.
392 */
393 static void
394 stats_deny(struct Client *source_p, int parc, char *parv[])
395 {
396 struct ConfItem *conf;
397 struct AccessItem *aconf;
398 dlink_node *ptr = NULL;
399 unsigned int i = 0;
400
401
402 for (i = 0; i < ATABLE_SIZE; ++i)
403 {
404 DLINK_FOREACH(ptr, atable[i].head)
405 {
406 struct AddressRec *arec = ptr->data;
407
408 if (arec->type == CONF_DLINE)
409 {
410 aconf = arec->aconf;
411
412 /* dont report a tdline as a dline */
413 if (aconf->flags & CONF_FLAGS_TEMPORARY)
414 continue;
415
416 conf = unmap_conf_item(aconf);
417
418 sendto_one(source_p, form_str(RPL_STATSDLINE),
419 from, to, 'D', aconf->host, aconf->reason,
420 aconf->oper_reason ? aconf->oper_reason : "");
421 }
422 }
423 }
424 }
425
426 /* stats_tdeny()
427 *
428 * input - client to report to
429 * output - none
430 * side effects - client is given dline list.
431 */
432 static void
433 stats_tdeny(struct Client *source_p, int parc, char *parv[])
434 {
435 struct ConfItem *conf;
436 struct AccessItem *aconf;
437 dlink_node *ptr = NULL;
438 unsigned int i = 0;
439
440
441 for (i = 0; i < ATABLE_SIZE; ++i)
442 {
443 DLINK_FOREACH(ptr, atable[i].head)
444 {
445 struct AddressRec *arec = ptr->data;
446
447 if (arec->type == CONF_DLINE)
448 {
449 aconf = arec->aconf;
450
451 /* dont report a permanent dline as a tdline */
452 if (!(aconf->flags & CONF_FLAGS_TEMPORARY))
453 continue;
454
455 conf = unmap_conf_item(aconf);
456
457 sendto_one(source_p, form_str(RPL_STATSDLINE),
458 from, to, 'd', aconf->host, aconf->reason,
459 aconf->oper_reason ? aconf->oper_reason : "");
460 }
461 }
462 }
463 }
464
465 /* stats_exempt()
466 *
467 * input - client to report to
468 * output - none
469 * side effects - client is given list of exempt blocks
470 */
471 static void
472 stats_exempt(struct Client *source_p, int parc, char *parv[])
473 {
474 struct ConfItem *conf;
475 struct AccessItem *aconf;
476 dlink_node *ptr = NULL;
477 unsigned int i = 0;
478
479 if (ConfigFileEntry.stats_e_disabled)
480 {
481 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
482 from, to);
483 return;
484 }
485
486
487 for (i = 0; i < ATABLE_SIZE; ++i)
488 {
489 DLINK_FOREACH(ptr, atable[i].head)
490 {
491 struct AddressRec *arec = ptr->data;
492
493 if (arec->type == CONF_EXEMPTDLINE)
494 {
495 aconf = arec->aconf;
496
497 conf = unmap_conf_item(aconf);
498
499 sendto_one(source_p, form_str(RPL_STATSDLINE),
500 from, to, 'e', aconf->host,
501 aconf->reason, aconf->oper_reason ? aconf->oper_reason : "");
502 }
503 }
504 }
505 }
506
507 static void
508 stats_events(struct Client *source_p, int parc, char *parv[])
509 {
510 show_events(source_p);
511 }
512
513 /* stats_pending_glines()
514 *
515 * input - client pointer
516 * output - none
517 * side effects - client is shown list of pending glines
518 */
519 static void
520 stats_pending_glines(struct Client *source_p, int parc, char *parv[])
521 {
522 const dlink_node *dn_ptr = NULL;
523 const struct gline_pending *glp_ptr = NULL;
524 char timebuffer[MAX_DATE_STRING] = { '\0' };
525 struct tm *tmptr = NULL;
526
527 if (!ConfigFileEntry.glines)
528 {
529 sendto_one(source_p, ":%s NOTICE %s :This server does not support G-Lines",
530 from, to);
531 return;
532 }
533
534 if (dlink_list_length(&pending_glines[GLINE_PENDING_ADD_TYPE]) > 0)
535 sendto_one(source_p, ":%s NOTICE %s :Pending G-lines",
536 from, to);
537
538 DLINK_FOREACH(dn_ptr, pending_glines[GLINE_PENDING_ADD_TYPE].head)
539 {
540 glp_ptr = dn_ptr->data;
541 tmptr = localtime(&glp_ptr->vote_1.time_request);
542 strftime(timebuffer, MAX_DATE_STRING, "%Y/%m/%d %H:%M:%S", tmptr);
543
544 sendto_one(source_p,
545 ":%s NOTICE %s :1) %s!%s@%s on %s requested gline at %s for %s@%s [%s]",
546 from, to, glp_ptr->vote_1.oper_nick,
547 glp_ptr->vote_1.oper_user, glp_ptr->vote_1.oper_host,
548 glp_ptr->vote_1.oper_server, timebuffer,
549 glp_ptr->user, glp_ptr->host, glp_ptr->vote_1.reason);
550
551 if (glp_ptr->vote_2.oper_nick[0] != '\0')
552 {
553 tmptr = localtime(&glp_ptr->vote_2.time_request);
554 strftime(timebuffer, MAX_DATE_STRING, "%Y/%m/%d %H:%M:%S", tmptr);
555 sendto_one(source_p,
556 ":%s NOTICE %s :2) %s!%s@%s on %s requested gline at %s for %s@%s [%s]",
557 from, to, glp_ptr->vote_2.oper_nick,
558 glp_ptr->vote_2.oper_user, glp_ptr->vote_2.oper_host,
559 glp_ptr->vote_2.oper_server, timebuffer,
560 glp_ptr->user, glp_ptr->host, glp_ptr->vote_2.reason);
561 }
562 }
563
564 sendto_one(source_p, ":%s NOTICE %s :End of Pending G-lines",
565 from, to);
566
567 if (dlink_list_length(&pending_glines[GLINE_PENDING_DEL_TYPE]) > 0)
568 sendto_one(source_p, ":%s NOTICE %s :Pending UNG-lines",
569 from, to);
570
571 DLINK_FOREACH(dn_ptr, pending_glines[GLINE_PENDING_DEL_TYPE].head)
572 {
573 glp_ptr = dn_ptr->data;
574 tmptr = localtime(&glp_ptr->vote_1.time_request);
575 strftime(timebuffer, MAX_DATE_STRING, "%Y/%m/%d %H:%M:%S", tmptr);
576
577 sendto_one(source_p,
578 ":%s NOTICE %s :1) %s!%s@%s on %s requested ungline at %s for %s@%s [%s]",
579 from, to, glp_ptr->vote_1.oper_nick,
580 glp_ptr->vote_1.oper_user, glp_ptr->vote_1.oper_host,
581 glp_ptr->vote_1.oper_server, timebuffer,
582 glp_ptr->user, glp_ptr->host, glp_ptr->vote_1.reason);
583
584 if (glp_ptr->vote_2.oper_nick[0] != '\0')
585 {
586 tmptr = localtime(&glp_ptr->vote_2.time_request);
587 strftime(timebuffer, MAX_DATE_STRING, "%Y/%m/%d %H:%M:%S", tmptr);
588 sendto_one(source_p,
589 ":%s NOTICE %s :2) %s!%s@%s on %s requested ungline at %s for %s@%s [%s]",
590 from, to, glp_ptr->vote_2.oper_nick,
591 glp_ptr->vote_2.oper_user, glp_ptr->vote_2.oper_host,
592 glp_ptr->vote_2.oper_server, timebuffer,
593 glp_ptr->user, glp_ptr->host, glp_ptr->vote_2.reason);
594
595 }
596 }
597
598 sendto_one(source_p, ":%s NOTICE %s :End of Pending UNG-lines",
599 from, to);
600 }
601
602 /* stats_glines()
603 *
604 * input - client pointer
605 * output - none
606 * side effects - client is shown list of glines
607 */
608 static void
609 stats_glines(struct Client *source_p, int parc, char *parv[])
610 {
611 dlink_node *ptr = NULL;
612 unsigned int i = 0;
613
614 if (!ConfigFileEntry.glines)
615 {
616 sendto_one(source_p, ":%s NOTICE %s :This server does not support G-Lines",
617 from, to);
618 return;
619 }
620
621 for (i = 0; i < ATABLE_SIZE; ++i)
622 {
623 DLINK_FOREACH(ptr, atable[i].head)
624 {
625 const struct AddressRec *arec = ptr->data;
626
627 if (arec->type == CONF_GLINE)
628 {
629 const struct AccessItem *aconf = arec->aconf;
630
631 sendto_one(source_p, form_str(RPL_STATSKLINE),
632 from, to, "G",
633 aconf->host ? aconf->host : "*",
634 aconf->user ? aconf->user : "*",
635 aconf->reason ? aconf->reason : "No reason", "" );
636 }
637 }
638 }
639 }
640
641 static void
642 stats_hubleaf(struct Client *source_p, int parc, char *parv[])
643 {
644 report_confitem_types(source_p, HUB_TYPE);
645 report_confitem_types(source_p, LEAF_TYPE);
646 }
647
648 /*
649 * show_iline_prefix()
650 *
651 * inputs - pointer to struct Client requesting output
652 * - pointer to struct AccessItem
653 * - name to which iline prefix will be prefixed to
654 * output - pointer to static string with prefixes listed in ascii form
655 * side effects - NONE
656 */
657 static const char *
658 show_iline_prefix(struct Client *sptr, struct AccessItem *aconf, const char *name)
659 {
660 static char prefix_of_host[USERLEN + 14];
661 char *prefix_ptr = prefix_of_host;
662
663 if (IsNoTilde(aconf))
664 *prefix_ptr++ = '-';
665 if (IsLimitIp(aconf))
666 *prefix_ptr++ = '!';
667 if (IsNeedIdentd(aconf))
668 *prefix_ptr++ = '+';
669 if (!IsNeedPassword(aconf))
670 *prefix_ptr++ = '&';
671 if (IsConfExemptResv(aconf))
672 *prefix_ptr++ = '$';
673 if (IsNoMatchIp(aconf))
674 *prefix_ptr++ = '%';
675 if (IsConfDoSpoofIp(aconf))
676 *prefix_ptr++ = '=';
677 if (MyOper(sptr) && IsConfExemptKline(aconf))
678 *prefix_ptr++ = '^';
679 if (MyOper(sptr) && IsConfExemptGline(aconf))
680 *prefix_ptr++ = '_';
681 if (MyOper(sptr) && IsConfExemptLimits(aconf))
682 *prefix_ptr++ = '>';
683 if (IsConfCanFlood(aconf))
684 *prefix_ptr++ = '|';
685
686 strlcpy(prefix_ptr, name, USERLEN+1);
687
688 return prefix_of_host;
689 }
690
691 static void
692 report_auth(struct Client *client_p, int parc, char *parv[])
693 {
694 struct ConfItem *conf;
695 struct AccessItem *aconf;
696 dlink_node *ptr = NULL;
697 unsigned int i;
698
699
700 for (i = 0; i < ATABLE_SIZE; ++i)
701 {
702 DLINK_FOREACH(ptr, atable[i].head)
703 {
704 struct AddressRec *arec = ptr->data;
705
706 if (arec->type == CONF_CLIENT)
707 {
708 aconf = arec->aconf;
709
710 if (!MyOper(client_p) && IsConfDoSpoofIp(aconf))
711 continue;
712
713 conf = unmap_conf_item(aconf);
714
715 /* We are doing a partial list, based on what matches the u@h of the
716 * sender, so prepare the strings for comparing --fl_
717 */
718 if (ConfigFileEntry.hide_spoof_ips)
719 sendto_one(client_p, form_str(RPL_STATSILINE), me.name,
720 client_p->name, 'I',
721 conf->name == NULL ? "*" : conf->name,
722 show_iline_prefix(client_p, aconf, aconf->user),
723 IsConfDoSpoofIp(aconf) ? "255.255.255.255" :
724 aconf->host, aconf->port,
725 aconf->class_ptr ? aconf->class_ptr->name : "<default>");
726
727 else
728 sendto_one(client_p, form_str(RPL_STATSILINE), me.name,
729 client_p->name, 'I',
730 conf->name == NULL ? "*" : conf->name,
731 show_iline_prefix(client_p, aconf, aconf->user),
732 aconf->host, aconf->port,
733 aconf->class_ptr ? aconf->class_ptr->name : "<default>");
734 }
735 }
736 }
737 }
738
739 static void
740 stats_auth(struct Client *source_p, int parc, char *parv[])
741 {
742 /* Oper only, if unopered, return ERR_NOPRIVILEGES */
743 if ((ConfigFileEntry.stats_i_oper_only == 2) && !HasUMode(source_p, UMODE_OPER))
744 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
745 from, to);
746
747 /* If unopered, Only return matching auth blocks */
748 else if ((ConfigFileEntry.stats_i_oper_only == 1) && !HasUMode(source_p, UMODE_OPER))
749 {
750 struct ConfItem *conf;
751 struct AccessItem *aconf;
752
753 if (MyConnect(source_p))
754 aconf = find_conf_by_address(source_p->host,
755 &source_p->localClient->ip,
756 CONF_CLIENT,
757 source_p->localClient->aftype,
758 source_p->username,
759 source_p->localClient->passwd, 1);
760 else
761 aconf = find_conf_by_address(source_p->host, NULL, CONF_CLIENT,
762 0, source_p->username, NULL, 1);
763
764 if (aconf == NULL)
765 return;
766
767 conf = unmap_conf_item(aconf);
768
769 sendto_one(source_p, form_str(RPL_STATSILINE), from,
770 to, 'I',
771 "*", show_iline_prefix(source_p, aconf, aconf->user),
772 aconf->host, aconf->port,
773 aconf->class_ptr ? aconf->class_ptr->name : "<default>");
774 }
775 /* They are opered, or allowed to see all auth blocks */
776 else
777 report_auth(source_p, 0, NULL);
778 }
779
780 /* report_Klines()
781 * Inputs: Client to report to,
782 * type(==0 for perm, !=0 for temporary)
783 * mask
784 * Output: None
785 * Side effects: Reports configured K(or k)-lines to client_p.
786 */
787 static void
788 report_Klines(struct Client *client_p, int tkline)
789 {
790 struct AccessItem *aconf = NULL;
791 unsigned int i = 0;
792 const char *p = NULL;
793 dlink_node *ptr = NULL;
794
795 if (tkline)
796 p = "k";
797 else
798 p = "K";
799
800 for (i = 0; i < ATABLE_SIZE; ++i)
801 {
802 DLINK_FOREACH(ptr, atable[i].head)
803 {
804 struct AddressRec *arec = ptr->data;
805
806 if (arec->type == CONF_KLINE)
807 {
808 if ((tkline && !((aconf = arec->aconf)->flags & CONF_FLAGS_TEMPORARY)) ||
809 (!tkline && ((aconf = arec->aconf)->flags & CONF_FLAGS_TEMPORARY)))
810 continue;
811
812 if (HasUMode(client_p, UMODE_OPER))
813 sendto_one(client_p, form_str(RPL_STATSKLINE), me.name,
814 client_p->name, p, aconf->host, aconf->user,
815 aconf->reason, aconf->oper_reason ? aconf->oper_reason : "");
816 else
817 sendto_one(client_p, form_str(RPL_STATSKLINE), me.name,
818 client_p->name, p, aconf->host, aconf->user,
819 aconf->reason, "");
820 }
821 }
822 }
823 }
824
825 static void
826 stats_tklines(struct Client *source_p, int parc, char *parv[])
827 {
828 struct ConfItem *conf;
829 /* Oper only, if unopered, return ERR_NOPRIVILEGES */
830 if ((ConfigFileEntry.stats_k_oper_only == 2) && !HasUMode(source_p, UMODE_OPER))
831 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
832 from, to);
833
834 /* If unopered, Only return matching klines */
835 else if ((ConfigFileEntry.stats_k_oper_only == 1) && !HasUMode(source_p, UMODE_OPER))
836 {
837 struct AccessItem *aconf;
838
839 if (MyConnect(source_p))
840 aconf = find_conf_by_address(source_p->host,
841 &source_p->localClient->ip,
842 CONF_KLINE,
843 source_p->localClient->aftype,
844 source_p->username, NULL, 1);
845 else
846 aconf = find_conf_by_address(source_p->host, NULL, CONF_KLINE,
847 0, source_p->username, NULL, 1);
848
849 if (aconf == NULL)
850 return;
851
852 /* dont report a permanent kline as a tkline */
853 if (!(aconf->flags & CONF_FLAGS_TEMPORARY))
854 return;
855
856 conf = unmap_conf_item(aconf);
857
858 sendto_one(source_p, form_str(RPL_STATSKLINE), from,
859 to, "k", aconf->host, aconf->user, aconf->reason, "");
860 }
861 /* Theyre opered, or allowed to see all klines */
862 else {
863 report_Klines(source_p, 1);
864 }
865 }
866
867 static void
868 stats_klines(struct Client *source_p, int parc, char *parv[])
869 {
870 /* Oper only, if unopered, return ERR_NOPRIVILEGES */
871 if ((ConfigFileEntry.stats_k_oper_only == 2) && !HasUMode(source_p, UMODE_OPER))
872 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
873 from, to);
874
875 /* If unopered, Only return matching klines */
876 else if ((ConfigFileEntry.stats_k_oper_only == 1) && !HasUMode(source_p, UMODE_OPER))
877 {
878 struct AccessItem *aconf;
879
880 /* search for a kline */
881 if (MyConnect(source_p))
882 aconf = find_conf_by_address(source_p->host,
883 &source_p->localClient->ip,
884 CONF_KLINE,
885 source_p->localClient->aftype,
886 source_p->username, NULL, 0);
887 else
888 aconf = find_conf_by_address(source_p->host, NULL, CONF_KLINE,
889 0, source_p->username, NULL, 0);
890
891 if (aconf == NULL)
892 return;
893
894 /* dont report a tkline as a kline */
895 if (aconf->flags & CONF_FLAGS_TEMPORARY)
896 return;
897
898 sendto_one(source_p, form_str(RPL_STATSKLINE), from,
899 to, "K", aconf->host, aconf->user, aconf->reason, "");
900 }
901 /* Theyre opered, or allowed to see all klines */
902 else {
903 report_Klines(source_p, 0);
904 report_confitem_types(source_p, RKLINE_TYPE);
905 }
906 }
907
908 static void
909 stats_messages(struct Client *source_p, int parc, char *parv[])
910 {
911 report_messages(source_p);
912 }
913
914 static void
915 stats_oper(struct Client *source_p, int parc, char *parv[])
916 {
917 if (!HasUMode(source_p, UMODE_OPER) && ConfigFileEntry.stats_o_oper_only)
918 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
919 from, to);
920 else
921 report_confitem_types(source_p, OPER_TYPE);
922 }
923
924 /* stats_operedup()
925 *
926 * input - client pointer
927 * output - none
928 * side effects - client is shown a list of active opers
929 */
930 static void
931 stats_operedup(struct Client *source_p, int parc, char *parv[])
932 {
933 dlink_node *ptr;
934
935 DLINK_FOREACH(ptr, oper_list.head)
936 {
937 const struct Client *target_p = ptr->data;
938
939 if (HasUMode(target_p, UMODE_HIDDEN) && !HasUMode(source_p, UMODE_OPER))
940 continue;
941
942 if (MyClient(source_p) && HasUMode(source_p, UMODE_OPER))
943 sendto_one(source_p, ":%s %d %s p :[%c][%s] %s (%s@%s) Idle: %d",
944 from, RPL_STATSDEBUG, to,
945 HasUMode(target_p, UMODE_ADMIN) ? 'A' : 'O',
946 oper_privs_as_string(target_p->localClient->operflags),
947 target_p->name, target_p->username, target_p->host,
948 (int)(CurrentTime - target_p->localClient->last_privmsg));
949 else
950 sendto_one(source_p, ":%s %d %s p :[%c] %s (%s@%s) Idle: %d",
951 from, RPL_STATSDEBUG, to,
952 HasUMode(target_p, UMODE_ADMIN) ? 'A' : 'O',
953 target_p->name, target_p->username, target_p->host,
954 (int)(CurrentTime - target_p->localClient->last_privmsg));
955 }
956
957 sendto_one(source_p, ":%s %d %s p :%lu OPER(s)",
958 from, RPL_STATSDEBUG, to, dlink_list_length(&oper_list));
959 }
960
961 static void
962 stats_ports(struct Client *source_p, int parc, char *parv[])
963 {
964 if (!HasUMode(source_p, UMODE_OPER) && ConfigFileEntry.stats_P_oper_only)
965 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
966 from, to);
967 else
968 show_ports(source_p);
969 }
970
971 static void
972 stats_resv(struct Client *source_p, int parc, char *parv[])
973 {
974 report_resv(source_p);
975 }
976
977 static void
978 stats_service(struct Client *source_p, int parc, char *parv[])
979 {
980 report_confitem_types(source_p, SERVICE_TYPE);
981 }
982
983 static void
984 stats_tstats(struct Client *source_p, int parc, char *parv[])
985 {
986 const struct Client *target_p = NULL;
987 const dlink_node *ptr = NULL;
988 struct ServerStatistics *sp;
989 struct ServerStatistics tmp;
990
991 sp = &tmp;
992 memcpy(sp, &ServerStats, sizeof(struct ServerStatistics));
993
994 /*
995 * must use the += operator. is_sv is not the number of currently
996 * active server connections. Note the incrementation in
997 * s_bsd.c:close_connection.
998 */
999 sp->is_sv += dlink_list_length(&serv_list);
1000
1001 DLINK_FOREACH(ptr, serv_list.head)
1002 {
1003 target_p = ptr->data;
1004
1005 sp->is_sbs += target_p->localClient->send.bytes;
1006 sp->is_sbr += target_p->localClient->recv.bytes;
1007 sp->is_sti += CurrentTime - target_p->localClient->firsttime;
1008 }
1009
1010 sp->is_cl += dlink_list_length(&local_client_list);
1011
1012 DLINK_FOREACH(ptr, local_client_list.head)
1013 {
1014 target_p = ptr->data;
1015
1016 sp->is_cbs += target_p->localClient->send.bytes;
1017 sp->is_cbr += target_p->localClient->recv.bytes;
1018 sp->is_cti += CurrentTime - target_p->localClient->firsttime;
1019 }
1020
1021 sp->is_ni += dlink_list_length(&unknown_list);
1022
1023 sendto_one(source_p, ":%s %d %s T :accepts %u refused %u",
1024 me.name, RPL_STATSDEBUG, source_p->name, sp->is_ac, sp->is_ref);
1025 sendto_one(source_p, ":%s %d %s T :unknown commands %u prefixes %u",
1026 me.name, RPL_STATSDEBUG, source_p->name, sp->is_unco, sp->is_unpf);
1027 sendto_one(source_p, ":%s %d %s T :nick collisions %u unknown closes %u",
1028 me.name, RPL_STATSDEBUG, source_p->name, sp->is_kill, sp->is_ni);
1029 sendto_one(source_p, ":%s %d %s T :wrong direction %u empty %u",
1030 me.name, RPL_STATSDEBUG, source_p->name, sp->is_wrdi, sp->is_empt);
1031 sendto_one(source_p, ":%s %d %s T :numerics seen %u",
1032 me.name, RPL_STATSDEBUG, source_p->name, sp->is_num);
1033 sendto_one(source_p, ":%s %d %s T :auth successes %u fails %u",
1034 me.name, RPL_STATSDEBUG, source_p->name, sp->is_asuc, sp->is_abad);
1035 sendto_one(source_p, ":%s %d %s T :Client Server",
1036 me.name, RPL_STATSDEBUG, source_p->name);
1037
1038 sendto_one(source_p, ":%s %d %s T :connected %u %u",
1039 me.name, RPL_STATSDEBUG, source_p->name,
1040 (unsigned int)sp->is_cl,
1041 (unsigned int)sp->is_sv);
1042 sendto_one(source_p, ":%s %d %s T :bytes sent %llu %llu",
1043 me.name, RPL_STATSDEBUG, source_p->name,
1044 sp->is_cbs, sp->is_sbs);
1045 sendto_one(source_p, ":%s %d %s T :bytes recv %llu %llu",
1046 me.name, RPL_STATSDEBUG, source_p->name,
1047 sp->is_cbr, sp->is_sbr);
1048 sendto_one(source_p, ":%s %d %s T :time connected %u %u",
1049 me.name, RPL_STATSDEBUG, source_p->name,
1050 (unsigned int)sp->is_cti,
1051 (unsigned int)sp->is_sti);
1052 }
1053
1054 static void
1055 stats_uptime(struct Client *source_p, int parc, char *parv[])
1056 {
1057 time_t now = CurrentTime - me.localClient->since;
1058
1059 sendto_one(source_p, form_str(RPL_STATSUPTIME), from, to,
1060 now / 86400, (now / 3600) % 24, (now / 60) % 60, now % 60);
1061
1062 if (!ConfigFileEntry.disable_remote || HasUMode(source_p, UMODE_OPER))
1063 sendto_one(source_p, form_str(RPL_STATSCONN), from, to,
1064 Count.max_loc_con, Count.max_loc_cli, Count.totalrestartcount);
1065 }
1066
1067 static void
1068 stats_shared(struct Client *source_p, int parc, char *parv[])
1069 {
1070 report_confitem_types(source_p, ULINE_TYPE);
1071 }
1072
1073 /* stats_servers()
1074 *
1075 * input - client pointer
1076 * output - none
1077 * side effects - client is shown lists of who connected servers
1078 */
1079 static void
1080 stats_servers(struct Client *source_p, int parc, char *parv[])
1081 {
1082 dlink_node *ptr = NULL;
1083
1084 DLINK_FOREACH(ptr, serv_list.head)
1085 {
1086 const struct Client *target_p = ptr->data;
1087
1088 sendto_one(source_p, ":%s %d %s v :%s (%s!%s@%s) Idle: %d",
1089 from, RPL_STATSDEBUG, to, target_p->name,
1090 (target_p->serv->by[0] ? target_p->serv->by : "Remote."),
1091 "*", "*", (int)(CurrentTime - target_p->localClient->lasttime));
1092 }
1093
1094 sendto_one(source_p, ":%s %d %s v :%u Server(s)",
1095 from, RPL_STATSDEBUG, to, dlink_list_length(&serv_list));
1096 }
1097
1098 static void
1099 stats_gecos(struct Client *source_p, int parc, char *parv[])
1100 {
1101 report_confitem_types(source_p, XLINE_TYPE);
1102 report_confitem_types(source_p, RXLINE_TYPE);
1103 }
1104
1105 static void
1106 stats_class(struct Client *source_p, int parc, char *parv[])
1107 {
1108 report_confitem_types(source_p, CLASS_TYPE);
1109 }
1110
1111 static void
1112 stats_servlinks(struct Client *source_p, int parc, char *parv[])
1113 {
1114 uint64_t sendB = 0, recvB = 0;
1115 time_t uptime = 0;
1116 dlink_node *ptr = NULL;
1117
1118 if (ConfigServerHide.flatten_links && !HasUMode(source_p, UMODE_OPER))
1119 {
1120 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
1121 from, to);
1122 return;
1123 }
1124
1125 DLINK_FOREACH(ptr, serv_list.head)
1126 {
1127 struct Client *target_p = ptr->data;
1128
1129 sendB += target_p->localClient->send.bytes;
1130 recvB += target_p->localClient->recv.bytes;
1131
1132 /* ":%s 211 %s %s %u %u %llu %u %llu :%u %u %s" */
1133 sendto_one(source_p, form_str(RPL_STATSLINKINFO),
1134 from, to,
1135 get_client_name(target_p, HasUMode(source_p, UMODE_ADMIN) ? SHOW_IP : MASK_IP),
1136 dbuf_length(&target_p->localClient->buf_sendq),
1137 target_p->localClient->send.messages,
1138 target_p->localClient->send.bytes >> 10,
1139 target_p->localClient->recv.messages,
1140 target_p->localClient->recv.bytes >> 10,
1141 (unsigned)(CurrentTime - target_p->localClient->firsttime),
1142 (CurrentTime > target_p->localClient->since) ? (unsigned)(CurrentTime - target_p->localClient->since): 0,
1143 HasUMode(source_p, UMODE_OPER) ? show_capabilities(target_p) : "TS");
1144 }
1145
1146 sendB >>= 10;
1147 recvB >>= 10;
1148
1149 sendto_one(source_p, ":%s %d %s ? :%u total server(s)",
1150 from, RPL_STATSDEBUG, to, dlink_list_length(&serv_list));
1151 sendto_one(source_p, ":%s %d %s ? :Sent total : %7.2f %s",
1152 from, RPL_STATSDEBUG, to,
1153 _GMKv(sendB), _GMKs(sendB));
1154 sendto_one(source_p, ":%s %d %s ? :Recv total : %7.2f %s",
1155 from, RPL_STATSDEBUG, to,
1156 _GMKv(recvB), _GMKs(recvB));
1157
1158 uptime = (CurrentTime - me.localClient->since);
1159
1160 sendto_one(source_p, ":%s %d %s ? :Server send: %7.2f %s (%4.1f K/s)",
1161 from, RPL_STATSDEBUG, to,
1162 _GMKv((me.localClient->send.bytes>>10)),
1163 _GMKs((me.localClient->send.bytes>>10)),
1164 (float)((float)((me.localClient->send.bytes) >> 10) /
1165 (float)uptime));
1166 sendto_one(source_p, ":%s %d %s ? :Server recv: %7.2f %s (%4.1f K/s)",
1167 from, RPL_STATSDEBUG, to,
1168 _GMKv((me.localClient->recv.bytes>>10)),
1169 _GMKs((me.localClient->recv.bytes>>10)),
1170 (float)((float)((me.localClient->recv.bytes) >> 10) /
1171 (float)uptime));
1172 }
1173
1174 /* parse_stats_args()
1175 *
1176 * inputs - arg count
1177 * - args
1178 * - doall flag
1179 * - wild card or not
1180 * output - pointer to name to use
1181 * side effects -
1182 * common parse routine for m_stats args
1183 *
1184 */
1185 static char *
1186 parse_stats_args(int parc, char *parv[], int *doall, int *wilds)
1187 {
1188 char *name;
1189
1190 if (parc > 2)
1191 {
1192 name = parv[2];
1193
1194 if (!irccmp(name, from))
1195 *doall = 2;
1196 else if (match(name, from))
1197 *doall = 1;
1198
1199 *wilds = has_wildcards(name);
1200
1201 return name;
1202 }
1203
1204 return NULL;
1205 }
1206
1207 static void
1208 stats_L_list(struct Client *source_p,char *name, int doall, int wilds,
1209 dlink_list *list,char statchar)
1210 {
1211 dlink_node *ptr;
1212 struct Client *target_p;
1213
1214 /*
1215 * send info about connections which match, or all if the
1216 * mask matches from. Only restrictions are on those who
1217 * are invisible not being visible to 'foreigners' who use
1218 * a wild card based search to list it.
1219 */
1220 DLINK_FOREACH(ptr, list->head)
1221 {
1222 target_p = ptr->data;
1223
1224 if (HasUMode(target_p, UMODE_INVISIBLE) && (doall || wilds) &&
1225 !(MyConnect(source_p) && HasUMode(source_p, UMODE_OPER)) &&
1226 !HasUMode(target_p, UMODE_OPER) && (target_p != source_p))
1227 continue;
1228 if (!doall && wilds && !match(name, target_p->name))
1229 continue;
1230 if (!(doall || wilds) && irccmp(name, target_p->name))
1231 continue;
1232
1233 /* This basically shows ips for our opers if its not a server/admin, or
1234 * its one of our admins. */
1235 if(MyClient(source_p) && HasUMode(source_p, UMODE_OPER) &&
1236 (HasUMode(source_p, UMODE_ADMIN) ||
1237 (!IsServer(target_p) && !HasUMode(target_p, UMODE_ADMIN) &&
1238 !IsHandshake(target_p) && !IsConnecting(target_p))))
1239 {
1240 sendto_one(source_p, form_str(RPL_STATSLINKINFO),
1241 from, to,
1242 (IsUpper(statchar)) ?
1243 get_client_name(target_p, SHOW_IP) :
1244 get_client_name(target_p, HIDE_IP),
1245 dbuf_length(&target_p->localClient->buf_sendq),
1246 target_p->localClient->send.messages,
1247 target_p->localClient->send.bytes>>10,
1248 target_p->localClient->recv.messages,
1249 target_p->localClient->recv.bytes>>10,
1250 (unsigned)(CurrentTime - target_p->localClient->firsttime),
1251 (CurrentTime > target_p->localClient->since) ? (unsigned)(CurrentTime - target_p->localClient->since):0,
1252 IsServer(target_p) ? show_capabilities(target_p) : "-");
1253 }
1254 else
1255 {
1256 /* If its a hidden ip, an admin, or a server, mask the real IP */
1257 if(IsIPSpoof(target_p) || IsServer(target_p) || HasUMode(target_p, UMODE_ADMIN)
1258 || IsHandshake(target_p) || IsConnecting(target_p))
1259 sendto_one(source_p, form_str(RPL_STATSLINKINFO),
1260 from, to,
1261 get_client_name(target_p, MASK_IP),
1262 dbuf_length(&target_p->localClient->buf_sendq),
1263 target_p->localClient->send.messages,
1264 target_p->localClient->send.bytes>>10,
1265 target_p->localClient->recv.messages,
1266 target_p->localClient->recv.bytes>>10,
1267 (unsigned)(CurrentTime - target_p->localClient->firsttime),
1268 (CurrentTime > target_p->localClient->since) ? (unsigned)(CurrentTime - target_p->localClient->since):0,
1269 IsServer(target_p) ? show_capabilities(target_p) : "-");
1270 else /* show the real IP */
1271 sendto_one(source_p, form_str(RPL_STATSLINKINFO),
1272 from, to,
1273 (IsUpper(statchar)) ?
1274 get_client_name(target_p, SHOW_IP) :
1275 get_client_name(target_p, HIDE_IP),
1276 dbuf_length(&target_p->localClient->buf_sendq),
1277 target_p->localClient->send.messages,
1278 target_p->localClient->send.bytes>>10,
1279 target_p->localClient->recv.messages,
1280 target_p->localClient->recv.bytes>>10,
1281 (unsigned)(CurrentTime - target_p->localClient->firsttime),
1282 (CurrentTime > target_p->localClient->since) ? (unsigned)(CurrentTime - target_p->localClient->since):0,
1283 IsServer(target_p) ? show_capabilities(target_p) : "-");
1284 }
1285 }
1286 }
1287
1288 /*
1289 * stats_L
1290 *
1291 * inputs - pointer to client to report to
1292 * - doall flag
1293 * - wild card or not
1294 * output - NONE
1295 * side effects -
1296 */
1297 static void
1298 stats_L(struct Client *source_p,char *name,int doall,
1299 int wilds,char statchar)
1300 {
1301 stats_L_list(source_p, name, doall, wilds, &unknown_list, statchar);
1302 stats_L_list(source_p, name, doall, wilds, &local_client_list, statchar);
1303 stats_L_list(source_p, name, doall, wilds, &serv_list, statchar);
1304 }
1305
1306 static void
1307 stats_ltrace(struct Client *source_p, int parc, char *parv[])
1308 {
1309 int doall = 0;
1310 int wilds = 0;
1311 char *name = NULL;
1312 char statchar;
1313
1314 if ((name = parse_stats_args(parc, parv, &doall, &wilds)) != NULL)
1315 {
1316 statchar = parv[1][0];
1317
1318 stats_L(source_p, name, doall, wilds, statchar);
1319 }
1320 else
1321 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
1322 from, to, "STATS");
1323 }
1324
1325 static const struct StatsStruct
1326 {
1327 const unsigned char letter;
1328 void (*handler)();
1329 const unsigned int need_oper;
1330 const unsigned int need_admin;
1331 } stats_cmd_table[] = {
1332 /* letter function need_oper need_admin */
1333 { 'a', stats_dns_servers, 1, 1 },
1334 { 'A', stats_dns_servers, 1, 1 },
1335 { 'c', stats_connect, 1, 0 },
1336 { 'C', stats_connect, 1, 0 },
1337 { 'd', stats_tdeny, 1, 0 },
1338 { 'D', stats_deny, 1, 0 },
1339 { 'e', stats_exempt, 1, 0 },
1340 { 'E', stats_events, 1, 1 },
1341 { 'f', fd_dump, 1, 1 },
1342 { 'F', fd_dump, 1, 1 },
1343 { 'g', stats_pending_glines, 1, 0 },
1344 { 'G', stats_glines, 1, 0 },
1345 { 'h', stats_hooks, 1, 1 },
1346 { 'H', stats_hubleaf, 1, 0 },
1347 { 'i', stats_auth, 0, 0 },
1348 { 'I', stats_auth, 0, 0 },
1349 { 'k', stats_tklines, 0, 0 },
1350 { 'K', stats_klines, 0, 0 },
1351 { 'l', stats_ltrace, 1, 0 },
1352 { 'L', stats_ltrace, 1, 0 },
1353 { 'm', stats_messages, 0, 0 },
1354 { 'M', stats_messages, 0, 0 },
1355 { 'o', stats_oper, 0, 0 },
1356 { 'O', stats_oper, 0, 0 },
1357 { 'p', stats_operedup, 0, 0 },
1358 { 'P', stats_ports, 0, 0 },
1359 { 'q', stats_resv, 1, 0 },
1360 { 'Q', stats_resv, 1, 0 },
1361 { 'r', stats_usage, 1, 0 },
1362 { 'R', stats_usage, 1, 0 },
1363 { 'S', stats_service, 1, 0 },
1364 { 't', stats_tstats, 1, 0 },
1365 { 'T', stats_tstats, 1, 0 },
1366 { 'u', stats_uptime, 0, 0 },
1367 { 'U', stats_shared, 1, 0 },
1368 { 'v', stats_servers, 1, 0 },
1369 { 'x', stats_gecos, 1, 0 },
1370 { 'X', stats_gecos, 1, 0 },
1371 { 'y', stats_class, 1, 0 },
1372 { 'Y', stats_class, 1, 0 },
1373 { 'z', stats_memory, 1, 0 },
1374 { '?', stats_servlinks, 0, 0 },
1375 { '\0', NULL, 0, 0 }
1376 };
1377
1378 static void
1379 do_stats(struct Client *source_p, int parc, char *parv[])
1380 {
1381 const struct StatsStruct *tab = stats_cmd_table;
1382 const char statchar = *parv[1];
1383
1384 if (statchar == '\0')
1385 {
1386 sendto_one(source_p, form_str(RPL_ENDOFSTATS),
1387 from, to, '*');
1388 return;
1389 }
1390
1391 for (; tab->handler; ++tab)
1392 {
1393 if (tab->letter == statchar)
1394 {
1395 /* The stats table says what privs are needed, so check --fl_ */
1396 if ((tab->need_admin && !HasUMode(source_p, UMODE_ADMIN)) ||
1397 (tab->need_oper && !HasUMode(source_p, UMODE_OPER)))
1398 {
1399 sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
1400 from, to);
1401 break;
1402 }
1403
1404 sendto_realops_flags(UMODE_SPY, L_ALL,
1405 "STATS %c requested by %s (%s@%s) [%s]",
1406 statchar, source_p->name, source_p->username,
1407 source_p->host, source_p->servptr->name);
1408 tab->handler(source_p, parc, parv);
1409 break;
1410 }
1411 }
1412
1413 sendto_one(source_p, form_str(RPL_ENDOFSTATS),
1414 from, to, statchar);
1415 }
1416
1417 /*
1418 * m_stats()
1419 * parv[0] = sender prefix
1420 * parv[1] = stat letter/command
1421 * parv[2] = (if present) server/mask in stats L
1422 *
1423 * This will search the tables for the appropriate stats letter/command,
1424 * if found execute it.
1425 */
1426 static void
1427 m_stats(struct Client *client_p, struct Client *source_p,
1428 int parc, char *parv[])
1429 {
1430 static time_t last_used = 0;
1431
1432 /* Is the stats meant for us? */
1433 if (!ConfigFileEntry.disable_remote)
1434 if (hunt_server(client_p, source_p, ":%s STATS %s :%s", 2,
1435 parc, parv) != HUNTED_ISME)
1436 return;
1437
1438 if (!MyClient(source_p) && IsCapable(source_p->from, CAP_TS6) && HasID(source_p))
1439 {
1440 from = me.id;
1441 to = source_p->id;
1442 }
1443 else
1444 {
1445 from = me.name;
1446 to = source_p->name;
1447 }
1448
1449 /* Check the user is actually allowed to do /stats, and isnt flooding */
1450 if ((last_used + ConfigFileEntry.pace_wait) > CurrentTime)
1451 {
1452 sendto_one(source_p,form_str(RPL_LOAD2HI),
1453 from, to);
1454 return;
1455 }
1456
1457 last_used = CurrentTime;
1458
1459 do_stats(source_p, parc, parv);
1460 }
1461
1462 /*
1463 * mo_stats()
1464 * parv[0] = sender prefix
1465 * parv[1] = stat letter/command
1466 * parv[2] = (if present) server/mask in stats L, or target
1467 *
1468 * This will search the tables for the appropriate stats letter,
1469 * if found execute it.
1470 */
1471 static void
1472 mo_stats(struct Client *client_p, struct Client *source_p,
1473 int parc, char *parv[])
1474 {
1475 if (hunt_server(client_p, source_p, ":%s STATS %s :%s", 2,
1476 parc, parv) != HUNTED_ISME)
1477 return;
1478
1479 if (!MyClient(source_p) && IsCapable(source_p->from, CAP_TS6) && HasID(source_p))
1480 {
1481 from = me.id;
1482 to = source_p->id;
1483 }
1484 else
1485 {
1486 from = me.name;
1487 to = source_p->name;
1488 }
1489
1490 do_stats(source_p, parc, parv);
1491 }
1492
1493 /*
1494 * ms_stats - STATS message handler
1495 * parv[0] = sender prefix
1496 * parv[1] = statistics selector (defaults to Message frequency)
1497 * parv[2] = server name (current server defaulted, if omitted)
1498 */
1499 static void
1500 ms_stats(struct Client *client_p, struct Client *source_p,
1501 int parc, char *parv[])
1502 {
1503 if (hunt_server(client_p, source_p, ":%s STATS %s :%s", 2,
1504 parc, parv) != HUNTED_ISME)
1505 return;
1506
1507 if (IsClient(source_p))
1508 mo_stats(client_p, source_p, parc, parv);
1509 }
1510
1511 static struct Message stats_msgtab = {
1512 "STATS", 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
1513 { m_unregistered, m_stats, ms_stats, m_ignore, mo_stats, m_ignore }
1514 };
1515
1516 static void
1517 module_init(void)
1518 {
1519 mod_add_cmd(&stats_msgtab);
1520 }
1521
1522 static void
1523 module_exit(void)
1524 {
1525 mod_del_cmd(&stats_msgtab);
1526 }
1527
1528 struct module module_entry = {
1529 .node = { NULL, NULL, NULL },
1530 .name = NULL,
1531 .version = "$Revision$",
1532 .handle = NULL,
1533 .modinit = module_init,
1534 .modexit = module_exit,
1535 .flags = 0
1536 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision