Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / s_misc.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_misc.c (formerly ircd/date.c)
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 1, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25 #include "s_misc.h"
26 #include "IPcheck.h"
27 #include "channel.h"
28 #include "client.h"
29 #include "hash.h"
30 #include "ircd.h"
31 #include "ircd_alloc.h"
32 #include "ircd_log.h"
33 #include "ircd_reply.h"
34 #include "ircd_string.h"
35 #include "list.h"
36 #include "match.h"
37 #include "msg.h"
38 #include "numeric.h"
39 #include "numnicks.h"
40 #include "parse.h"
41 #include "querycmds.h"
42 #include "res.h"
43 #include "s_bsd.h"
44 #include "s_conf.h"
45 #include "s_debug.h"
46 #include "s_user.h"
47 #include "send.h"
48 #include "sprintf_irc.h"
49 #include "struct.h"
50 #include "support.h"
51 #include "sys.h"
52 #include "uping.h"
53 #include "userload.h"
54
55 #include <assert.h>
56 #include <fcntl.h>
57 #include <netdb.h>
58 #include <stdio.h>
59 #include <string.h>
60 #include <sys/stat.h>
61 #include <unistd.h>
62
63
64 static char *months[] = {
65   "January", "February", "March", "April",
66   "May", "June", "July", "August",
67   "September", "October", "November", "December"
68 };
69
70 static char *weekdays[] = {
71   "Sunday", "Monday", "Tuesday", "Wednesday",
72   "Thursday", "Friday", "Saturday"
73 };
74
75 /*
76  * stats stuff
77  */
78 static struct ServerStatistics ircst;
79 struct ServerStatistics* ServerStats = &ircst;
80
81 char *date(time_t clock)
82 {
83   static char buf[80], plus;
84   struct tm *lt, *gm;
85   struct tm gmbuf;
86   int minswest;
87
88   if (!clock)
89     clock = CurrentTime;
90   gm = gmtime(&clock);
91   memcpy(&gmbuf, gm, sizeof(gmbuf));
92   gm = &gmbuf;
93   lt = localtime(&clock);
94
95   minswest = (gm->tm_hour - lt->tm_hour) * 60 + (gm->tm_min - lt->tm_min);
96   if (lt->tm_yday != gm->tm_yday)
97   {
98     if ((lt->tm_yday > gm->tm_yday && lt->tm_year == gm->tm_year) ||
99         (lt->tm_yday < gm->tm_yday && lt->tm_year != gm->tm_year))
100       minswest -= 24 * 60;
101     else
102       minswest += 24 * 60;
103   }
104
105   plus = (minswest > 0) ? '-' : '+';
106   if (minswest < 0)
107     minswest = -minswest;
108
109   sprintf(buf, "%s %s %d %d -- %02d:%02d %c%02d:%02d",
110       weekdays[lt->tm_wday], months[lt->tm_mon], lt->tm_mday,
111       1900 + lt->tm_year, lt->tm_hour, lt->tm_min,
112       plus, minswest / 60, minswest % 60);
113
114   return buf;
115 }
116
117 /*
118  * myctime
119  *
120  * This is like standard ctime()-function, but it zaps away
121  * the newline from the end of that string. Also, it takes
122  * the time value as parameter, instead of pointer to it.
123  * Note that it is necessary to copy the string to alternate
124  * buffer (who knows how ctime() implements it, maybe it statically
125  * has newline there and never 'refreshes' it -- zapping that
126  * might break things in other places...)
127  */
128 char *myctime(time_t value)
129 {
130   static char buf[28];
131   char *p;
132
133   strcpy(buf, ctime(&value));
134   if ((p = strchr(buf, '\n')) != NULL)
135     *p = '\0';
136
137   return buf;
138 }
139
140 /*
141  *  get_client_name
142  *       Return the name of the client for various tracking and
143  *       admin purposes. The main purpose of this function is to
144  *       return the "socket host" name of the client, if that
145  *    differs from the advertised name (other than case).
146  *    But, this can be used to any client structure.
147  *
148  *    Returns:
149  *      "name[user@ip#.port]" if 'showip' is true;
150  *      "name" if 'showip' is false.
151  *
152  *  NOTE 1:
153  *    Watch out the allocation of "nbuf", if either sptr->name
154  *    or sptr->sockhost gets changed into pointers instead of
155  *    directly allocated within the structure...
156  *
157  *  NOTE 2:
158  *    Function return either a pointer to the structure (sptr) or
159  *    to internal buffer (nbuf). *NEVER* use the returned pointer
160  *    to modify what it points!!!
161  */
162 const char* get_client_name(const struct Client* sptr, int showip)
163 {
164   static char nbuf[HOSTLEN * 2 + USERLEN + 5];
165
166   if (MyConnect(sptr)) {
167     if (showip)
168       sprintf_irc(nbuf, "%s[%s@%s]", sptr->name,
169             (IsIdented(sptr)) ? sptr->username : "", sptr->sock_ip);
170     else
171         return sptr->name;
172     return nbuf;
173   }
174   return sptr->name;
175 }
176
177 const char *get_client_host(const struct Client *cptr)
178 {
179   return get_client_name(cptr, HIDE_IP);
180 }
181
182 /*
183  * Form sockhost such that if the host is of form user@host, only the host
184  * portion is copied.
185  */
186 void get_sockhost(struct Client *cptr, char *host)
187 {
188   char *s;
189   if ((s = strchr(host, '@')))
190     s++;
191   else
192     s = host;
193   ircd_strncpy(cptr->sockhost, s, HOSTLEN);
194 }
195
196 /*
197  * Exit one client, local or remote. Assuming for local client that
198  * all dependants already have been removed, and socket is closed.
199  *
200  * Rewritten by Run - 24 sept 94
201  *
202  * bcptr : client being (s)quitted
203  * sptr : The source (prefix) of the QUIT or SQUIT
204  *
205  * --Run
206  */
207 static void exit_one_client(struct Client* bcptr, const char* comment)
208 {
209   struct SLink *lp;
210
211   if (bcptr->serv && bcptr->serv->client_list)  /* Was SetServerYXX called ? */
212     ClearServerYXX(bcptr);      /* Removes server from server_list[] */
213   if (IsUser(bcptr)) {
214     /*
215      * clear out uping requests
216      */
217     if (IsUPing(bcptr))
218       uping_cancel(bcptr, 0);
219     /*
220      * Stop a running /LIST clean
221      */
222     if (MyUser(bcptr) && bcptr->listing) {
223       bcptr->listing->chptr->mode.mode &= ~MODE_LISTED;
224       MyFree(bcptr->listing);
225       bcptr->listing = NULL;
226     }
227     /*
228      * If a person is on a channel, send a QUIT notice
229      * to every client (person) on the same channel (so
230      * that the client can show the "**signoff" message).
231      * (Note: The notice is to the local clients *only*)
232      */
233     sendcmdto_common_channels(bcptr, CMD_QUIT, ":%s", comment);
234
235     remove_user_from_all_channels(bcptr);
236
237     /* Clean up invitefield */
238     while ((lp = bcptr->user->invited))
239       del_invite(bcptr, lp->value.chptr);
240
241     /* Clean up silencefield */
242     while ((lp = bcptr->user->silence))
243       del_silence(bcptr, lp->value.cp);
244
245     if (IsInvisible(bcptr))
246       --UserStats.inv_clients;
247     if (IsOper(bcptr))
248       --UserStats.opers;
249     if (MyConnect(bcptr))
250       Count_clientdisconnects(bcptr, UserStats);
251     else {
252       Count_remoteclientquits(UserStats, bcptr);
253     }
254   }
255   else if (IsServer(bcptr))
256   {
257     /* Remove downlink list node of uplink */
258     remove_dlink(&bcptr->serv->up->serv->down, bcptr->serv->updown);
259     bcptr->serv->updown = 0;
260
261     if (MyConnect(bcptr))
262       Count_serverdisconnects(UserStats);
263     else
264       Count_remoteserverquits(UserStats);
265   }
266   else if (IsMe(bcptr))
267   {
268     sendto_opmask_butone(0, SNO_OLDSNO, "ERROR: tried to exit me! : %s",
269                          comment);
270     return;                     /* ...must *never* exit self! */
271   }
272   else if (IsUnknown(bcptr) || IsConnecting(bcptr) || IsHandshake(bcptr))
273     Count_unknowndisconnects(UserStats);
274
275   /*
276    * Update IPregistry
277    */
278   if (IsIPChecked(bcptr))
279     IPcheck_disconnect(bcptr);
280
281   /* 
282    * Remove from serv->client_list
283    * NOTE: user is *always* NULL if this is a server
284    */
285   if (bcptr->user) {
286     assert(!IsServer(bcptr));
287     /* bcptr->user->server->serv->client_list[IndexYXX(bcptr)] = NULL; */
288     RemoveYXXClient(bcptr->user->server, bcptr->yxx);
289   }
290
291   /* Remove bcptr from the client list */
292 #ifdef DEBUGMODE
293   if (hRemClient(bcptr) != 0)
294     Debug((DEBUG_ERROR, "%p !in tab %s[%s] %p %p %p %d %d %p",
295           bcptr, bcptr->name, bcptr->from ? bcptr->from->sockhost : "??host",
296           bcptr->from, bcptr->next, bcptr->prev, bcptr->fd,
297           bcptr->status, bcptr->user));
298 #else
299   hRemClient(bcptr);
300 #endif
301   remove_client_from_list(bcptr);
302 }
303
304 /*
305  * exit_downlinks - added by Run 25-9-94
306  *
307  * Removes all clients and downlinks (+clients) of any server
308  * QUITs are generated and sent to local users.
309  *
310  * cptr    : server that must have all dependents removed
311  * sptr    : source who thought that this was a good idea
312  * comment : comment sent as sign off message to local clients
313  */
314 static void exit_downlinks(struct Client *cptr, struct Client *sptr, char *comment)
315 {
316   struct Client *acptr;
317   struct DLink *next;
318   struct DLink *lp;
319   struct Client **acptrp;
320   int i;
321
322   /* Run over all its downlinks */
323   for (lp = cptr->serv->down; lp; lp = next)
324   {
325     next = lp->next;
326     acptr = lp->value.cptr;
327     /* Remove the downlinks and client of the downlink */
328     exit_downlinks(acptr, sptr, comment);
329     /* Remove the downlink itself */
330     exit_one_client(acptr, me.name);
331   }
332   /* Remove all clients of this server */
333   acptrp = cptr->serv->client_list;
334   for (i = 0; i <= cptr->serv->nn_mask; ++acptrp, ++i) {
335     if (*acptrp)
336       exit_one_client(*acptrp, comment);
337   }
338 }
339
340 /*
341  * exit_client, rewritten 25-9-94 by Run
342  *
343  * This function exits a client of *any* type (user, server, etc)
344  * from this server. Also, this generates all necessary prototol
345  * messages that this exit may cause.
346  *
347  * This function implicitly exits all other clients depending on
348  * this connection.
349  *
350  * For convenience, this function returns a suitable value for
351  * m_funtion return value:
352  *
353  *   CPTR_KILLED     if (cptr == bcptr)
354  *   0                if (cptr != bcptr)
355  *
356  * This function can be called in two ways:
357  * 1) From before or in parse(), exitting the 'cptr', in which case it was
358  *    invoked as exit_client(cptr, cptr, &me,...), causing it to always
359  *    return CPTR_KILLED.
360  * 2) Via parse from a m_function call, in which case it was invoked as
361  *    exit_client(cptr, acptr, sptr, ...). Here 'sptr' is known; the client
362  *    that generated the message in a way that we can assume he already
363  *    did remove acptr from memory himself (or in other cases we don't mind
364  *    because he will be delinked.) Or invoked as:
365  *    exit_client(cptr, acptr/sptr, &me, ...) when WE decide this one should
366  *    be removed.
367  * In general: No generated SQUIT or QUIT should be sent to source link
368  * sptr->from. And CPTR_KILLED should be returned if cptr got removed (too).
369  *
370  * --Run
371  */
372 int exit_client(struct Client *cptr,    /* Connection being handled by
373                                    read_message right now */
374     struct Client* victim,              /* Client being killed */
375     struct Client* killer,              /* The client that made the decision
376                                    to remove this one, never NULL */
377     const char* comment)              /* Reason for the exit */
378 {
379   struct Client* acptr = 0;
380   struct DLink *dlp;
381   time_t on_for;
382
383   char comment1[HOSTLEN + HOSTLEN + 2];
384   assert(killer);
385   if (MyConnect(victim)) {
386     victim->flags |= FLAGS_CLOSING;
387     update_load();
388
389     on_for = CurrentTime - victim->firsttime;
390
391     if (IsUser(victim))
392       log_write(LS_USER, L_TRACE, 0, "%s (%3d:%02d:%02d): %s@%s (%s)",
393                 myctime(victim->firsttime), on_for / 3600,
394                 (on_for % 3600) / 60, on_for % 60, victim->user->username,
395                 victim->sockhost, victim->name);
396
397     if (victim != killer->from  /* The source knows already */
398         && IsClient(victim))    /* Not a Ping struct or Log file */
399     {
400       if (IsServer(victim) || IsHandshake(victim))
401         sendcmdto_one(killer, CMD_SQUIT, victim, "%s 0 :%s", me.name, comment);
402       else if (!IsConnecting(victim)) {
403         if (!IsDead(victim))
404           sendrawto_one(victim, MSG_ERROR " :Closing Link: %s by %s (%s)",
405                         victim->name, killer->name, comment);
406       }
407       if ((IsServer(victim) || IsHandshake(victim) || IsConnecting(victim)) &&
408           (killer == &me || (IsServer(killer) &&
409           (strncmp(comment, "Leaf-only link", 14) ||
410           strncmp(comment, "Non-Hub link", 12)))))
411       {
412         /*
413          * Note: check user == user needed to make sure we have the same
414          * client
415          */
416         if (victim->serv->user && *victim->serv->by &&
417             (acptr = findNUser(victim->serv->by))) {
418           if (acptr->user == victim->serv->user) {
419             sendcmdto_one(&me, CMD_NOTICE, acptr,
420                           "%C :Link with %s cancelled: %s", acptr,
421                           victim->name, comment);
422           }
423           else {
424             /*
425              * not right client, set by to empty string
426              */
427             acptr = 0;
428             *victim->serv->by = '\0';
429           }
430         }
431         if (killer == &me)
432           sendto_opmask_butone(acptr, SNO_OLDSNO, "Link with %s cancelled: %s",
433                                victim->name, comment);
434       }
435     }
436     /*
437      *  Close the Client connection first.
438      */
439     close_connection(victim);
440   }
441
442   if (IsServer(victim))
443   {
444     strcpy(comment1, victim->serv->up->name);
445     strcat(comment1, " ");
446     strcat(comment1, victim->name);
447     if (IsUser(killer))
448       sendto_opmask_butone(killer, SNO_OLDSNO, "%s SQUIT by %s [%s]:",
449                            (killer->user->server == victim ||
450                             killer->user->server == victim->serv->up) ?
451                            "Local" : "Remote",
452                            get_client_name(killer, HIDE_IP),
453                            killer->user->server->name);
454     else if (killer != &me && victim->serv->up != killer)
455       sendto_opmask_butone(0, SNO_OLDSNO, "Received SQUIT %s from %s :",
456                            victim->name, IsServer(killer) ? killer->name :
457                            get_client_name(killer, HIDE_IP));
458     sendto_opmask_butone(0, SNO_NETWORK, "Net break: %s (%s)", comment1,
459                          comment);
460   }
461
462   /*
463    * First generate the needed protocol for the other server links
464    * except the source:
465    */
466   for (dlp = me.serv->down; dlp; dlp = dlp->next) {
467     if (dlp->value.cptr != killer->from && dlp->value.cptr != victim) {
468       if (IsServer(victim))
469         sendcmdto_one(killer, CMD_SQUIT, dlp->value.cptr, "%s %Tu :%s",
470                       victim->name, victim->serv->timestamp, comment);
471       else if (IsUser(victim) && 0 == (victim->flags & FLAGS_KILLED))
472         sendcmdto_one(victim, CMD_QUIT, dlp->value.cptr, ":%s", comment);
473     }
474   }
475   /* Then remove the client structures */
476   if (IsServer(victim))
477     exit_downlinks(victim, killer, comment1);
478   exit_one_client(victim, comment);
479
480   /*
481    *  cptr can only have been killed if it was cptr itself that got killed here,
482    *  because cptr can never have been a dependant of victim    --Run
483    */
484   return (cptr == victim) ? CPTR_KILLED : 0;
485 }
486
487 /*
488  * Exit client with formatted message, added 25-9-94 by Run
489  */
490 int vexit_client_msg(struct Client *cptr, struct Client *bcptr, struct Client *sptr,
491     const char *pattern, va_list vl)
492 {
493   char msgbuf[1024];
494   vsprintf_irc(msgbuf, pattern, vl);
495   return exit_client(cptr, bcptr, sptr, msgbuf);
496 }
497
498 int exit_client_msg(struct Client *cptr, struct Client *bcptr,
499     struct Client *sptr, const char *pattern, ...)
500 {
501   va_list vl;
502   char msgbuf[1024];
503
504   va_start(vl, pattern);
505   vsprintf_irc(msgbuf, pattern, vl);
506   va_end(vl);
507
508   return exit_client(cptr, bcptr, sptr, msgbuf);
509 }
510
511 void initstats(void)
512 {
513   memset(&ircst, 0, sizeof(ircst));
514 }
515
516 void tstats(struct Client *cptr, char *name)
517 {
518   struct Client *acptr;
519   int i;
520   struct ServerStatistics *sp;
521   struct ServerStatistics tmp;
522
523   sp = &tmp;
524   memcpy(sp, ServerStats, sizeof(struct ServerStatistics));
525   for (i = 0; i < MAXCONNECTIONS; i++)
526   {
527     if (!(acptr = LocalClientArray[i]))
528       continue;
529     if (IsServer(acptr))
530     {
531       sp->is_sbs += acptr->sendB;
532       sp->is_sbr += acptr->receiveB;
533       sp->is_sks += acptr->sendK;
534       sp->is_skr += acptr->receiveK;
535       sp->is_sti += CurrentTime - acptr->firsttime;
536       sp->is_sv++;
537       if (sp->is_sbs > 1023)
538       {
539         sp->is_sks += (sp->is_sbs >> 10);
540         sp->is_sbs &= 0x3ff;
541       }
542       if (sp->is_sbr > 1023)
543       {
544         sp->is_skr += (sp->is_sbr >> 10);
545         sp->is_sbr &= 0x3ff;
546       }
547     }
548     else if (IsUser(acptr))
549     {
550       sp->is_cbs += acptr->sendB;
551       sp->is_cbr += acptr->receiveB;
552       sp->is_cks += acptr->sendK;
553       sp->is_ckr += acptr->receiveK;
554       sp->is_cti += CurrentTime - acptr->firsttime;
555       sp->is_cl++;
556       if (sp->is_cbs > 1023)
557       {
558         sp->is_cks += (sp->is_cbs >> 10);
559         sp->is_cbs &= 0x3ff;
560       }
561       if (sp->is_cbr > 1023)
562       {
563         sp->is_ckr += (sp->is_cbr >> 10);
564         sp->is_cbr &= 0x3ff;
565       }
566     }
567     else if (IsUnknown(acptr))
568       sp->is_ni++;
569   }
570
571   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":accepts %u refused %u",
572              sp->is_ac, sp->is_ref);
573   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
574              ":unknown commands %u prefixes %u", sp->is_unco, sp->is_unpf);
575   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
576              ":nick collisions %u unknown closes %u", sp->is_kill, sp->is_ni);
577   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
578              ":wrong direction %u empty %u", sp->is_wrdi, sp->is_empt);
579   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
580              ":numerics seen %u mode fakes %u", sp->is_num, sp->is_fake);
581   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
582              ":auth successes %u fails %u", sp->is_asuc, sp->is_abad);
583   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":local connections %u",
584              sp->is_loc);
585   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Client server");
586   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":connected %u %u",
587              sp->is_cl, sp->is_sv);
588   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":bytes sent %u.%uK %u.%uK",
589              sp->is_cks, sp->is_cbs, sp->is_sks, sp->is_sbs);
590   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":bytes recv %u.%uK %u.%uK",
591              sp->is_ckr, sp->is_cbr, sp->is_skr, sp->is_sbr);
592   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":time connected %Tu %Tu",
593              sp->is_cti, sp->is_sti);
594 }