2 * ircd-ratbox: A slightly useful ircd.
3 * listener.c: Listens on a port.
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 * $Id: listener.c 26 2006-09-20 18:02:06Z spb $
31 #include "irc_string.h"
32 #include "sprintf_irc.h"
34 #include "ircd_defs.h"
38 #include "s_newconf.h"
46 #define INADDR_NONE ((unsigned int) 0xffffffff)
49 #if defined(NO_IN6ADDR_ANY) && defined(IPV6)
50 static const struct in6_addr in6addr_any
=
51 { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } };
54 static PF accept_connection
;
56 static listener_t
*ListenerPollList
= NULL
;
59 make_listener(struct irc_sockaddr_storage
*addr
)
61 listener_t
*listener
= (listener_t
*) MyMalloc(sizeof(listener_t
));
62 s_assert(0 != listener
);
64 listener
->name
= me
.name
;
66 memcpy(&listener
->addr
, addr
, sizeof(struct irc_sockaddr_storage
));
67 listener
->next
= NULL
;
72 free_listener(listener_t
*listener
)
74 s_assert(NULL
!= listener
);
78 * remove from listener list
80 if(listener
== ListenerPollList
)
81 ListenerPollList
= listener
->next
;
84 listener_t
*prev
= ListenerPollList
;
85 for (; prev
; prev
= prev
->next
)
87 if(listener
== prev
->next
)
89 prev
->next
= listener
->next
;
99 #define PORTNAMELEN 6 /* ":31337" */
102 * get_listener_name - return displayable listener name and port
103 * returns "host.foo.org:6667" for a given listener
106 get_listener_name(const listener_t
*listener
)
108 static char buf
[HOSTLEN
+ HOSTLEN
+ PORTNAMELEN
+ 4];
111 s_assert(NULL
!= listener
);
116 if(listener
->addr
.ss_family
== AF_INET6
)
117 port
= ntohs(((const struct sockaddr_in6
*)&listener
->addr
)->sin6_port
);
120 port
= ntohs(((const struct sockaddr_in
*)&listener
->addr
)->sin_port
);
122 ircsnprintf(buf
, sizeof(buf
), "%s[%s/%u]", me
.name
, listener
->name
, port
);
127 * show_ports - send port listing to a client
128 * inputs - pointer to client to show ports to
130 * side effects - show ports
133 show_ports(struct Client
*source_p
)
135 listener_t
*listener
= 0;
137 for (listener
= ListenerPollList
; listener
; listener
= listener
->next
)
139 sendto_one_numeric(source_p
, RPL_STATSPLINE
,
140 form_str(RPL_STATSPLINE
), 'P',
142 ntohs(listener
->addr
.ss_family
== AF_INET
? ((struct sockaddr_in
*)&listener
->addr
)->sin_port
:
143 ((struct sockaddr_in6
*)&listener
->addr
)->sin6_port
),
145 ntohs(((struct sockaddr_in
*)&listener
->addr
)->sin_port
),
147 IsOperAdmin(source_p
) ? listener
->name
: me
.name
,
148 listener
->ref_count
, (listener
->active
) ? "active" : "disabled");
153 * inetport - create a listener socket in the AF_INET or AF_INET6 domain,
154 * bind it to the port given in 'port' and listen to it
155 * returns true (1) if successful false (0) on error.
157 * If the operating system has a define for SOMAXCONN, use it, otherwise
158 * use RATBOX_SOMAXCONN
161 #undef RATBOX_SOMAXCONN
162 #define RATBOX_SOMAXCONN SOMAXCONN
166 inetport(listener_t
*listener
)
172 * At first, open a new socket
175 fd
= comm_socket(listener
->addr
.ss_family
, SOCK_STREAM
, 0, "Listener socket");
178 if(listener
->addr
.ss_family
== AF_INET6
)
180 struct sockaddr_in6
*in6
= (struct sockaddr_in6
*)&listener
->addr
;
181 if(!IN6_ARE_ADDR_EQUAL(&in6
->sin6_addr
, &in6addr_any
))
183 inetntop(AF_INET6
, &in6
->sin6_addr
, listener
->vhost
, sizeof(listener
->vhost
));
184 listener
->name
= listener
->vhost
;
189 struct sockaddr_in
*in
= (struct sockaddr_in
*)&listener
->addr
;
190 if(in
->sin_addr
.s_addr
!= INADDR_ANY
)
192 inetntop(AF_INET
, &in
->sin_addr
, listener
->vhost
, sizeof(listener
->vhost
));
193 listener
->name
= listener
->vhost
;
200 report_error("opening listener socket %s:%s",
201 get_listener_name(listener
),
202 get_listener_name(listener
), errno
);
205 else if((HARD_FDLIMIT
- 10) < fd
)
207 report_error("no more connections left for listener %s:%s",
208 get_listener_name(listener
),
209 get_listener_name(listener
), errno
);
214 * XXX - we don't want to do all this crap for a listener
215 * set_sock_opts(listener);
217 if(setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (char *) &opt
, sizeof(opt
)))
219 report_error("setting SO_REUSEADDR for listener %s:%s",
220 get_listener_name(listener
),
221 get_listener_name(listener
), errno
);
227 * Bind a port to listen for new connections if port is non-null,
228 * else assume it is already open and try get something from it.
231 if(bind(fd
, (struct sockaddr
*) &listener
->addr
, GET_SS_LEN(listener
->addr
)))
233 report_error("binding listener socket %s:%s",
234 get_listener_name(listener
),
235 get_listener_name(listener
), errno
);
240 if(listen(fd
, RATBOX_SOMAXCONN
))
242 report_error("listen failed for %s:%s",
243 get_listener_name(listener
),
244 get_listener_name(listener
), errno
);
251 /* Listen completion events are READ events .. */
253 accept_connection(fd
, listener
);
258 find_listener(struct irc_sockaddr_storage
*addr
)
260 listener_t
*listener
= NULL
;
261 listener_t
*last_closed
= NULL
;
263 for (listener
= ListenerPollList
; listener
; listener
= listener
->next
)
265 if(addr
->ss_family
!= listener
->addr
.ss_family
)
268 switch(addr
->ss_family
)
272 struct sockaddr_in
*in4
= (struct sockaddr_in
*)addr
;
273 struct sockaddr_in
*lin4
= (struct sockaddr_in
*)&listener
->addr
;
274 if(in4
->sin_addr
.s_addr
== lin4
->sin_addr
.s_addr
&&
275 in4
->sin_port
== lin4
->sin_port
)
277 if(listener
->fd
== -1)
278 last_closed
= listener
;
287 struct sockaddr_in6
*in6
= (struct sockaddr_in6
*)addr
;
288 struct sockaddr_in6
*lin6
=(struct sockaddr_in6
*)&listener
->addr
;
289 if(IN6_ARE_ADDR_EQUAL(&in6
->sin6_addr
, &lin6
->sin6_addr
) &&
290 in6
->sin6_port
== lin6
->sin6_port
)
292 if(listener
->fd
== -1)
293 last_closed
= listener
;
311 * add_listener- create a new listener
312 * port - the port number to listen on
313 * vhost_ip - if non-null must contain a valid IP address string in
314 * the format "255.255.255.255"
317 add_listener(int port
, const char *vhost_ip
, int family
)
319 listener_t
*listener
;
320 struct irc_sockaddr_storage vaddr
;
323 * if no port in conf line, don't bother
327 memset(&vaddr
, 0, sizeof(vaddr
));
328 vaddr
.ss_family
= family
;
332 if(family
== AF_INET
)
334 if(inetpton(family
, vhost_ip
, &((struct sockaddr_in
*)&vaddr
)->sin_addr
) <= 0)
340 if(inetpton(family
, vhost_ip
, &((struct sockaddr_in6
*)&vaddr
)->sin6_addr
) <= 0)
350 ((struct sockaddr_in
*)&vaddr
)->sin_addr
.s_addr
= INADDR_ANY
;
354 memcpy(&((struct sockaddr_in6
*)&vaddr
)->sin6_addr
, &in6addr_any
, sizeof(struct in6_addr
));
364 SET_SS_LEN(vaddr
, sizeof(struct sockaddr_in
));
365 ((struct sockaddr_in
*)&vaddr
)->sin_port
= htons(port
);
369 SET_SS_LEN(vaddr
, sizeof(struct sockaddr_in6
));
370 ((struct sockaddr_in6
*)&vaddr
)->sin6_port
= htons(port
);
376 if((listener
= find_listener(&vaddr
)))
378 if(listener
->fd
> -1)
383 listener
= make_listener(&vaddr
);
384 listener
->next
= ListenerPollList
;
385 ListenerPollList
= listener
;
390 if(inetport(listener
))
391 listener
->active
= 1;
393 close_listener(listener
);
397 * close_listener - close a single listener
400 close_listener(listener_t
*listener
)
402 s_assert(listener
!= NULL
);
405 if(listener
->fd
>= 0)
407 comm_close(listener
->fd
);
411 listener
->active
= 0;
413 if(listener
->ref_count
)
416 free_listener(listener
);
420 * close_listeners - close and free all listeners that are not being used
425 listener_t
*listener
;
426 listener_t
*listener_next
= 0;
428 * close all 'extra' listening ports we have
430 for (listener
= ListenerPollList
; listener
; listener
= listener_next
)
432 listener_next
= listener
->next
;
433 close_listener(listener
);
437 #define DLINE_WARNING "ERROR :You have been D-lined.\r\n"
440 * add_connection - creates a client which has just connected to us on
441 * the given fd. The sockhost field is initialized with the ip# of the host.
442 * The client is sent to the auth module for verification, and not put in
443 * any client list yet.
446 add_connection(listener_t
*listener
, int fd
, struct sockaddr
*sai
)
448 struct Client
*new_client
;
449 s_assert(NULL
!= listener
);
452 * get the client socket name from the socket
453 * the client has already been checked out in accept_connection
455 new_client
= make_client(NULL
);
457 memcpy(&new_client
->localClient
->ip
, sai
, sizeof(struct irc_sockaddr_storage
));
460 * copy address to 'sockhost' as a string, copy it to host too
461 * so we have something valid to put into error messages...
463 inetntop_sock((struct sockaddr
*)&new_client
->localClient
->ip
, new_client
->sockhost
,
464 sizeof(new_client
->sockhost
));
467 strlcpy(new_client
->host
, new_client
->sockhost
, sizeof(new_client
->host
));
470 if(new_client
->localClient
->ip
.ss_family
== AF_INET6
&& ConfigFileEntry
.dot_in_ip6_addr
== 1)
472 strlcat(new_client
->host
, ".", sizeof(new_client
->host
));
476 new_client
->localClient
->fd
= fd
;
478 new_client
->localClient
->listener
= listener
;
479 ++listener
->ref_count
;
481 if(check_reject(new_client
))
483 start_auth(new_client
);
488 accept_connection(int pfd
, void *data
)
490 static time_t last_oper_notice
= 0;
492 struct irc_sockaddr_storage sai
;
493 socklen_t addrlen
= sizeof(sai
);
495 listener_t
*listener
= data
;
496 struct ConfItem
*aconf
;
499 s_assert(listener
!= NULL
);
503 * There may be many reasons for error return, but
504 * in otherwise correctly working environment the
505 * probable cause is running out of file descriptors
506 * (EMFILE, ENFILE or others?). The man pages for
507 * accept don't seem to list these as possible,
508 * although it's obvious that it may happen here.
509 * Thus no specific errors are tested at this
510 * point, just assume that connections cannot
511 * be accepted until some old is closed first.
514 fd
= comm_accept(listener
->fd
, (struct sockaddr
*)&sai
, &addrlen
);
517 /* Re-register a new IO request for the next accept .. */
518 comm_setselect(listener
->fd
, FDLIST_SERVICE
,
519 COMM_SELECT_READ
, accept_connection
, listener
, 0);
523 /* This needs to be done here, otherwise we break dlines */
524 mangle_mapped_sockaddr((struct sockaddr
*)&sai
);
527 * check for connection limit
529 if((MAXCONNECTIONS
- 10) < fd
)
531 ++ServerStats
->is_ref
;
533 * slow down the whining to opers bit
535 if((last_oper_notice
+ 20) <= CurrentTime
)
537 sendto_realops_snomask(SNO_GENERAL
, L_ALL
,
538 "All connections in use. (%s)",
539 get_listener_name(listener
));
540 last_oper_notice
= CurrentTime
;
543 write(fd
, "ERROR :All connections in use\r\n", 32);
545 /* Re-register a new IO request for the next accept .. */
546 comm_setselect(listener
->fd
, FDLIST_SERVICE
,
547 COMM_SELECT_READ
, accept_connection
, listener
, 0);
551 /* Do an initial check we aren't connecting too fast or with too many
553 if((aconf
= conf_connect_allowed((struct sockaddr
*)&sai
, sai
.ss_family
)) != NULL
)
555 ServerStats
->is_ref
++;
557 if(ConfigFileEntry
.dline_with_reason
)
559 if (ircsnprintf(buf
, sizeof(buf
), "ERROR :*** Banned: %s\r\n", aconf
->passwd
) >= (sizeof(buf
)-1))
561 buf
[sizeof(buf
) - 3] = '\r';
562 buf
[sizeof(buf
) - 2] = '\n';
563 buf
[sizeof(buf
) - 1] = '\0';
567 ircsprintf(buf
, "ERROR :You have been D-lined.\r\n");
569 write(fd
, buf
, strlen(buf
));
572 /* Re-register a new IO request for the next accept .. */
573 comm_setselect(listener
->fd
, FDLIST_SERVICE
,
574 COMM_SELECT_READ
, accept_connection
, listener
, 0);
578 ServerStats
->is_ac
++;
579 add_connection(listener
, fd
, (struct sockaddr
*)&sai
);
581 /* Re-register a new IO request for the next accept .. */
582 comm_setselect(listener
->fd
, FDLIST_SERVICE
, COMM_SELECT_READ
,
583 accept_connection
, listener
, 0);