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