1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
/* OperServ core functions
*
* (C) 2003-2013 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
*
*/
/*************************************************************************/
#include "module.h"
static int do_stats(User * u);
static void get_operserv_stats(long *nrec, long *memuse);
static void myOperServHelp(User * u);
/**
* Create the command, and tell anope about it.
* @param argc Argument count
* @param argv Argument list
* @return MOD_CONT to allow the module, MOD_STOP to stop it
**/
int AnopeInit(int argc, char **argv)
{
Command *c;
moduleAddAuthor("Anope");
moduleAddVersion(VERSION_STRING);
moduleSetType(CORE);
c = createCommand("STATS", do_stats, NULL, OPER_HELP_STATS,
-1, -1, -1, -1);
moduleAddCommand(OPERSERV, c, MOD_UNIQUE);
c = createCommand("UPTIME", do_stats, NULL,
OPER_HELP_STATS, -1, -1, -1, -1);
moduleAddCommand(OPERSERV, c, MOD_UNIQUE);
moduleSetOperHelp(myOperServHelp);
return MOD_CONT;
}
/**
* Unload the module
**/
void AnopeFini(void)
{
}
/**
* Add the help response to anopes /os help output.
* @param u The user who is requesting help
**/
static void myOperServHelp(User * u)
{
notice_lang(s_OperServ, u, OPER_HELP_CMD_STATS);
}
/**
* Count servers connected to server s
* @param s The server to start counting from
* @return Amount of servers connected to server s
**/
static int stats_count_servers(Server * s)
{
int count = 0;
while (s) {
count++;
if (s->links)
count += stats_count_servers(s->links);
s = s->next;
}
return count;
}
/**
* The /os stats command.
* @param u The user who issued the command
* @param MOD_CONT to continue processing other modules, MOD_STOP to stop processing.
**/
static int do_stats(User * u)
{
time_t uptime = time(NULL) - start_time;
char *extra = strtok(NULL, "");
int days = uptime / 86400, hours = (uptime / 3600) % 24,
mins = (uptime / 60) % 60, secs = uptime % 60;
struct tm *tm;
char timebuf[64];
char buf[512];
int buflen;
int i;
if (extra && stricmp(extra, "ALL") != 0) {
if (stricmp(extra, "AKILL") == 0) {
int timeout;
/* AKILLs */
notice_lang(s_OperServ, u, OPER_STATS_AKILL_COUNT,
akills.count);
timeout = AutokillExpiry + 59;
if (timeout >= 172800)
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_DAYS,
timeout / 86400);
else if (timeout >= 86400)
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_DAY);
else if (timeout >= 7200)
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_HOURS,
timeout / 3600);
else if (timeout >= 3600)
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_HOUR);
else if (timeout >= 120)
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_MINS,
timeout / 60);
else if (timeout >= 60)
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_MIN);
else
notice_lang(s_OperServ, u, OPER_STATS_AKILL_EXPIRE_NONE);
if (ircd->sgline) {
/* SGLINEs */
notice_lang(s_OperServ, u, OPER_STATS_SGLINE_COUNT,
sglines.count);
timeout = SGLineExpiry + 59;
if (timeout >= 172800)
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_DAYS,
timeout / 86400);
else if (timeout >= 86400)
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_DAY);
else if (timeout >= 7200)
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_HOURS,
timeout / 3600);
else if (timeout >= 3600)
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_HOUR);
else if (timeout >= 120)
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_MINS,
timeout / 60);
else if (timeout >= 60)
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_MIN);
else
notice_lang(s_OperServ, u,
OPER_STATS_SGLINE_EXPIRE_NONE);
}
if (ircd->sqline) {
/* SQLINEs */
notice_lang(s_OperServ, u, OPER_STATS_SQLINE_COUNT,
sqlines.count);
timeout = SQLineExpiry + 59;
if (timeout >= 172800)
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_DAYS,
timeout / 86400);
else if (timeout >= 86400)
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_DAY);
else if (timeout >= 7200)
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_HOURS,
timeout / 3600);
else if (timeout >= 3600)
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_HOUR);
else if (timeout >= 120)
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_MINS,
timeout / 60);
else if (timeout >= 60)
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_MIN);
else
notice_lang(s_OperServ, u,
OPER_STATS_SQLINE_EXPIRE_NONE);
}
if (ircd->szline) {
/* SZLINEs */
notice_lang(s_OperServ, u, OPER_STATS_SZLINE_COUNT,
szlines.count);
timeout = SZLineExpiry + 59;
if (timeout >= 172800)
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_DAYS,
timeout / 86400);
else if (timeout >= 86400)
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_DAY);
else if (timeout >= 7200)
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_HOURS,
timeout / 3600);
else if (timeout >= 3600)
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_HOUR);
else if (timeout >= 120)
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_MINS,
timeout / 60);
else if (timeout >= 60)
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_MIN);
else
notice_lang(s_OperServ, u,
OPER_STATS_SZLINE_EXPIRE_NONE);
}
return MOD_CONT;
} else if (!stricmp(extra, "RESET")) {
if (is_services_admin(u)) {
maxusercnt = usercnt;
notice_lang(s_OperServ, u, OPER_STATS_RESET);
} else {
notice_lang(s_OperServ, u, PERMISSION_DENIED);
}
return MOD_CONT;
} else if (stricmp(extra, "MEMORY") && stricmp(extra, "UPLINK")) {
notice_lang(s_OperServ, u, OPER_STATS_UNKNOWN_OPTION, extra);
}
}
if (!extra || ((stricmp(extra, "MEMORY") != 0)
&& (stricmp(extra, "UPLINK") != 0))) {
notice_lang(s_OperServ, u, OPER_STATS_CURRENT_USERS, usercnt,
opcnt);
tm = localtime(&maxusertime);
strftime_lang(timebuf, sizeof(timebuf), u,
STRFTIME_DATE_TIME_FORMAT, tm);
notice_lang(s_OperServ, u, OPER_STATS_MAX_USERS, maxusercnt,
timebuf);
if (days > 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_DHMS,
days, hours, mins, secs);
} else if (days == 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_1DHMS,
days, hours, mins, secs);
} else {
if (hours > 1) {
if (mins != 1) {
if (secs != 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_HMS,
hours, mins, secs);
} else {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_HM1S,
hours, mins, secs);
}
} else {
if (secs != 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_H1MS,
hours, mins, secs);
} else {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_H1M1S,
hours, mins, secs);
}
}
} else if (hours == 1) {
if (mins != 1) {
if (secs != 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_1HMS,
hours, mins, secs);
} else {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_1HM1S,
hours, mins, secs);
}
} else {
if (secs != 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_1H1MS,
hours, mins, secs);
} else {
notice_lang(s_OperServ, u,
OPER_STATS_UPTIME_1H1M1S, hours, mins,
secs);
}
}
} else {
if (mins != 1) {
if (secs != 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_MS,
mins, secs);
} else {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_M1S,
mins, secs);
}
} else {
if (secs != 1) {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_1MS,
mins, secs);
} else {
notice_lang(s_OperServ, u, OPER_STATS_UPTIME_1M1S,
mins, secs);
}
}
}
}
}
if (extra && ((stricmp(extra, "ALL") == 0)
|| (stricmp(extra, "UPLINK") == 0))
&& is_services_admin(u)) {
buf[0] = '\0';
buflen = 511; /* How confusing, this is the amount of space left! */
for (i = 0; capab_info[i].token; i++) {
if (uplink_capab & capab_info[i].flag) {
strncat(buf, " ", buflen);
buflen--;
strncat(buf, capab_info[i].token, buflen);
buflen -= strlen(capab_info[i].token);
/* Special cases */
if (capab_info[i].flag == CAPAB_CHANMODE) {
strncat(buf, "=", buflen);
buflen--;
strncat(buf, ircd->chanmodes, buflen);
buflen -= strlen(ircd->chanmodes);
}
if (capab_info[i].flag == CAPAB_NICKCHARS) {
strncat(buf, "=", buflen);
buflen--;
if (ircd->nickchars) {
strncat(buf, ircd->nickchars, buflen);
buflen -= strlen(ircd->nickchars);
} /* leave blank if it was null */
}
}
}
notice_lang(s_OperServ, u, OPER_STATS_UPLINK_SERVER,
serv_uplink->name);
notice_lang(s_OperServ, u, OPER_STATS_UPLINK_CAPAB, buf);
notice_lang(s_OperServ, u, OPER_STATS_UPLINK_SERVER_COUNT,
stats_count_servers(serv_uplink));
}
if (extra && ((stricmp(extra, "ALL") == 0)
|| (stricmp(extra, "MEMORY") == 0))
&& is_services_admin(u)) {
long count, mem;
notice_lang(s_OperServ, u, OPER_STATS_BYTES_READ,
total_read / 1024);
notice_lang(s_OperServ, u, OPER_STATS_BYTES_WRITTEN,
total_written / 1024);
get_user_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_USER_MEM, count,
(mem + 512) / 1024);
get_channel_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_CHANNEL_MEM, count,
(mem + 512) / 1024);
get_core_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_GROUPS_MEM, count,
(mem + 512) / 1024);
get_aliases_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_ALIASES_MEM, count,
(mem + 512) / 1024);
get_chanserv_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_CHANSERV_MEM, count,
(mem + 512) / 1024);
if (s_BotServ) {
get_botserv_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_BOTSERV_MEM, count,
(mem + 512) / 1024);
}
if (s_HostServ) {
get_hostserv_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_HOSTSERV_MEM, count,
(mem + 512) / 1024);
}
get_operserv_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_OPERSERV_MEM, count,
(mem + 512) / 1024);
get_session_stats(&count, &mem);
notice_lang(s_OperServ, u, OPER_STATS_SESSIONS_MEM, count,
(mem + 512) / 1024);
}
return MOD_CONT;
}
static void get_operserv_stats(long *nrec, long *memuse)
{
int i;
long mem = 0, count = 0, mem2 = 0, count2 = 0;
Akill *ak;
SXLine *sx;
count += akills.count;
mem += akills.capacity;
mem += akills.count * sizeof(Akill);
for (i = 0; i < akills.count; i++) {
ak = akills.list[i];
mem += strlen(ak->user) + 1;
mem += strlen(ak->host) + 1;
mem += strlen(ak->by) + 1;
mem += strlen(ak->reason) + 1;
}
if (ircd->sgline) {
count += sglines.count;
mem += sglines.capacity;
mem += sglines.count * sizeof(SXLine);
for (i = 0; i < sglines.count; i++) {
sx = sglines.list[i];
mem += strlen(sx->mask) + 1;
mem += strlen(sx->by) + 1;
mem += strlen(sx->reason) + 1;
}
}
if (ircd->sqline) {
count += sqlines.count;
mem += sqlines.capacity;
mem += sqlines.count * sizeof(SXLine);
for (i = 0; i < sqlines.count; i++) {
sx = sqlines.list[i];
mem += strlen(sx->mask) + 1;
mem += strlen(sx->by) + 1;
mem += strlen(sx->reason) + 1;
}
}
if (ircd->szline) {
count += szlines.count;
mem += szlines.capacity;
mem += szlines.count * sizeof(SXLine);
for (i = 0; i < szlines.count; i++) {
sx = szlines.list[i];
mem += strlen(sx->mask) + 1;
mem += strlen(sx->by) + 1;
mem += strlen(sx->reason) + 1;
}
}
get_news_stats(&count2, &mem2);
count += count2;
mem += mem2;
get_exception_stats(&count2, &mem2);
count += count2;
mem += mem2;
*nrec = count;
*memuse = mem;
}
|