1 |
/* |
2 |
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
3 |
* s_bsd.c: Network functions. |
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 <netinet/in_systm.h> |
27 |
#include <netinet/ip.h> |
28 |
#include <netinet/tcp.h> |
29 |
#include "fdlist.h" |
30 |
#include "s_bsd.h" |
31 |
#include "client.h" |
32 |
#include "common.h" |
33 |
#include "dbuf.h" |
34 |
#include "event.h" |
35 |
#include "irc_string.h" |
36 |
#include "irc_getnameinfo.h" |
37 |
#include "irc_getaddrinfo.h" |
38 |
#include "ircd.h" |
39 |
#include "list.h" |
40 |
#include "listener.h" |
41 |
#include "numeric.h" |
42 |
#include "packet.h" |
43 |
#include "irc_res.h" |
44 |
#include "inet_misc.h" |
45 |
#include "restart.h" |
46 |
#include "s_auth.h" |
47 |
#include "s_conf.h" |
48 |
#include "s_log.h" |
49 |
#include "s_serv.h" |
50 |
#include "send.h" |
51 |
#include "memory.h" |
52 |
#include "s_user.h" |
53 |
#include "hook.h" |
54 |
|
55 |
static const char *comm_err_str[] = { "Comm OK", "Error during bind()", |
56 |
"Error during DNS lookup", "connect timeout", "Error during connect()", |
57 |
"Comm Error" }; |
58 |
|
59 |
struct Callback *setup_socket_cb = NULL; |
60 |
|
61 |
static void comm_connect_callback(fde_t *fd, int status); |
62 |
static PF comm_connect_timeout; |
63 |
static void comm_connect_dns_callback(void *, const struct irc_ssaddr *, const char *); |
64 |
static PF comm_connect_tryconnect; |
65 |
|
66 |
|
67 |
/* check_can_use_v6() |
68 |
* Check if the system can open AF_INET6 sockets |
69 |
*/ |
70 |
void |
71 |
check_can_use_v6(void) |
72 |
{ |
73 |
#ifdef IPV6 |
74 |
int v6; |
75 |
|
76 |
if ((v6 = socket(AF_INET6, SOCK_STREAM, 0)) < 0) |
77 |
ServerInfo.can_use_v6 = 0; |
78 |
else |
79 |
{ |
80 |
ServerInfo.can_use_v6 = 1; |
81 |
close(v6); |
82 |
} |
83 |
#else |
84 |
ServerInfo.can_use_v6 = 0; |
85 |
#endif |
86 |
} |
87 |
|
88 |
/* get_sockerr - get the error value from the socket or the current errno |
89 |
* |
90 |
* Get the *real* error from the socket (well try to anyway..). |
91 |
* This may only work when SO_DEBUG is enabled but its worth the |
92 |
* gamble anyway. |
93 |
*/ |
94 |
int |
95 |
get_sockerr(int fd) |
96 |
{ |
97 |
int errtmp = errno; |
98 |
#ifdef SO_ERROR |
99 |
int err = 0; |
100 |
socklen_t len = sizeof(err); |
101 |
|
102 |
if (-1 < fd && !getsockopt(fd, SOL_SOCKET, SO_ERROR, &err, &len)) |
103 |
{ |
104 |
if (err) |
105 |
errtmp = err; |
106 |
} |
107 |
errno = errtmp; |
108 |
#endif |
109 |
return errtmp; |
110 |
} |
111 |
|
112 |
/* |
113 |
* report_error - report an error from an errno. |
114 |
* Record error to log and also send a copy to all *LOCAL* opers online. |
115 |
* |
116 |
* text is a *format* string for outputing error. It must |
117 |
* contain only two '%s', the first will be replaced |
118 |
* by the sockhost from the client_p, and the latter will |
119 |
* be taken from sys_errlist[errno]. |
120 |
* |
121 |
* client_p if not NULL, is the *LOCAL* client associated with |
122 |
* the error. |
123 |
* |
124 |
* Cannot use perror() within daemon. stderr is closed in |
125 |
* ircd and cannot be used. And, worse yet, it might have |
126 |
* been reassigned to a normal connection... |
127 |
* |
128 |
* Actually stderr is still there IFF ircd was run with -s --Rodder |
129 |
*/ |
130 |
|
131 |
void |
132 |
report_error(int level, const char* text, const char* who, int error) |
133 |
{ |
134 |
who = (who) ? who : ""; |
135 |
|
136 |
sendto_realops_flags(UMODE_DEBUG, level, text, who, strerror(error)); |
137 |
log_oper_action(LOG_IOERR_TYPE, NULL, "%s %s %s\n", who, text, strerror(error)); |
138 |
ilog(L_ERROR, text, who, strerror(error)); |
139 |
} |
140 |
|
141 |
/* |
142 |
* setup_socket() |
143 |
* |
144 |
* Set the socket non-blocking, and other wonderful bits. |
145 |
*/ |
146 |
static void * |
147 |
setup_socket(va_list args) |
148 |
{ |
149 |
int fd = va_arg(args, int); |
150 |
int opt = 1; |
151 |
|
152 |
setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt)); |
153 |
|
154 |
#ifdef IPTOS_LOWDELAY |
155 |
opt = IPTOS_LOWDELAY; |
156 |
setsockopt(fd, IPPROTO_IP, IP_TOS, &opt, sizeof(opt)); |
157 |
#endif |
158 |
|
159 |
fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) | O_NONBLOCK); |
160 |
|
161 |
return NULL; |
162 |
} |
163 |
|
164 |
/* |
165 |
* init_comm() |
166 |
* |
167 |
* Initializes comm subsystem. |
168 |
*/ |
169 |
void |
170 |
init_comm(void) |
171 |
{ |
172 |
setup_socket_cb = register_callback("setup_socket", setup_socket); |
173 |
init_netio(); |
174 |
} |
175 |
|
176 |
/* |
177 |
* close_connection |
178 |
* Close the physical connection. This function must make |
179 |
* MyConnect(client_p) == FALSE, and set client_p->from == NULL. |
180 |
*/ |
181 |
void |
182 |
close_connection(struct Client *client_p) |
183 |
{ |
184 |
struct ConfItem *conf; |
185 |
struct AccessItem *aconf; |
186 |
struct ClassItem *aclass; |
187 |
|
188 |
assert(NULL != client_p); |
189 |
|
190 |
if (!IsDead(client_p)) |
191 |
{ |
192 |
/* attempt to flush any pending dbufs. Evil, but .. -- adrian */ |
193 |
/* there is still a chance that we might send data to this socket |
194 |
* even if it is marked as blocked (COMM_SELECT_READ handler is called |
195 |
* before COMM_SELECT_WRITE). Let's try, nothing to lose.. -adx |
196 |
*/ |
197 |
ClearSendqBlocked(client_p); |
198 |
send_queued_write(client_p); |
199 |
} |
200 |
|
201 |
if (IsServer(client_p)) |
202 |
{ |
203 |
++ServerStats.is_sv; |
204 |
ServerStats.is_sbs += client_p->localClient->send.bytes; |
205 |
ServerStats.is_sbr += client_p->localClient->recv.bytes; |
206 |
ServerStats.is_sti += CurrentTime - client_p->firsttime; |
207 |
|
208 |
/* XXX Does this even make any sense at all anymore? |
209 |
* scheduling a 'quick' reconnect could cause a pile of |
210 |
* nick collides under TSora protocol... -db |
211 |
*/ |
212 |
/* |
213 |
* If the connection has been up for a long amount of time, schedule |
214 |
* a 'quick' reconnect, else reset the next-connect cycle. |
215 |
*/ |
216 |
if ((conf = find_conf_exact(SERVER_TYPE, |
217 |
client_p->name, client_p->username, |
218 |
client_p->host))) |
219 |
{ |
220 |
/* |
221 |
* Reschedule a faster reconnect, if this was a automatically |
222 |
* connected configuration entry. (Note that if we have had |
223 |
* a rehash in between, the status has been changed to |
224 |
* CONF_ILLEGAL). But only do this if it was a "good" link. |
225 |
*/ |
226 |
aconf = (struct AccessItem *)map_to_conf(conf); |
227 |
aclass = (struct ClassItem *)map_to_conf(aconf->class_ptr); |
228 |
aconf->hold = time(NULL); |
229 |
aconf->hold += (aconf->hold - client_p->since > HANGONGOODLINK) ? |
230 |
HANGONRETRYDELAY : ConFreq(aclass); |
231 |
if (nextconnect > aconf->hold) |
232 |
nextconnect = aconf->hold; |
233 |
} |
234 |
} |
235 |
else if (IsClient(client_p)) |
236 |
{ |
237 |
++ServerStats.is_cl; |
238 |
ServerStats.is_cbs += client_p->localClient->send.bytes; |
239 |
ServerStats.is_cbr += client_p->localClient->recv.bytes; |
240 |
ServerStats.is_cti += CurrentTime - client_p->firsttime; |
241 |
} |
242 |
else |
243 |
++ServerStats.is_ni; |
244 |
|
245 |
#ifdef HAVE_LIBCRYPTO |
246 |
if (client_p->localClient->fd.ssl) |
247 |
{ |
248 |
SSL_set_shutdown(client_p->localClient->fd.ssl, SSL_RECEIVED_SHUTDOWN); |
249 |
|
250 |
if (!SSL_shutdown(client_p->localClient->fd.ssl)) |
251 |
SSL_shutdown(client_p->localClient->fd.ssl); |
252 |
} |
253 |
#endif |
254 |
if (client_p->localClient->fd.flags.open) |
255 |
fd_close(&client_p->localClient->fd); |
256 |
|
257 |
if (HasServlink(client_p)) |
258 |
{ |
259 |
if (client_p->localClient->ctrlfd.flags.open) |
260 |
fd_close(&client_p->localClient->ctrlfd); |
261 |
} |
262 |
|
263 |
dbuf_clear(&client_p->localClient->buf_sendq); |
264 |
dbuf_clear(&client_p->localClient->buf_recvq); |
265 |
|
266 |
MyFree(client_p->localClient->passwd); |
267 |
detach_conf(client_p, CONF_TYPE); |
268 |
client_p->from = NULL; /* ...this should catch them! >:) --msa */ |
269 |
} |
270 |
|
271 |
#ifdef HAVE_LIBCRYPTO |
272 |
/* |
273 |
* ssl_handshake - let OpenSSL initialize the protocol. Register for |
274 |
* read/write events if necessary. |
275 |
*/ |
276 |
static void |
277 |
ssl_handshake(int fd, struct Client *client_p) |
278 |
{ |
279 |
int ret = SSL_accept(client_p->localClient->fd.ssl); |
280 |
|
281 |
if (ret <= 0) |
282 |
switch (SSL_get_error(client_p->localClient->fd.ssl, ret)) |
283 |
{ |
284 |
case SSL_ERROR_WANT_WRITE: |
285 |
comm_setselect(&client_p->localClient->fd, COMM_SELECT_WRITE, |
286 |
(PF *) ssl_handshake, client_p, 0); |
287 |
return; |
288 |
|
289 |
case SSL_ERROR_WANT_READ: |
290 |
comm_setselect(&client_p->localClient->fd, COMM_SELECT_READ, |
291 |
(PF *) ssl_handshake, client_p, 0); |
292 |
return; |
293 |
|
294 |
default: |
295 |
exit_client(client_p, client_p, "Error during SSL handshake"); |
296 |
return; |
297 |
} |
298 |
|
299 |
execute_callback(auth_cb, client_p); |
300 |
} |
301 |
#endif |
302 |
|
303 |
/* |
304 |
* add_connection - creates a client which has just connected to us on |
305 |
* the given fd. The sockhost field is initialized with the ip# of the host. |
306 |
* An unique id is calculated now, in case it is needed for auth. |
307 |
* The client is sent to the auth module for verification, and not put in |
308 |
* any client list yet. |
309 |
*/ |
310 |
void |
311 |
add_connection(struct Listener *listener, struct irc_ssaddr *irn, int fd) |
312 |
{ |
313 |
struct Client *new_client; |
314 |
|
315 |
assert(NULL != listener); |
316 |
|
317 |
new_client = make_client(NULL); |
318 |
|
319 |
fd_open(&new_client->localClient->fd, fd, 1, |
320 |
(listener->flags & LISTENER_SSL) ? |
321 |
"Incoming SSL connection" : "Incoming connection"); |
322 |
|
323 |
/* |
324 |
* copy address to 'sockhost' as a string, copy it to host too |
325 |
* so we have something valid to put into error messages... |
326 |
*/ |
327 |
memcpy(&new_client->localClient->ip, irn, sizeof(struct irc_ssaddr)); |
328 |
|
329 |
irc_getnameinfo((struct sockaddr*)&new_client->localClient->ip, |
330 |
new_client->localClient->ip.ss_len, new_client->sockhost, |
331 |
HOSTIPLEN, NULL, 0, NI_NUMERICHOST); |
332 |
new_client->localClient->aftype = new_client->localClient->ip.ss.ss_family; |
333 |
#ifdef IPV6 |
334 |
if (new_client->sockhost[0] == ':') |
335 |
strlcat(new_client->host, "0", HOSTLEN+1); |
336 |
|
337 |
if (new_client->localClient->aftype == AF_INET6 && |
338 |
ConfigFileEntry.dot_in_ip6_addr == 1) |
339 |
{ |
340 |
strlcat(new_client->host, new_client->sockhost,HOSTLEN+1); |
341 |
strlcat(new_client->host, ".", HOSTLEN+1); |
342 |
} |
343 |
else |
344 |
#endif |
345 |
strlcat(new_client->host, new_client->sockhost,HOSTLEN+1); |
346 |
|
347 |
new_client->localClient->listener = listener; |
348 |
++listener->ref_count; |
349 |
|
350 |
#ifdef HAVE_LIBCRYPTO |
351 |
if (listener->flags & LISTENER_SSL) |
352 |
{ |
353 |
if ((new_client->localClient->fd.ssl = SSL_new(ServerInfo.server_ctx)) == NULL) |
354 |
{ |
355 |
ilog(L_CRIT, "SSL_new() ERROR! -- %s", |
356 |
ERR_error_string(ERR_get_error(), NULL)); |
357 |
|
358 |
SetDead(new_client); |
359 |
exit_client(new_client, new_client, "SSL_new failed"); |
360 |
return; |
361 |
} |
362 |
|
363 |
SSL_set_fd(new_client->localClient->fd.ssl, fd); |
364 |
ssl_handshake(0, new_client); |
365 |
} |
366 |
else |
367 |
#endif |
368 |
execute_callback(auth_cb, new_client); |
369 |
} |
370 |
|
371 |
/* |
372 |
* stolen from squid - its a neat (but overused! :) routine which we |
373 |
* can use to see whether we can ignore this errno or not. It is |
374 |
* generally useful for non-blocking network IO related errnos. |
375 |
* -- adrian |
376 |
*/ |
377 |
int |
378 |
ignoreErrno(int ierrno) |
379 |
{ |
380 |
switch (ierrno) |
381 |
{ |
382 |
case EINPROGRESS: |
383 |
case EWOULDBLOCK: |
384 |
#if EAGAIN != EWOULDBLOCK |
385 |
case EAGAIN: |
386 |
#endif |
387 |
case EALREADY: |
388 |
case EINTR: |
389 |
#ifdef ERESTART |
390 |
case ERESTART: |
391 |
#endif |
392 |
return 1; |
393 |
default: |
394 |
return 0; |
395 |
} |
396 |
} |
397 |
|
398 |
/* |
399 |
* comm_settimeout() - set the socket timeout |
400 |
* |
401 |
* Set the timeout for the fd |
402 |
*/ |
403 |
void |
404 |
comm_settimeout(fde_t *fd, time_t timeout, PF *callback, void *cbdata) |
405 |
{ |
406 |
assert(fd->flags.open); |
407 |
|
408 |
fd->timeout = CurrentTime + (timeout / 1000); |
409 |
fd->timeout_handler = callback; |
410 |
fd->timeout_data = cbdata; |
411 |
} |
412 |
|
413 |
/* |
414 |
* comm_setflush() - set a flush function |
415 |
* |
416 |
* A flush function is simply a function called if found during |
417 |
* comm_timeouts(). Its basically a second timeout, except in this case |
418 |
* I'm too lazy to implement multiple timeout functions! :-) |
419 |
* its kinda nice to have it separate, since this is designed for |
420 |
* flush functions, and when comm_close() is implemented correctly |
421 |
* with close functions, we _actually_ don't call comm_close() here .. |
422 |
* -- originally Adrian's notes |
423 |
* comm_close() is replaced with fd_close() in fdlist.c |
424 |
*/ |
425 |
void |
426 |
comm_setflush(fde_t *fd, time_t timeout, PF *callback, void *cbdata) |
427 |
{ |
428 |
assert(fd->flags.open); |
429 |
|
430 |
fd->flush_timeout = CurrentTime + (timeout / 1000); |
431 |
fd->flush_handler = callback; |
432 |
fd->flush_data = cbdata; |
433 |
} |
434 |
|
435 |
/* |
436 |
* comm_checktimeouts() - check the socket timeouts |
437 |
* |
438 |
* All this routine does is call the given callback/cbdata, without closing |
439 |
* down the file descriptor. When close handlers have been implemented, |
440 |
* this will happen. |
441 |
*/ |
442 |
void |
443 |
comm_checktimeouts(void *notused) |
444 |
{ |
445 |
int i; |
446 |
fde_t *F; |
447 |
PF *hdl; |
448 |
void *data; |
449 |
|
450 |
for (i = 0; i < FD_HASH_SIZE; i++) |
451 |
for (F = fd_hash[i]; F != NULL; F = fd_next_in_loop) |
452 |
{ |
453 |
assert(F->flags.open); |
454 |
fd_next_in_loop = F->hnext; |
455 |
|
456 |
/* check flush functions */ |
457 |
if (F->flush_handler && F->flush_timeout > 0 && |
458 |
F->flush_timeout < CurrentTime) |
459 |
{ |
460 |
hdl = F->flush_handler; |
461 |
data = F->flush_data; |
462 |
comm_setflush(F, 0, NULL, NULL); |
463 |
hdl(F, data); |
464 |
} |
465 |
|
466 |
/* check timeouts */ |
467 |
if (F->timeout_handler && F->timeout > 0 && |
468 |
F->timeout < CurrentTime) |
469 |
{ |
470 |
/* Call timeout handler */ |
471 |
hdl = F->timeout_handler; |
472 |
data = F->timeout_data; |
473 |
comm_settimeout(F, 0, NULL, NULL); |
474 |
hdl(F, data); |
475 |
} |
476 |
} |
477 |
} |
478 |
|
479 |
/* |
480 |
* void comm_connect_tcp(int fd, const char *host, unsigned short port, |
481 |
* struct sockaddr *clocal, int socklen, |
482 |
* CNCB *callback, void *data, int aftype, int timeout) |
483 |
* Input: An fd to connect with, a host and port to connect to, |
484 |
* a local sockaddr to connect from + length(or NULL to use the |
485 |
* default), a callback, the data to pass into the callback, the |
486 |
* address family. |
487 |
* Output: None. |
488 |
* Side-effects: A non-blocking connection to the host is started, and |
489 |
* if necessary, set up for selection. The callback given |
490 |
* may be called now, or it may be called later. |
491 |
*/ |
492 |
void |
493 |
comm_connect_tcp(fde_t *fd, const char *host, unsigned short port, |
494 |
struct sockaddr *clocal, int socklen, CNCB *callback, |
495 |
void *data, int aftype, int timeout) |
496 |
{ |
497 |
struct addrinfo hints, *res; |
498 |
char portname[PORTNAMELEN + 1]; |
499 |
|
500 |
assert(callback); |
501 |
fd->connect.callback = callback; |
502 |
fd->connect.data = data; |
503 |
|
504 |
fd->connect.hostaddr.ss.ss_family = aftype; |
505 |
fd->connect.hostaddr.ss_port = htons(port); |
506 |
|
507 |
/* Note that we're using a passed sockaddr here. This is because |
508 |
* generally you'll be bind()ing to a sockaddr grabbed from |
509 |
* getsockname(), so this makes things easier. |
510 |
* XXX If NULL is passed as local, we should later on bind() to the |
511 |
* virtual host IP, for completeness. |
512 |
* -- adrian |
513 |
*/ |
514 |
if ((clocal != NULL) && (bind(fd->fd, clocal, socklen) < 0)) |
515 |
{ |
516 |
/* Failure, call the callback with COMM_ERR_BIND */ |
517 |
comm_connect_callback(fd, COMM_ERR_BIND); |
518 |
/* ... and quit */ |
519 |
return; |
520 |
} |
521 |
|
522 |
/* Next, if we have been given an IP, get the addr and skip the |
523 |
* DNS check (and head direct to comm_connect_tryconnect(). |
524 |
*/ |
525 |
memset(&hints, 0, sizeof(hints)); |
526 |
hints.ai_family = AF_UNSPEC; |
527 |
hints.ai_socktype = SOCK_STREAM; |
528 |
hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST; |
529 |
|
530 |
snprintf(portname, sizeof(portname), "%d", port); |
531 |
|
532 |
if (irc_getaddrinfo(host, portname, &hints, &res)) |
533 |
{ |
534 |
/* Send the DNS request, for the next level */ |
535 |
if (aftype == AF_INET6) |
536 |
gethost_byname_type(comm_connect_dns_callback, fd, host, T_AAAA); |
537 |
else |
538 |
gethost_byname_type(comm_connect_dns_callback, fd, host, T_A); |
539 |
} |
540 |
else |
541 |
{ |
542 |
/* We have a valid IP, so we just call tryconnect */ |
543 |
/* Make sure we actually set the timeout here .. */ |
544 |
assert(res != NULL); |
545 |
memcpy(&fd->connect.hostaddr, res->ai_addr, res->ai_addrlen); |
546 |
fd->connect.hostaddr.ss_len = res->ai_addrlen; |
547 |
fd->connect.hostaddr.ss.ss_family = res->ai_family; |
548 |
irc_freeaddrinfo(res); |
549 |
comm_settimeout(fd, timeout*1000, comm_connect_timeout, NULL); |
550 |
comm_connect_tryconnect(fd, NULL); |
551 |
} |
552 |
} |
553 |
|
554 |
/* |
555 |
* comm_connect_callback() - call the callback, and continue with life |
556 |
*/ |
557 |
static void |
558 |
comm_connect_callback(fde_t *fd, int status) |
559 |
{ |
560 |
CNCB *hdl; |
561 |
|
562 |
/* This check is gross..but probably necessary */ |
563 |
if (fd->connect.callback == NULL) |
564 |
return; |
565 |
|
566 |
/* Clear the connect flag + handler */ |
567 |
hdl = fd->connect.callback; |
568 |
fd->connect.callback = NULL; |
569 |
|
570 |
/* Clear the timeout handler */ |
571 |
comm_settimeout(fd, 0, NULL, NULL); |
572 |
|
573 |
/* Call the handler */ |
574 |
hdl(fd, status, fd->connect.data); |
575 |
} |
576 |
|
577 |
/* |
578 |
* comm_connect_timeout() - this gets called when the socket connection |
579 |
* times out. This *only* can be called once connect() is initially |
580 |
* called .. |
581 |
*/ |
582 |
static void |
583 |
comm_connect_timeout(fde_t *fd, void *notused) |
584 |
{ |
585 |
/* error! */ |
586 |
comm_connect_callback(fd, COMM_ERR_TIMEOUT); |
587 |
} |
588 |
|
589 |
/* |
590 |
* comm_connect_dns_callback() - called at the completion of the DNS request |
591 |
* |
592 |
* The DNS request has completed, so if we've got an error, return it, |
593 |
* otherwise we initiate the connect() |
594 |
*/ |
595 |
static void |
596 |
comm_connect_dns_callback(void *vptr, const struct irc_ssaddr *addr, const char *name) |
597 |
{ |
598 |
fde_t *F = vptr; |
599 |
|
600 |
if (name == NULL) |
601 |
{ |
602 |
comm_connect_callback(F, COMM_ERR_DNS); |
603 |
return; |
604 |
} |
605 |
|
606 |
/* No error, set a 10 second timeout */ |
607 |
comm_settimeout(F, 30*1000, comm_connect_timeout, NULL); |
608 |
|
609 |
/* Copy over the DNS reply info so we can use it in the connect() */ |
610 |
/* |
611 |
* Note we don't fudge the refcount here, because we aren't keeping |
612 |
* the DNS record around, and the DNS cache is gone anyway.. |
613 |
* -- adrian |
614 |
*/ |
615 |
memcpy(&F->connect.hostaddr, addr, addr->ss_len); |
616 |
/* The cast is hacky, but safe - port offset is same on v4 and v6 */ |
617 |
((struct sockaddr_in *) &F->connect.hostaddr)->sin_port = |
618 |
F->connect.hostaddr.ss_port; |
619 |
F->connect.hostaddr.ss_len = addr->ss_len; |
620 |
|
621 |
/* Now, call the tryconnect() routine to try a connect() */ |
622 |
comm_connect_tryconnect(F, NULL); |
623 |
} |
624 |
|
625 |
/* static void comm_connect_tryconnect(int fd, void *notused) |
626 |
* Input: The fd, the handler data(unused). |
627 |
* Output: None. |
628 |
* Side-effects: Try and connect with pending connect data for the FD. If |
629 |
* we succeed or get a fatal error, call the callback. |
630 |
* Otherwise, it is still blocking or something, so register |
631 |
* to select for a write event on this FD. |
632 |
*/ |
633 |
static void |
634 |
comm_connect_tryconnect(fde_t *fd, void *notused) |
635 |
{ |
636 |
int retval; |
637 |
|
638 |
/* This check is needed or re-entrant s_bsd_* like sigio break it. */ |
639 |
if (fd->connect.callback == NULL) |
640 |
return; |
641 |
|
642 |
/* Try the connect() */ |
643 |
retval = connect(fd->fd, (struct sockaddr *) &fd->connect.hostaddr, |
644 |
fd->connect.hostaddr.ss_len); |
645 |
|
646 |
/* Error? */ |
647 |
if (retval < 0) |
648 |
{ |
649 |
/* |
650 |
* If we get EISCONN, then we've already connect()ed the socket, |
651 |
* which is a good thing. |
652 |
* -- adrian |
653 |
*/ |
654 |
if (errno == EISCONN) |
655 |
comm_connect_callback(fd, COMM_OK); |
656 |
else if (ignoreErrno(errno)) |
657 |
/* Ignore error? Reschedule */ |
658 |
comm_setselect(fd, COMM_SELECT_WRITE, comm_connect_tryconnect, |
659 |
NULL, 0); |
660 |
else |
661 |
/* Error? Fail with COMM_ERR_CONNECT */ |
662 |
comm_connect_callback(fd, COMM_ERR_CONNECT); |
663 |
return; |
664 |
} |
665 |
|
666 |
/* If we get here, we've suceeded, so call with COMM_OK */ |
667 |
comm_connect_callback(fd, COMM_OK); |
668 |
} |
669 |
|
670 |
/* |
671 |
* comm_errorstr() - return an error string for the given error condition |
672 |
*/ |
673 |
const char * |
674 |
comm_errstr(int error) |
675 |
{ |
676 |
if (error < 0 || error >= COMM_ERR_MAX) |
677 |
return "Invalid error number!"; |
678 |
return comm_err_str[error]; |
679 |
} |
680 |
|
681 |
/* |
682 |
* comm_open() - open a socket |
683 |
* |
684 |
* This is a highly highly cut down version of squid's comm_open() which |
685 |
* for the most part emulates socket(), *EXCEPT* it fails if we're about |
686 |
* to run out of file descriptors. |
687 |
*/ |
688 |
int |
689 |
comm_open(fde_t *F, int family, int sock_type, int proto, const char *note) |
690 |
{ |
691 |
int fd; |
692 |
|
693 |
/* First, make sure we aren't going to run out of file descriptors */ |
694 |
if (number_fd >= hard_fdlimit) |
695 |
{ |
696 |
errno = ENFILE; |
697 |
return -1; |
698 |
} |
699 |
|
700 |
/* |
701 |
* Next, we try to open the socket. We *should* drop the reserved FD |
702 |
* limit if/when we get an error, but we can deal with that later. |
703 |
* XXX !!! -- adrian |
704 |
*/ |
705 |
fd = socket(family, sock_type, proto); |
706 |
if (fd < 0) |
707 |
return -1; /* errno will be passed through, yay.. */ |
708 |
|
709 |
execute_callback(setup_socket_cb, fd); |
710 |
|
711 |
/* update things in our fd tracking */ |
712 |
fd_open(F, fd, 1, note); |
713 |
return 0; |
714 |
} |
715 |
|
716 |
/* |
717 |
* comm_accept() - accept an incoming connection |
718 |
* |
719 |
* This is a simple wrapper for accept() which enforces FD limits like |
720 |
* comm_open() does. Returned fd must be either closed or tagged with |
721 |
* fd_open (this function no longer does it). |
722 |
*/ |
723 |
int |
724 |
comm_accept(struct Listener *lptr, struct irc_ssaddr *pn) |
725 |
{ |
726 |
int newfd; |
727 |
socklen_t addrlen = sizeof(struct irc_ssaddr); |
728 |
|
729 |
if (number_fd >= hard_fdlimit) |
730 |
{ |
731 |
errno = ENFILE; |
732 |
return -1; |
733 |
} |
734 |
|
735 |
/* |
736 |
* Next, do the accept(). if we get an error, we should drop the |
737 |
* reserved fd limit, but we can deal with that when comm_open() |
738 |
* also does it. XXX -- adrian |
739 |
*/ |
740 |
newfd = accept(lptr->fd.fd, (struct sockaddr *)pn, (socklen_t *)&addrlen); |
741 |
if (newfd < 0) |
742 |
return -1; |
743 |
|
744 |
#ifdef IPV6 |
745 |
remove_ipv6_mapping(pn); |
746 |
#else |
747 |
pn->ss_len = addrlen; |
748 |
#endif |
749 |
|
750 |
execute_callback(setup_socket_cb, newfd); |
751 |
|
752 |
/* .. and return */ |
753 |
return newfd; |
754 |
} |
755 |
|
756 |
/* |
757 |
* remove_ipv6_mapping() - Removes IPv4-In-IPv6 mapping from an address |
758 |
* This function should really inspect the struct itself rather than relying |
759 |
* on inet_pton and inet_ntop. OSes with IPv6 mapping listening on both |
760 |
* AF_INET and AF_INET6 map AF_INET connections inside AF_INET6 structures |
761 |
* |
762 |
*/ |
763 |
#ifdef IPV6 |
764 |
void |
765 |
remove_ipv6_mapping(struct irc_ssaddr *addr) |
766 |
{ |
767 |
if (addr->ss.ss_family == AF_INET6) |
768 |
{ |
769 |
struct sockaddr_in6 *v6; |
770 |
|
771 |
v6 = (struct sockaddr_in6*)addr; |
772 |
if (IN6_IS_ADDR_V4MAPPED(&v6->sin6_addr)) |
773 |
{ |
774 |
char v4ip[HOSTIPLEN]; |
775 |
struct sockaddr_in *v4 = (struct sockaddr_in*)addr; |
776 |
inetntop(AF_INET6, &v6->sin6_addr, v4ip, HOSTIPLEN); |
777 |
inet_pton(AF_INET, v4ip, &v4->sin_addr); |
778 |
addr->ss.ss_family = AF_INET; |
779 |
addr->ss_len = sizeof(struct sockaddr_in); |
780 |
} |
781 |
else |
782 |
addr->ss_len = sizeof(struct sockaddr_in6); |
783 |
} |
784 |
else |
785 |
addr->ss_len = sizeof(struct sockaddr_in); |
786 |
} |
787 |
#endif |