Make default virtual host work for .12, and make IPv4-only
[ircu2.10.12-pk.git] / ircd / s_debug.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_debug.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 1, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * $Id$
21  *
22  */
23 #include "config.h"
24
25 #include "s_debug.h"
26 #include "channel.h"
27 #include "class.h"
28 #include "client.h"
29 #include "gline.h"
30 #include "hash.h"
31 #include "ircd_alloc.h"
32 #include "ircd_features.h"
33 #include "ircd_log.h"
34 #include "ircd_osdep.h"
35 #include "ircd_reply.h"
36 #include "ircd.h"
37 #include "jupe.h"
38 #include "list.h"
39 #include "motd.h"
40 #include "msgq.h"
41 #include "numeric.h"
42 #include "numnicks.h"
43 #include "res.h"
44 #include "s_bsd.h"
45 #include "s_conf.h"
46 #include "s_stats.h"
47 #include "send.h"
48 #include "struct.h"
49 #include "sys.h"
50 #include "whowas.h"
51
52 #include <assert.h>
53 #include <errno.h>
54 #include <fcntl.h>
55 #include <stdarg.h>
56 #include <stddef.h>     /* offsetof */
57 #include <stdio.h>
58 #include <string.h>
59 #include <unistd.h>
60
61 /*
62  * Option string.  Must be before #ifdef DEBUGMODE.
63  */
64 static char serveropts[256]; /* should be large enough for anything */
65
66 const char* debug_serveropts(void)
67 {
68   int bp;
69   int i = 0;
70 #define AddC(c) serveropts[i++] = (c)
71
72   bp = feature_int(FEAT_BUFFERPOOL);
73   if (bp < 1000000) {
74     AddC('b');
75     if (bp > 99999)
76       AddC((char)('0' + (bp / 100000)));
77     if (bp > 9999)
78       AddC((char)('0' + (bp / 10000) % 10));
79     AddC((char)('0' + (bp / 1000) % 10));
80   } else {
81     AddC('B');
82     if (bp > 99999999)
83       AddC((char)('0' + (bp / 100000000)));
84     if (bp > 9999999)
85       AddC((char)('0' + (bp / 10000000) % 10));
86     AddC((char)('0' + (bp / 1000000) % 10));
87   }
88
89 #ifndef NDEBUG
90   AddC('A');
91 #endif
92 #ifdef  DEBUGMODE
93   AddC('D');
94 #endif
95
96   if (feature_bool(FEAT_HUB))
97     AddC('H');
98
99   if (feature_bool(FEAT_IDLE_FROM_MSG))
100     AddC('M');
101
102   if (feature_bool(FEAT_RELIABLE_CLOCK))
103     AddC('R');
104
105 #if defined(USE_POLL) && defined(HAVE_POLL_H)
106   AddC('U');
107 #endif
108
109   serveropts[i] = '\0';
110
111   return serveropts;
112 }
113
114 /*
115  * debug_init
116  *
117  * If the -t option is not given on the command line when the server is
118  * started, all debugging output is sent to the file set by LPATH in config.h
119  * Here we just open that file and make sure it is opened to fd 2 so that
120  * any fprintf's to stderr also goto the logfile.  If the debuglevel is not
121  * set from the command line by -x, use /dev/null as the dummy logfile as long
122  * as DEBUGMODE has been defined, else dont waste the fd.
123  */
124 void debug_init(int use_tty)
125 {
126 #ifdef  DEBUGMODE
127   if (debuglevel >= 0) {
128     printf("isatty = %d ttyname = %s\n", isatty(2), ttyname(2));
129     log_debug_init(use_tty);
130   }
131 #endif
132 }
133
134 #ifdef DEBUGMODE
135 void vdebug(int level, const char *form, va_list vl)
136 {
137   static int loop = 0;
138   int err = errno;
139
140   if (!loop && (debuglevel >= 0) && (level <= debuglevel))
141   {
142     loop = 1;
143     log_vwrite(LS_DEBUG, L_DEBUG, 0, form, vl);
144     loop = 0;
145   }
146   errno = err;
147 }
148
149 void debug(int level, const char *form, ...)
150 {
151   va_list vl;
152   va_start(vl, form);
153   vdebug(level, form, vl);
154   va_end(vl);
155 }
156
157 static void debug_enumerator(struct Client* cptr, const char* msg)
158 {
159   assert(0 != cptr);
160   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":%s", msg);
161 }
162
163 /*
164  * This is part of the STATS replies. There is no offical numeric for this
165  * since this isnt an official command, in much the same way as HASH isnt.
166  * It is also possible that some systems wont support this call or have
167  * different field names for "struct rusage".
168  * -avalon
169  */
170 void send_usage(struct Client *cptr, const struct StatDesc *sd,
171                 char *param)
172 {
173   os_get_rusage(cptr, CurrentTime - cli_since(&me), debug_enumerator);
174
175   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":DBUF alloc %d used %d",
176              DBufAllocCount, DBufUsedCount);
177 }
178 #endif /* DEBUGMODE */
179
180 void count_memory(struct Client *cptr, const struct StatDesc *sd,
181                   char *param)
182 {
183   struct Client *acptr;
184   struct SLink *link;
185   struct Channel *chptr;
186   struct ConfItem *aconf;
187   const struct ConnectionClass* cltmp;
188   struct Membership* member;
189
190   int acc = 0,                  /* accounts */
191       c = 0,                    /* clients */
192       cn = 0,                   /* connections */
193       ch = 0,                   /* channels */
194       lcc = 0,                  /* local client conf links */
195       us = 0,                   /* user structs */
196       chi = 0,                  /* channel invites */
197       chb = 0,                  /* channel bans */
198       wwu = 0,                  /* whowas users */
199       cl = 0,                   /* classes */
200       co = 0,                   /* conf lines */
201       memberships = 0;          /* channel memberships */
202
203   int usi = 0,                  /* users invited */
204       aw = 0,                   /* aways set */
205       wwa = 0,                  /* whowas aways */
206       gl = 0,                   /* glines */
207       ju = 0;                   /* jupes */
208
209   size_t chm = 0,               /* memory used by channels */
210       chbm = 0,                 /* memory used by channel bans */
211       cm = 0,                   /* memory used by clients */
212       cnm = 0,                  /* memory used by connections */
213       awm = 0,                  /* memory used by aways */
214       wwam = 0,                 /* whowas away memory used */
215       wwm = 0,                  /* whowas array memory used */
216       glm = 0,                  /* memory used by glines */
217       jum = 0,                  /* memory used by jupes */
218       com = 0,                  /* memory used by conf lines */
219       dbufs_allocated = 0,      /* memory used by dbufs */
220       dbufs_used = 0,           /* memory used by dbufs */
221       msg_allocated = 0,        /* memory used by struct Msg */
222       msgbuf_allocated = 0,     /* memory used by struct MsgBuf */
223       rm = 0,                   /* res memory used */
224       totcl = 0, totch = 0, totww = 0, tot = 0;
225
226   count_whowas_memory(&wwu, &wwm, &wwa, &wwam);
227   wwm += sizeof(struct Whowas) * feature_int(FEAT_NICKNAMEHISTORYLENGTH);
228   wwm += sizeof(struct Whowas *) * WW_MAX;
229
230   for (acptr = GlobalClientList; acptr; acptr = cli_next(acptr))
231   {
232     c++;
233     if (MyConnect(acptr))
234     {
235       cn++;
236       for (link = cli_confs(acptr); link; link = link->next)
237         lcc++;
238     }
239     if (cli_user(acptr))
240     {
241       us++;
242       for (link = cli_user(acptr)->invited; link; link = link->next)
243         usi++;
244       for (member = cli_user(acptr)->channel; member; member = member->next_channel)
245         ++memberships;
246       if (cli_user(acptr)->away)
247       {
248         aw++;
249         awm += (strlen(cli_user(acptr)->away) + 1);
250       }
251     }
252
253     if (IsAccount(acptr))
254       acc++;
255   }
256   cm = c * sizeof(struct Client);
257   cnm = cn * sizeof(struct Connection);
258
259   for (chptr = GlobalChannelList; chptr; chptr = chptr->next)
260   {
261     ch++;
262     chm += (strlen(chptr->chname) + sizeof(struct Channel));
263     for (link = chptr->invites; link; link = link->next)
264       chi++;
265     for (link = chptr->banlist; link; link = link->next)
266     {
267       chb++;
268       chbm += (strlen(link->value.cp) + 1 + sizeof(struct SLink));
269     }
270   }
271
272   for (aconf = GlobalConfList; aconf; aconf = aconf->next)
273   {
274     co++;
275     com += aconf->host ? strlen(aconf->host) + 1 : 0;
276     com += aconf->passwd ? strlen(aconf->passwd) + 1 : 0;
277     com += aconf->name ? strlen(aconf->name) + 1 : 0;
278     com += sizeof(struct ConfItem);
279   }
280
281   for (cltmp = get_class_list(); cltmp; cltmp = cltmp->next)
282     cl++;
283
284   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
285              ":Clients %d(%zu) Connections %d(%zu)", c, cm, cn, cnm);
286   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
287              ":Users %d(%zu) Accounts %d(%zu) Invites %d(%zu)",
288              us, us * sizeof(struct User), acc, acc * (ACCOUNTLEN + 1),
289              usi, usi * sizeof(struct SLink));
290   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
291              ":User channels %d(%zu) Aways %d(%zu)", memberships,
292              memberships * sizeof(struct Membership), aw, awm);
293   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Attached confs %d(%zu)",
294              lcc, lcc * sizeof(struct SLink));
295
296   totcl = cm + cnm + us * sizeof(struct User) + memberships * sizeof(struct Membership) + awm;
297   totcl += lcc * sizeof(struct SLink) + usi * sizeof(struct SLink);
298
299   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Conflines %d(%zu)", co,
300              com);
301
302   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Classes %d(%zu)", cl,
303              cl * sizeof(struct ConnectionClass));
304
305   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
306              ":Channels %d(%zu) Bans %d(%zu)", ch, chm, chb, chbm);
307   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
308              ":Channel membrs %d(%zu) invite %d(%zu)", memberships,
309              memberships * sizeof(struct Membership), chi,
310              chi * sizeof(struct SLink));
311
312   totch = chm + chbm + chi * sizeof(struct SLink);
313
314   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
315              ":Whowas users %d(%zu) away %d(%zu)", wwu,
316              wwu * sizeof(struct User), wwa, wwam);
317   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Whowas array %d(%zu)",
318              feature_int(FEAT_NICKNAMEHISTORYLENGTH), wwm);
319
320   totww = wwu * sizeof(struct User) + wwam + wwm;
321
322   motd_memory_count(cptr);
323
324   gl = gline_memory_count(&glm);
325   ju = jupe_memory_count(&jum);
326   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
327              ":Glines %d(%zu) Jupes %d(%zu)", gl, glm, ju, jum);
328
329   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
330              ":Hash: client %d(%zu), chan is the same", HASHSIZE,
331              sizeof(void *) * HASHSIZE);
332
333   /*
334    * NOTE: this count will be accurate only for the exact instant that this
335    * message is being sent, so the count is affected by the dbufs that
336    * are being used to send this message out. If this is not desired, move
337    * the dbuf_count_memory call to a place before we start sending messages
338    * and cache DBufAllocCount and DBufUsedCount in variables until they 
339    * are sent.
340    */
341   dbuf_count_memory(&dbufs_allocated, &dbufs_used);
342   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
343              ":DBufs allocated %d(%zu) used %d(%zu)", DBufAllocCount,
344              dbufs_allocated, DBufUsedCount, dbufs_used);
345
346   /* The DBuf caveats now count for this, but this routine now sends
347    * replies all on its own.
348    */
349   msgq_count_memory(cptr, &msg_allocated, &msgbuf_allocated);
350
351   rm = cres_mem(cptr);
352
353   tot =
354       totww + totch + totcl + com + cl * sizeof(struct ConnectionClass) +
355       dbufs_allocated + msg_allocated + msgbuf_allocated + rm;
356   tot += sizeof(void *) * HASHSIZE * 3;
357
358 #if defined(MDEBUG)
359   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Allocations: %zu(%zu)",
360              fda_get_block_count(), fda_get_byte_count());
361 #endif
362
363   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
364              ":Total: ww %zu ch %zu cl %zu co %zu db %zu ms %zu mb %zu",
365              totww, totch, totcl, com, dbufs_allocated, msg_allocated,
366              msgbuf_allocated);
367 }
368