ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/client.c
Revision: 3135
Committed: Mon Mar 10 21:11:25 2014 UTC (11 years, 5 months ago) by michael
Content type: text/x-csrc
File size: 35985 byte(s)
Log Message:
- Server now no longer accepts TS5 links

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2014 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 * USA
20 */
21
22 /*! \file client.c
23 * \brief Controls clients.
24 * \version $Id$
25 */
26
27 #include "stdinc.h"
28 #include "list.h"
29 #include "client.h"
30 #include "channel_mode.h"
31 #include "event.h"
32 #include "fdlist.h"
33 #include "hash.h"
34 #include "irc_string.h"
35 #include "ircd.h"
36 #include "s_gline.h"
37 #include "numeric.h"
38 #include "packet.h"
39 #include "s_auth.h"
40 #include "s_bsd.h"
41 #include "conf.h"
42 #include "log.h"
43 #include "s_misc.h"
44 #include "s_serv.h"
45 #include "send.h"
46 #include "whowas.h"
47 #include "s_user.h"
48 #include "dbuf.h"
49 #include "memory.h"
50 #include "mempool.h"
51 #include "hostmask.h"
52 #include "listener.h"
53 #include "irc_res.h"
54 #include "userhost.h"
55 #include "watch.h"
56 #include "rng_mt.h"
57 #include "parse.h"
58
59 dlink_list listing_client_list = { NULL, NULL, 0 };
60 /* Pointer to beginning of Client list */
61 dlink_list global_client_list = {NULL, NULL, 0};
62 /* unknown/client pointer lists */
63 dlink_list unknown_list = {NULL, NULL, 0};
64 dlink_list local_client_list = {NULL, NULL, 0};
65 dlink_list serv_list = {NULL, NULL, 0};
66 dlink_list global_serv_list = {NULL, NULL, 0};
67 dlink_list oper_list = {NULL, NULL, 0};
68
69 static EVH check_pings;
70
71 static mp_pool_t *client_pool = NULL;
72 static mp_pool_t *lclient_pool = NULL;
73
74 static dlink_list dead_list = { NULL, NULL, 0};
75 static dlink_list abort_list = { NULL, NULL, 0};
76
77 static dlink_node *eac_next; /* next aborted client to exit */
78
79 static void check_pings_list(dlink_list *);
80 static void check_unknowns_list(void);
81
82
83 /* client_init()
84 *
85 * inputs - NONE
86 * output - NONE
87 * side effects - initialize client free memory
88 */
89 void
90 client_init(void)
91 {
92 /* start off the check ping event .. -- adrian
93 * Every 30 seconds is plenty -- db
94 */
95 client_pool = mp_pool_new(sizeof(struct Client), MP_CHUNK_SIZE_CLIENT);
96 lclient_pool = mp_pool_new(sizeof(struct LocalUser), MP_CHUNK_SIZE_LCLIENT);
97 eventAdd("check_pings", check_pings, NULL, 5);
98 }
99
100 /*
101 * make_client - create a new Client struct and set it to initial state.
102 *
103 * from == NULL, create local client (a client connected
104 * to a socket).
105 * WARNING: This leaves the client in a dangerous
106 * state where fd == -1, dead flag is not set and
107 * the client is on the unknown_list; therefore,
108 * the first thing to do after calling make_client(NULL)
109 * is setting fd to something reasonable. -adx
110 *
111 * from, create remote client (behind a socket
112 * associated with the client defined by
113 * 'from'). ('from' is a local client!!).
114 */
115 struct Client *
116 make_client(struct Client *from)
117 {
118 struct Client *client_p = mp_pool_get(client_pool);
119
120 memset(client_p, 0, sizeof(*client_p));
121
122 if (from == NULL)
123 {
124 client_p->from = client_p; /* 'from' of local client is self! */
125 client_p->localClient = mp_pool_get(lclient_pool);
126
127 memset(client_p->localClient, 0, sizeof(*client_p->localClient));
128
129 client_p->localClient->since = CurrentTime;
130 client_p->localClient->lasttime = CurrentTime;
131 client_p->localClient->firsttime = CurrentTime;
132 client_p->localClient->registration = REG_INIT;
133
134 /* as good a place as any... */
135 dlinkAdd(client_p, &client_p->localClient->lclient_node, &unknown_list);
136 }
137 else
138 client_p->from = from; /* 'from' of local client is self! */
139
140 client_p->idhnext = client_p;
141 client_p->hnext = client_p;
142 SetUnknown(client_p);
143 strcpy(client_p->username, "unknown");
144 strcpy(client_p->svid, "0");
145
146 return client_p;
147 }
148
149 /*
150 * free_client
151 *
152 * inputs - pointer to client
153 * output - NONE
154 * side effects - client pointed to has its memory freed
155 */
156 static void
157 free_client(struct Client *client_p)
158 {
159 assert(client_p != NULL);
160 assert(client_p != &me);
161 assert(client_p->hnext == client_p);
162 assert(client_p->idhnext == client_p);
163 assert(client_p->channel.head == NULL);
164 assert(dlink_list_length(&client_p->channel) == 0);
165 assert(dlink_list_length(&client_p->whowas) == 0);
166 assert(!IsServer(client_p) || (IsServer(client_p) && client_p->serv));
167
168 MyFree(client_p->serv);
169 MyFree(client_p->certfp);
170
171 if (MyConnect(client_p))
172 {
173 assert(client_p->localClient->invited.head == NULL);
174 assert(dlink_list_length(&client_p->localClient->invited) == 0);
175 assert(dlink_list_length(&client_p->localClient->watches) == 0);
176 assert(IsClosing(client_p) && IsDead(client_p));
177
178 MyFree(client_p->localClient->response);
179 MyFree(client_p->localClient->auth_oper);
180
181 /*
182 * clean up extra sockets from P-lines which have been discarded.
183 */
184 if (client_p->localClient->listener)
185 {
186 assert(0 < client_p->localClient->listener->ref_count);
187 if (0 == --client_p->localClient->listener->ref_count &&
188 !client_p->localClient->listener->active)
189 free_listener(client_p->localClient->listener);
190 }
191
192 dbuf_clear(&client_p->localClient->buf_recvq);
193 dbuf_clear(&client_p->localClient->buf_sendq);
194
195 mp_pool_release(client_p->localClient);
196 }
197
198 mp_pool_release(client_p);
199 }
200
201 /*
202 * check_pings - go through the local client list and check activity
203 * kill off stuff that should die
204 *
205 * inputs - NOT USED (from event)
206 * output - next time_t when check_pings() should be called again
207 * side effects -
208 *
209 *
210 * A PING can be sent to clients as necessary.
211 *
212 * Client/Server ping outs are handled.
213 */
214
215 /*
216 * Addon from adrian. We used to call this after nextping seconds,
217 * however I've changed it to run once a second. This is only for
218 * PING timeouts, not K/etc-line checks (thanks dianora!). Having it
219 * run once a second makes life a lot easier - when a new client connects
220 * and they need a ping in 4 seconds, if nextping was set to 20 seconds
221 * we end up waiting 20 seconds. This is stupid. :-)
222 * I will optimise (hah!) check_pings() once I've finished working on
223 * tidying up other network IO evilnesses.
224 * -- adrian
225 */
226
227 static void
228 check_pings(void *notused)
229 {
230 check_pings_list(&local_client_list);
231 check_pings_list(&serv_list);
232 check_unknowns_list();
233 }
234
235 /* check_pings_list()
236 *
237 * inputs - pointer to list to check
238 * output - NONE
239 * side effects -
240 */
241 static void
242 check_pings_list(dlink_list *list)
243 {
244 char scratch[IRCD_BUFSIZE];
245 int ping = 0; /* ping time value from client */
246 dlink_node *ptr = NULL, *next_ptr = NULL;
247
248 DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
249 {
250 struct Client *client_p = ptr->data;
251
252 /*
253 ** Note: No need to notify opers here. It's
254 ** already done when "FLAGS_DEADSOCKET" is set.
255 */
256 if (IsDead(client_p))
257 {
258 /* Ignore it, its been exited already */
259 continue;
260 }
261
262 if (!IsRegistered(client_p))
263 ping = CONNECTTIMEOUT;
264 else
265 ping = get_client_ping(&client_p->localClient->confs);
266
267 if (ping < CurrentTime - client_p->localClient->lasttime)
268 {
269 if (!IsPingSent(client_p))
270 {
271 /*
272 * if we havent PINGed the connection and we havent
273 * heard from it in a while, PING it to make sure
274 * it is still alive.
275 */
276 SetPingSent(client_p);
277 client_p->localClient->lasttime = CurrentTime - ping;
278 sendto_one(client_p, "PING :%s", ID_or_name(&me, client_p));
279 }
280 else
281 {
282 if (CurrentTime - client_p->localClient->lasttime >= 2 * ping)
283 {
284 /*
285 * If the client/server hasn't talked to us in 2*ping seconds
286 * and it has a ping time, then close its connection.
287 */
288 if (IsServer(client_p) || IsHandshake(client_p))
289 {
290 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
291 "No response from %s, closing link",
292 get_client_name(client_p, HIDE_IP));
293 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
294 "No response from %s, closing link",
295 get_client_name(client_p, MASK_IP));
296 ilog(LOG_TYPE_IRCD, "No response from %s, closing link",
297 get_client_name(client_p, HIDE_IP));
298 }
299
300 snprintf(scratch, sizeof(scratch), "Ping timeout: %d seconds",
301 (int)(CurrentTime - client_p->localClient->lasttime));
302 exit_client(client_p, &me, scratch);
303 }
304 }
305 }
306 }
307 }
308
309 /* check_unknowns_list()
310 *
311 * inputs - pointer to list of unknown clients
312 * output - NONE
313 * side effects - unknown clients get marked for termination after n seconds
314 */
315 static void
316 check_unknowns_list(void)
317 {
318 dlink_node *ptr, *next_ptr;
319
320 DLINK_FOREACH_SAFE(ptr, next_ptr, unknown_list.head)
321 {
322 struct Client *client_p = ptr->data;
323
324 /*
325 * Check UNKNOWN connections - if they have been in this state
326 * for > 30s, close them.
327 */
328 if (IsAuthFinished(client_p) && (CurrentTime - client_p->localClient->firsttime) > 30)
329 exit_client(client_p, &me, "Registration timed out");
330 }
331 }
332
333 /* check_conf_klines()
334 *
335 * inputs - NONE
336 * output - NONE
337 * side effects - Check all connections for a pending kline against the
338 * client, exit the client if a kline matches.
339 */
340 void
341 check_conf_klines(void)
342 {
343 struct Client *client_p = NULL; /* current local client_p being examined */
344 struct MaskItem *conf = NULL;
345 dlink_node *ptr, *next_ptr;
346
347 DLINK_FOREACH_SAFE(ptr, next_ptr, local_client_list.head)
348 {
349 client_p = ptr->data;
350
351 /* If a client is already being exited
352 */
353 if (IsDead(client_p) || !IsClient(client_p))
354 continue;
355
356 if ((conf = find_dline_conf(&client_p->localClient->ip,
357 client_p->localClient->aftype)) != NULL)
358 {
359 if (conf->type == CONF_EXEMPT)
360 continue;
361
362 conf_try_ban(client_p, conf);
363 continue; /* and go examine next fd/client_p */
364 }
365
366 if (ConfigFileEntry.glines)
367 {
368 if ((conf = find_conf_by_address(client_p->host, &client_p->localClient->ip,
369 CONF_GLINE, client_p->localClient->aftype,
370 client_p->username, NULL, 1)))
371 {
372 conf_try_ban(client_p, conf);
373 /* and go examine next fd/client_p */
374 continue;
375 }
376 }
377
378 if ((conf = find_conf_by_address(client_p->host, &client_p->localClient->ip,
379 CONF_KLINE, client_p->localClient->aftype,
380 client_p->username, NULL, 1)))
381 {
382 conf_try_ban(client_p, conf);
383 continue;
384 }
385
386 if ((conf = find_matching_name_conf(CONF_XLINE, client_p->info,
387 NULL, NULL, 0)))
388 {
389 conf_try_ban(client_p, conf);
390 continue;
391 }
392 }
393
394 /* also check the unknowns list for new dlines */
395 DLINK_FOREACH_SAFE(ptr, next_ptr, unknown_list.head)
396 {
397 client_p = ptr->data;
398
399 if ((conf = find_dline_conf(&client_p->localClient->ip,
400 client_p->localClient->aftype)))
401 {
402 if (conf->type == CONF_EXEMPT)
403 continue;
404
405 exit_client(client_p, &me, "D-lined");
406 }
407 }
408 }
409
410 /*
411 * conf_try_ban
412 *
413 * inputs - pointer to client to ban
414 * - pointer to MaskItem
415 * output - NONE
416 * side effects - given client_p is banned
417 */
418 void
419 conf_try_ban(struct Client *client_p, struct MaskItem *conf)
420 {
421 const char *user_reason = NULL; /* What is sent to user */
422 const char *type_string = NULL;
423 const char dline_string[] = "D-line";
424 const char kline_string[] = "K-line";
425 const char gline_string[] = "G-line";
426 const char xline_string[] = "X-line";
427
428 switch (conf->type)
429 {
430 case CONF_KLINE:
431 if (IsExemptKline(client_p))
432 {
433 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
434 "KLINE over-ruled for %s, client is kline_exempt",
435 get_client_name(client_p, HIDE_IP));
436 return;
437 }
438
439 type_string = kline_string;
440 break;
441 case CONF_DLINE:
442 type_string = dline_string;
443 break;
444 case CONF_GLINE:
445 if (IsExemptKline(client_p) ||
446 IsExemptGline(client_p))
447 {
448 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
449 "GLINE over-ruled for %s, client is %sline_exempt",
450 get_client_name(client_p, HIDE_IP), IsExemptKline(client_p) ? "k" : "g");
451 return;
452 }
453
454 type_string = gline_string;
455 break;
456 case CONF_XLINE:
457 type_string = xline_string;
458 ++conf->count;
459 break;
460 default:
461 assert(0);
462 break;
463 }
464
465 user_reason = conf->reason ? conf->reason : type_string;
466
467 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, "%s active for %s",
468 type_string, get_client_name(client_p, HIDE_IP));
469
470 if (IsClient(client_p))
471 sendto_one_numeric(client_p, &me, ERR_YOUREBANNEDCREEP, user_reason);
472
473 exit_client(client_p, &me, user_reason);
474 }
475
476 /* update_client_exit_stats()
477 *
478 * input - pointer to client
479 * output - NONE
480 * side effects -
481 */
482 static void
483 update_client_exit_stats(struct Client *client_p)
484 {
485 if (IsClient(client_p))
486 {
487 assert(Count.total > 0);
488 --Count.total;
489 if (HasUMode(client_p, UMODE_OPER))
490 --Count.oper;
491 if (HasUMode(client_p, UMODE_INVISIBLE))
492 --Count.invisi;
493 }
494 else if (IsServer(client_p))
495 sendto_realops_flags(UMODE_EXTERNAL, L_ALL, SEND_NOTICE,
496 "Server %s split from %s",
497 client_p->name, client_p->servptr->name);
498
499 if (splitchecking && !splitmode)
500 check_splitmode(NULL);
501 }
502
503 /* find_person()
504 *
505 * inputs - pointer to name
506 * output - return client pointer
507 * side effects - find person by (nick)name
508 */
509 struct Client *
510 find_person(const struct Client *const client_p, const char *name)
511 {
512 struct Client *target_p = NULL;
513
514 if (IsDigit(*name))
515 {
516 if (IsServer(client_p) || HasFlag(client_p, FLAGS_SERVICE))
517 target_p = hash_find_id(name);
518 }
519 else
520 target_p = hash_find_client(name);
521
522 return (target_p && IsClient(target_p)) ? target_p : NULL;
523 }
524
525 /*
526 * find_chasing - find the client structure for a nick name (name)
527 * using history mechanism if necessary. If the client is not found,
528 * an error message (NO SUCH NICK) is generated. If the client was found
529 * through the history, chasing will be 1 and otherwise 0.
530 */
531 struct Client *
532 find_chasing(struct Client *source_p, const char *name, int *const chasing)
533 {
534 struct Client *who = find_person(source_p->from, name);
535
536 if (chasing)
537 *chasing = 0;
538
539 if (who)
540 return who;
541
542 if (IsDigit(*name))
543 return NULL;
544
545 if ((who = whowas_get_history(name,
546 (time_t)ConfigFileEntry.kill_chase_time_limit))
547 == NULL)
548 {
549 sendto_one_numeric(source_p, &me, ERR_NOSUCHNICK, name);
550 return NULL;
551 }
552
553 if (chasing)
554 *chasing = 1;
555
556 return who;
557 }
558
559 /*
560 * get_client_name - Return the name of the client
561 * for various tracking and
562 * admin purposes. The main purpose of this function is to
563 * return the "socket host" name of the client, if that
564 * differs from the advertised name (other than case).
565 * But, this can be used to any client structure.
566 *
567 * NOTE 1:
568 * Watch out the allocation of "nbuf", if either source_p->name
569 * or source_p->sockhost gets changed into pointers instead of
570 * directly allocated within the structure...
571 *
572 * NOTE 2:
573 * Function return either a pointer to the structure (source_p) or
574 * to internal buffer (nbuf). *NEVER* use the returned pointer
575 * to modify what it points!!!
576 */
577 const char *
578 get_client_name(const struct Client *client, enum addr_mask_type type)
579 {
580 static char nbuf[HOSTLEN * 2 + USERLEN + 5];
581
582 assert(client != NULL);
583
584 if (!MyConnect(client))
585 return client->name;
586
587 if (IsServer(client) || IsConnecting(client) || IsHandshake(client))
588 {
589 if (!irccmp(client->name, client->host))
590 return client->name;
591 else if (ConfigServerHide.hide_server_ips)
592 type = MASK_IP;
593 }
594
595 if (ConfigFileEntry.hide_spoof_ips)
596 if (type == SHOW_IP && IsIPSpoof(client))
597 type = MASK_IP;
598
599 /* And finally, let's get the host information, ip or name */
600 switch (type)
601 {
602 case SHOW_IP:
603 snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
604 client->name,
605 client->username, client->sockhost);
606 break;
607 case MASK_IP:
608 if (client->localClient->aftype == AF_INET)
609 snprintf(nbuf, sizeof(nbuf), "%s[%s@255.255.255.255]",
610 client->name, client->username);
611 else
612 snprintf(nbuf, sizeof(nbuf), "%s[%s@ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]",
613 client->name, client->username);
614 break;
615 default:
616 snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
617 client->name,
618 client->username, client->host);
619 }
620
621 return nbuf;
622 }
623
624 void
625 free_exited_clients(void)
626 {
627 dlink_node *ptr = NULL, *next = NULL;
628
629 DLINK_FOREACH_SAFE(ptr, next, dead_list.head)
630 {
631 free_client(ptr->data);
632 dlinkDelete(ptr, &dead_list);
633 free_dlink_node(ptr);
634 }
635 }
636
637 /*
638 * Exit one client, local or remote. Assuming all dependents have
639 * been already removed, and socket closed for local client.
640 *
641 * The only messages generated are QUITs on channels.
642 */
643 static void
644 exit_one_client(struct Client *source_p, const char *quitmsg)
645 {
646 dlink_node *lp = NULL, *next_lp = NULL;
647
648 assert(!IsMe(source_p));
649
650 if (IsClient(source_p))
651 {
652 if (source_p->servptr->serv != NULL)
653 dlinkDelete(&source_p->lnode, &source_p->servptr->serv->client_list);
654
655 /*
656 * If a person is on a channel, send a QUIT notice
657 * to every client (person) on the same channel (so
658 * that the client can show the "**signoff" message).
659 * (Note: The notice is to the local clients *only*)
660 */
661 sendto_common_channels_local(source_p, 0, 0, ":%s!%s@%s QUIT :%s",
662 source_p->name, source_p->username,
663 source_p->host, quitmsg);
664 DLINK_FOREACH_SAFE(lp, next_lp, source_p->channel.head)
665 remove_user_from_channel(lp->data);
666
667 whowas_add_history(source_p, 0);
668 whowas_off_history(source_p);
669
670 watch_check_hash(source_p, RPL_LOGOFF);
671
672 if (MyConnect(source_p))
673 {
674 /* Clean up invitefield */
675 DLINK_FOREACH_SAFE(lp, next_lp, source_p->localClient->invited.head)
676 del_invite(lp->data, source_p);
677
678 del_all_accepts(source_p);
679 }
680 }
681 else if (IsServer(source_p))
682 {
683 dlinkDelete(&source_p->lnode, &source_p->servptr->serv->server_list);
684
685 if ((lp = dlinkFindDelete(&global_serv_list, source_p)) != NULL)
686 free_dlink_node(lp);
687 }
688
689 /* Remove source_p from the client lists */
690 if (HasID(source_p))
691 hash_del_id(source_p);
692 if (source_p->name[0])
693 hash_del_client(source_p);
694
695 if (IsUserHostIp(source_p))
696 delete_user_host(source_p->username, source_p->host, !MyConnect(source_p));
697
698 /* remove from global client list
699 * NOTE: source_p->node.next cannot be NULL if the client is added
700 * to global_client_list (there is always &me at its end)
701 */
702 if (source_p != NULL && source_p->node.next != NULL)
703 dlinkDelete(&source_p->node, &global_client_list);
704
705 update_client_exit_stats(source_p);
706
707 /* Check to see if the client isn't already on the dead list */
708 assert(dlinkFind(&dead_list, source_p) == NULL);
709
710 /* add to dead client dlist */
711 SetDead(source_p);
712 dlinkAdd(source_p, make_dlink_node(), &dead_list);
713 }
714
715 /* Recursively send QUITs and SQUITs for source_p and all its dependent clients
716 * and servers to those servers that need them. A server needs the client
717 * QUITs if it can't figure them out from the SQUIT (ie pre-TS4) or if it
718 * isn't getting the SQUIT because of @#(*&@)# hostmasking. With TS4, once
719 * a link gets a SQUIT, it doesn't need any QUIT/SQUITs for clients depending
720 * on that one -orabidoo
721 *
722 * This is now called on each local server -adx
723 */
724 static void
725 recurse_send_quits(struct Client *original_source_p, struct Client *source_p,
726 struct Client *from, struct Client *to, const char *comment,
727 const char *splitstr)
728 {
729 dlink_node *ptr, *next;
730 struct Client *target_p;
731
732 assert(to != source_p); /* should be already removed from serv_list */
733
734 /* If this server can handle quit storm (QS) removal
735 * of dependents, just send the SQUIT
736 */
737 if (!IsCapable(to, CAP_QS))
738 DLINK_FOREACH_SAFE(ptr, next, source_p->serv->client_list.head)
739 {
740 target_p = ptr->data;
741 sendto_one(to, ":%s QUIT :%s", target_p->name, splitstr);
742 }
743
744 DLINK_FOREACH_SAFE(ptr, next, source_p->serv->server_list.head)
745 recurse_send_quits(original_source_p, ptr->data, from, to,
746 comment, splitstr);
747
748 if ((source_p == original_source_p && to != from) ||
749 !IsCapable(to, CAP_QS))
750 {
751 /* don't use a prefix here - we have to be 100% sure the message
752 * will be accepted without Unknown prefix etc.. */
753 sendto_one(to, "SQUIT %s :%s", ID_or_name(source_p, to), comment);
754 }
755 }
756
757 /*
758 * Remove all clients that depend on source_p; assumes all (S)QUITs have
759 * already been sent. we make sure to exit a server's dependent clients
760 * and servers before the server itself; exit_one_client takes care of
761 * actually removing things off llists. tweaked from +CSr31 -orabidoo
762 */
763 static void
764 recurse_remove_clients(struct Client *source_p, const char *quitmsg)
765 {
766 dlink_node *ptr, *next;
767
768 DLINK_FOREACH_SAFE(ptr, next, source_p->serv->client_list.head)
769 exit_one_client(ptr->data, quitmsg);
770
771 DLINK_FOREACH_SAFE(ptr, next, source_p->serv->server_list.head)
772 {
773 recurse_remove_clients(ptr->data, quitmsg);
774 exit_one_client(ptr->data, quitmsg);
775 }
776 }
777
778 /*
779 ** Remove *everything* that depends on source_p, from all lists, and sending
780 ** all necessary QUITs and SQUITs. source_p itself is still on the lists,
781 ** and its SQUITs have been sent except for the upstream one -orabidoo
782 */
783 static void
784 remove_dependents(struct Client *source_p, struct Client *from,
785 const char *comment, const char *splitstr)
786 {
787 dlink_node *ptr = NULL;
788
789 DLINK_FOREACH(ptr, serv_list.head)
790 recurse_send_quits(source_p, source_p, from, ptr->data,
791 comment, splitstr);
792
793 recurse_remove_clients(source_p, splitstr);
794 }
795
796 /*
797 * exit_client - exit a client of any type. Generally, you can use
798 * this on any struct Client, regardless of its state.
799 *
800 * Note, you shouldn't exit remote _users_ without first doing
801 * AddFlag(x, FLAGS_KILLED) and propagating a kill or similar message.
802 * However, it is perfectly correct to call exit_client to force a _server_
803 * quit (either local or remote one).
804 *
805 * inputs: - a client pointer that is going to be exited
806 * - for servers, the second argument is a pointer to who
807 * is firing the server. This side won't get any generated
808 * messages. NEVER NULL!
809 * output: none
810 * side effects: the client is delinked from all lists, disconnected,
811 * and the rest of IRC network is notified of the exit.
812 * Client memory is scheduled to be freed
813 */
814 void
815 exit_client(struct Client *source_p, struct Client *from, const char *comment)
816 {
817 dlink_node *m = NULL;
818
819 if (MyConnect(source_p))
820 {
821 /* DO NOT REMOVE. exit_client can be called twice after a failed
822 * read/write.
823 */
824 if (IsClosing(source_p))
825 return;
826
827 SetClosing(source_p);
828
829 if (IsIpHash(source_p))
830 remove_one_ip(&source_p->localClient->ip);
831
832 delete_auth(&source_p->localClient->auth);
833
834 /*
835 * This source_p could have status of one of STAT_UNKNOWN, STAT_CONNECTING
836 * STAT_HANDSHAKE or STAT_UNKNOWN
837 * all of which are lumped together into unknown_list
838 *
839 * In all above cases IsRegistered() will not be true.
840 */
841 if (!IsRegistered(source_p))
842 {
843 assert(dlinkFind(&unknown_list, source_p));
844
845 dlinkDelete(&source_p->localClient->lclient_node, &unknown_list);
846 }
847 else if (IsClient(source_p))
848 {
849 time_t on_for = CurrentTime - source_p->localClient->firsttime;
850 assert(Count.local > 0);
851 Count.local--;
852
853 if (HasUMode(source_p, UMODE_OPER))
854 if ((m = dlinkFindDelete(&oper_list, source_p)) != NULL)
855 free_dlink_node(m);
856
857 assert(dlinkFind(&local_client_list, source_p));
858 dlinkDelete(&source_p->localClient->lclient_node, &local_client_list);
859
860 if (source_p->localClient->list_task != NULL)
861 free_list_task(source_p->localClient->list_task, source_p);
862
863 watch_del_watch_list(source_p);
864 sendto_realops_flags(UMODE_CCONN, L_ALL, SEND_NOTICE,
865 "Client exiting: %s (%s@%s) [%s] [%s]",
866 source_p->name, source_p->username, source_p->host, comment,
867 ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
868 "255.255.255.255" : source_p->sockhost);
869 ilog(LOG_TYPE_USER, "%s (%3u:%02u:%02u): %s!%s@%s %llu/%llu",
870 myctime(source_p->localClient->firsttime), (unsigned int)(on_for / 3600),
871 (unsigned int)((on_for % 3600)/60), (unsigned int)(on_for % 60),
872 source_p->name, source_p->username, source_p->host,
873 source_p->localClient->send.bytes>>10,
874 source_p->localClient->recv.bytes>>10);
875 }
876 else if (IsServer(source_p))
877 {
878 assert(Count.myserver > 0);
879 --Count.myserver;
880
881 assert(dlinkFind(&serv_list, source_p));
882 dlinkDelete(&source_p->localClient->lclient_node, &serv_list);
883 unset_chcap_usage_counts(source_p);
884 }
885
886 if (!IsDead(source_p))
887 {
888 if (IsServer(source_p))
889 {
890 /* for them, we are exiting the network */
891 sendto_one(source_p, ":%s SQUIT %s :%s",
892 ID_or_name(from, source_p), me.name, comment);
893 }
894
895 sendto_one(source_p, "ERROR :Closing Link: %s (%s)",
896 source_p->host, comment);
897 }
898
899 /*
900 ** Currently only server connections can have
901 ** depending remote clients here, but it does no
902 ** harm to check for all local clients. In
903 ** future some other clients than servers might
904 ** have remotes too...
905 **
906 ** Close the Client connection first and mark it
907 ** so that no messages are attempted to send to it.
908 ** Remember it makes source_p->from == NULL.
909 */
910 close_connection(source_p);
911 }
912 else if (IsClient(source_p) && HasFlag(source_p->servptr, FLAGS_EOB))
913 sendto_realops_flags(UMODE_FARCONNECT, L_ALL, SEND_NOTICE,
914 "Client exiting at %s: %s (%s@%s) [%s]",
915 source_p->servptr->name, source_p->name,
916 source_p->username, source_p->host, comment);
917
918 if (IsServer(source_p))
919 {
920 char splitstr[HOSTLEN + HOSTLEN + 2];
921
922 /* This shouldn't ever happen */
923 assert(source_p->serv != NULL && source_p->servptr != NULL);
924
925 if (ConfigServerHide.hide_servers)
926 /*
927 * Set netsplit message to "*.net *.split" to still show
928 * that its a split, but hide the servers splitting
929 */
930 strcpy(splitstr, "*.net *.split");
931 else
932 snprintf(splitstr, sizeof(splitstr), "%s %s",
933 source_p->servptr->name, source_p->name);
934
935 remove_dependents(source_p, from->from, comment, splitstr);
936
937 if (source_p->servptr == &me)
938 {
939 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
940 "%s was connected for %d seconds. %llu/%llu sendK/recvK.",
941 source_p->name, (int)(CurrentTime - source_p->localClient->firsttime),
942 source_p->localClient->send.bytes >> 10,
943 source_p->localClient->recv.bytes >> 10);
944 ilog(LOG_TYPE_IRCD, "%s was connected for %d seconds. %llu/%llu sendK/recvK.",
945 source_p->name, (int)(CurrentTime - source_p->localClient->firsttime),
946 source_p->localClient->send.bytes >> 10,
947 source_p->localClient->recv.bytes >> 10);
948 }
949 }
950 else if (IsClient(source_p) && !HasFlag(source_p, FLAGS_KILLED))
951 sendto_server(from->from, NOCAPS, NOCAPS, ":%s QUIT :%s",
952 ID(source_p), comment);
953
954 /* The client *better* be off all of the lists */
955 assert(dlinkFind(&unknown_list, source_p) == NULL);
956 assert(dlinkFind(&local_client_list, source_p) == NULL);
957 assert(dlinkFind(&serv_list, source_p) == NULL);
958 assert(dlinkFind(&oper_list, source_p) == NULL);
959
960 exit_one_client(source_p, comment);
961 }
962
963 /*
964 * dead_link_on_write - report a write error if not already dead,
965 * mark it as dead then exit it
966 */
967 void
968 dead_link_on_write(struct Client *client_p, int ierrno)
969 {
970 dlink_node *ptr;
971
972 if (IsDefunct(client_p))
973 return;
974
975 dbuf_clear(&client_p->localClient->buf_recvq);
976 dbuf_clear(&client_p->localClient->buf_sendq);
977
978 assert(dlinkFind(&abort_list, client_p) == NULL);
979 ptr = make_dlink_node();
980 /* don't let exit_aborted_clients() finish yet */
981 dlinkAddTail(client_p, ptr, &abort_list);
982
983 if (eac_next == NULL)
984 eac_next = ptr;
985
986 SetDead(client_p); /* You are dead my friend */
987 }
988
989 /*
990 * dead_link_on_read - report a read error if not already dead,
991 * mark it as dead then exit it
992 */
993 void
994 dead_link_on_read(struct Client *client_p, int error)
995 {
996 char errmsg[IRCD_BUFSIZE];
997 int current_error;
998
999 if (IsDefunct(client_p))
1000 return;
1001
1002 dbuf_clear(&client_p->localClient->buf_recvq);
1003 dbuf_clear(&client_p->localClient->buf_sendq);
1004
1005 current_error = get_sockerr(client_p->localClient->fd.fd);
1006
1007 if (IsServer(client_p) || IsHandshake(client_p))
1008 {
1009 int connected = CurrentTime - client_p->localClient->firsttime;
1010
1011 if (error == 0)
1012 {
1013 /* Admins get the real IP */
1014 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
1015 "Server %s closed the connection",
1016 get_client_name(client_p, SHOW_IP));
1017
1018 /* Opers get a masked IP */
1019 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
1020 "Server %s closed the connection",
1021 get_client_name(client_p, MASK_IP));
1022
1023 ilog(LOG_TYPE_IRCD, "Server %s closed the connection",
1024 get_client_name(client_p, SHOW_IP));
1025 }
1026 else
1027 {
1028 report_error(L_ADMIN, "Lost connection to %s: %s",
1029 get_client_name(client_p, SHOW_IP), current_error);
1030 report_error(L_OPER, "Lost connection to %s: %s",
1031 get_client_name(client_p, MASK_IP), current_error);
1032 }
1033
1034 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1035 "%s had been connected for %d day%s, %2d:%02d:%02d",
1036 client_p->name, connected/86400,
1037 (connected/86400 == 1) ? "" : "s",
1038 (connected % 86400) / 3600, (connected % 3600) / 60,
1039 connected % 60);
1040 }
1041
1042 if (error == 0)
1043 strlcpy(errmsg, "Remote host closed the connection",
1044 sizeof(errmsg));
1045 else
1046 snprintf(errmsg, sizeof(errmsg), "Read error: %s",
1047 strerror(current_error));
1048
1049 exit_client(client_p, &me, errmsg);
1050 }
1051
1052 void
1053 exit_aborted_clients(void)
1054 {
1055 dlink_node *ptr;
1056 struct Client *target_p;
1057 const char *notice;
1058
1059 DLINK_FOREACH_SAFE(ptr, eac_next, abort_list.head)
1060 {
1061 target_p = ptr->data;
1062 eac_next = ptr->next;
1063
1064 if (target_p == NULL)
1065 {
1066 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1067 "Warning: null client on abort_list!");
1068 dlinkDelete(ptr, &abort_list);
1069 free_dlink_node(ptr);
1070 continue;
1071 }
1072
1073 dlinkDelete(ptr, &abort_list);
1074
1075 if (IsSendQExceeded(target_p))
1076 notice = "Max SendQ exceeded";
1077 else
1078 notice = "Write error: connection closed";
1079
1080 exit_client(target_p, &me, notice);
1081 free_dlink_node(ptr);
1082 }
1083 }
1084
1085 /*
1086 * accept processing, this adds a form of "caller ID" to ircd
1087 *
1088 * If a client puts themselves into "caller ID only" mode,
1089 * only clients that match a client pointer they have put on
1090 * the accept list will be allowed to message them.
1091 *
1092 * Diane Bruce, "Dianora" db@db.net
1093 */
1094
1095 void
1096 del_accept(struct split_nuh_item *accept_p, struct Client *client_p)
1097 {
1098 dlinkDelete(&accept_p->node, &client_p->localClient->acceptlist);
1099
1100 MyFree(accept_p->nickptr);
1101 MyFree(accept_p->userptr);
1102 MyFree(accept_p->hostptr);
1103 MyFree(accept_p);
1104 }
1105
1106 struct split_nuh_item *
1107 find_accept(const char *nick, const char *user,
1108 const char *host, struct Client *client_p,
1109 int (*cmpfunc)(const char *, const char *))
1110 {
1111 dlink_node *ptr = NULL;
1112
1113 DLINK_FOREACH(ptr, client_p->localClient->acceptlist.head)
1114 {
1115 struct split_nuh_item *accept_p = ptr->data;
1116
1117 if (!cmpfunc(accept_p->nickptr, nick) &&
1118 !cmpfunc(accept_p->userptr, user) &&
1119 !cmpfunc(accept_p->hostptr, host))
1120 return accept_p;
1121 }
1122
1123 return NULL;
1124 }
1125
1126 /* accept_message()
1127 *
1128 * inputs - pointer to source client
1129 * - pointer to target client
1130 * output - 1 if accept this message 0 if not
1131 * side effects - See if source is on target's allow list
1132 */
1133 int
1134 accept_message(struct Client *source,
1135 struct Client *target)
1136 {
1137 dlink_node *ptr = NULL;
1138
1139 if (source == target || find_accept(source->name, source->username,
1140 source->host, target, match))
1141 return 1;
1142
1143 if (HasUMode(target, UMODE_SOFTCALLERID))
1144 DLINK_FOREACH(ptr, target->channel.head)
1145 if (IsMember(source, ((struct Membership *)ptr->data)->chptr))
1146 return 1;
1147
1148 return 0;
1149 }
1150
1151 /* del_all_accepts()
1152 *
1153 * inputs - pointer to exiting client
1154 * output - NONE
1155 * side effects - Walk through given clients acceptlist and remove all entries
1156 */
1157 void
1158 del_all_accepts(struct Client *client_p)
1159 {
1160 dlink_node *ptr = NULL, *next_ptr = NULL;
1161
1162 DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->localClient->acceptlist.head)
1163 del_accept(ptr->data, client_p);
1164 }
1165
1166 unsigned int
1167 idle_time_get(const struct Client *source_p, const struct Client *target_p)
1168 {
1169 unsigned int idle = 0;
1170 unsigned int min_idle = 0;
1171 unsigned int max_idle = 0;
1172 const struct ClassItem *class = get_class_ptr(&target_p->localClient->confs);
1173
1174 if (!(class->flags & CLASS_FLAGS_FAKE_IDLE) || target_p == source_p)
1175 return CurrentTime - target_p->localClient->last_privmsg;
1176 if (HasUMode(source_p, UMODE_OPER) &&
1177 !(class->flags & CLASS_FLAGS_HIDE_IDLE_FROM_OPERS))
1178 return CurrentTime - target_p->localClient->last_privmsg;
1179
1180 min_idle = class->min_idle;
1181 max_idle = class->max_idle;
1182
1183 if (min_idle == max_idle)
1184 return min_idle;
1185
1186 if (class->flags & CLASS_FLAGS_RANDOM_IDLE)
1187 idle = genrand_int32();
1188 else
1189 idle = CurrentTime - target_p->localClient->last_privmsg;
1190
1191 if (max_idle == 0)
1192 idle = 0;
1193 else
1194 idle %= max_idle;
1195
1196 if (idle < min_idle)
1197 idle = min_idle + (idle % (max_idle - min_idle));
1198
1199 return idle;
1200 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision