ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/client.c
Revision: 8339
Committed: Sat Mar 3 22:47:06 2018 UTC (7 years, 5 months ago) by michael
Content type: text/x-csrc
File size: 32795 byte(s)
Log Message:
- Restore fd_table. No longer allocate fde_t items from within any other structures like the AuthRequest, or Connection structure
- struct AuthRequest once again is no longer allocated from within the Connection structure

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2916 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 8279 * Copyright (c) 1997-2018 ircd-hybrid development team
5 adx 30 *
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 michael 4565 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 adx 30 * USA
20     */
21    
22 michael 2916 /*! \file client.c
23     * \brief Controls clients.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28 michael 1011 #include "list.h"
29 adx 30 #include "client.h"
30     #include "event.h"
31     #include "hash.h"
32     #include "irc_string.h"
33     #include "ircd.h"
34     #include "numeric.h"
35 michael 3324 #include "auth.h"
36 adx 30 #include "s_bsd.h"
37 michael 1309 #include "conf.h"
38 michael 7304 #include "conf_gecos.h"
39 michael 1309 #include "log.h"
40 michael 3347 #include "misc.h"
41     #include "server.h"
42 adx 30 #include "send.h"
43     #include "whowas.h"
44 michael 3347 #include "user.h"
45 adx 30 #include "memory.h"
46 michael 1654 #include "mempool.h"
47 adx 30 #include "hostmask.h"
48     #include "listener.h"
49     #include "userhost.h"
50 michael 876 #include "watch.h"
51 michael 1783 #include "rng_mt.h"
52 michael 2682 #include "parse.h"
53 michael 4325 #include "ipcache.h"
54 adx 30
55    
56 michael 4213 dlink_list listing_client_list;
57     dlink_list unknown_list;
58     dlink_list local_client_list;
59     dlink_list local_server_list;
60     dlink_list global_client_list;
61     dlink_list global_server_list;
62     dlink_list oper_list;
63    
64 michael 4579 static mp_pool_t *client_pool, *connection_pool;
65 michael 4213 static dlink_list dead_list, abort_list;
66 adx 30 static dlink_node *eac_next; /* next aborted client to exit */
67    
68    
69     /*
70     * make_client - create a new Client struct and set it to initial state.
71     *
72     * from == NULL, create local client (a client connected
73     * to a socket).
74     * WARNING: This leaves the client in a dangerous
75     * state where fd == -1, dead flag is not set and
76     * the client is on the unknown_list; therefore,
77     * the first thing to do after calling make_client(NULL)
78     * is setting fd to something reasonable. -adx
79     *
80     * from, create remote client (behind a socket
81     * associated with the client defined by
82     * 'from'). ('from' is a local client!!).
83     */
84     struct Client *
85 michael 7957 client_make(struct Client *from)
86 adx 30 {
87 michael 4977 struct Client *const client_p = mp_pool_get(client_pool);
88 adx 30
89 michael 7797 if (from)
90     client_p->from = from;
91     else
92 adx 30 {
93 michael 5545 client_p->from = client_p; /* 'from' of local client is self! */
94     client_p->connection = mp_pool_get(connection_pool);
95     client_p->connection->since = CurrentTime;
96     client_p->connection->lasttime = CurrentTime;
97     client_p->connection->firsttime = CurrentTime;
98 michael 4588 client_p->connection->registration = REG_INIT;
99 adx 30
100     /* as good a place as any... */
101 michael 4588 dlinkAdd(client_p, &client_p->connection->lclient_node, &unknown_list);
102 adx 30 }
103    
104 michael 1360 client_p->idhnext = client_p;
105 michael 5545 client_p->hnext = client_p;
106 michael 2678 SetUnknown(client_p);
107 adx 30 strcpy(client_p->username, "unknown");
108 michael 5731 strcpy(client_p->account, "*");
109 adx 30
110     return client_p;
111     }
112    
113     /*
114 michael 7957 * client_free
115 adx 30 *
116     * inputs - pointer to client
117     * output - NONE
118     * side effects - client pointed to has its memory freed
119     */
120     static void
121 michael 7957 client_free(struct Client *client_p)
122 adx 30 {
123 michael 8286 assert(!IsMe(client_p));
124 adx 30 assert(client_p != &me);
125     assert(client_p->hnext == client_p);
126 michael 1360 assert(client_p->idhnext == client_p);
127 michael 8335
128 michael 8337 assert(client_p->node.data == NULL);
129     assert(client_p->node.prev == NULL);
130     assert(client_p->node.next == NULL);
131 michael 8335
132 michael 8337 assert(client_p->lnode.data == NULL);
133     assert(client_p->lnode.prev == NULL);
134     assert(client_p->lnode.next == NULL);
135 michael 8335
136     assert(dlink_list_length(&client_p->whowas_list) == 0);
137 michael 8286 assert(client_p->whowas_list.head == NULL);
138 michael 8335 assert(client_p->whowas_list.tail == NULL);
139    
140 adx 30 assert(dlink_list_length(&client_p->channel) == 0);
141 michael 8335 assert(client_p->channel.head == NULL);
142     assert(client_p->channel.tail == NULL);
143    
144 michael 5590 assert(dlink_list_length(&client_p->svstags) == 0);
145 michael 8335 assert(client_p->svstags.head == NULL);
146     assert(client_p->svstags.tail == NULL);
147 adx 30
148 michael 8335
149 michael 7032 xfree(client_p->serv);
150     xfree(client_p->certfp);
151 adx 30
152     if (MyConnect(client_p))
153     {
154 michael 8335 assert(client_p->connection->lclient_node.data == NULL);
155     assert(client_p->connection->lclient_node.prev == NULL);
156 michael 8288 assert(client_p->connection->lclient_node.next == NULL);
157 michael 8335
158 michael 8286 assert(client_p->connection->list_task == NULL);
159 michael 8339 assert(client_p->connection->auth == NULL);
160 michael 8335
161     assert(dlink_list_length(&client_p->connection->acceptlist) == 0);
162 michael 8286 assert(client_p->connection->acceptlist.head == NULL);
163 michael 8335 assert(client_p->connection->acceptlist.tail == NULL);
164    
165    
166     assert(dlink_list_length(&client_p->connection->watches) == 0);
167 michael 8286 assert(client_p->connection->watches.head == NULL);
168 michael 8335 assert(client_p->connection->watches.tail == NULL);
169    
170 michael 8286 assert(dlink_list_length(&client_p->connection->confs) == 0);
171 michael 8335 assert(client_p->connection->confs.head == NULL);
172     assert(client_p->connection->confs.tail == NULL);
173    
174 michael 4588 assert(dlink_list_length(&client_p->connection->invited) == 0);
175 michael 8335 assert(client_p->connection->invited.head == NULL);
176     assert(client_p->connection->invited.tail == NULL);
177    
178 michael 8339 assert(client_p->connection->fd == NULL);
179 michael 8335
180 michael 6470 assert(HasFlag(client_p, FLAGS_CLOSING) && IsDead(client_p));
181 adx 30
182     /*
183 michael 5589 * Clean up extra sockets from listen {} blocks which have been discarded.
184 adx 30 */
185 michael 4588 if (client_p->connection->listener)
186 adx 30 {
187 michael 4588 listener_release(client_p->connection->listener);
188     client_p->connection->listener = NULL;
189 adx 30 }
190    
191 michael 4588 dbuf_clear(&client_p->connection->buf_recvq);
192     dbuf_clear(&client_p->connection->buf_sendq);
193 adx 30
194 michael 4588 mp_pool_release(client_p->connection);
195 michael 8311 client_p->connection = NULL;
196 adx 30 }
197    
198 michael 1654 mp_pool_release(client_p);
199 adx 30 }
200    
201 michael 5551 void
202 michael 5555 client_attach_svstag(struct Client *client_p, unsigned int numeric,
203 michael 7340 const char *umodes, const char *tag)
204 michael 5555 {
205 michael 5558 const struct user_modes *tab = NULL;
206 michael 5555
207 michael 5558 if (numeric >= ERR_LAST_ERR_MSG || *umodes != '+')
208 michael 5555 return;
209    
210 michael 7076 struct ServicesTag *svstag = xcalloc(sizeof(*svstag));
211 michael 5555 svstag->numeric = numeric;
212     svstag->tag = xstrdup(tag);
213    
214 michael 5558 for (const char *m = umodes + 1; *m; ++m)
215     if ((tab = umode_map[(unsigned char)*m]))
216     svstag->umodes |= tab->flag;
217    
218 michael 5555 if (numeric != RPL_WHOISOPERATOR)
219     dlinkAddTail(svstag, &svstag->node, &client_p->svstags);
220     else
221     dlinkAdd(svstag, &svstag->node, &client_p->svstags);
222     }
223    
224     void
225 michael 5551 client_clear_svstags(struct Client *client_p)
226     {
227 michael 7244 while (client_p->svstags.head)
228 michael 5551 {
229 michael 7244 struct ServicesTag *svstag = client_p->svstags.head->data;
230 michael 5551
231     dlinkDelete(&svstag->node, &client_p->svstags);
232 michael 7032 xfree(svstag->tag);
233     xfree(svstag);
234 michael 5551 }
235     }
236    
237 adx 30 /* check_pings_list()
238     *
239     * inputs - pointer to list to check
240     * output - NONE
241 michael 2345 * side effects -
242 adx 30 */
243     static void
244     check_pings_list(dlink_list *list)
245     {
246 michael 6961 char buf[32] = ""; /* 32 = sizeof("Ping timeout: 999999999 seconds") */
247 michael 7330 unsigned int ping = 0; /* ping time value from client */
248 michael 4800 dlink_node *node = NULL, *node_next = NULL;
249 adx 30
250 michael 4800 DLINK_FOREACH_SAFE(node, node_next, list->head)
251 adx 30 {
252 michael 4800 struct Client *client_p = node->data;
253 adx 30
254     if (IsDead(client_p))
255 michael 4214 continue; /* Ignore it, its been exited already */
256 adx 30
257 michael 6325 if (IsClient(client_p) || IsServer(client_p))
258     ping = get_client_ping(&client_p->connection->confs);
259     else
260 michael 1644 ping = CONNECTTIMEOUT;
261 adx 30
262 michael 4588 if (ping < CurrentTime - client_p->connection->lasttime)
263 adx 30 {
264 michael 6313 if (!HasFlag(client_p, FLAGS_PINGSENT))
265 adx 30 {
266 michael 2182 /*
267 michael 4298 * If we haven't PINGed the connection and we haven't
268 michael 2182 * heard from it in a while, PING it to make sure
269     * it is still alive.
270     */
271 michael 6313 AddFlag(client_p, FLAGS_PINGSENT);
272 michael 4588 client_p->connection->lasttime = CurrentTime - ping;
273 michael 2182 sendto_one(client_p, "PING :%s", ID_or_name(&me, client_p));
274 adx 30 }
275     else
276     {
277 michael 4588 if (CurrentTime - client_p->connection->lasttime >= 2 * ping)
278 adx 30 {
279     /*
280     * If the client/server hasn't talked to us in 2*ping seconds
281     * and it has a ping time, then close its connection.
282     */
283     if (IsServer(client_p) || IsHandshake(client_p))
284 michael 2182 {
285 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ADMIN, SEND_NOTICE,
286 michael 2182 "No response from %s, closing link",
287 michael 7997 client_get_name(client_p, SHOW_IP));
288 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_OPER, SEND_NOTICE,
289 michael 2182 "No response from %s, closing link",
290 michael 7997 client_get_name(client_p, MASK_IP));
291 michael 2182 ilog(LOG_TYPE_IRCD, "No response from %s, closing link",
292 michael 7997 client_get_name(client_p, SHOW_IP));
293 michael 2182 }
294 michael 650
295 michael 6854 snprintf(buf, sizeof(buf), "Ping timeout: %ji seconds",
296     (CurrentTime - client_p->connection->lasttime));
297 michael 4214 exit_client(client_p, buf);
298 adx 30 }
299     }
300     }
301     }
302     }
303    
304     /* check_unknowns_list()
305     *
306     * inputs - pointer to list of unknown clients
307     * output - NONE
308     * side effects - unknown clients get marked for termination after n seconds
309     */
310     static void
311     check_unknowns_list(void)
312     {
313 michael 4800 dlink_node *node = NULL, *node_next = NULL;
314 adx 30
315 michael 4800 DLINK_FOREACH_SAFE(node, node_next, unknown_list.head)
316 adx 30 {
317 michael 4800 struct Client *client_p = node->data;
318 adx 30
319 michael 650 /*
320     * Check UNKNOWN connections - if they have been in this state
321 adx 30 * for > 30s, close them.
322     */
323 michael 6470 if (HasFlag(client_p, FLAGS_FINISHED_AUTH) && (CurrentTime - client_p->connection->firsttime) > 30)
324 michael 3171 exit_client(client_p, "Registration timed out");
325 adx 30 }
326     }
327    
328 michael 4214 /*
329     * check_pings - go through the local client list and check activity
330     * kill off stuff that should die
331     *
332     * inputs - NOT USED (from event)
333     * side effects -
334     *
335     *
336     * A PING can be sent to clients as necessary.
337     *
338     * Client/Server ping outs are handled.
339     */
340    
341     /*
342     * Addon from adrian. We used to call this after nextping seconds,
343     * however I've changed it to run once a second. This is only for
344     * PING timeouts, not K/etc-line checks (thanks dianora!). Having it
345     * run once a second makes life a lot easier - when a new client connects
346     * and they need a ping in 4 seconds, if nextping was set to 20 seconds
347     * we end up waiting 20 seconds. This is stupid. :-)
348     * I will optimise (hah!) check_pings() once I've finished working on
349     * tidying up other network IO evilnesses.
350     * -- adrian
351     */
352    
353     static void
354 michael 4439 check_pings(void *unused)
355 michael 4214 {
356     check_pings_list(&local_client_list);
357     check_pings_list(&local_server_list);
358     check_unknowns_list();
359     }
360    
361 adx 30 /* check_conf_klines()
362     *
363     * inputs - NONE
364     * output - NONE
365     * side effects - Check all connections for a pending kline against the
366     * client, exit the client if a kline matches.
367     */
368 michael 2345 void
369 adx 30 check_conf_klines(void)
370 michael 2345 {
371 michael 4800 dlink_node *node = NULL, *node_next = NULL;
372 michael 7431 const void *ptr;
373 adx 30
374 michael 4800 DLINK_FOREACH_SAFE(node, node_next, local_client_list.head)
375 adx 30 {
376 michael 4800 struct Client *client_p = node->data;
377 adx 30
378 michael 4823 /* If a client is already being exited */
379 michael 4725 if (IsDead(client_p))
380 adx 30 continue;
381    
382 michael 7304 if ((ptr = find_conf_by_address(NULL, &client_p->connection->ip, CONF_DLINE,
383     client_p->connection->aftype, NULL, NULL, 1)))
384 adx 30 {
385 michael 7304 const struct MaskItem *conf = ptr;
386     conf_try_ban(client_p, CLIENT_BAN_DLINE, conf->reason);
387 michael 5732 continue; /* and go examine next Client */
388 adx 30 }
389    
390 michael 7304 if ((ptr = find_conf_by_address(client_p->host, &client_p->connection->ip,
391     CONF_KLINE, client_p->connection->aftype,
392     client_p->username, NULL, 1)))
393 adx 30 {
394 michael 7304 const struct MaskItem *conf = ptr;
395     conf_try_ban(client_p, CLIENT_BAN_KLINE, conf->reason);
396 michael 5732 continue; /* and go examine next Client */
397 adx 30 }
398    
399 michael 7304 if ((ptr = gecos_find(client_p->info, match)))
400 adx 30 {
401 michael 7304 const struct GecosItem *conf = ptr;
402     conf_try_ban(client_p, CLIENT_BAN_XLINE, conf->reason);
403 michael 5732 continue; /* and go examine next Client */
404 adx 30 }
405     }
406    
407 michael 5732 /* Also check the unknowns list for new dlines */
408 michael 4800 DLINK_FOREACH_SAFE(node, node_next, unknown_list.head)
409 adx 30 {
410 michael 4800 struct Client *client_p = node->data;
411 adx 30
412 michael 7304 if ((ptr = find_conf_by_address(NULL, &client_p->connection->ip, CONF_DLINE,
413     client_p->connection->aftype, NULL, NULL, 1)))
414 adx 30 {
415 michael 7304 const struct MaskItem *conf = ptr;
416     conf_try_ban(client_p, CLIENT_BAN_DLINE, conf->reason);
417 michael 5732 continue; /* and go examine next Client */
418 adx 30 }
419     }
420     }
421    
422     /*
423 michael 2813 * conf_try_ban
424 adx 30 *
425     * inputs - pointer to client to ban
426 michael 1632 * - pointer to MaskItem
427 adx 30 * output - NONE
428     * side effects - given client_p is banned
429     */
430 michael 2811 void
431 michael 7304 conf_try_ban(struct Client *client_p, int type, const char *reason)
432 adx 30 {
433 michael 6943 char ban_type = '?';
434 adx 30
435 michael 7304 switch (type)
436 adx 30 {
437 michael 7304 case CLIENT_BAN_KLINE:
438 michael 6313 if (HasFlag(client_p, FLAGS_EXEMPTKLINE))
439 michael 2811 {
440 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE,
441 michael 2811 "KLINE over-ruled for %s, client is kline_exempt",
442 michael 7997 client_get_name(client_p, HIDE_IP));
443 michael 2811 return;
444     }
445    
446 michael 5979 ban_type = 'K';
447 adx 30 break;
448 michael 7304 case CLIENT_BAN_DLINE:
449 michael 4588 if (find_conf_by_address(NULL, &client_p->connection->ip, CONF_EXEMPT,
450     client_p->connection->aftype, NULL, NULL, 1))
451 michael 3929 return;
452 michael 5979 ban_type = 'D';
453 adx 30 break;
454 michael 7304 case CLIENT_BAN_XLINE:
455 michael 6313 if (HasFlag(client_p, FLAGS_EXEMPTXLINE))
456 michael 5985 {
457 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE,
458 michael 5985 "XLINE over-ruled for %s, client is xline_exempt",
459 michael 7997 client_get_name(client_p, HIDE_IP));
460 michael 5985 return;
461     }
462 michael 6313
463 michael 5979 ban_type = 'X';
464 adx 30 break;
465     default:
466     assert(0);
467     break;
468     }
469    
470 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE, "%c-line active for %s",
471 michael 7997 ban_type, client_get_name(client_p, HIDE_IP));
472 adx 30
473     if (IsClient(client_p))
474 michael 7304 sendto_one_numeric(client_p, &me, ERR_YOUREBANNEDCREEP, reason);
475 adx 30
476 michael 7304 exit_client(client_p, reason);
477 adx 30 }
478    
479     /* find_person()
480     *
481     * inputs - pointer to name
482     * output - return client pointer
483     * side effects - find person by (nick)name
484     */
485     struct Client *
486 michael 7345 find_person(const struct Client *source_p, const char *name)
487 adx 30 {
488 michael 2475 struct Client *target_p = NULL;
489 adx 30
490     if (IsDigit(*name))
491     {
492 michael 3207 if (IsServer(source_p->from))
493 michael 2586 target_p = hash_find_id(name);
494 adx 30 }
495     else
496 michael 2475 target_p = hash_find_client(name);
497 adx 30
498 michael 2475 return (target_p && IsClient(target_p)) ? target_p : NULL;
499 adx 30 }
500    
501     /*
502 michael 2475 * find_chasing - find the client structure for a nick name (name)
503 michael 2345 * using history mechanism if necessary. If the client is not found,
504 michael 3192 * an error message (NO SUCH NICK) is generated.
505 adx 30 */
506     struct Client *
507 michael 3192 find_chasing(struct Client *source_p, const char *name)
508 adx 30 {
509 michael 4884 struct Client *target_p = find_person(source_p, name);
510 adx 30
511 michael 4884 if (target_p)
512     return target_p;
513 adx 30
514 michael 2475 if (IsDigit(*name))
515 michael 1169 return NULL;
516 adx 30
517 michael 7464 target_p = whowas_get_history(name, ConfigGeneral.kill_chase_time_limit);
518 michael 4884 if (!target_p)
519 michael 3109 sendto_one_numeric(source_p, &me, ERR_NOSUCHNICK, name);
520 adx 30
521 michael 4884 return target_p;
522 adx 30 }
523    
524     /*
525 michael 7997 * client_get_name - Return the name of the client
526 adx 30 * for various tracking and
527     * admin purposes. The main purpose of this function is to
528     * return the "socket host" name of the client, if that
529     * differs from the advertised name (other than case).
530     * But, this can be used to any client structure.
531     *
532     * NOTE 1:
533 michael 4214 * Watch out the allocation of "buf", if either source_p->name
534 adx 30 * or source_p->sockhost gets changed into pointers instead of
535     * directly allocated within the structure...
536     *
537     * NOTE 2:
538     * Function return either a pointer to the structure (source_p) or
539 michael 4214 * to internal buffer (buf). *NEVER* use the returned pointer
540 adx 30 * to modify what it points!!!
541     */
542     const char *
543 michael 7997 client_get_name(const struct Client *client_p, enum addr_mask_type type)
544 adx 30 {
545 michael 6963 static char buf[HOSTLEN * 2 + USERLEN + 4]; /* +4 for [,@,],\0 */
546 adx 30
547 michael 3235 if (!MyConnect(client_p))
548     return client_p->name;
549 adx 30
550 michael 3235 if (IsServer(client_p) || IsConnecting(client_p) || IsHandshake(client_p))
551 michael 1340 {
552 michael 3235 if (!irccmp(client_p->name, client_p->host))
553     return client_p->name;
554 michael 1340 else if (ConfigServerHide.hide_server_ips)
555 michael 1328 type = MASK_IP;
556 michael 1340 }
557 adx 30
558     /* And finally, let's get the host information, ip or name */
559 michael 1328 switch (type)
560 adx 30 {
561     case SHOW_IP:
562 michael 4214 snprintf(buf, sizeof(buf), "%s[%s@%s]",
563 michael 3235 client_p->name,
564     client_p->username, client_p->sockhost);
565 michael 1339 break;
566 adx 30 case MASK_IP:
567 michael 4588 if (client_p->connection->aftype == AF_INET)
568 michael 4214 snprintf(buf, sizeof(buf), "%s[%s@255.255.255.255]",
569 michael 3235 client_p->name, client_p->username);
570 michael 1339 else
571 michael 4214 snprintf(buf, sizeof(buf), "%s[%s@ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]",
572 michael 3235 client_p->name, client_p->username);
573 adx 30 break;
574 michael 6310 default: /* HIDE_IP */
575 michael 4214 snprintf(buf, sizeof(buf), "%s[%s@%s]",
576 michael 3235 client_p->name,
577     client_p->username, client_p->host);
578 adx 30 }
579    
580 michael 4214 return buf;
581 adx 30 }
582    
583     void
584     free_exited_clients(void)
585     {
586 michael 8059 dlink_node *node, *node_next;
587 michael 2345
588 michael 4800 DLINK_FOREACH_SAFE(node, node_next, dead_list.head)
589 adx 30 {
590 michael 7957 client_free(node->data);
591 michael 4800 dlinkDelete(node, &dead_list);
592     free_dlink_node(node);
593 adx 30 }
594     }
595    
596     /*
597     * Exit one client, local or remote. Assuming all dependents have
598     * been already removed, and socket closed for local client.
599     *
600     * The only messages generated are QUITs on channels.
601     */
602     static void
603 michael 4214 exit_one_client(struct Client *source_p, const char *comment)
604 adx 30 {
605 michael 8059 dlink_node *node, *node_next;
606 adx 30
607     assert(!IsMe(source_p));
608 michael 4214 assert(source_p != &me);
609 adx 30
610 michael 1118 if (IsClient(source_p))
611 adx 30 {
612 michael 7961 if (HasUMode(source_p, UMODE_OPER))
613     --Count.oper;
614     if (HasUMode(source_p, UMODE_INVISIBLE))
615     --Count.invisi;
616    
617 michael 3202 dlinkDelete(&source_p->lnode, &source_p->servptr->serv->client_list);
618 michael 4189 dlinkDelete(&source_p->node, &global_client_list);
619 adx 30
620 michael 1118 /*
621     * If a person is on a channel, send a QUIT notice
622     * to every client (person) on the same channel (so
623     * that the client can show the "**signoff" message).
624     * (Note: The notice is to the local clients *only*)
625     */
626 michael 6774 sendto_common_channels_local(source_p, 0, 0, 0, ":%s!%s@%s QUIT :%s",
627 adx 30 source_p->name, source_p->username,
628 michael 4214 source_p->host, comment);
629 michael 4884
630 michael 4800 DLINK_FOREACH_SAFE(node, node_next, source_p->channel.head)
631     remove_user_from_channel(node->data);
632 adx 30
633 michael 6942 client_clear_svstags(source_p);
634    
635 michael 2300 whowas_add_history(source_p, 0);
636     whowas_off_history(source_p);
637 adx 30
638 michael 876 watch_check_hash(source_p, RPL_LOGOFF);
639    
640 michael 889 if (MyConnect(source_p))
641 adx 30 {
642 michael 7762 clear_invite_list(&source_p->connection->invited);
643 michael 887 del_all_accepts(source_p);
644 michael 317 }
645 adx 30 }
646 michael 1118 else if (IsServer(source_p))
647     {
648 michael 7961 sendto_realops_flags(UMODE_EXTERNAL, L_ALL, SEND_NOTICE,
649     "Server %s split from %s",
650     source_p->name, source_p->servptr->name);
651    
652 michael 1118 dlinkDelete(&source_p->lnode, &source_p->servptr->serv->server_list);
653 michael 7963 dlinkDelete(&source_p->node, &global_server_list);
654 michael 1118 }
655    
656 adx 30 /* Remove source_p from the client lists */
657 michael 3187 if (source_p->id[0])
658 adx 30 hash_del_id(source_p);
659 michael 4884
660 adx 30 if (source_p->name[0])
661     hash_del_client(source_p);
662    
663 michael 6313 if (HasFlag(source_p, FLAGS_USERHOST))
664 michael 7624 userhost_del(source_p->sockhost, !MyConnect(source_p));
665 adx 30
666     /* Check to see if the client isn't already on the dead list */
667     assert(dlinkFind(&dead_list, source_p) == NULL);
668    
669     /* add to dead client dlist */
670     SetDead(source_p);
671     dlinkAdd(source_p, make_dlink_node(), &dead_list);
672     }
673    
674 michael 2345 /*
675 adx 30 * Remove all clients that depend on source_p; assumes all (S)QUITs have
676 michael 2345 * already been sent. we make sure to exit a server's dependent clients
677     * and servers before the server itself; exit_one_client takes care of
678 adx 30 * actually removing things off llists. tweaked from +CSr31 -orabidoo
679     */
680     static void
681 michael 4214 recurse_remove_clients(struct Client *source_p, const char *comment)
682 adx 30 {
683 michael 8059 dlink_node *node, *node_next;
684 adx 30
685 michael 4800 DLINK_FOREACH_SAFE(node, node_next, source_p->serv->client_list.head)
686     exit_one_client(node->data, comment);
687 adx 30
688 michael 4800 DLINK_FOREACH_SAFE(node, node_next, source_p->serv->server_list.head)
689 adx 30 {
690 michael 4800 recurse_remove_clients(node->data, comment);
691     exit_one_client(node->data, comment);
692 adx 30 }
693     }
694    
695     /*
696     * exit_client - exit a client of any type. Generally, you can use
697     * this on any struct Client, regardless of its state.
698     *
699     * Note, you shouldn't exit remote _users_ without first doing
700 michael 1219 * AddFlag(x, FLAGS_KILLED) and propagating a kill or similar message.
701 michael 3171 *
702 michael 1219 * However, it is perfectly correct to call exit_client to force a _server_
703 adx 30 * quit (either local or remote one).
704     *
705 michael 3171 *
706 adx 30 * inputs: - a client pointer that is going to be exited
707     * output: none
708     * side effects: the client is delinked from all lists, disconnected,
709     * and the rest of IRC network is notified of the exit.
710     * Client memory is scheduled to be freed
711     */
712     void
713 michael 3171 exit_client(struct Client *source_p, const char *comment)
714 adx 30 {
715 michael 4214 assert(!IsMe(source_p));
716     assert(source_p != &me);
717    
718 adx 30 if (MyConnect(source_p))
719     {
720 michael 8059 /*
721     * DO NOT REMOVE. exit_client can be called twice after a failed read/write.
722 adx 30 */
723 michael 6470 if (HasFlag(source_p, FLAGS_CLOSING))
724 adx 30 return;
725    
726 michael 6470 AddFlag(source_p, FLAGS_CLOSING);
727 adx 30
728 michael 4400 if (HasFlag(source_p, FLAGS_IPHASH))
729     {
730     DelFlag(source_p, FLAGS_IPHASH);
731 michael 4588 ipcache_remove_address(&source_p->connection->ip);
732 michael 4400 }
733 adx 30
734 michael 8339 if (source_p->connection->auth)
735     {
736     auth_delete(source_p->connection->auth);
737     source_p->connection->auth = NULL;
738     }
739 adx 30
740 michael 6325 if (IsClient(source_p))
741 adx 30 {
742 michael 8294 dlink_node *node;
743    
744 michael 1219 if (HasUMode(source_p, UMODE_OPER))
745 michael 4800 if ((node = dlinkFindDelete(&oper_list, source_p)))
746     free_dlink_node(node);
747 adx 30
748 michael 1126 assert(dlinkFind(&local_client_list, source_p));
749 michael 4588 dlinkDelete(&source_p->connection->lclient_node, &local_client_list);
750 michael 1126
751 michael 4588 if (source_p->connection->list_task)
752 michael 3289 free_list_task(source_p);
753 adx 30
754 michael 876 watch_del_watch_list(source_p);
755 michael 5551
756 michael 1618 sendto_realops_flags(UMODE_CCONN, L_ALL, SEND_NOTICE,
757     "Client exiting: %s (%s@%s) [%s] [%s]",
758 michael 8223 source_p->name, source_p->username, source_p->realhost,
759 michael 6853 source_p->sockhost, comment);
760 michael 4884
761 michael 7337 ilog(LOG_TYPE_USER, "%s (%ju): %s!%s@%s %s %s %ju/%ju :%s",
762     date_ctime(source_p->connection->firsttime),
763     CurrentTime - source_p->connection->firsttime,
764 michael 1247 source_p->name, source_p->username, source_p->host,
765 michael 7337 source_p->sockhost, source_p->account,
766     source_p->connection->send.bytes >> 10,
767     source_p->connection->recv.bytes >> 10, source_p->info);
768 adx 30 }
769 michael 1571 else if (IsServer(source_p))
770 adx 30 {
771 michael 4213 assert(dlinkFind(&local_server_list, source_p));
772 michael 4588 dlinkDelete(&source_p->connection->lclient_node, &local_server_list);
773 adx 30 }
774 michael 6325 else
775     {
776     assert(dlinkFind(&unknown_list, source_p));
777     dlinkDelete(&source_p->connection->lclient_node, &unknown_list);
778     }
779 adx 30
780     if (!IsDead(source_p))
781     {
782     if (IsServer(source_p))
783     {
784 michael 3171 if (!HasFlag(source_p, FLAGS_SQUIT))
785     {
786     /* for them, we are exiting the network */
787     sendto_one(source_p, ":%s SQUIT %s :%s",
788 michael 3186 me.id, me.id, comment);
789 michael 3171 }
790 adx 30 }
791    
792     sendto_one(source_p, "ERROR :Closing Link: %s (%s)",
793     source_p->host, comment);
794     }
795    
796     close_connection(source_p);
797     }
798 michael 1991 else if (IsClient(source_p) && HasFlag(source_p->servptr, FLAGS_EOB))
799 michael 1976 sendto_realops_flags(UMODE_FARCONNECT, L_ALL, SEND_NOTICE,
800 michael 6853 "Client exiting at %s: %s (%s@%s) [%s] [%s]",
801 michael 1976 source_p->servptr->name, source_p->name,
802 michael 8223 source_p->username, source_p->realhost, source_p->sockhost, comment);
803 adx 30
804     if (IsServer(source_p))
805     {
806 michael 3171 char splitstr[HOSTLEN + HOSTLEN + 2] = "";
807 adx 30
808 michael 5590 assert(source_p->serv);
809     assert(source_p->servptr);
810 adx 30
811     if (ConfigServerHide.hide_servers)
812 michael 887 /*
813 michael 2345 * Set netsplit message to "*.net *.split" to still show
814 adx 30 * that its a split, but hide the servers splitting
815     */
816 michael 3171 strlcpy(splitstr, "*.net *.split", sizeof(splitstr));
817 adx 30 else
818     snprintf(splitstr, sizeof(splitstr), "%s %s",
819     source_p->servptr->name, source_p->name);
820    
821 michael 4213 /* Send SQUIT for source_p in every direction. source_p is already off of local_server_list here */
822 michael 3171 if (!HasFlag(source_p, FLAGS_SQUIT))
823 michael 4962 sendto_server(NULL, 0, 0, "SQUIT %s :%s", source_p->id, comment);
824 adx 30
825 michael 3171 /* Now exit the clients internally */
826     recurse_remove_clients(source_p, splitstr);
827    
828 michael 3247 if (MyConnect(source_p))
829 adx 30 {
830 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE,
831 michael 6782 "%s was connected for %s. %ju/%ju sendK/recvK.",
832 michael 6569 source_p->name, time_dissect(CurrentTime - source_p->connection->firsttime),
833 michael 4588 source_p->connection->send.bytes >> 10,
834     source_p->connection->recv.bytes >> 10);
835 michael 6782 ilog(LOG_TYPE_IRCD, "%s was connected for %s. %ju/%ju sendK/recvK.",
836 michael 6569 source_p->name, time_dissect(CurrentTime - source_p->connection->firsttime),
837 michael 5589 source_p->connection->send.bytes >> 10,
838     source_p->connection->recv.bytes >> 10);
839 adx 30 }
840     }
841 michael 1219 else if (IsClient(source_p) && !HasFlag(source_p, FLAGS_KILLED))
842 michael 7870 sendto_server(source_p->from, 0, 0, ":%s QUIT :%s", source_p->id, comment);
843 adx 30
844     /* The client *better* be off all of the lists */
845     assert(dlinkFind(&unknown_list, source_p) == NULL);
846     assert(dlinkFind(&local_client_list, source_p) == NULL);
847 michael 4213 assert(dlinkFind(&local_server_list, source_p) == NULL);
848 adx 30 assert(dlinkFind(&oper_list, source_p) == NULL);
849 michael 8294 assert(dlinkFind(&listing_client_list, source_p) == NULL);
850 adx 30
851     exit_one_client(source_p, comment);
852     }
853    
854     /*
855     * dead_link_on_write - report a write error if not already dead,
856     * mark it as dead then exit it
857     */
858     void
859     dead_link_on_write(struct Client *client_p, int ierrno)
860     {
861 michael 4800 dlink_node *node;
862 adx 30
863     if (IsDefunct(client_p))
864     return;
865    
866 michael 4588 dbuf_clear(&client_p->connection->buf_recvq);
867     dbuf_clear(&client_p->connection->buf_sendq);
868 adx 30
869     assert(dlinkFind(&abort_list, client_p) == NULL);
870 michael 4800 node = make_dlink_node();
871 adx 30 /* don't let exit_aborted_clients() finish yet */
872 michael 4800 dlinkAddTail(client_p, node, &abort_list);
873 adx 30
874     if (eac_next == NULL)
875 michael 4800 eac_next = node;
876 adx 30
877     SetDead(client_p); /* You are dead my friend */
878     }
879    
880     /*
881     * dead_link_on_read - report a read error if not already dead,
882     * mark it as dead then exit it
883     */
884     void
885     dead_link_on_read(struct Client *client_p, int error)
886     {
887 michael 2691 char errmsg[IRCD_BUFSIZE];
888 adx 30 int current_error;
889    
890     if (IsDefunct(client_p))
891     return;
892    
893 michael 4588 dbuf_clear(&client_p->connection->buf_recvq);
894     dbuf_clear(&client_p->connection->buf_sendq);
895 adx 30
896 michael 8339 current_error = get_sockerr(client_p->connection->fd->fd);
897 adx 30
898     if (IsServer(client_p) || IsHandshake(client_p))
899     {
900     if (error == 0)
901     {
902     /* Admins get the real IP */
903 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ADMIN, SEND_NOTICE,
904 michael 2182 "Server %s closed the connection",
905 michael 7997 client_get_name(client_p, SHOW_IP));
906 adx 30
907     /* Opers get a masked IP */
908 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_OPER, SEND_NOTICE,
909 michael 2182 "Server %s closed the connection",
910 michael 7997 client_get_name(client_p, MASK_IP));
911 adx 30
912 michael 1247 ilog(LOG_TYPE_IRCD, "Server %s closed the connection",
913 michael 7997 client_get_name(client_p, SHOW_IP));
914 adx 30 }
915     else
916     {
917 michael 617 report_error(L_ADMIN, "Lost connection to %s: %s",
918 michael 7997 client_get_name(client_p, SHOW_IP), current_error);
919 michael 617 report_error(L_OPER, "Lost connection to %s: %s",
920 michael 7997 client_get_name(client_p, MASK_IP), current_error);
921 adx 30 }
922    
923 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE,
924 michael 6569 "%s was connected for %s",
925     client_p->name, time_dissect(CurrentTime - client_p->connection->firsttime));
926 adx 30 }
927    
928     if (error == 0)
929     strlcpy(errmsg, "Remote host closed the connection",
930     sizeof(errmsg));
931     else
932 michael 1124 snprintf(errmsg, sizeof(errmsg), "Read error: %s",
933     strerror(current_error));
934 adx 30
935 michael 3171 exit_client(client_p, errmsg);
936 adx 30 }
937    
938     void
939     exit_aborted_clients(void)
940     {
941     dlink_node *ptr;
942     struct Client *target_p;
943     const char *notice;
944    
945     DLINK_FOREACH_SAFE(ptr, eac_next, abort_list.head)
946     {
947     target_p = ptr->data;
948     eac_next = ptr->next;
949    
950 michael 8292 dlinkDelete(ptr, &abort_list);
951     free_dlink_node(ptr);
952    
953 adx 30 if (target_p == NULL)
954     {
955 michael 6318 sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE,
956 adx 30 "Warning: null client on abort_list!");
957     continue;
958     }
959    
960 michael 6313 if (HasFlag(target_p, FLAGS_SENDQEX))
961 adx 30 notice = "Max SendQ exceeded";
962     else
963     notice = "Write error: connection closed";
964    
965 michael 3171 exit_client(target_p, notice);
966 adx 30 }
967     }
968    
969     /*
970     * accept processing, this adds a form of "caller ID" to ircd
971 michael 887 *
972 adx 30 * If a client puts themselves into "caller ID only" mode,
973 michael 887 * only clients that match a client pointer they have put on
974 adx 30 * the accept list will be allowed to message them.
975     *
976 michael 887 * Diane Bruce, "Dianora" db@db.net
977 adx 30 */
978    
979 michael 887 void
980 michael 4975 del_accept(struct split_nuh_item *accept_p, struct Client *client_p)
981 adx 30 {
982 michael 4975 dlinkDelete(&accept_p->node, &client_p->connection->acceptlist);
983 adx 30
984 michael 7032 xfree(accept_p->nickptr);
985     xfree(accept_p->userptr);
986     xfree(accept_p->hostptr);
987     xfree(accept_p);
988 michael 887 }
989 adx 30
990 michael 887 struct split_nuh_item *
991     find_accept(const char *nick, const char *user,
992 michael 2363 const char *host, struct Client *client_p,
993     int (*cmpfunc)(const char *, const char *))
994 michael 887 {
995 michael 7987 dlink_node *node;
996 adx 30
997 michael 4800 DLINK_FOREACH(node, client_p->connection->acceptlist.head)
998 adx 30 {
999 michael 4975 struct split_nuh_item *accept_p = node->data;
1000 michael 887
1001 michael 4975 if (!cmpfunc(accept_p->nickptr, nick) &&
1002     !cmpfunc(accept_p->userptr, user) &&
1003     !cmpfunc(accept_p->hostptr, host))
1004     return accept_p;
1005 adx 30 }
1006    
1007 michael 887 return NULL;
1008 adx 30 }
1009    
1010 michael 887 /* accept_message()
1011 adx 30 *
1012 michael 887 * inputs - pointer to source client
1013     * - pointer to target client
1014     * output - 1 if accept this message 0 if not
1015     * side effects - See if source is on target's allow list
1016 adx 30 */
1017 michael 887 int
1018     accept_message(struct Client *source,
1019     struct Client *target)
1020 adx 30 {
1021 michael 8059 dlink_node *node;
1022 adx 30
1023 michael 5451 if (HasFlag(source, FLAGS_SERVICE) ||
1024     (HasUMode(source, UMODE_OPER) && ConfigGeneral.opers_bypass_callerid))
1025     return 1;
1026    
1027 michael 887 if (source == target || find_accept(source->name, source->username,
1028 michael 2363 source->host, target, match))
1029 michael 887 return 1;
1030 adx 30
1031 michael 4660 if (!HasUMode(target, UMODE_CALLERID) && HasUMode(target, UMODE_SOFTCALLERID))
1032 michael 4800 DLINK_FOREACH(node, target->channel.head)
1033     if (IsMember(source, ((struct Membership *)node->data)->chptr))
1034 michael 887 return 1;
1035 adx 30
1036 michael 887 return 0;
1037 adx 30 }
1038    
1039     /* del_all_accepts()
1040     *
1041 michael 887 * inputs - pointer to exiting client
1042     * output - NONE
1043     * side effects - Walk through given clients acceptlist and remove all entries
1044 adx 30 */
1045     void
1046     del_all_accepts(struct Client *client_p)
1047     {
1048 michael 7987 dlink_node *node, *node_next;
1049 adx 30
1050 michael 4800 DLINK_FOREACH_SAFE(node, node_next, client_p->connection->acceptlist.head)
1051     del_accept(node->data, client_p);
1052 adx 30 }
1053 michael 1783
1054     unsigned int
1055 michael 5545 client_get_idle_time(const struct Client *source_p,
1056     const struct Client *target_p)
1057 michael 1783 {
1058     unsigned int idle = 0;
1059 michael 4833 const struct ClassItem *const class = get_class_ptr(&target_p->connection->confs);
1060 michael 1783
1061 michael 1785 if (!(class->flags & CLASS_FLAGS_FAKE_IDLE) || target_p == source_p)
1062 michael 4588 return CurrentTime - target_p->connection->last_privmsg;
1063 michael 4884
1064 michael 1783 if (HasUMode(source_p, UMODE_OPER) &&
1065 michael 1785 !(class->flags & CLASS_FLAGS_HIDE_IDLE_FROM_OPERS))
1066 michael 4588 return CurrentTime - target_p->connection->last_privmsg;
1067 michael 1783
1068 michael 7987 const unsigned int min_idle = class->min_idle;
1069     const unsigned int max_idle = class->max_idle;
1070 michael 1783
1071     if (min_idle == max_idle)
1072     return min_idle;
1073    
1074     if (class->flags & CLASS_FLAGS_RANDOM_IDLE)
1075     idle = genrand_int32();
1076     else
1077 michael 4588 idle = CurrentTime - target_p->connection->last_privmsg;
1078 michael 1783
1079 michael 7870 if (max_idle)
1080     idle %= max_idle;
1081     else
1082 michael 1783 idle = 0;
1083    
1084     if (idle < min_idle)
1085     idle = min_idle + (idle % (max_idle - min_idle));
1086    
1087     return idle;
1088     }
1089 michael 4214
1090     /* client_init()
1091     *
1092     * inputs - NONE
1093     * output - NONE
1094     * side effects - initialize client free memory
1095     */
1096     void
1097     client_init(void)
1098     {
1099     static struct event event_ping =
1100     {
1101     .name = "check_pings",
1102     .handler = check_pings,
1103     .when = 5
1104     };
1105    
1106     client_pool = mp_pool_new(sizeof(struct Client), MP_CHUNK_SIZE_CLIENT);
1107 michael 4579 connection_pool = mp_pool_new(sizeof(struct Connection), MP_CHUNK_SIZE_CONNECTION);
1108 michael 4214 event_add(&event_ping, NULL);
1109     }

Properties

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