Author: Isomer <isomer@coders.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 "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[sockethost]", if name and sockhost are different and
151  *      showip is false; else
152  *      "name".
153  *
154  *  NOTE 1:
155  *    Watch out the allocation of "nbuf", if either sptr->name
156  *    or sptr->sockhost gets changed into pointers instead of
157  *    directly allocated within the structure...
158  *
159  *  NOTE 2:
160  *    Function return either a pointer to the structure (sptr) or
161  *    to internal buffer (nbuf). *NEVER* use the returned pointer
162  *    to modify what it points!!!
163  */
164 const char* get_client_name(const struct Client* sptr, int showip)
165 {
166   static char nbuf[HOSTLEN * 2 + USERLEN + 5];
167
168   if (MyConnect(sptr)) {
169     if (showip)
170       sprintf_irc(nbuf, "%s[%s@%s]", sptr->name,
171             (IsIdented(sptr)) ? sptr->username : "", sptr->sock_ip);
172     else {
173       if (0 != ircd_strcmp(sptr->name, sptr->sockhost))
174         sprintf_irc(nbuf, "%s[%s]", sptr->name, sptr->sockhost);
175       else
176         return sptr->name;
177     }
178     return nbuf;
179   }
180   return sptr->name;
181 }
182
183 const char *get_client_host(const struct Client *cptr)
184 {
185   return get_client_name(cptr, HIDE_IP);
186 }
187
188 /*
189  * Form sockhost such that if the host is of form user@host, only the host
190  * portion is copied.
191  */
192 void get_sockhost(struct Client *cptr, char *host)
193 {
194   char *s;
195   if ((s = strchr(host, '@')))
196     s++;
197   else
198     s = host;
199   ircd_strncpy(cptr->sockhost, s, HOSTLEN);
200 }
201
202 /*
203  * Exit one client, local or remote. Assuming for local client that
204  * all dependants already have been removed, and socket is closed.
205  *
206  * Rewritten by Run - 24 sept 94
207  *
208  * bcptr : client being (s)quitted
209  * sptr : The source (prefix) of the QUIT or SQUIT
210  *
211  * --Run
212  */
213 static void exit_one_client(struct Client* bcptr, const char* comment)
214 {
215   struct SLink *lp;
216
217   if (bcptr->serv && bcptr->serv->client_list)  /* Was SetServerYXX called ? */
218     ClearServerYXX(bcptr);      /* Removes server from server_list[] */
219   if (IsUser(bcptr)) {
220     /*
221      * clear out uping requests
222      */
223     if (IsUPing(bcptr))
224       uping_cancel(bcptr, 0);
225     /*
226      * Stop a running /LIST clean
227      */
228     if (MyUser(bcptr) && bcptr->listing) {
229       bcptr->listing->chptr->mode.mode &= ~MODE_LISTED;
230       MyFree(bcptr->listing);
231       bcptr->listing = NULL;
232     }
233     /*
234      * If a person is on a channel, send a QUIT notice
235      * to every client (person) on the same channel (so
236      * that the client can show the "**signoff" message).
237      * (Note: The notice is to the local clients *only*)
238      */
239     sendcmdto_common_channels(bcptr, CMD_QUIT, ":%s", comment);
240
241     remove_user_from_all_channels(bcptr);
242
243     /* Clean up invitefield */
244     while ((lp = bcptr->user->invited))
245       del_invite(bcptr, lp->value.chptr);
246
247     /* Clean up silencefield */
248     while ((lp = bcptr->user->silence))
249       del_silence(bcptr, lp->value.cp);
250
251     if (IsInvisible(bcptr))
252       --UserStats.inv_clients;
253     if (IsOper(bcptr))
254       --UserStats.opers;
255     if (MyConnect(bcptr))
256       Count_clientdisconnects(bcptr, UserStats);
257     else {
258       Count_remoteclientquits(UserStats, bcptr);
259       ip_registry_remote_disconnect(bcptr);
260     }
261   }
262   else if (IsServer(bcptr))
263   {
264     /* Remove downlink list node of uplink */
265     remove_dlink(&bcptr->serv->up->serv->down, bcptr->serv->updown);
266     bcptr->serv->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   /* 
284    * Remove from serv->client_list
285    * NOTE: user is *always* NULL if this is a server
286    */
287   if (bcptr->user) {
288     assert(!IsServer(bcptr));
289     /* bcptr->user->server->serv->client_list[IndexYXX(bcptr)] = NULL; */
290     RemoveYXXClient(bcptr->user->server, bcptr->yxx);
291   }
292
293   /* Remove bcptr from the client list */
294 #ifdef DEBUGMODE
295   if (hRemClient(bcptr) != 0)
296     Debug((DEBUG_ERROR, "%p !in tab %s[%s] %p %p %p %d %d %p",
297           bcptr, bcptr->name, bcptr->from ? bcptr->from->sockhost : "??host",
298           bcptr->from, bcptr->next, bcptr->prev, bcptr->fd,
299           bcptr->status, bcptr->user));
300 #else
301   hRemClient(bcptr);
302 #endif
303   remove_client_from_list(bcptr);
304 }
305 /*
306  * exit_downlinks - added by Run 25-9-94
307  *
308  * Removes all clients and downlinks (+clients) of any server
309  * QUITs are generated and sent to local users.
310  *
311  * cptr    : server that must have all dependents removed
312  * sptr    : source who thought that this was a good idea
313  * comment : comment sent as sign off message to local clients
314  */
315 static void exit_downlinks(struct Client *cptr, struct Client *sptr, char *comment)
316 {
317   struct Client *acptr;
318   struct DLink *next;
319   struct DLink *lp;
320   struct Client **acptrp;
321   int i;
322
323   /* Run over all its downlinks */
324   for (lp = cptr->serv->down; lp; lp = next)
325   {
326     next = lp->next;
327     acptr = lp->value.cptr;
328     /* Remove the downlinks and client of the downlink */
329     exit_downlinks(acptr, sptr, comment);
330     /* Remove the downlink itself */
331     exit_one_client(acptr, me.name);
332   }
333   /* Remove all clients of this server */
334   acptrp = cptr->serv->client_list;
335   for (i = 0; i <= cptr->serv->nn_mask; ++acptrp, ++i) {
336     if (*acptrp)
337       exit_one_client(*acptrp, comment);
338   }
339 }
340
341 /*
342  * exit_client, rewritten 25-9-94 by Run
343  *
344  * This function exits a client of *any* type (user, server, etc)
345  * from this server. Also, this generates all necessary prototol
346  * messages that this exit may cause.
347  *
348  * This function implicitly exits all other clients depending on
349  * this connection.
350  *
351  * For convenience, this function returns a suitable value for
352  * m_funtion return value:
353  *
354  *   CPTR_KILLED     if (cptr == bcptr)
355  *   0                if (cptr != bcptr)
356  *
357  * This function can be called in two ways:
358  * 1) From before or in parse(), exitting the 'cptr', in which case it was
359  *    invoked as exit_client(cptr, cptr, &me,...), causing it to always
360  *    return CPTR_KILLED.
361  * 2) Via parse from a m_function call, in which case it was invoked as
362  *    exit_client(cptr, acptr, sptr, ...). Here 'sptr' is known; the client
363  *    that generated the message in a way that we can assume he already
364  *    did remove acptr from memory himself (or in other cases we don't mind
365  *    because he will be delinked.) Or invoked as:
366  *    exit_client(cptr, acptr/sptr, &me, ...) when WE decide this one should
367  *    be removed.
368  * In general: No generated SQUIT or QUIT should be sent to source link
369  * sptr->from. And CPTR_KILLED should be returned if cptr got removed (too).
370  *
371  * --Run
372  */
373 int exit_client(struct Client *cptr,    /* Connection being handled by
374                                    read_message right now */
375     struct Client* victim,              /* Client being killed */
376     struct Client* killer,              /* The client that made the decision
377                                    to remove this one, never NULL */
378     const char* comment)              /* Reason for the exit */
379 {
380   struct Client* acptr = 0;
381   struct DLink *dlp;
382 #ifdef  FNAME_USERLOG
383   time_t on_for;
384 #endif
385   char comment1[HOSTLEN + HOSTLEN + 2];
386   assert(killer);
387   if (MyConnect(victim)) {
388     victim->flags |= FLAGS_CLOSING;
389     update_load();
390 #ifdef FNAME_USERLOG
391     on_for = CurrentTime - victim->firsttime;
392 #if defined(USE_SYSLOG) && defined(SYSLOG_USERS)
393     if (IsUser(victim))
394       ircd_log(L_TRACE, "%s (%3d:%02d:%02d): %s@%s (%s)\n",
395                myctime(victim->firsttime), on_for / 3600, (on_for % 3600) / 60,
396                on_for % 60, victim->user->username, victim->sockhost, victim->name);
397 #else
398     if (IsUser(victim))
399       write_log(FNAME_USERLOG,
400                "%s (%3d:%02d:%02d): %s@%s [%s]\n",
401                myctime(victim->firsttime),
402                on_for / 3600, (on_for % 3600) / 60,
403                on_for % 60,
404                victim->user->username, victim->user->host, victim->username);
405 #endif
406 #endif
407     if (victim != killer->from  /* The source knows already */
408         && IsClient(victim))    /* Not a Ping struct or Log file */
409     {
410       if (IsServer(victim) || IsHandshake(victim))
411         sendcmdto_one(killer, CMD_SQUIT, victim, "%s 0 :%s", me.name, comment);
412       else if (!IsConnecting(victim)) {
413         if (!IsDead(victim))
414           sendrawto_one(victim, MSG_ERROR " :Closing Link: %s by %s (%s)",
415                         victim->name, killer->name, comment);
416       }
417       if ((IsServer(victim) || IsHandshake(victim) || IsConnecting(victim)) &&
418           (killer == &me || (IsServer(killer) &&
419           (strncmp(comment, "Leaf-only link", 14) ||
420           strncmp(comment, "Non-Hub link", 12)))))
421       {
422         /*
423          * Note: check user == user needed to make sure we have the same
424          * client
425          */
426         if (victim->serv->user && *victim->serv->by &&
427             (acptr = findNUser(victim->serv->by))) {
428           if (acptr->user == victim->serv->user) {
429             sendcmdto_one(&me, CMD_NOTICE, acptr,
430                           "%C :Link with %s cancelled: %s", acptr,
431                           victim->name, comment);
432           }
433           else {
434             /*
435              * not right client, set by to empty string
436              */
437             acptr = 0;
438             *victim->serv->by = '\0';
439           }
440         }
441         if (killer == &me)
442           sendto_opmask_butone(acptr, SNO_OLDSNO, "Link with %s cancelled: %s",
443                                victim->name, comment);
444       }
445     }
446     /*
447      *  Close the Client connection first.
448      */
449     close_connection(victim);
450   }
451
452   if (IsServer(victim))
453   {
454     strcpy(comment1, victim->serv->up->name);
455     strcat(comment1, " ");
456     strcat(comment1, victim->name);
457     if (IsUser(killer))
458       sendto_opmask_butone(killer, SNO_OLDSNO, "%s SQUIT by %s [%s]:",
459                            (killer->user->server == victim ||
460                             killer->user->server == victim->serv->up) ?
461                            "Local" : "Remote",
462                            get_client_name(killer, HIDE_IP),
463                            killer->user->server->name);
464     else if (killer != &me && victim->serv->up != killer)
465       sendto_opmask_butone(0, SNO_OLDSNO, "Received SQUIT %s from %s :",
466                            victim->name, IsServer(killer) ? killer->name :
467                            get_client_name(killer, HIDE_IP));
468     sendto_opmask_butone(0, SNO_NETWORK, "Net break: %s (%s)", comment1,
469                          comment);
470   }
471
472   /*
473    * First generate the needed protocol for the other server links
474    * except the source:
475    */
476   for (dlp = me.serv->down; dlp; dlp = dlp->next) {
477     if (dlp->value.cptr != killer->from && dlp->value.cptr != victim) {
478       if (IsServer(victim))
479         sendcmdto_one(killer, CMD_SQUIT, dlp->value.cptr, "%s %Tu :%s",
480                       victim->name, victim->serv->timestamp, comment);
481       else if (IsUser(victim) && 0 == (victim->flags & FLAGS_KILLED))
482         sendcmdto_one(victim, CMD_QUIT, dlp->value.cptr, ":%s", comment);
483     }
484   }
485   /* Then remove the client structures */
486   if (IsServer(victim))
487     exit_downlinks(victim, killer, comment1);
488   exit_one_client(victim, comment);
489
490   /*
491    *  cptr can only have been killed if it was cptr itself that got killed here,
492    *  because cptr can never have been a dependant of victim    --Run
493    */
494   return (cptr == victim) ? CPTR_KILLED : 0;
495 }
496
497 /*
498  * Exit client with formatted message, added 25-9-94 by Run
499  */
500 int vexit_client_msg(struct Client *cptr, struct Client *bcptr, struct Client *sptr,
501     const char *pattern, va_list vl)
502 {
503   char msgbuf[1024];
504   vsprintf_irc(msgbuf, pattern, vl);
505   return exit_client(cptr, bcptr, sptr, msgbuf);
506 }
507
508 int exit_client_msg(struct Client *cptr, struct Client *bcptr,
509     struct Client *sptr, const char *pattern, ...)
510 {
511   va_list vl;
512   char msgbuf[1024];
513
514   va_start(vl, pattern);
515   vsprintf_irc(msgbuf, pattern, vl);
516   va_end(vl);
517
518   return exit_client(cptr, bcptr, sptr, msgbuf);
519 }
520
521 void initstats(void)
522 {
523   memset(&ircst, 0, sizeof(ircst));
524 }
525
526 void tstats(struct Client *cptr, char *name)
527 {
528   struct Client *acptr;
529   int i;
530   struct ServerStatistics *sp;
531   struct ServerStatistics tmp;
532
533   sp = &tmp;
534   memcpy(sp, ServerStats, sizeof(struct ServerStatistics));
535   for (i = 0; i < MAXCONNECTIONS; i++)
536   {
537     if (!(acptr = LocalClientArray[i]))
538       continue;
539     if (IsServer(acptr))
540     {
541       sp->is_sbs += acptr->sendB;
542       sp->is_sbr += acptr->receiveB;
543       sp->is_sks += acptr->sendK;
544       sp->is_skr += acptr->receiveK;
545       sp->is_sti += CurrentTime - acptr->firsttime;
546       sp->is_sv++;
547       if (sp->is_sbs > 1023)
548       {
549         sp->is_sks += (sp->is_sbs >> 10);
550         sp->is_sbs &= 0x3ff;
551       }
552       if (sp->is_sbr > 1023)
553       {
554         sp->is_skr += (sp->is_sbr >> 10);
555         sp->is_sbr &= 0x3ff;
556       }
557     }
558     else if (IsUser(acptr))
559     {
560       sp->is_cbs += acptr->sendB;
561       sp->is_cbr += acptr->receiveB;
562       sp->is_cks += acptr->sendK;
563       sp->is_ckr += acptr->receiveK;
564       sp->is_cti += CurrentTime - acptr->firsttime;
565       sp->is_cl++;
566       if (sp->is_cbs > 1023)
567       {
568         sp->is_cks += (sp->is_cbs >> 10);
569         sp->is_cbs &= 0x3ff;
570       }
571       if (sp->is_cbr > 1023)
572       {
573         sp->is_ckr += (sp->is_cbr >> 10);
574         sp->is_cbr &= 0x3ff;
575       }
576     }
577     else if (IsUnknown(acptr))
578       sp->is_ni++;
579   }
580
581   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":accepts %u refused %u",
582              sp->is_ac, sp->is_ref);
583   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
584              ":unknown commands %u prefixes %u", sp->is_unco, sp->is_unpf);
585   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
586              ":nick collisions %u unknown closes %u", sp->is_kill, sp->is_ni);
587   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
588              ":wrong direction %u empty %u", sp->is_wrdi, sp->is_empt);
589   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
590              ":numerics seen %u mode fakes %u", sp->is_num, sp->is_fake);
591   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG,
592              ":auth successes %u fails %u", sp->is_asuc, sp->is_abad);
593   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":local connections %u",
594              sp->is_loc);
595   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Client server");
596   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":connected %u %u",
597              sp->is_cl, sp->is_sv);
598   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":bytes sent %u.%uK %u.%uK",
599              sp->is_cks, sp->is_cbs, sp->is_sks, sp->is_sbs);
600   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":bytes recv %u.%uK %u.%uK",
601              sp->is_ckr, sp->is_cbr, sp->is_skr, sp->is_sbr);
602   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":time connected %Tu %Tu",
603              sp->is_cti, sp->is_sti);
604 }