Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / s_stats.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_stats.c
3  * Copyright (C) 2000 Joseph Bongaarts
4  *
5  * See file AUTHORS in IRC package for additional names of
6  * the programmers.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 1, or (at your option)
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  */
24 #include "config.h"
25
26 #include "s_stats.h"
27 #include "class.h"
28 #include "client.h"
29 #include "ircd.h"
30 #include "ircd_chattr.h"
31 #include "ircd_log.h"
32 #include "ircd_reply.h"
33 #include "ircd_string.h"
34 #include "listener.h"
35 #include "match.h"
36 #include "msg.h"
37 #include "numeric.h"
38 #include "numnicks.h"
39 #include "s_conf.h"
40 #include "s_user.h"
41 #include "send.h"
42 #include "struct.h"
43
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <sys/time.h>
47
48
49 /*
50  * m_stats/s_stats
51  *
52  * Report configuration lines and other statistics from this
53  * server. 
54  *
55  * Note: The info is reported in the order the server uses
56  *       it--not reversed as in ircd.conf!
57  */
58
59 /*
60  *  Help info displayed when user provides no stats parameter. --Gte
61  */
62 const char *statsinfo[] = {
63     "The following statistics are available:",
64     "U - Service server & nick jupes information.",
65     "u - Current uptime & highest connection count.",
66     "p - Listening ports.",
67     "i - Connection authorisation lines.",
68     "y - Connection classes.",
69     "c - Remote server connection lines.",
70     "h - Hubs information.",
71     "d - Dynamic routing configuration.", 
72     "l - Current connections information.",
73     "g - Global bans (G-lines).",
74     "k - Local bans (K-Lines).",
75     "o - Operator information.", 
76     "f - Feature settings.",
77     "m - Message usage information.",
78     "t - Local connection statistics (Total SND/RCV, etc).", 
79     "w - Userload statistics.",
80     "v - Connection class information.",
81     "M - Memory allocation & leak monitoring.", 
82     "z - Memory/Structure allocation information.",
83     "r - System resource usage (Debug only).", 
84     "x - List usage information (Debug only).",
85     0,
86 };
87
88 static unsigned int report_array[17][3] = {
89   {CONF_SERVER, RPL_STATSCLINE, 'C'},
90   {CONF_CLIENT, RPL_STATSILINE, 'I'},
91   {CONF_LEAF, RPL_STATSLLINE, 'L'},
92   {CONF_OPERATOR, RPL_STATSOLINE, 'O'},
93   {CONF_HUB, RPL_STATSHLINE, 'H'},
94   {CONF_LOCOP, RPL_STATSOLINE, 'o'},
95   {CONF_UWORLD, RPL_STATSULINE, 'U'},
96   {0, 0}
97 };
98
99 void report_configured_links(struct Client *sptr, int mask)
100 {
101   static char null[] = "<NULL>";
102   struct ConfItem *tmp;
103   unsigned int *p;
104   unsigned short int port;
105   char c, *host, *pass, *name;
106   
107
108   for (tmp = GlobalConfList; tmp; tmp = tmp->next) 
109   {
110     if ((tmp->status & mask))
111     {
112       for (p = &report_array[0][0]; *p; p += 3)
113         if (*p == tmp->status)
114           break;
115       if (!*p)
116         continue;
117       c = (char)*(p + 2);
118       host = BadPtr(tmp->host) ? null : tmp->host;
119       pass = BadPtr(tmp->passwd) ? null : tmp->passwd;
120       name = BadPtr(tmp->name) ? null : tmp->name;
121       port = tmp->port;
122       /*
123        * On K line the passwd contents can be
124        * displayed on STATS reply.    -Vesa
125        */
126       /* Special-case 'k' or 'K' lines as appropriate... -Kev */
127       if ((tmp->status & CONF_UWORLD))
128         send_reply(sptr, p[1], c, host, pass, name, port, get_conf_class(tmp));
129       else if ((tmp->status & (CONF_SERVER | CONF_HUB)))
130         send_reply(sptr, p[1], c, "*", name, port, get_conf_class(tmp));
131       else
132         send_reply(sptr, p[1], c, host, name, port, get_conf_class(tmp));
133     }
134   }
135 }
136
137 /*
138  *  {CONF_TLINES, RPL_STATSTLINE, 'T'},
139  *
140  * see now motd_report() in motd.c
141  */
142 /*  void report_motd_list(struct Client* to) */
143 /*  { */
144 /*    const struct MotdConf* conf = conf_get_motd_list(); */
145 /*    for ( ; conf; conf = conf->next) */
146 /*      send_reply(to, RPL_STATSTLINE, 'T', conf->hostmask, conf->path); */
147 /*  } */
148
149 /*
150  * {CONF_CRULEALL, RPL_STATSDLINE, 'D'},
151  * {CONF_CRULEAUTO, RPL_STATSDLINE, 'd'},
152  */
153 void report_crule_list(struct Client* to, int mask)
154 {
155   const struct CRuleConf* p = conf_get_crule_list();
156   for ( ; p; p = p->next) {
157     if (0 != (p->type & mask))
158       send_reply(to, RPL_STATSDLINE, (CRULE_ALL == p->type) ? 'D' : 'd', p->hostmask, p->rule);
159   }
160 }
161
162 /*
163  * {CONF_KILL, RPL_STATSKLINE, 'K'},
164  * {CONF_IPKILL, RPL_STATSKLINE, 'k'},
165  */
166 void report_deny_list(struct Client* to)
167 {
168   const struct DenyConf* p = conf_get_deny_list();
169   for ( ; p; p = p->next)
170     send_reply(to, RPL_STATSKLINE, (p->flags & DENY_FLAGS_IP) ? 'k' : 'K',
171                p->hostmask, p->message, p->usermask);
172 }
173
174 /* m_stats is so obnoxiously full of special cases that the different
175  * hunt_server() possiblites were becoming very messy. It now uses a
176  * switch() so as to be easier to read and update as params change. 
177  * -Ghostwolf 
178  *
179  * 2.10.11: Don't check for the oper limitation if it's not our local server.
180  *          thusly once all the hubs have upgraded local opers will be able
181  *          to remote stats anywhere on the network.
182  */
183 int hunt_stats(struct Client* cptr, struct Client* sptr, int parc, char* parv[], char stat)
184 {
185   switch (stat)
186   {
187       /* open to all, standard # of params */
188     case 'U':
189     case 'u':
190     case 'F':
191     case 'f':
192       return hunt_server_cmd(sptr, CMD_STATS, cptr, 0, "%s :%C", 2, parc,
193                              parv);
194
195     /* open to all, varying # of params */
196     case 'k':
197     case 'K':
198     case 'i':
199     case 'I':
200     case 'p':
201     case 'P':
202     {
203       if (parc > 3)
204         return hunt_server_cmd(sptr, CMD_STATS, cptr, 0, "%s %C :%s", 2, parc, parv);
205       else
206         return hunt_server_cmd(sptr, CMD_STATS, cptr, 0, "%s :%C", 2, parc, parv);
207     }
208
209       /* oper only, varying # of params */
210     case 'l':
211     case 'L':
212     case 'M':
213     {
214       if (parc == 4)
215         return hunt_server_cmd(sptr, CMD_STATS, cptr, MyUser(sptr) ? 1 : 0, "%s %C :%s", 2, parc, parv);
216       else if (parc > 4)
217         return hunt_server_cmd(sptr, CMD_STATS, cptr, MyUser(sptr) ? 1 : 0, "%s %C %s :%s", 2, parc, parv);
218       else 
219         return hunt_server_cmd(sptr, CMD_STATS, cptr, MyUser(sptr) ? 1 : 0, "%s :%C", 2, parc, parv);
220     }
221
222       /* oper only, standard # of params */
223     default:
224       return hunt_server_cmd(sptr, CMD_STATS, cptr, MyUser(sptr) ? 1 : 0, "%s :%C", 2, parc, parv);
225   }
226 }
227