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