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