ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/client.c
Revision: 1559
Committed: Sun Oct 14 01:38:28 2012 UTC (12 years, 10 months ago) by michael
Content type: text/x-csrc
Original Path: ircd-hybrid-8/src/client.c
File size: 36892 byte(s)
Log Message:
- Replaced TimeStamp based services IDs with more flexible account names

File Contents

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

Properties

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