]> jfr.im git - irc/rqf/shadowircd.git/blame - src/client.c
rehash bans: still check k/x lines for users exempt from dlines
[irc/rqf/shadowircd.git] / src / client.c
CommitLineData
212380e3 1/*
b37021a4 2 * charybdis: an advanced ircd.
212380e3 3 * client.c: Controls clients.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
b37021a4 8 * Copyright (C) 2007 William Pitcock
212380e3 9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
f80a1823 25 * $Id: client.c 3514 2007-06-06 16:25:21Z nenolod $
212380e3 26 */
27#include "stdinc.h"
28#include "config.h"
29
212380e3 30#include "client.h"
31#include "class.h"
32#include "common.h"
212380e3 33#include "hash.h"
13ae2f4b 34#include "match.h"
212380e3 35#include "ircd.h"
212380e3 36#include "numeric.h"
37#include "packet.h"
38#include "s_auth.h"
212380e3 39#include "s_conf.h"
40#include "s_newconf.h"
d3455e2c 41#include "logger.h"
212380e3 42#include "s_serv.h"
43#include "s_stats.h"
44#include "send.h"
45#include "whowas.h"
46#include "s_user.h"
212380e3 47#include "hash.h"
212380e3 48#include "hostmask.h"
212380e3 49#include "listener.h"
50#include "hook.h"
51#include "msg.h"
52#include "monitor.h"
53#include "blacklist.h"
54015b5f 54#include "reject.h"
994544c2 55#include "scache.h"
b37021a4 56#include "irc_dictionary.h"
8db00894 57#include "sslproc.h"
212380e3 58
59#define DEBUG_EXITED_CLIENTS
60
af81d5a0
WP
61static void check_pings_list(rb_dlink_list * list);
62static void check_unknowns_list(rb_dlink_list * list);
212380e3 63static void free_exited_clients(void *unused);
64static void exit_aborted_clients(void *unused);
65
66static int exit_remote_client(struct Client *, struct Client *, struct Client *,const char *);
67static int exit_remote_server(struct Client *, struct Client *, struct Client *,const char *);
68static int exit_local_client(struct Client *, struct Client *, struct Client *,const char *);
69static int exit_unknown_client(struct Client *, struct Client *, struct Client *,const char *);
70static int exit_local_server(struct Client *, struct Client *, struct Client *,const char *);
71static int qs_server(struct Client *, struct Client *, struct Client *, const char *comment);
72
73static EVH check_pings;
74
6992eef0
VY
75static rb_bh *client_heap = NULL;
76static rb_bh *lclient_heap = NULL;
bb79db15 77static rb_bh *pclient_heap = NULL;
6992eef0 78static rb_bh *user_heap = NULL;
784fdac0 79static rb_bh *away_heap = NULL;
6992eef0 80static char current_uid[IDLEN];
212380e3 81
43de0f45
WP
82struct Dictionary *nd_dict = NULL;
83
212380e3 84enum
85{
86 D_LINED,
c6525f80 87 K_LINED
212380e3 88};
89
af81d5a0 90rb_dlink_list dead_list;
212380e3 91#ifdef DEBUG_EXITED_CLIENTS
af81d5a0 92static rb_dlink_list dead_remote_list;
212380e3 93#endif
94
95struct abort_client
96{
af81d5a0 97 rb_dlink_node node;
212380e3 98 struct Client *client;
99 char notice[REASONLEN];
100};
101
af81d5a0 102static rb_dlink_list abort_list;
212380e3 103
104
105/*
106 * init_client
107 *
108 * inputs - NONE
109 * output - NONE
110 * side effects - initialize client free memory
111 */
112void
113init_client(void)
114{
115 /*
116 * start off the check ping event .. -- adrian
117 * Every 30 seconds is plenty -- db
118 */
ae4091d2 119 client_heap = rb_bh_create(sizeof(struct Client), CLIENT_HEAP_SIZE, "client_heap");
784fdac0
VY
120 lclient_heap = rb_bh_create(sizeof(struct LocalUser), LCLIENT_HEAP_SIZE, "lclient_heap");
121 pclient_heap = rb_bh_create(sizeof(struct PreClient), PCLIENT_HEAP_SIZE, "pclient_heap");
bb79db15 122 user_heap = rb_bh_create(sizeof(struct User), USER_HEAP_SIZE, "user_heap");
784fdac0
VY
123 away_heap = rb_bh_create(AWAYLEN, AWAY_HEAP_SIZE, "away_heap");
124
780087dc
JT
125 rb_event_addish("check_pings", check_pings, NULL, 30);
126 rb_event_addish("free_exited_clients", &free_exited_clients, NULL, 4);
127 rb_event_addish("exit_aborted_clients", exit_aborted_clients, NULL, 1);
6227ed01 128 rb_event_add("flood_recalc", flood_recalc, NULL, 1);
43de0f45
WP
129
130 nd_dict = irc_dictionary_create(irccmp);
212380e3 131}
132
133
134/*
135 * make_client - create a new Client struct and set it to initial state.
136 *
137 * from == NULL, create local client (a client connected
138 * to a socket).
139 *
140 * from, create remote client (behind a socket
141 * associated with the client defined by
142 * 'from'). ('from' is a local client!!).
143 */
144struct Client *
145make_client(struct Client *from)
146{
147 struct Client *client_p = NULL;
148 struct LocalUser *localClient;
149
6e9b4415 150 client_p = rb_bh_alloc(client_heap);
212380e3 151
152 if(from == NULL)
153 {
154 client_p->from = client_p; /* 'from' of local client is self! */
155
bb79db15 156 localClient = rb_bh_alloc(lclient_heap);
212380e3 157 SetMyConnect(client_p);
158 client_p->localClient = localClient;
159
9f6bbe3c 160 client_p->localClient->lasttime = client_p->localClient->firsttime = rb_current_time();
212380e3 161
de057244 162 client_p->localClient->F = NULL;
212380e3 163
bb79db15 164 client_p->preClient = rb_bh_alloc(pclient_heap);;
212380e3 165
166 /* as good a place as any... */
af81d5a0 167 rb_dlinkAdd(client_p, &client_p->localClient->tnode, &unknown_list);
212380e3 168 }
169 else
170 { /* from is not NULL */
171 client_p->localClient = NULL;
172 client_p->preClient = NULL;
173 client_p->from = from; /* 'from' of local client is self! */
174 }
175
176 SetUnknown(client_p);
177 strcpy(client_p->username, "unknown");
178
179 return client_p;
180}
181
182void
183free_pre_client(struct Client *client_p)
184{
185 struct Blacklist *blptr;
186
187 s_assert(NULL != client_p);
188
189 if(client_p->preClient == NULL)
190 return;
191
192 blptr = client_p->preClient->dnsbl_listed;
193 if (blptr != NULL)
194 unref_blacklist(blptr);
195 abort_blacklist_queries(client_p);
6e9b4415 196 rb_bh_free(pclient_heap, client_p->preClient);
212380e3 197 client_p->preClient = NULL;
198}
199
200static void
201free_local_client(struct Client *client_p)
202{
203 s_assert(NULL != client_p);
204 s_assert(&me != client_p);
205
206 if(client_p->localClient == NULL)
207 return;
208
209 /*
210 * clean up extra sockets from P-lines which have been discarded.
211 */
212 if(client_p->localClient->listener)
213 {
214 s_assert(0 < client_p->localClient->listener->ref_count);
215 if(0 == --client_p->localClient->listener->ref_count
216 && !client_p->localClient->listener->active)
217 free_listener(client_p->localClient->listener);
218 client_p->localClient->listener = 0;
219 }
220
8db00894
VY
221 if(client_p->localClient->F != NULL)
222 {
223 del_from_cli_fd_hash(client_p);
780087dc 224 rb_close(client_p->localClient->F);
8db00894 225 }
212380e3 226
227 if(client_p->localClient->passwd)
228 {
229 memset(client_p->localClient->passwd, 0,
230 strlen(client_p->localClient->passwd));
90a3c35b 231 rb_free(client_p->localClient->passwd);
212380e3 232 }
233
90a3c35b
VY
234 rb_free(client_p->localClient->challenge);
235 rb_free(client_p->localClient->fullcaps);
236 rb_free(client_p->localClient->opername);
237 rb_free(client_p->localClient->mangledhost);
0ba0bb4c
JT
238 if (client_p->localClient->privset)
239 privilegeset_unref(client_p->localClient->privset);
212380e3 240
62271ba9
AS
241 if(IsSSL(client_p))
242 ssld_decrement_clicount(client_p->localClient->ssl_ctl);
243
244 if(IsCapable(client_p, CAP_ZIP))
245 ssld_decrement_clicount(client_p->localClient->z_ctl);
8db00894 246
6e9b4415 247 rb_bh_free(lclient_heap, client_p->localClient);
212380e3 248 client_p->localClient = NULL;
249}
250
251void
252free_client(struct Client *client_p)
253{
254 s_assert(NULL != client_p);
255 s_assert(&me != client_p);
256 free_local_client(client_p);
257 free_pre_client(client_p);
6e9b4415 258 rb_bh_free(client_heap, client_p);
212380e3 259}
260
261/*
262 * check_pings - go through the local client list and check activity
263 * kill off stuff that should die
264 *
265 * inputs - NOT USED (from event)
266 * output - next time_t when check_pings() should be called again
267 * side effects -
268 *
269 *
270 * A PING can be sent to clients as necessary.
271 *
272 * Client/Server ping outs are handled.
273 */
274
275/*
276 * Addon from adrian. We used to call this after nextping seconds,
277 * however I've changed it to run once a second. This is only for
278 * PING timeouts, not K/etc-line checks (thanks dianora!). Having it
279 * run once a second makes life a lot easier - when a new client connects
280 * and they need a ping in 4 seconds, if nextping was set to 20 seconds
281 * we end up waiting 20 seconds. This is stupid. :-)
282 * I will optimise (hah!) check_pings() once I've finished working on
283 * tidying up other network IO evilnesses.
284 * -- adrian
285 */
286
287static void
288check_pings(void *notused)
289{
290 check_pings_list(&lclient_list);
291 check_pings_list(&serv_list);
292 check_unknowns_list(&unknown_list);
293}
294
295/*
296 * Check_pings_list()
297 *
298 * inputs - pointer to list to check
299 * output - NONE
300 * side effects -
301 */
302static void
af81d5a0 303check_pings_list(rb_dlink_list * list)
212380e3 304{
305 char scratch[32]; /* way too generous but... */
306 struct Client *client_p; /* current local client_p being examined */
307 int ping = 0; /* ping time value from client */
90a3c35b 308 rb_dlink_node *ptr, *next_ptr;
212380e3 309
90a3c35b 310 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
212380e3 311 {
312 client_p = ptr->data;
313
212380e3 314 if(!MyConnect(client_p) || IsDead(client_p))
315 continue;
316
e883cf07 317 ping = get_client_ping(client_p);
212380e3 318
9f6bbe3c 319 if(ping < (rb_current_time() - client_p->localClient->lasttime))
212380e3 320 {
321 /*
322 * If the client/server hasnt talked to us in 2*ping seconds
323 * and it has a ping time, then close its connection.
324 */
9f6bbe3c 325 if(((rb_current_time() - client_p->localClient->lasttime) >= (2 * ping)
212380e3 326 && (client_p->flags & FLAGS_PINGSENT)))
327 {
e883cf07 328 if(IsServer(client_p))
212380e3 329 {
e883cf07 330 sendto_realops_snomask(SNO_GENERAL, L_ALL,
212380e3 331 "No response from %s, closing link",
715b28fe 332 client_p->name);
212380e3 333 ilog(L_SERVER,
334 "No response from %s, closing link",
335 log_client_name(client_p, HIDE_IP));
336 }
38e6acdd 337 (void) rb_snprintf(scratch, sizeof(scratch),
212380e3 338 "Ping timeout: %d seconds",
9f6bbe3c 339 (int) (rb_current_time() - client_p->localClient->lasttime));
212380e3 340
341 exit_client(client_p, client_p, &me, scratch);
342 continue;
343 }
344 else if((client_p->flags & FLAGS_PINGSENT) == 0)
345 {
346 /*
347 * if we havent PINGed the connection and we havent
348 * heard from it in a while, PING it to make sure
349 * it is still alive.
350 */
351 client_p->flags |= FLAGS_PINGSENT;
352 /* not nice but does the job */
9f6bbe3c 353 client_p->localClient->lasttime = rb_current_time() - ping;
212380e3 354 sendto_one(client_p, "PING :%s", me.name);
355 }
356 }
357 /* ping_timeout: */
358
359 }
360}
361
362/*
363 * check_unknowns_list
364 *
365 * inputs - pointer to list of unknown clients
366 * output - NONE
367 * side effects - unknown clients get marked for termination after n seconds
368 */
369static void
af81d5a0 370check_unknowns_list(rb_dlink_list * list)
212380e3 371{
90a3c35b 372 rb_dlink_node *ptr, *next_ptr;
212380e3 373 struct Client *client_p;
16d59a0d 374 int timeout;
212380e3 375
90a3c35b 376 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
212380e3 377 {
378 client_p = ptr->data;
379
380 if(IsDead(client_p) || IsClosing(client_p))
381 continue;
382
8813d184
JT
383 /* still has DNSbls to validate against */
384 if(client_p->preClient != NULL &&
385 rb_dlink_list_length(&client_p->preClient->dnsbl_queries) > 0)
386 continue;
387
212380e3 388 /*
389 * Check UNKNOWN connections - if they have been in this state
390 * for > 30s, close them.
391 */
392
16d59a0d 393 timeout = IsAnyServer(client_p) ? ConfigFileEntry.connect_timeout : 30;
9f6bbe3c 394 if((rb_current_time() - client_p->localClient->firsttime) > timeout)
16d59a0d
JT
395 {
396 if(IsAnyServer(client_p))
397 {
398 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
399 "No response from %s, closing link",
715b28fe 400 client_p->name);
16d59a0d
JT
401 ilog(L_SERVER,
402 "No response from %s, closing link",
403 log_client_name(client_p, HIDE_IP));
404 }
212380e3 405 exit_client(client_p, client_p, &me, "Connection timed out");
16d59a0d 406 }
212380e3 407 }
408}
409
410static void
411notify_banned_client(struct Client *client_p, struct ConfItem *aconf, int ban)
412{
413 static const char conn_closed[] = "Connection closed";
414 static const char d_lined[] = "D-lined";
415 static const char k_lined[] = "K-lined";
212380e3 416 const char *reason = NULL;
417 const char *exit_reason = conn_closed;
418
419 if(ConfigFileEntry.kline_with_reason && !EmptyString(aconf->passwd))
420 {
421 reason = aconf->passwd;
422 exit_reason = aconf->passwd;
423 }
424 else
425 {
4fd52c8c 426 reason = aconf->status == D_LINED ? d_lined : k_lined;
212380e3 427 }
428
429 if(ban == D_LINED && !IsPerson(client_p))
430 sendto_one(client_p, "NOTICE DLINE :*** You have been D-lined");
431 else
432 sendto_one(client_p, form_str(ERR_YOUREBANNEDCREEP),
433 me.name, client_p->name, reason);
434
435 exit_client(client_p, client_p, &me,
436 EmptyString(ConfigFileEntry.kline_reason) ? exit_reason :
437 ConfigFileEntry.kline_reason);
438}
439
440/*
441 * check_banned_lines
442 * inputs - NONE
443 * output - NONE
d5a432fa 444 * side effects - Check all connections for a pending k/dline against the
212380e3 445 * client, exit the client if found.
446 */
447void
448check_banned_lines(void)
449{
450 struct Client *client_p; /* current local client_p being examined */
451 struct ConfItem *aconf = NULL;
90a3c35b 452 rb_dlink_node *ptr, *next_ptr;
212380e3 453
90a3c35b 454 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, lclient_list.head)
212380e3 455 {
456 client_p = ptr->data;
457
458 if(IsMe(client_p))
459 continue;
460
461 /* if there is a returned struct ConfItem then kill it */
6bba2517 462 if((aconf = find_dline((struct sockaddr *)&client_p->localClient->ip, client_p->localClient->ip.ss_family)) && !(aconf->status & CONF_EXEMPTDLINE))
212380e3 463 {
212380e3 464 sendto_realops_snomask(SNO_GENERAL, L_ALL,
465 "DLINE active for %s",
466 get_client_name(client_p, HIDE_IP));
467
468 notify_banned_client(client_p, aconf, D_LINED);
469 continue; /* and go examine next fd/client_p */
470 }
471
472 if(!IsPerson(client_p))
473 continue;
474
475 if((aconf = find_kline(client_p)) != NULL)
476 {
477 if(IsExemptKline(client_p))
478 {
479 sendto_realops_snomask(SNO_GENERAL, L_ALL,
480 "KLINE over-ruled for %s, client is kline_exempt [%s@%s]",
481 get_client_name(client_p, HIDE_IP),
482 aconf->user, aconf->host);
483 continue;
484 }
485
486 sendto_realops_snomask(SNO_GENERAL, L_ALL,
487 "KLINE active for %s",
488 get_client_name(client_p, HIDE_IP));
489 notify_banned_client(client_p, aconf, K_LINED);
490 continue;
491 }
212380e3 492 else if((aconf = find_xline(client_p->info, 1)) != NULL)
493 {
494 if(IsExemptKline(client_p))
495 {
496 sendto_realops_snomask(SNO_GENERAL, L_ALL,
497 "XLINE over-ruled for %s, client is kline_exempt [%s]",
498 get_client_name(client_p, HIDE_IP),
499 aconf->name);
500 continue;
501 }
502
503 sendto_realops_snomask(SNO_GENERAL, L_ALL, "XLINE active for %s",
504 get_client_name(client_p, HIDE_IP));
505
506 (void) exit_client(client_p, client_p, &me, "Bad user info");
507 continue;
508 }
509 }
510
511 /* also check the unknowns list for new dlines */
90a3c35b 512 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, unknown_list.head)
212380e3 513 {
514 client_p = ptr->data;
515
21c9d815 516 if((aconf = find_dline((struct sockaddr *)&client_p->localClient->ip,client_p->localClient->ip.ss_family)))
212380e3 517 {
518 if(aconf->status & CONF_EXEMPTDLINE)
519 continue;
520
521 notify_banned_client(client_p, aconf, D_LINED);
522 }
523 }
524
525}
526
527/* check_klines_event()
528 *
529 * inputs -
530 * outputs -
531 * side effects - check_klines() is called, kline_queued unset
532 */
533void
534check_klines_event(void *unused)
535{
536 kline_queued = 0;
537 check_klines();
538}
539
540/* check_klines
541 *
542 * inputs -
543 * outputs -
544 * side effects - all clients will be checked for klines
545 */
546void
547check_klines(void)
548{
549 struct Client *client_p;
550 struct ConfItem *aconf;
af81d5a0 551 rb_dlink_node *ptr;
90a3c35b 552 rb_dlink_node *next_ptr;
212380e3 553
90a3c35b 554 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, lclient_list.head)
212380e3 555 {
556 client_p = ptr->data;
557
558 if(IsMe(client_p) || !IsPerson(client_p))
559 continue;
560
561 if((aconf = find_kline(client_p)) != NULL)
562 {
563 if(IsExemptKline(client_p))
564 {
565 sendto_realops_snomask(SNO_GENERAL, L_ALL,
566 "KLINE over-ruled for %s, client is kline_exempt",
567 get_client_name(client_p, HIDE_IP));
568 continue;
569 }
570
571 sendto_realops_snomask(SNO_GENERAL, L_ALL,
572 "KLINE active for %s",
573 get_client_name(client_p, HIDE_IP));
574
575 notify_banned_client(client_p, aconf, K_LINED);
576 continue;
577 }
578 }
579}
580
212380e3 581/* check_dlines()
582 *
583 * inputs -
584 * outputs -
585 * side effects - all clients will be checked for dlines
586 */
587void
588check_dlines(void)
589{
590 struct Client *client_p;
591 struct ConfItem *aconf;
af81d5a0 592 rb_dlink_node *ptr;
90a3c35b 593 rb_dlink_node *next_ptr;
212380e3 594
90a3c35b 595 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, lclient_list.head)
212380e3 596 {
597 client_p = ptr->data;
598
599 if(IsMe(client_p))
600 continue;
601
21c9d815 602 if((aconf = find_dline((struct sockaddr *)&client_p->localClient->ip,client_p->localClient->ip.ss_family)) != NULL)
212380e3 603 {
604 if(aconf->status & CONF_EXEMPTDLINE)
605 continue;
606
607 sendto_realops_snomask(SNO_GENERAL, L_ALL,
608 "DLINE active for %s",
609 get_client_name(client_p, HIDE_IP));
610
611 notify_banned_client(client_p, aconf, D_LINED);
612 continue;
613 }
614 }
615
616 /* dlines need to be checked against unknowns too */
90a3c35b 617 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, unknown_list.head)
212380e3 618 {
619 client_p = ptr->data;
620
21c9d815 621 if((aconf = find_dline((struct sockaddr *)&client_p->localClient->ip,client_p->localClient->ip.ss_family)) != NULL)
212380e3 622 {
623 if(aconf->status & CONF_EXEMPTDLINE)
624 continue;
625
626 notify_banned_client(client_p, aconf, D_LINED);
627 }
628 }
629}
630
631/* check_xlines
632 *
633 * inputs -
634 * outputs -
635 * side effects - all clients will be checked for xlines
636 */
637void
638check_xlines(void)
639{
640 struct Client *client_p;
641 struct ConfItem *aconf;
af81d5a0 642 rb_dlink_node *ptr;
90a3c35b 643 rb_dlink_node *next_ptr;
212380e3 644
90a3c35b 645 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, lclient_list.head)
212380e3 646 {
647 client_p = ptr->data;
648
649 if(IsMe(client_p) || !IsPerson(client_p))
650 continue;
651
652 if((aconf = find_xline(client_p->info, 1)) != NULL)
653 {
654 if(IsExemptKline(client_p))
655 {
656 sendto_realops_snomask(SNO_GENERAL, L_ALL,
657 "XLINE over-ruled for %s, client is kline_exempt",
658 get_client_name(client_p, HIDE_IP));
659 continue;
660 }
661
662 sendto_realops_snomask(SNO_GENERAL, L_ALL, "XLINE active for %s",
663 get_client_name(client_p, HIDE_IP));
664
665 (void) exit_client(client_p, client_p, &me, "Bad user info");
666 continue;
667 }
668 }
669}
670
671/*
672 * update_client_exit_stats
673 *
674 * input - pointer to client
675 * output - NONE
676 * side effects -
677 */
678static void
679update_client_exit_stats(struct Client *client_p)
680{
681 if(IsServer(client_p))
682 {
683 sendto_realops_snomask(SNO_EXTERNAL, L_ALL,
684 "Server %s split from %s",
685 client_p->name, client_p->servptr->name);
686 if(HasSentEob(client_p))
687 eob_count--;
688 }
689 else if(IsClient(client_p))
690 {
691 --Count.total;
692 if(IsOper(client_p))
693 --Count.oper;
694 if(IsInvisible(client_p))
695 --Count.invisi;
696 }
697
698 if(splitchecking && !splitmode)
699 check_splitmode(NULL);
700}
701
702/*
703 * release_client_state
704 *
705 * input - pointer to client to release
706 * output - NONE
707 * side effects -
708 */
709static void
710release_client_state(struct Client *client_p)
711{
712 if(client_p->user != NULL)
713 {
714 free_user(client_p->user, client_p); /* try this here */
715 }
716 if(client_p->serv)
717 {
718 if(client_p->serv->user != NULL)
719 free_user(client_p->serv->user, client_p);
720 if(client_p->serv->fullcaps)
90a3c35b
VY
721 rb_free(client_p->serv->fullcaps);
722 rb_free(client_p->serv);
212380e3 723 }
724}
725
726/*
727 * remove_client_from_list
728 * inputs - point to client to remove
729 * output - NONE
730 * side effects - taken the code from ExitOneClient() for this
731 * and placed it here. - avalon
732 */
733static void
734remove_client_from_list(struct Client *client_p)
735{
736 s_assert(NULL != client_p);
737
738 if(client_p == NULL)
739 return;
740
741 /* A client made with make_client()
742 * is on the unknown_list until removed.
743 * If it =does= happen to exit before its removed from that list
744 * and its =not= on the global_client_list, it will core here.
745 * short circuit that case now -db
746 */
747 if(client_p->node.prev == NULL && client_p->node.next == NULL)
748 return;
749
af81d5a0 750 rb_dlinkDelete(&client_p->node, &global_client_list);
212380e3 751
752 update_client_exit_stats(client_p);
753}
754
755
756/*
757 * find_person - find person by (nick)name.
758 * inputs - pointer to name
759 * output - return client pointer
760 * side effects -
761 */
762struct Client *
763find_person(const char *name)
764{
765 struct Client *c2ptr;
766
767 c2ptr = find_client(name);
768
769 if(c2ptr && IsPerson(c2ptr))
770 return (c2ptr);
771 return (NULL);
772}
773
774struct Client *
775find_named_person(const char *name)
776{
777 struct Client *c2ptr;
778
779 c2ptr = find_named_client(name);
780
781 if(c2ptr && IsPerson(c2ptr))
782 return (c2ptr);
783 return (NULL);
784}
785
786
787/*
788 * find_chasing - find the client structure for a nick name (user)
789 * using history mechanism if necessary. If the client is not found,
790 * an error message (NO SUCH NICK) is generated. If the client was found
791 * through the history, chasing will be 1 and otherwise 0.
792 */
793struct Client *
794find_chasing(struct Client *source_p, const char *user, int *chasing)
795{
796 struct Client *who;
797
798 if(MyClient(source_p))
799 who = find_named_person(user);
800 else
801 who = find_person(user);
802
803 if(chasing)
804 *chasing = 0;
805
806 if(who || IsDigit(*user))
807 return who;
808
809 if(!(who = get_history(user, (long) KILLCHASETIMELIMIT)))
810 {
811 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
812 form_str(ERR_NOSUCHNICK), user);
813 return (NULL);
814 }
815 if(chasing)
816 *chasing = 1;
817 return who;
818}
819
820/*
821 * get_client_name - Return the name of the client
822 * for various tracking and
823 * admin purposes. The main purpose of this function is to
824 * return the "socket host" name of the client, if that
825 * differs from the advertised name (other than case).
826 * But, this can be used to any client structure.
827 *
828 * NOTE 1:
829 * Watch out the allocation of "nbuf", if either source_p->name
830 * or source_p->sockhost gets changed into pointers instead of
831 * directly allocated within the structure...
832 *
833 * NOTE 2:
834 * Function return either a pointer to the structure (source_p) or
835 * to internal buffer (nbuf). *NEVER* use the returned pointer
836 * to modify what it points!!!
837 */
838
839const char *
840get_client_name(struct Client *client, int showip)
841{
842 static char nbuf[HOSTLEN * 2 + USERLEN + 5];
843
844 s_assert(NULL != client);
845 if(client == NULL)
846 return NULL;
847
848 if(MyConnect(client))
849 {
850 if(!irccmp(client->name, client->host))
851 return client->name;
852
853 if(ConfigFileEntry.hide_spoof_ips &&
854 showip == SHOW_IP && IsIPSpoof(client))
855 showip = MASK_IP;
212380e3 856 if(IsAnyServer(client))
857 showip = MASK_IP;
212380e3 858
859 /* And finally, let's get the host information, ip or name */
860 switch (showip)
861 {
862 case SHOW_IP:
38e6acdd 863 rb_snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
212380e3 864 client->name, client->username,
865 client->sockhost);
866 break;
867 case MASK_IP:
38e6acdd 868 rb_snprintf(nbuf, sizeof(nbuf), "%s[%s@255.255.255.255]",
212380e3 869 client->name, client->username);
870 break;
871 default:
38e6acdd 872 rb_snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
212380e3 873 client->name, client->username, client->host);
874 }
875 return nbuf;
876 }
877
878 /* As pointed out by Adel Mezibra
879 * Neph|l|m@EFnet. Was missing a return here.
880 */
881 return client->name;
882}
212380e3 883
884/* log_client_name()
885 *
886 * This version is the same as get_client_name, but doesnt contain the
887 * code that will hide IPs always. This should be used for logfiles.
888 */
889const char *
890log_client_name(struct Client *target_p, int showip)
891{
892 static char nbuf[HOSTLEN * 2 + USERLEN + 5];
893
894 if(target_p == NULL)
895 return NULL;
896
897 if(MyConnect(target_p))
898 {
899 if(irccmp(target_p->name, target_p->host) == 0)
900 return target_p->name;
901
902 switch (showip)
903 {
904 case SHOW_IP:
38e6acdd 905 rb_snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]", target_p->name,
212380e3 906 target_p->username, target_p->sockhost);
907 break;
908
909 case MASK_IP:
38e6acdd 910 rb_snprintf(nbuf, sizeof(nbuf), "%s[%s@255.255.255.255]",
212380e3 911 target_p->name, target_p->username);
912
913 default:
38e6acdd 914 rb_snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]", target_p->name,
212380e3 915 target_p->username, target_p->host);
916 }
917
918 return nbuf;
919 }
920
921 return target_p->name;
922}
923
924/* is_remote_connect - Returns whether a server was /connect'ed by a remote
925 * oper (send notices netwide) */
926int
927is_remote_connect(struct Client *client_p)
928{
929 struct Client *oper;
930
931 if (client_p->serv == NULL)
932 return FALSE;
933 oper = find_named_person(client_p->serv->by);
934 return oper != NULL && IsOper(oper) && !MyConnect(oper);
935}
936
937static void
938free_exited_clients(void *unused)
939{
af81d5a0 940 rb_dlink_node *ptr, *next;
212380e3 941 struct Client *target_p;
942
8e69bb4e 943 RB_DLINK_FOREACH_SAFE(ptr, next, dead_list.head)
212380e3 944 {
945 target_p = ptr->data;
946
947#ifdef DEBUG_EXITED_CLIENTS
948 {
949 struct abort_client *abt;
af81d5a0 950 rb_dlink_node *aptr;
212380e3 951 int found = 0;
952
8e69bb4e 953 RB_DLINK_FOREACH(aptr, abort_list.head)
212380e3 954 {
955 abt = aptr->data;
956 if(abt->client == target_p)
957 {
958 s_assert(0);
959 sendto_realops_snomask(SNO_GENERAL, L_ALL,
960 "On abort_list: %s stat: %u flags: %u/%u handler: %c",
961 target_p->name, (unsigned int) target_p->status,
962 target_p->flags, target_p->flags2, target_p->handler);
963 sendto_realops_snomask(SNO_GENERAL, L_ALL,
f80a1823 964 "Please report this to the charybdis developers!");
212380e3 965 found++;
966 }
967 }
968
969 if(found)
970 {
af81d5a0 971 rb_dlinkDestroy(ptr, &dead_list);
212380e3 972 continue;
973 }
974 }
975#endif
976
977 if(ptr->data == NULL)
978 {
979 sendto_realops_snomask(SNO_GENERAL, L_ALL,
980 "Warning: null client on dead_list!");
af81d5a0 981 rb_dlinkDestroy(ptr, &dead_list);
212380e3 982 continue;
983 }
984 release_client_state(target_p);
985 free_client(target_p);
af81d5a0 986 rb_dlinkDestroy(ptr, &dead_list);
212380e3 987 }
988
989#ifdef DEBUG_EXITED_CLIENTS
8e69bb4e 990 RB_DLINK_FOREACH_SAFE(ptr, next, dead_remote_list.head)
212380e3 991 {
992 target_p = ptr->data;
993
994 if(ptr->data == NULL)
995 {
996 sendto_realops_snomask(SNO_GENERAL, L_ALL,
997 "Warning: null client on dead_list!");
af81d5a0 998 rb_dlinkDestroy(ptr, &dead_list);
212380e3 999 continue;
1000 }
1001 release_client_state(target_p);
1002 free_client(target_p);
af81d5a0 1003 rb_dlinkDestroy(ptr, &dead_remote_list);
212380e3 1004 }
1005#endif
1006
1007}
1008
1009/*
1010** Recursively send QUITs and SQUITs for source_p and all its dependent clients
1011** and servers to those servers that need them. A server needs the client
1012** QUITs if it can't figure them out from the SQUIT (ie pre-TS4) or if it
1013** isn't getting the SQUIT because of @#(*&@)# hostmasking. With TS4, once
1014** a link gets a SQUIT, it doesn't need any QUIT/SQUITs for clients depending
1015** on that one -orabidoo
1016*/
1017static void
1018recurse_send_quits(struct Client *client_p, struct Client *source_p,
1019 struct Client *to, const char *comment1,
1020 const char *comment)
1021{
1022 struct Client *target_p;
af81d5a0 1023 rb_dlink_node *ptr, *ptr_next;
212380e3 1024 /* If this server can handle quit storm (QS) removal
1025 * of dependents, just send the SQUIT
1026 */
1027
1028 if(IsCapable(to, CAP_QS))
1029 {
1030 sendto_one(to, "SQUIT %s :%s",
1031 get_id(source_p, to), comment);
1032 }
1033 else
1034 {
8e69bb4e 1035 RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->users.head)
212380e3 1036 {
1037 target_p = ptr->data;
1038 sendto_one(to, ":%s QUIT :%s", target_p->name, comment1);
1039 }
8e69bb4e 1040 RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->servers.head)
212380e3 1041 {
1042 target_p = ptr->data;
1043 recurse_send_quits(client_p, target_p, to, comment1, comment);
1044 }
1045 sendto_one(to, "SQUIT %s :%s", source_p->name, comment);
1046 }
1047}
1048
1049/*
1050** Remove all clients that depend on source_p; assumes all (S)QUITs have
1051** already been sent. we make sure to exit a server's dependent clients
1052** and servers before the server itself; exit_one_client takes care of
1053** actually removing things off llists. tweaked from +CSr31 -orabidoo
1054*/
1055/*
1056 * added sanity test code.... source_p->serv might be NULL...
1057 */
1058static void
1059recurse_remove_clients(struct Client *source_p, const char *comment)
1060{
1061 struct Client *target_p;
af81d5a0 1062 rb_dlink_node *ptr, *ptr_next;
212380e3 1063
1064 if(IsMe(source_p))
1065 return;
1066
1067 if(source_p->serv == NULL) /* oooops. uh this is actually a major bug */
1068 return;
1069
1070 /* this is very ugly, but it saves cpu :P */
1071 if(ConfigFileEntry.nick_delay > 0)
1072 {
8e69bb4e 1073 RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->users.head)
212380e3 1074 {
1075 target_p = ptr->data;
1076 target_p->flags |= FLAGS_KILLED;
1077 add_nd_entry(target_p->name);
1078
1079 if(!IsDead(target_p) && !IsClosing(target_p))
1080 exit_remote_client(NULL, target_p, &me, comment);
1081 }
1082 }
1083 else
1084 {
8e69bb4e 1085 RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->users.head)
212380e3 1086 {
1087 target_p = ptr->data;
1088 target_p->flags |= FLAGS_KILLED;
1089
1090 if(!IsDead(target_p) && !IsClosing(target_p))
1091 exit_remote_client(NULL, target_p, &me, comment);
1092 }
1093 }
1094
8e69bb4e 1095 RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->servers.head)
212380e3 1096 {
1097 target_p = ptr->data;
1098 recurse_remove_clients(target_p, comment);
1099 qs_server(NULL, target_p, &me, comment);
1100 }
1101}
1102
1103/*
1104** Remove *everything* that depends on source_p, from all lists, and sending
1105** all necessary QUITs and SQUITs. source_p itself is still on the lists,
1106** and its SQUITs have been sent except for the upstream one -orabidoo
1107*/
1108static void
1109remove_dependents(struct Client *client_p,
1110 struct Client *source_p,
1111 struct Client *from, const char *comment, const char *comment1)
1112{
1113 struct Client *to;
af81d5a0 1114 rb_dlink_node *ptr, *next;
212380e3 1115
8e69bb4e 1116 RB_DLINK_FOREACH_SAFE(ptr, next, serv_list.head)
212380e3 1117 {
1118 to = ptr->data;
1119
1120 if(IsMe(to) || to == source_p->from ||
1121 (to == client_p && IsCapable(to, CAP_QS)))
1122 continue;
1123
1124 recurse_send_quits(client_p, source_p, to, comment1, comment);
1125 }
1126
1127 recurse_remove_clients(source_p, comment1);
1128}
1129
1130void
1131exit_aborted_clients(void *unused)
1132{
1133 struct abort_client *abt;
af81d5a0 1134 rb_dlink_node *ptr, *next;
8e69bb4e 1135 RB_DLINK_FOREACH_SAFE(ptr, next, abort_list.head)
212380e3 1136 {
1137 abt = ptr->data;
1138
1139#ifdef DEBUG_EXITED_CLIENTS
1140 {
af81d5a0 1141 if(rb_dlinkFind(abt->client, &dead_list))
212380e3 1142 {
1143 s_assert(0);
1144 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1145 "On dead_list: %s stat: %u flags: %u/%u handler: %c",
1146 abt->client->name, (unsigned int) abt->client->status,
1147 abt->client->flags, abt->client->flags2, abt->client->handler);
1148 sendto_realops_snomask(SNO_GENERAL, L_ALL,
f80a1823 1149 "Please report this to the charybdis developers!");
212380e3 1150 continue;
1151 }
1152 }
1153#endif
1154
1155 s_assert(*((unsigned long*)abt->client) != 0xdeadbeef); /* This is lame but its a debug thing */
af81d5a0 1156 rb_dlinkDelete(ptr, &abort_list);
212380e3 1157
1158 if(IsAnyServer(abt->client))
1159 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1160 "Closing link to %s: %s",
715b28fe 1161 abt->client->name, abt->notice);
212380e3 1162
1163 /* its no longer on abort list - we *must* remove
1164 * FLAGS_CLOSING otherwise exit_client() will not run --fl
1165 */
1166 abt->client->flags &= ~FLAGS_CLOSING;
1167 exit_client(abt->client, abt->client, &me, abt->notice);
90a3c35b 1168 rb_free(abt);
212380e3 1169 }
1170}
1171
1172
1173/*
1174 * dead_link - Adds client to a list of clients that need an exit_client()
1175 *
1176 */
1177void
1178dead_link(struct Client *client_p)
1179{
1180 struct abort_client *abt;
1181
1182 s_assert(!IsMe(client_p));
1183 if(IsDead(client_p) || IsClosing(client_p) || IsMe(client_p))
1184 return;
1185
8e43b0b4 1186 abt = (struct abort_client *) rb_malloc(sizeof(struct abort_client));
212380e3 1187
1188 if(client_p->flags & FLAGS_SENDQEX)
907468c4 1189 rb_strlcpy(abt->notice, "Max SendQ exceeded", sizeof(abt->notice));
212380e3 1190 else
38e6acdd 1191 rb_snprintf(abt->notice, sizeof(abt->notice), "Write error: %s", strerror(errno));
212380e3 1192
1193 abt->client = client_p;
1194 SetIOError(client_p);
1195 SetDead(client_p);
1196 SetClosing(client_p);
af81d5a0 1197 rb_dlinkAdd(abt, &abt->node, &abort_list);
212380e3 1198}
1199
1200
1201/* This does the remove of the user from channels..local or remote */
1202static inline void
1203exit_generic_client(struct Client *client_p, struct Client *source_p, struct Client *from,
1204 const char *comment)
1205{
90a3c35b 1206 rb_dlink_node *ptr, *next_ptr;
212380e3 1207
1208 if(IsOper(source_p))
af81d5a0 1209 rb_dlinkFindDestroy(source_p, &oper_list);
212380e3 1210
1211 sendto_common_channels_local(source_p, ":%s!%s@%s QUIT :%s",
1212 source_p->name,
1213 source_p->username, source_p->host, comment);
1214
1215 remove_user_from_channels(source_p);
1216
1217 /* Should not be in any channels now */
1218 s_assert(source_p->user->channel.head == NULL);
1219
1220 /* Clean up invitefield */
90a3c35b 1221 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, source_p->user->invited.head)
212380e3 1222 {
1223 del_invite(ptr->data, source_p);
1224 }
1225
1226 /* Clean up allow lists */
1227 del_all_accepts(source_p);
1228
1229 add_history(source_p, 0);
1230 off_history(source_p);
1231
1232 monitor_signoff(source_p);
1233
1234 if(has_id(source_p))
1235 del_from_id_hash(source_p->id, source_p);
1236
1237 del_from_hostname_hash(source_p->orighost, source_p);
1238 del_from_client_hash(source_p->name, source_p);
1239 remove_client_from_list(source_p);
1240}
1241
1242/*
1243 * Assumes IsPerson(source_p) && !MyConnect(source_p)
1244 */
1245
1246static int
1247exit_remote_client(struct Client *client_p, struct Client *source_p, struct Client *from,
1248 const char *comment)
1249{
1250 exit_generic_client(client_p, source_p, from, comment);
1251
1252 if(source_p->servptr && source_p->servptr->serv)
1253 {
af81d5a0 1254 rb_dlinkDelete(&source_p->lnode, &source_p->servptr->serv->users);
212380e3 1255 }
1256
1257 if((source_p->flags & FLAGS_KILLED) == 0)
1258 {
1259 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
1260 ":%s QUIT :%s", use_id(source_p), comment);
212380e3 1261 }
1262
1263 SetDead(source_p);
1264#ifdef DEBUG_EXITED_CLIENTS
af81d5a0 1265 rb_dlinkAddAlloc(source_p, &dead_remote_list);
212380e3 1266#else
af81d5a0 1267 rb_dlinkAddAlloc(source_p, &dead_list);
212380e3 1268#endif
1269 return(CLIENT_EXITED);
1270}
1271
1272/*
1273 * This assumes IsUnknown(source_p) == TRUE and MyConnect(source_p) == TRUE
1274 */
1275
1276static int
1277exit_unknown_client(struct Client *client_p, struct Client *source_p, struct Client *from,
1278 const char *comment)
1279{
1280 delete_auth_queries(source_p);
cecb5c1e
JT
1281 if (source_p->localClient->dnsquery)
1282 {
1283 delete_resolver_queries(source_p->localClient->dnsquery);
1284 rb_free(source_p->localClient->dnsquery);
1285 }
af81d5a0 1286 rb_dlinkDelete(&source_p->localClient->tnode, &unknown_list);
212380e3 1287
1288 if(!IsIOError(source_p))
dd12a19c 1289 sendto_one(source_p, "ERROR :Closing Link: %s (%s)",
1290 source_p->user != NULL ? source_p->host : "127.0.0.1",
1291 comment);
212380e3 1292
1293 close_connection(source_p);
1294
1295 if(has_id(source_p))
1296 del_from_id_hash(source_p->id, source_p);
1297
1298 del_from_hostname_hash(source_p->host, source_p);
1299 del_from_client_hash(source_p->name, source_p);
1300 remove_client_from_list(source_p);
212380e3 1301 SetDead(source_p);
af81d5a0 1302 rb_dlinkAddAlloc(source_p, &dead_list);
212380e3 1303
1304 /* Note that we don't need to add unknowns to the dead_list */
1305 return(CLIENT_EXITED);
1306}
1307
1308static int
1309exit_remote_server(struct Client *client_p, struct Client *source_p, struct Client *from,
1310 const char *comment)
1311{
1312 static char comment1[(HOSTLEN*2)+2];
1313 static char newcomment[BUFSIZE];
1314 struct Client *target_p;
1315
1316 if(ConfigServerHide.flatten_links)
1317 strcpy(comment1, "*.net *.split");
1318 else
1319 {
66c8fdd2 1320 strcpy(comment1, source_p->servptr->name);
212380e3 1321 strcat(comment1, " ");
1322 strcat(comment1, source_p->name);
1323 }
1324 if (IsPerson(from))
38e6acdd 1325 rb_snprintf(newcomment, sizeof(newcomment), "by %s: %s",
212380e3 1326 from->name, comment);
1327
1328 if(source_p->serv != NULL)
1329 remove_dependents(client_p, source_p, from, IsPerson(from) ? newcomment : comment, comment1);
1330
1331 if(source_p->servptr && source_p->servptr->serv)
af81d5a0 1332 rb_dlinkDelete(&source_p->lnode, &source_p->servptr->serv->servers);
212380e3 1333 else
1334 s_assert(0);
1335
af81d5a0 1336 rb_dlinkFindDestroy(source_p, &global_serv_list);
212380e3 1337 target_p = source_p->from;
1338
1339 if(target_p != NULL && IsServer(target_p) && target_p != client_p &&
1340 !IsMe(target_p) && (source_p->flags & FLAGS_KILLED) == 0)
1341 {
1342 sendto_one(target_p, ":%s SQUIT %s :%s",
1343 get_id(from, target_p), get_id(source_p, target_p),
1344 comment);
1345 }
1346
1347 if(has_id(source_p))
1348 del_from_id_hash(source_p->id, source_p);
1349
1350 del_from_client_hash(source_p->name, source_p);
1351 remove_client_from_list(source_p);
994544c2 1352 scache_split(source_p->serv->nameinfo);
212380e3 1353
1354 SetDead(source_p);
1355#ifdef DEBUG_EXITED_CLIENTS
af81d5a0 1356 rb_dlinkAddAlloc(source_p, &dead_remote_list);
212380e3 1357#else
af81d5a0 1358 rb_dlinkAddAlloc(source_p, &dead_list);
212380e3 1359#endif
1360 return 0;
1361}
1362
1363static int
1364qs_server(struct Client *client_p, struct Client *source_p, struct Client *from,
1365 const char *comment)
1366{
212380e3 1367 if(source_p->servptr && source_p->servptr->serv)
af81d5a0 1368 rb_dlinkDelete(&source_p->lnode, &source_p->servptr->serv->servers);
212380e3 1369 else
1370 s_assert(0);
1371
af81d5a0 1372 rb_dlinkFindDestroy(source_p, &global_serv_list);
212380e3 1373
1374 if(has_id(source_p))
1375 del_from_id_hash(source_p->id, source_p);
1376
1377 del_from_client_hash(source_p->name, source_p);
1378 remove_client_from_list(source_p);
4f5ec033 1379 scache_split(source_p->serv->nameinfo);
212380e3 1380
1381 SetDead(source_p);
af81d5a0 1382 rb_dlinkAddAlloc(source_p, &dead_list);
212380e3 1383 return 0;
1384}
1385
1386static int
1387exit_local_server(struct Client *client_p, struct Client *source_p, struct Client *from,
1388 const char *comment)
1389{
1390 static char comment1[(HOSTLEN*2)+2];
1391 static char newcomment[BUFSIZE];
1392 unsigned int sendk, recvk;
1393
af81d5a0
WP
1394 rb_dlinkDelete(&source_p->localClient->tnode, &serv_list);
1395 rb_dlinkFindDestroy(source_p, &global_serv_list);
212380e3 1396
1397 unset_chcap_usage_counts(source_p);
1398 sendk = source_p->localClient->sendK;
1399 recvk = source_p->localClient->receiveK;
1400
1401 /* Always show source here, so the server notices show
1402 * which side initiated the split -- jilles
1403 */
38e6acdd 1404 rb_snprintf(newcomment, sizeof(newcomment), "by %s: %s",
212380e3 1405 from == source_p ? me.name : from->name, comment);
1406 if (!IsIOError(source_p))
1407 sendto_one(source_p, "SQUIT %s :%s", use_id(source_p),
1408 newcomment);
1409 if(client_p != NULL && source_p != client_p && !IsIOError(source_p))
1410 {
1411 sendto_one(source_p, "ERROR :Closing Link: 127.0.0.1 %s (%s)",
1412 source_p->name, comment);
1413 }
1414
212380e3 1415 if(source_p->servptr && source_p->servptr->serv)
af81d5a0 1416 rb_dlinkDelete(&source_p->lnode, &source_p->servptr->serv->servers);
212380e3 1417 else
1418 s_assert(0);
1419
1420
1421 close_connection(source_p);
1422
1423 if(ConfigServerHide.flatten_links)
1424 strcpy(comment1, "*.net *.split");
1425 else
1426 {
66c8fdd2 1427 strcpy(comment1, source_p->servptr->name);
212380e3 1428 strcat(comment1, " ");
1429 strcat(comment1, source_p->name);
1430 }
1431
1432 if(source_p->serv != NULL)
1433 remove_dependents(client_p, source_p, from, IsPerson(from) ? newcomment : comment, comment1);
1434
1435 sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s was connected"
1436 " for %ld seconds. %d/%d sendK/recvK.",
784fdac0 1437 source_p->name, (long) rb_current_time() - source_p->localClient->firsttime, sendk, recvk);
212380e3 1438
1439 ilog(L_SERVER, "%s was connected for %ld seconds. %d/%d sendK/recvK.",
784fdac0 1440 source_p->name, (long) rb_current_time() - source_p->localClient->firsttime, sendk, recvk);
212380e3 1441
1442 if(has_id(source_p))
1443 del_from_id_hash(source_p->id, source_p);
1444
1445 del_from_client_hash(source_p->name, source_p);
1446 remove_client_from_list(source_p);
994544c2 1447 scache_split(source_p->serv->nameinfo);
212380e3 1448
1449 SetDead(source_p);
af81d5a0 1450 rb_dlinkAddAlloc(source_p, &dead_list);
212380e3 1451 return 0;
1452}
1453
1454
1455/*
1456 * This assumes IsPerson(source_p) == TRUE && MyConnect(source_p) == TRUE
1457 */
1458
1459static int
1460exit_local_client(struct Client *client_p, struct Client *source_p, struct Client *from,
1461 const char *comment)
1462{
1463 unsigned long on_for;
08a5f1f9 1464 char tbuf[26];
212380e3 1465
1466 exit_generic_client(client_p, source_p, from, comment);
1467 clear_monitor(source_p);
1468
1469 s_assert(IsPerson(source_p));
af81d5a0
WP
1470 rb_dlinkDelete(&source_p->localClient->tnode, &lclient_list);
1471 rb_dlinkDelete(&source_p->lnode, &me.serv->users);
212380e3 1472
1473 if(IsOper(source_p))
af81d5a0 1474 rb_dlinkFindDestroy(source_p, &local_oper_list);
212380e3 1475
1476 sendto_realops_snomask(SNO_CCONN, L_ALL,
1477 "Client exiting: %s (%s@%s) [%s] [%s]",
1478 source_p->name,
1479 source_p->username, source_p->host, comment,
1480 show_ip(NULL, source_p) ? source_p->sockhost : "255.255.255.255");
1481
1482 sendto_realops_snomask(SNO_CCONNEXT, L_ALL,
1483 "CLIEXIT %s %s %s %s 0 %s",
1484 source_p->name, source_p->username, source_p->host,
1485 show_ip(NULL, source_p) ? source_p->sockhost : "255.255.255.255",
1486 comment);
1487
9f6bbe3c 1488 on_for = rb_current_time() - source_p->localClient->firsttime;
212380e3 1489
f8d9b229 1490 ilog(L_USER, "%s (%3lu:%02lu:%02lu): %s!%s@%s %s %d/%d",
08a5f1f9 1491 rb_ctime(rb_current_time(), tbuf, sizeof(tbuf)), on_for / 3600,
212380e3 1492 (on_for % 3600) / 60, on_for % 60,
1493 source_p->name, source_p->username, source_p->host,
f8d9b229 1494 source_p->sockhost,
212380e3 1495 source_p->localClient->sendK, source_p->localClient->receiveK);
1496
1497 sendto_one(source_p, "ERROR :Closing Link: %s (%s)", source_p->host, comment);
1498 close_connection(source_p);
1499
1500 if((source_p->flags & FLAGS_KILLED) == 0)
1501 {
1502 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
1503 ":%s QUIT :%s", use_id(source_p), comment);
212380e3 1504 }
1505
1506 SetDead(source_p);
af81d5a0 1507 rb_dlinkAddAlloc(source_p, &dead_list);
212380e3 1508 return(CLIENT_EXITED);
1509}
1510
1511
1512/*
1513** exit_client - This is old "m_bye". Name changed, because this is not a
1514** protocol function, but a general server utility function.
1515**
1516** This function exits a client of *any* type (user, server, etc)
1517** from this server. Also, this generates all necessary prototol
1518** messages that this exit may cause.
1519**
1520** 1) If the client is a local client, then this implicitly
1521** exits all other clients depending on this connection (e.g.
1522** remote clients having 'from'-field that points to this.
1523**
1524** 2) If the client is a remote client, then only this is exited.
1525**
1526** For convenience, this function returns a suitable value for
1527** m_function return value:
1528**
1529** CLIENT_EXITED if (client_p == source_p)
1530** 0 if (client_p != source_p)
1531*/
1532int
1533exit_client(struct Client *client_p, /* The local client originating the
1534 * exit or NULL, if this exit is
1535 * generated by this server for
1536 * internal reasons.
1537 * This will not get any of the
1538 * generated messages. */
1539 struct Client *source_p, /* Client exiting */
1540 struct Client *from, /* Client firing off this Exit,
1541 * never NULL! */
1542 const char *comment /* Reason for the exit */
1543 )
1544{
1545 hook_data_client_exit hdata;
1546 if(IsClosing(source_p))
1547 return -1;
1548
1549 /* note, this HAS to be here, when we exit a client we attempt to
1550 * send them data, if this generates a write error we must *not* add
1551 * them to the abort list --fl
1552 */
1553 SetClosing(source_p);
1554
1555 hdata.local_link = client_p;
1556 hdata.target = source_p;
1557 hdata.from = from;
1558 hdata.comment = comment;
1559 call_hook(h_client_exit, &hdata);
1560
1561 if(MyConnect(source_p))
1562 {
1563 /* Local clients of various types */
1564 if(IsPerson(source_p))
1565 return exit_local_client(client_p, source_p, from, comment);
1566 else if(IsServer(source_p))
1567 return exit_local_server(client_p, source_p, from, comment);
1568 /* IsUnknown || IsConnecting || IsHandShake */
1569 else if(!IsReject(source_p))
1570 return exit_unknown_client(client_p, source_p, from, comment);
1571 }
1572 else
1573 {
1574 /* Remotes */
1575 if(IsPerson(source_p))
1576 return exit_remote_client(client_p, source_p, from, comment);
1577 else if(IsServer(source_p))
1578 return exit_remote_server(client_p, source_p, from, comment);
1579 }
1580
1581 return -1;
1582}
1583
1584/*
1585 * Count up local client memory
1586 */
1587
1588/* XXX one common Client list now */
1589void
1590count_local_client_memory(size_t * count, size_t * local_client_memory_used)
1591{
ae4091d2
JT
1592 size_t lusage;
1593 rb_bh_usage(lclient_heap, count, NULL, &lusage, NULL);
784fdac0 1594 *local_client_memory_used = lusage + (*count * (sizeof(void *) + sizeof(struct Client)));
212380e3 1595}
1596
1597/*
1598 * Count up remote client memory
1599 */
1600void
1601count_remote_client_memory(size_t * count, size_t * remote_client_memory_used)
1602{
ae4091d2
JT
1603 size_t lcount, rcount;
1604 rb_bh_usage(lclient_heap, &lcount, NULL, NULL, NULL);
1605 rb_bh_usage(client_heap, &rcount, NULL, NULL, NULL);
1606 *count = rcount - lcount;
784fdac0 1607 *remote_client_memory_used = *count * (sizeof(void *) + sizeof(struct Client));
212380e3 1608}
1609
1610
1611/*
1612 * accept processing, this adds a form of "caller ID" to ircd
1613 *
1614 * If a client puts themselves into "caller ID only" mode,
1615 * only clients that match a client pointer they have put on
1616 * the accept list will be allowed to message them.
1617 *
1618 * [ source.on_allow_list ] -> [ target1 ] -> [ target2 ]
1619 *
1620 * [target.allow_list] -> [ source1 ] -> [source2 ]
1621 *
1622 * i.e. a target will have a link list of source pointers it will allow
1623 * each source client then has a back pointer pointing back
1624 * to the client that has it on its accept list.
1625 * This allows for exit_one_client to remove these now bogus entries
1626 * from any client having an accept on them.
1627 */
1628/*
1629 * del_all_accepts
1630 *
1631 * inputs - pointer to exiting client
1632 * output - NONE
1633 * side effects - Walk through given clients allow_list and on_allow_list
1634 * remove all references to this client
1635 */
1636void
1637del_all_accepts(struct Client *client_p)
1638{
af81d5a0 1639 rb_dlink_node *ptr;
90a3c35b 1640 rb_dlink_node *next_ptr;
212380e3 1641 struct Client *target_p;
1642
1643 if(MyClient(client_p) && client_p->localClient->allow_list.head)
1644 {
1645 /* clear this clients accept list, and remove them from
1646 * everyones on_accept_list
1647 */
90a3c35b 1648 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->localClient->allow_list.head)
212380e3 1649 {
1650 target_p = ptr->data;
af81d5a0
WP
1651 rb_dlinkFindDestroy(client_p, &target_p->on_allow_list);
1652 rb_dlinkDestroy(ptr, &client_p->localClient->allow_list);
212380e3 1653 }
1654 }
1655
1656 /* remove this client from everyones accept list */
90a3c35b 1657 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->on_allow_list.head)
212380e3 1658 {
1659 target_p = ptr->data;
af81d5a0
WP
1660 rb_dlinkFindDestroy(client_p, &target_p->localClient->allow_list);
1661 rb_dlinkDestroy(ptr, &client_p->on_allow_list);
212380e3 1662 }
1663}
1664
1665/*
1666 * show_ip() - asks if the true IP shoudl be shown when source is
1667 * askin for info about target
1668 *
1669 * Inputs - source_p who is asking
1670 * - target_p who do we want the info on
1671 * Output - returns 1 if clear IP can be showed, otherwise 0
1672 * Side Effects - none
1673 */
1674
1675int
1676show_ip(struct Client *source_p, struct Client *target_p)
1677{
1678 if(IsAnyServer(target_p))
1679 {
212380e3 1680 return 0;
1681 }
1682 else if(IsIPSpoof(target_p))
1683 {
1684 /* source == NULL indicates message is being sent
1685 * to local opers.
1686 */
1687 if(!ConfigFileEntry.hide_spoof_ips &&
1688 (source_p == NULL || MyOper(source_p)))
1689 return 1;
1690 return 0;
1691 }
1692 else if(IsDynSpoof(target_p) && (source_p != NULL && !IsOper(source_p)))
1693 return 0;
1694 else
1695 return 1;
1696}
1697
1698int
1699show_ip_conf(struct ConfItem *aconf, struct Client *source_p)
1700{
1701 if(IsConfDoSpoofIp(aconf))
1702 {
1703 if(!ConfigFileEntry.hide_spoof_ips && MyOper(source_p))
1704 return 1;
1705
1706 return 0;
1707 }
1708 else
1709 return 1;
1710}
1711
212380e3 1712/*
1713 * make_user
1714 *
1715 * inputs - pointer to client struct
1716 * output - pointer to struct User
1717 * side effects - add's an User information block to a client
1718 * if it was not previously allocated.
1719 */
1720struct User *
1721make_user(struct Client *client_p)
1722{
1723 struct User *user;
1724
1725 user = client_p->user;
1726 if(!user)
1727 {
6e9b4415 1728 user = (struct User *) rb_bh_alloc(user_heap);
212380e3 1729 user->refcnt = 1;
1730 client_p->user = user;
1731 }
1732 return user;
1733}
1734
1735/*
1736 * make_server
1737 *
1738 * inputs - pointer to client struct
1739 * output - pointer to server_t
1740 * side effects - add's an Server information block to a client
1741 * if it was not previously allocated.
1742 */
1743server_t *
1744make_server(struct Client *client_p)
1745{
1746 server_t *serv = client_p->serv;
1747
1748 if(!serv)
1749 {
8e43b0b4 1750 serv = (server_t *) rb_malloc(sizeof(server_t));
212380e3 1751 client_p->serv = serv;
1752 }
1753 return client_p->serv;
1754}
1755
1756/*
1757 * free_user
1758 *
1759 * inputs - pointer to user struct
1760 * - pointer to client struct
1761 * output - none
1762 * side effects - Decrease user reference count by one and release block,
1763 * if count reaches 0
1764 */
1765void
1766free_user(struct User *user, struct Client *client_p)
1767{
784fdac0
VY
1768 free_away(client_p);
1769
212380e3 1770 if(--user->refcnt <= 0)
1771 {
1772 if(user->away)
90a3c35b 1773 rb_free((char *) user->away);
212380e3 1774 /*
1775 * sanity check
1776 */
1777 if(user->refcnt < 0 || user->invited.head || user->channel.head)
1778 {
1779 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1780 "* %#lx user (%s!%s@%s) %#lx %#lx %#lx %lu %d *",
1781 (unsigned long) client_p,
1782 client_p ? client_p->
1783 name : "<noname>",
1784 client_p->username,
1785 client_p->host,
1786 (unsigned long) user,
1787 (unsigned long) user->invited.head,
1788 (unsigned long) user->channel.head,
af81d5a0 1789 rb_dlink_list_length(&user->channel),
212380e3 1790 user->refcnt);
1791 s_assert(!user->refcnt);
1792 s_assert(!user->invited.head);
1793 s_assert(!user->channel.head);
1794 }
1795
6e9b4415 1796 rb_bh_free(user_heap, user);
212380e3 1797 }
1798}
1799
784fdac0
VY
1800void
1801allocate_away(struct Client *client_p)
1802{
1803 if(client_p->user->away == NULL)
1804 client_p->user->away = rb_bh_alloc(away_heap);
1805}
1806
1807
1808void
1809free_away(struct Client *client_p)
1810{
72b8a371 1811 if(client_p->user != NULL && client_p->user->away != NULL) {
784fdac0
VY
1812 rb_bh_free(away_heap, client_p->user->away);
1813 client_p->user->away = NULL;
1814 }
ece36b7b
VY
1815}
1816
212380e3 1817void
1818init_uid(void)
1819{
1820 int i;
1821
1822 for(i = 0; i < 3; i++)
1823 current_uid[i] = me.id[i];
1824
1825 for(i = 3; i < 9; i++)
1826 current_uid[i] = 'A';
1827
1828 current_uid[9] = '\0';
1829}
1830
1831
1832char *
1833generate_uid(void)
1834{
1835 int i;
1836
1837 for(i = 8; i > 3; i--)
1838 {
1839 if(current_uid[i] == 'Z')
1840 {
1841 current_uid[i] = '0';
1842 return current_uid;
1843 }
1844 else if(current_uid[i] != '9')
1845 {
1846 current_uid[i]++;
1847 return current_uid;
1848 }
1849 else
1850 current_uid[i] = 'A';
1851 }
1852
1853 /* if this next if() triggers, we're fucked. */
1854 if(current_uid[3] == 'Z')
1855 {
1856 current_uid[i] = 'A';
1857 s_assert(0);
1858 }
1859 else
1860 current_uid[i]++;
1861
1862 return current_uid;
1863}
1864
1865/*
1866 * close_connection
1867 * Close the physical connection. This function must make
1868 * MyConnect(client_p) == FALSE, and set client_p->from == NULL.
1869 */
1870void
1871close_connection(struct Client *client_p)
1872{
1873 s_assert(client_p != NULL);
1874 if(client_p == NULL)
1875 return;
1876
1877 s_assert(MyConnect(client_p));
1878 if(!MyConnect(client_p))
1879 return;
1880
1881 if(IsServer(client_p))
1882 {
1883 struct server_conf *server_p;
1884
b717a466
JT
1885 ServerStats.is_sv++;
1886 ServerStats.is_sbs += client_p->localClient->sendB;
1887 ServerStats.is_sbr += client_p->localClient->receiveB;
17d00839 1888 ServerStats.is_sti += (unsigned long long)(rb_current_time() - client_p->localClient->firsttime);
212380e3 1889
1890 /*
1891 * If the connection has been up for a long amount of time, schedule
1892 * a 'quick' reconnect, else reset the next-connect cycle.
1893 */
1894 if((server_p = find_server_conf(client_p->name)) != NULL)
1895 {
1896 /*
1897 * Reschedule a faster reconnect, if this was a automatically
1898 * connected configuration entry. (Note that if we have had
1899 * a rehash in between, the status has been changed to
1900 * CONF_ILLEGAL). But only do this if it was a "good" link.
1901 */
1902 server_p->hold = time(NULL);
1903 server_p->hold +=
1904 (server_p->hold - client_p->localClient->lasttime >
1905 HANGONGOODLINK) ? HANGONRETRYDELAY : ConFreq(server_p->class);
1906 }
1907
1908 }
1909 else if(IsClient(client_p))
1910 {
b717a466
JT
1911 ServerStats.is_cl++;
1912 ServerStats.is_cbs += client_p->localClient->sendB;
1913 ServerStats.is_cbr += client_p->localClient->receiveB;
17d00839 1914 ServerStats.is_cti += (unsigned long long)(rb_current_time() - client_p->localClient->firsttime);
212380e3 1915 }
1916 else
83251205 1917 ServerStats.is_ni++;
21c9d815 1918
8db00894 1919 if(client_p->localClient->F != NULL)
21c9d815
VY
1920 {
1921 /* attempt to flush any pending dbufs. Evil, but .. -- adrian */
1922 if(!IsIOError(client_p))
1923 send_queued(client_p);
1924
8db00894 1925 del_from_cli_fd_hash(client_p);
21c9d815
VY
1926 rb_close(client_p->localClient->F);
1927 client_p->localClient->F = NULL;
1928 }
1929
527ec911
JT
1930 rb_linebuf_donebuf(&client_p->localClient->buf_sendq);
1931 rb_linebuf_donebuf(&client_p->localClient->buf_recvq);
212380e3 1932 detach_conf(client_p);
1933
1934 /* XXX shouldnt really be done here. */
1935 detach_server_conf(client_p);
1936
1937 client_p->from = NULL; /* ...this should catch them! >:) --msa */
1938 ClearMyConnect(client_p);
1939 SetIOError(client_p);
1940}
1941
1942
1943
1944void
1945error_exit_client(struct Client *client_p, int error)
1946{
1947 /*
1948 * ...hmm, with non-blocking sockets we might get
1949 * here from quite valid reasons, although.. why
1950 * would select report "data available" when there
1951 * wasn't... so, this must be an error anyway... --msa
1952 * actually, EOF occurs when read() returns 0 and
1953 * in due course, select() returns that fd as ready
1954 * for reading even though it ends up being an EOF. -avalon
1955 */
1956 char errmsg[255];
527ec911 1957 int current_error = rb_get_sockerr(client_p->localClient->F);
212380e3 1958
1959 SetIOError(client_p);
1960
1961 if(IsServer(client_p) || IsHandshake(client_p))
1962 {
212380e3 1963 if(error == 0)
1964 {
1965 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) && !IsServer(client_p) ? L_NETWIDE : L_ALL,
1966 "Server %s closed the connection",
715b28fe 1967 client_p->name);
212380e3 1968
1969 ilog(L_SERVER, "Server %s closed the connection",
1970 log_client_name(client_p, SHOW_IP));
1971 }
1972 else
1973 {
1974 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) && !IsServer(client_p) ? L_NETWIDE : L_ALL,
1975 "Lost connection to %s: %s",
1976 client_p->name, strerror(current_error));
1977 ilog(L_SERVER, "Lost connection to %s: %s",
1978 log_client_name(client_p, SHOW_IP), strerror(current_error));
1979 }
212380e3 1980 }
1981
1982 if(error == 0)
907468c4 1983 rb_strlcpy(errmsg, "Remote host closed the connection", sizeof(errmsg));
212380e3 1984 else
38e6acdd 1985 rb_snprintf(errmsg, sizeof(errmsg), "Read error: %s", strerror(current_error));
212380e3 1986
1987 exit_client(client_p, client_p, &me, errmsg);
1988}