ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/s_bsd.c
Revision: 7105
Committed: Sat Jan 23 20:11:27 2016 UTC (9 years, 7 months ago) by michael
Content type: text/x-csrc
File size: 20985 byte(s)
Log Message:
- Incorporate gnutls support by Adam & Attila

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

Properties

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