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