ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_stats.c
Revision: 1372
Committed: Thu Apr 26 19:04:51 2012 UTC (13 years, 4 months ago) by michael
Content type: text/x-csrc
Original Path: ircd-hybrid-8/modules/m_stats.c
File size: 50413 byte(s)
Log Message:
- hostmask.c: move report_Klines() and report_auth() to m_stats.c

File Contents

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

Properties

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