]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conn.c
Handle "throttling" in a single function
[ngircd-alex.git] / src / ngircd / conn.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #define CONN_MODULE
13
14 #include "portab.h"
15
16 /**
17  * @file
18  * Connection management
19  */
20
21 /* Additionan debug messages related to buffer handling: 0=off / 1=on */
22 #define DEBUG_BUFFER 0
23
24 #include <assert.h>
25 #ifdef PROTOTYPES
26 # include <stdarg.h>
27 #else
28 # include <varargs.h>
29 #endif
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <errno.h>
34 #include <string.h>
35 #include <strings.h>
36 #include <sys/socket.h>
37 #include <sys/stat.h>
38 #include <sys/types.h>
39 #include <time.h>
40 #include <netinet/in.h>
41
42 #ifdef HAVE_NETINET_IP_H
43 # ifdef HAVE_NETINET_IN_SYSTM_H
44 #  include <netinet/in_systm.h>
45 # endif
46 # include <netinet/ip.h>
47 #endif
48
49 #ifdef TCPWRAP
50 # include <tcpd.h>                      /* for TCP Wrappers */
51 #endif
52
53 #include "conn.h"
54
55 #include "ngircd.h"
56 #include "class.h"
57 #ifdef ICONV
58 # include "conn-encoding.h"
59 #endif
60 #include "conn-ssl.h"
61 #include "conn-zip.h"
62 #include "conn-func.h"
63 #include "io.h"
64 #include "log.h"
65 #include "ng_ipaddr.h"
66 #include "parse.h"
67 #include "resolve.h"
68
69 #define SERVER_WAIT (NONE - 1)          /** "Wait for outgoing connection" flag */
70
71 #define MAX_COMMANDS 3                  /** Max. commands per loop for users */
72 #define MAX_COMMANDS_SERVER_MIN 10      /** Min. commands per loop for servers */
73 #define MAX_COMMANDS_SERVICE 10         /** Max. commands per loop for services */
74
75 #define SD_LISTEN_FDS_START 3           /** systemd(8) socket activation offset */
76
77 #define THROTTLE_CMDS 1                 /** Throttling: max commands reached */
78 #define THROTTLE_BPS 2                  /** Throttling: max bps reached */
79
80 static bool Handle_Write PARAMS(( CONN_ID Idx ));
81 static bool Conn_Write PARAMS(( CONN_ID Idx, char *Data, size_t Len ));
82 static int New_Connection PARAMS(( int Sock, bool IsSSL ));
83 static CONN_ID Socket2Index PARAMS(( int Sock ));
84 static void Read_Request PARAMS(( CONN_ID Idx ));
85 static unsigned int Handle_Buffer PARAMS(( CONN_ID Idx ));
86 static void Check_Connections PARAMS(( void ));
87 static void Check_Servers PARAMS(( void ));
88 static void Init_Conn_Struct PARAMS(( CONN_ID Idx ));
89 static bool Init_Socket PARAMS(( int Sock ));
90 static void New_Server PARAMS(( int Server, ng_ipaddr_t *dest ));
91 static void Simple_Message PARAMS(( int Sock, const char *Msg ));
92 static int NewListener PARAMS(( const char *listen_addr, UINT16 Port ));
93 static void Account_Connection PARAMS((void));
94 static void Throttle_Connection PARAMS((const CONN_ID Idx, CLIENT *Client,
95                                         const int Reason, unsigned int Value));
96
97 static array My_Listeners;
98 static array My_ConnArray;
99 static size_t NumConnections, NumConnectionsMax, NumConnectionsAccepted;
100
101 #ifdef TCPWRAP
102 int allow_severity = LOG_INFO;
103 int deny_severity = LOG_ERR;
104 #endif
105
106 static void server_login PARAMS((CONN_ID idx));
107
108 #ifdef SSL_SUPPORT
109 extern struct SSLOptions Conf_SSLOptions;
110 static bool SSL_WantRead PARAMS((const CONNECTION *c));
111 static bool SSL_WantWrite PARAMS((const CONNECTION *c));
112 static void cb_listen_ssl PARAMS((int sock, short irrelevant));
113 static void cb_connserver_login_ssl PARAMS((int sock, short what));
114 static void cb_clientserver_ssl PARAMS((int sock, short what));
115 #endif
116 static void cb_Read_Resolver_Result PARAMS((int sock, UNUSED short what));
117 static void cb_Connect_to_Server PARAMS((int sock, UNUSED short what));
118 static void cb_clientserver PARAMS((int sock, short what));
119
120 time_t idle_t = 0;
121
122 /**
123  * Get number of sockets available from systemd(8).
124  *
125  * ngIRCd needs to implement its own sd_listen_fds(3) function and can't
126  * use the one provided by systemd itself, because the sockets will be
127  * used in a forked child process with a new PID, and this would trigger
128  * an error in the standard implementation.
129  *
130  * @return Number of sockets available, -1 if sockets have already been
131  *         initialized, or 0 when no sockets have been passed.
132  */
133 static int
134 my_sd_listen_fds(void)
135 {
136         const char *e;
137         int count;
138
139         /* Check if LISTEN_PID exists; but we ignore the result, because
140          * normally ngircd forks a child before checking this, and therefore
141          * the PID set in the environment is always wrong ... */
142         e = getenv("LISTEN_PID");
143         if (!e || !*e)
144                 return 0;
145
146         e = getenv("LISTEN_FDS");
147         if (!e || !*e)
148                 return -1;
149         count = atoi(e);
150 #ifdef HAVE_UNSETENV
151         unsetenv("LISTEN_FDS");
152 #endif
153
154         return count;
155 }
156
157 /**
158  * IO callback for listening sockets: handle new connections. This callback
159  * gets called when a new non-SSL connection should be accepted.
160  *
161  * @param sock          Socket descriptor.
162  * @param irrelevant    (ignored IO specification)
163  */
164 static void
165 cb_listen(int sock, short irrelevant)
166 {
167         (void) irrelevant;
168         (void) New_Connection(sock, false);
169 }
170
171 /**
172  * IO callback for new outgoing non-SSL server connections.
173  *
174  * @param sock  Socket descriptor.
175  * @param what  IO specification (IO_WANTREAD/IO_WANTWRITE/...).
176  */
177 static void
178 cb_connserver(int sock, UNUSED short what)
179 {
180         int res, err, server;
181         socklen_t sock_len;
182         CONN_ID idx = Socket2Index( sock );
183
184         if (idx <= NONE) {
185                 LogDebug("cb_connserver wants to write on unknown socket?!");
186                 io_close(sock);
187                 return;
188         }
189
190         assert(what & IO_WANTWRITE);
191
192         /* Make sure that the server is still configured; it could have been
193          * removed in the meantime! */
194         server = Conf_GetServer(idx);
195         if (server < 0) {
196                 Log(LOG_ERR, "Connection on socket %d to \"%s\" aborted!",
197                     sock, My_Connections[idx].host);
198                 Conn_Close(idx, "Connection aborted", NULL, false);
199                 return;
200         }
201
202         /* connect() finished, get result. */
203         sock_len = (socklen_t)sizeof(err);
204         res = getsockopt(My_Connections[idx].sock, SOL_SOCKET, SO_ERROR,
205                          &err, &sock_len );
206         assert(sock_len == sizeof(err));
207
208         /* Error while connecting? */
209         if ((res != 0) || (err != 0)) {
210                 if (res != 0)
211                         Log(LOG_CRIT, "getsockopt (connection %d): %s!",
212                             idx, strerror(errno));
213                 else
214                         Log(LOG_CRIT,
215                             "Can't connect socket to \"%s:%d\" (connection %d): %s!",
216                             My_Connections[idx].host, Conf_Server[server].port,
217                             idx, strerror(err));
218
219                 Conn_Close(idx, "Can't connect", NULL, false);
220
221                 if (ng_ipaddr_af(&Conf_Server[server].dst_addr[0])) {
222                         /* more addresses to try... */
223                         New_Server(server, &Conf_Server[server].dst_addr[0]);
224                         /* connection to dst_addr[0] is now in progress, so
225                          * remove this address... */
226                         Conf_Server[server].dst_addr[0] =
227                                 Conf_Server[server].dst_addr[1];
228                         memset(&Conf_Server[server].dst_addr[1], 0,
229                                sizeof(Conf_Server[server].dst_addr[1]));
230                 }
231                 return;
232         }
233
234         /* connect() succeeded, remove all additional addresses */
235         memset(&Conf_Server[server].dst_addr, 0,
236                sizeof(Conf_Server[server].dst_addr));
237
238         Conn_OPTION_DEL( &My_Connections[idx], CONN_ISCONNECTING );
239 #ifdef SSL_SUPPORT
240         if ( Conn_OPTION_ISSET( &My_Connections[idx], CONN_SSL_CONNECT )) {
241                 io_event_setcb( sock, cb_connserver_login_ssl );
242                 io_event_add( sock, IO_WANTWRITE|IO_WANTREAD );
243                 return;
244         }
245 #endif
246         server_login(idx);
247 }
248
249 /**
250  * Login to a remote server.
251  *
252  * @param idx   Connection index.
253  */
254 static void
255 server_login(CONN_ID idx)
256 {
257         Log(LOG_INFO,
258             "Connection %d (socket %d) with \"%s:%d\" established. Now logging in ...",
259             idx, My_Connections[idx].sock, My_Connections[idx].host,
260             Conf_Server[Conf_GetServer(idx)].port);
261
262         io_event_setcb( My_Connections[idx].sock, cb_clientserver);
263         io_event_add( My_Connections[idx].sock, IO_WANTREAD|IO_WANTWRITE);
264
265         /* Send PASS and SERVER command to peer */
266         Conn_WriteStr(idx, "PASS %s %s",
267                       Conf_Server[Conf_GetServer( idx )].pwd_out, NGIRCd_ProtoID);
268         Conn_WriteStr(idx, "SERVER %s :%s",
269                       Conf_ServerName, Conf_ServerInfo);
270 }
271
272 /**
273  * IO callback for established non-SSL client and server connections.
274  *
275  * @param sock  Socket descriptor.
276  * @param what  IO specification (IO_WANTREAD/IO_WANTWRITE/...).
277  */
278 static void
279 cb_clientserver(int sock, short what)
280 {
281         CONN_ID idx = Socket2Index(sock);
282
283         assert(idx >= 0);
284
285         if (idx < 0) {
286                 io_close(sock);
287                 return;
288         }
289 #ifdef SSL_SUPPORT
290         if (what & IO_WANTREAD
291             || (Conn_OPTION_ISSET(&My_Connections[idx], CONN_SSL_WANT_WRITE))) {
292                 /* if TLS layer needs to write additional data, call
293                  * Read_Request() instead so that SSL/TLS can continue */
294                 Read_Request(idx);
295         }
296 #else
297         if (what & IO_WANTREAD)
298                 Read_Request(idx);
299 #endif
300         if (what & IO_WANTWRITE)
301                 Handle_Write(idx);
302 }
303
304 /**
305  * Initialize connection module.
306  */
307 GLOBAL void
308 Conn_Init( void )
309 {
310         CONN_ID i;
311
312         Pool_Size = CONNECTION_POOL;
313         if ((Conf_MaxConnections > 0) &&
314                 (Pool_Size > Conf_MaxConnections))
315                         Pool_Size = Conf_MaxConnections;
316
317         if (!array_alloc(&My_ConnArray, sizeof(CONNECTION), (size_t)Pool_Size)) {
318                 Log(LOG_EMERG, "Can't allocate memory! [Conn_Init]");
319                 exit(1);
320         }
321
322         /* FIXME: My_Connetions/Pool_Size is needed by other parts of the
323          * code; remove them! */
324         My_Connections = (CONNECTION*) array_start(&My_ConnArray);
325
326         LogDebug("Allocated connection pool for %d items (%ld bytes).",
327                 array_length(&My_ConnArray, sizeof(CONNECTION)),
328                 array_bytes(&My_ConnArray));
329
330         assert(array_length(&My_ConnArray, sizeof(CONNECTION)) >= (size_t)Pool_Size);
331         
332         array_free( &My_Listeners );
333
334         for (i = 0; i < Pool_Size; i++)
335                 Init_Conn_Struct(i);
336 } /* Conn_Init */
337
338 /**
339  * Clean up connection module.
340  */
341 GLOBAL void
342 Conn_Exit( void )
343 {
344         CONN_ID idx;
345
346         Conn_ExitListeners();
347
348         LogDebug("Shutting down all connections ..." );
349         for( idx = 0; idx < Pool_Size; idx++ ) {
350                 if( My_Connections[idx].sock > NONE ) {
351                         Conn_Close( idx, NULL, NGIRCd_SignalRestart ?
352                                 "Server going down (restarting)":"Server going down", true );
353                 }
354         }
355
356         array_free(&My_ConnArray);
357         My_Connections = NULL;
358         Pool_Size = 0;
359         io_library_shutdown();
360 } /* Conn_Exit */
361
362 /**
363  * Close all sockets (file descriptors) of open connections.
364  * This is useful in forked child processes, for example, to make sure that
365  * they don't hold connections open that the main process wants to close.
366  */
367 GLOBAL void
368 Conn_CloseAllSockets(int ExceptOf)
369 {
370         CONN_ID idx;
371
372         for(idx = 0; idx < Pool_Size; idx++) {
373                 if(My_Connections[idx].sock > NONE &&
374                    My_Connections[idx].sock != ExceptOf)
375                         close(My_Connections[idx].sock);
376         }
377 }
378
379 /**
380  * Initialize listening ports.
381  *
382  * @param a             Array containing the ports the daemon should listen on.
383  * @param listen_addr   Address the socket should listen on (can be "0.0.0.0").
384  * @param func          IO callback function to register.
385  * @returns             Number of listening sockets created.
386  */
387 static unsigned int
388 Init_Listeners(array *a, const char *listen_addr, void (*func)(int,short))
389 {
390         unsigned int created = 0;
391         size_t len;
392         int fd;
393         UINT16 *port;
394
395         len = array_length(a, sizeof (UINT16));
396         port = array_start(a);
397         while (len--) {
398                 fd = NewListener(listen_addr, *port);
399                 if (fd < 0) {
400                         port++;
401                         continue;
402                 }
403                 if (!io_event_create( fd, IO_WANTREAD, func )) {
404                         Log(LOG_ERR,
405                             "io_event_create(): Can't add fd %d (port %u): %s!",
406                             fd, (unsigned int) *port, strerror(errno));
407                         close(fd);
408                         port++;
409                         continue;
410                 }
411                 created++;
412                 port++;
413         }
414         return created;
415 }
416
417 /**
418  * Initialize all listening sockets.
419  *
420  * @returns     Number of created listening sockets
421  */
422 GLOBAL unsigned int
423 Conn_InitListeners( void )
424 {
425         /* Initialize ports on which the server should accept connections */
426         unsigned int created = 0;
427         char *af_str, *copy, *listen_addr;
428         int count, fd, i, addr_len;
429         ng_ipaddr_t addr;
430
431         assert(Conf_ListenAddress);
432
433         count = my_sd_listen_fds();
434         if (count < 0) {
435                 Log(LOG_INFO,
436                     "Not re-initializing listening sockets of systemd(8) ...");
437                 return 0;
438         }
439         if (count > 0) {
440                 /* systemd(8) passed sockets to us, so don't try to initialize
441                  * listening sockets on our own but use the passed ones */
442                 LogDebug("Initializing %d systemd sockets ...", count);
443                 for (i = 0; i < count; i++) {
444                         fd = SD_LISTEN_FDS_START + i;
445                         addr_len = (int)sizeof(addr);
446                         getsockname(fd, (struct sockaddr *)&addr,
447                                     (socklen_t*)&addr_len);
448 #ifdef WANT_IPV6
449                         if (addr.sin4.sin_family != AF_INET
450                             && addr.sin4.sin_family != AF_INET6)
451 #else
452                         if (addr.sin4.sin_family != AF_INET)
453 #endif
454                         {
455                                 /* Socket is of unsupported type! For example,
456                                  * systemd passed in an IPv6 socket but ngIRCd
457                                  * isn't compiled with IPv6 support. */
458                                 switch (addr.sin4.sin_family)
459                                 {
460                                         case AF_UNSPEC: af_str = "AF_UNSPEC"; break;
461                                         case AF_UNIX: af_str = "AF_UNIX"; break;
462                                         case AF_INET: af_str = "AF_INET"; break;
463 #ifdef AF_INET6
464                                         case AF_INET6: af_str = "AF_INET6"; break;
465 #endif
466 #ifdef AF_NETLINK
467                                         case AF_NETLINK: af_str = "AF_NETLINK"; break;
468 #endif
469                                         default: af_str = "unknown"; break;
470                                 }
471                                 Log(LOG_CRIT,
472                                     "Socket %d is of unsupported type \"%s\" (%d), have to ignore it!",
473                                     fd, af_str, addr.sin4.sin_family);
474                                 close(fd);
475                                 continue;
476                         }
477
478                         Init_Socket(fd);
479                         if (!io_event_create(fd, IO_WANTREAD, cb_listen)) {
480                                 Log(LOG_ERR,
481                                     "io_event_create(): Can't add fd %d: %s!",
482                                     fd, strerror(errno));
483                                 continue;
484                         }
485                         Log(LOG_INFO,
486                             "Initialized socket %d from systemd(8): %s:%d.", fd,
487                             ng_ipaddr_tostr(&addr), ng_ipaddr_getport(&addr));
488                         created++;
489                 }
490                 return created;
491         }
492
493         /* not using systemd socket activation, initialize listening sockets: */
494
495         /* can't use Conf_ListenAddress directly, see below */
496         copy = strdup(Conf_ListenAddress);
497         if (!copy) {
498                 Log(LOG_CRIT, "Cannot copy %s: %s", Conf_ListenAddress,
499                     strerror(errno));
500                 return 0;
501         }
502         listen_addr = strtok(copy, ",");
503
504         while (listen_addr) {
505                 ngt_TrimStr(listen_addr);
506                 if (*listen_addr) {
507                         created += Init_Listeners(&Conf_ListenPorts,
508                                                   listen_addr, cb_listen);
509 #ifdef SSL_SUPPORT
510                         created += Init_Listeners(&Conf_SSLOptions.ListenPorts,
511                                                   listen_addr, cb_listen_ssl);
512 #endif
513                 }
514
515                 listen_addr = strtok(NULL, ",");
516         }
517
518         /* Can't free() Conf_ListenAddress here: on REHASH, if the config file
519          * cannot be re-loaded, we'd end up with a NULL Conf_ListenAddress.
520          * Instead, free() takes place in conf.c, before the config file
521          * is being parsed. */
522         free(copy);
523
524         return created;
525 } /* Conn_InitListeners */
526
527 /**
528  * Shut down all listening sockets.
529  */
530 GLOBAL void
531 Conn_ExitListeners( void )
532 {
533         /* Close down all listening sockets */
534         int *fd;
535         size_t arraylen;
536
537         /* Get number of listening sockets to shut down. There can be none
538          * if ngIRCd has been "socket activated" by systemd. */
539         arraylen = array_length(&My_Listeners, sizeof (int));
540         if (arraylen < 1)
541                 return;
542
543         Log(LOG_INFO,
544             "Shutting down all listening sockets (%d total) ...", arraylen);
545         fd = array_start(&My_Listeners);
546         while(arraylen--) {
547                 assert(fd != NULL);
548                 assert(*fd >= 0);
549                 io_close(*fd);
550                 LogDebug("Listening socket %d closed.", *fd );
551                 fd++;
552         }
553         array_free(&My_Listeners);
554 } /* Conn_ExitListeners */
555
556 /**
557  * Bind a socket to a specific (source) address.
558  *
559  * @param addr                  Address structure.
560  * @param listen_addrstr        Source address as string.
561  * @param Port                  Port number.
562  * @returns                     true on success, false otherwise.
563  */
564 static bool
565 InitSinaddrListenAddr(ng_ipaddr_t *addr, const char *listen_addrstr, UINT16 Port)
566 {
567         bool ret;
568
569         ret = ng_ipaddr_init(addr, listen_addrstr, Port);
570         if (!ret) {
571                 assert(listen_addrstr);
572                 Log(LOG_CRIT,
573                     "Can't bind to [%s]:%u: can't convert ip address \"%s\"!",
574                     listen_addrstr, Port, listen_addrstr);
575         }
576         return ret;
577 }
578
579 /**
580  * Set a socket to "IPv6 only". If the given socket doesn't belong to the
581  * AF_INET6 family, or the operating system doesn't support this functionality,
582  * this function retruns silently.
583  *
584  * @param af    Address family of the socket.
585  * @param sock  Socket handle.
586  */
587 static void
588 set_v6_only(int af, int sock)
589 {
590 #if defined(IPV6_V6ONLY) && defined(WANT_IPV6)
591         int on = 1;
592
593         if (af != AF_INET6)
594                 return;
595
596         if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, (socklen_t)sizeof(on)))
597                 Log(LOG_ERR, "Could not set IPV6_V6ONLY: %s", strerror(errno));
598 #else
599         (void)af;
600         (void)sock;
601 #endif
602 }
603
604 /**
605  * Initialize new listening port.
606  *
607  * @param listen_addr   Local address to bind the socet to (can be 0.0.0.0).
608  * @param Port          Port number on which the new socket should be listening.
609  * @returns             file descriptor of the socket or -1 on failure.
610  */
611 static int
612 NewListener(const char *listen_addr, UINT16 Port)
613 {
614         /* Create new listening socket on specified port */
615         ng_ipaddr_t addr;
616         int sock, af;
617
618         if (!InitSinaddrListenAddr(&addr, listen_addr, Port))
619                 return -1;
620
621         af = ng_ipaddr_af(&addr);
622         sock = socket(af, SOCK_STREAM, 0);
623         if (sock < 0) {
624                 Log(LOG_CRIT, "Can't create socket (af %d) : %s!", af,
625                     strerror(errno));
626                 return -1;
627         }
628
629         set_v6_only(af, sock);
630
631         if (!Init_Socket(sock))
632                 return -1;
633
634         if (bind(sock, (struct sockaddr *)&addr, ng_ipaddr_salen(&addr)) != 0) {
635                 Log(LOG_CRIT, "Can't bind socket to address %s:%d - %s!",
636                     ng_ipaddr_tostr(&addr), Port, strerror(errno));
637                 close(sock);
638                 return -1;
639         }
640
641         if (listen(sock, 10) != 0) {
642                 Log(LOG_CRIT, "Can't listen on socket: %s!", strerror(errno));
643                 close(sock);
644                 return -1;
645         }
646
647         /* keep fd in list so we can close it when ngircd restarts/shuts down */
648         if (!array_catb(&My_Listeners, (char *)&sock, sizeof(int))) {
649                 Log(LOG_CRIT, "Can't add socket to My_Listeners array: %s!",
650                     strerror(errno));
651                 close(sock);
652                 return -1;
653         }
654
655         Log(LOG_INFO, "Now listening on [%s]:%d (socket %d).",
656             ng_ipaddr_tostr(&addr), Port, sock);
657         return sock;
658 } /* NewListener */
659
660 /**
661  * "Main Loop": Loop until shutdown or restart is signalled.
662  *
663  * This function loops until a shutdown or restart of ngIRCd is signalled and
664  * calls io_dispatch() to check for readable and writable sockets every second.
665  * It checks for status changes on pending connections (e. g. when a hostname
666  * has been resolved), checks for "penalties" and timeouts, and handles the
667  * input buffers.
668  */
669 GLOBAL void
670 Conn_Handler(void)
671 {
672         int i;
673         size_t wdatalen;
674         struct timeval tv;
675         time_t t;
676
677         while (!NGIRCd_SignalQuit && !NGIRCd_SignalRestart) {
678                 t = time(NULL);
679
680                 /* Check configured servers and established links */
681                 Check_Servers();
682                 Check_Connections();
683
684                 /* Expire outdated class/list items */
685                 Class_Expire();
686
687                 /* Look for non-empty read buffers ... */
688                 for (i = 0; i < Pool_Size; i++) {
689                         if ((My_Connections[i].sock > NONE)
690                             && (array_bytes(&My_Connections[i].rbuf) > 0)) {
691                                 /* ... and try to handle the received data */
692                                 Handle_Buffer(i);
693                         }
694                 }
695
696                 /* Look for non-empty write buffers ... */
697                 for (i = 0; i < Pool_Size; i++) {
698                         if (My_Connections[i].sock <= NONE)
699                                 continue;
700
701                         wdatalen = array_bytes(&My_Connections[i].wbuf);
702 #ifdef ZLIB
703                         if (wdatalen > 0 ||
704                             array_bytes(&My_Connections[i].zip.wbuf) > 0)
705 #else
706                         if (wdatalen > 0)
707 #endif
708                         {
709 #ifdef SSL_SUPPORT
710                                 if (SSL_WantRead(&My_Connections[i]))
711                                         continue;
712 #endif
713                                 io_event_add(My_Connections[i].sock,
714                                              IO_WANTWRITE);
715                         }
716                 }
717
718                 /* Check from which sockets we possibly could read ... */
719                 for (i = 0; i < Pool_Size; i++) {
720                         if (My_Connections[i].sock <= NONE)
721                                 continue;
722 #ifdef SSL_SUPPORT
723                         if (SSL_WantWrite(&My_Connections[i]))
724                                 /* TLS/SSL layer needs to write data; deal
725                                  * with this first! */
726                                 continue;
727 #endif
728                         if (Proc_InProgress(&My_Connections[i].proc_stat)) {
729                                 /* Wait for completion of forked subprocess
730                                  * and ignore the socket in the meantime ... */
731                                 io_event_del(My_Connections[i].sock,
732                                              IO_WANTREAD);
733                                 continue;
734                         }
735
736                         if (Conn_OPTION_ISSET(&My_Connections[i], CONN_ISCONNECTING))
737                                 /* Wait for completion of connect() ... */
738                                 continue;
739
740                         if (My_Connections[i].delaytime > t) {
741                                 /* There is a "penalty time" set: ignore socket! */
742                                 io_event_del(My_Connections[i].sock,
743                                              IO_WANTREAD);
744                                 continue;
745                         }
746
747                         io_event_add(My_Connections[i].sock, IO_WANTREAD);
748                 }
749
750                 /* Set the timeout for reading from the network to 1 second,
751                  * which is the granularity with witch we handle "penalty
752                  * times" for example.
753                  * Note: tv_sec/usec are undefined(!) after io_dispatch()
754                  * returns, so we have to set it before each call to it! */
755                 tv.tv_usec = 0;
756                 tv.tv_sec = 1;
757
758                 /* Wait for activity ... */
759                 i = io_dispatch(&tv);
760                 if (i == -1 && errno != EINTR) {
761                         Log(LOG_EMERG, "Conn_Handler(): io_dispatch(): %s!",
762                             strerror(errno));
763                         Log(LOG_ALERT, "%s exiting due to fatal errors!",
764                             PACKAGE_NAME);
765                         exit(1);
766                 }
767
768                 /* Should ngIRCd timeout when idle? */
769                 if (Conf_IdleTimeout > 0 && NumConnectionsAccepted > 0
770                     && idle_t > 0 && time(NULL) - idle_t >= Conf_IdleTimeout) {
771                         LogDebug("Server idle timeout reached: %d second%s. Initiating shutdown ...",
772                                  Conf_IdleTimeout,
773                                  Conf_IdleTimeout == 1 ? "" : "s");
774                         NGIRCd_SignalQuit = true;
775                 }
776         }
777
778         if (NGIRCd_SignalQuit)
779                 Log(LOG_NOTICE | LOG_snotice, "Server going down NOW!");
780         else if (NGIRCd_SignalRestart)
781                 Log(LOG_NOTICE | LOG_snotice, "Server restarting NOW!");
782 } /* Conn_Handler */
783
784 /**
785  * Write a text string into the socket of a connection.
786  *
787  * This function automatically appends CR+LF to the string and validates that
788  * the result is a valid IRC message (oversized messages are shortened, for
789  * example). Then it calls the Conn_Write() function to do the actual sending.
790  *
791  * @param Idx           Index fo the connection.
792  * @param Format        Format string, see printf().
793  * @returns             true on success, false otherwise.
794  */
795 #ifdef PROTOTYPES
796 GLOBAL bool
797 Conn_WriteStr(CONN_ID Idx, const char *Format, ...)
798 #else
799 GLOBAL bool 
800 Conn_WriteStr(Idx, Format, va_alist)
801 CONN_ID Idx;
802 const char *Format;
803 va_dcl
804 #endif
805 {
806         char buffer[COMMAND_LEN];
807 #ifdef ICONV
808         char *ptr, *message;
809 #endif
810         size_t len;
811         bool ok;
812         va_list ap;
813         int r;
814
815         assert( Idx > NONE );
816         assert( Format != NULL );
817
818 #ifdef PROTOTYPES
819         va_start( ap, Format );
820 #else
821         va_start( ap );
822 #endif
823         r = vsnprintf(buffer, COMMAND_LEN - 2, Format, ap);
824         if (r >= COMMAND_LEN - 2 || r == -1) {
825                 /*
826                  * The string that should be written to the socket is longer
827                  * than the allowed size of COMMAND_LEN bytes (including both
828                  * the CR and LF characters). This can be caused by the
829                  * IRC_WriteXXX() functions when the prefix of this server had
830                  * to be added to an already "quite long" command line which
831                  * has been received from a regular IRC client, for example.
832                  * 
833                  * We are not allowed to send such "oversized" messages to
834                  * other servers and clients, see RFC 2812 2.3 and 2813 3.3
835                  * ("these messages SHALL NOT exceed 512 characters in length,
836                  * counting all characters including the trailing CR-LF").
837                  *
838                  * So we have a big problem here: we should send more bytes
839                  * to the network than we are allowed to and we don't know
840                  * the originator (any more). The "old" behavior of blaming
841                  * the receiver ("next hop") is a bad idea (it could be just
842                  * an other server only routing the message!), so the only
843                  * option left is to shorten the string and to hope that the
844                  * result is still somewhat useful ...
845                  *
846                  * Note:
847                  * C99 states that vsnprintf() "returns the number of characters
848                  * that would have been printed if the n were unlimited"; but
849                  * according to the Linux manual page "glibc until 2.0.6 would
850                  * return -1 when the output was truncated" -- so we have to
851                  * handle both cases ...
852                  *                                                   -alex-
853                  */
854
855                 strcpy (buffer + sizeof(buffer) - strlen(CUT_TXTSUFFIX) - 2 - 1,
856                         CUT_TXTSUFFIX);
857         }
858
859 #ifdef ICONV
860         ptr = strchr(buffer + 1, ':');
861         if (ptr) {
862                 ptr++;
863                 message = Conn_EncodingTo(Idx, ptr);
864                 if (message != ptr)
865                         strlcpy(ptr, message, sizeof(buffer) - (ptr - buffer));
866         }
867 #endif
868
869 #ifdef SNIFFER
870         if (NGIRCd_Sniffer)
871                 Log(LOG_DEBUG, " -> connection %d: '%s'.", Idx, buffer);
872 #endif
873
874         len = strlcat( buffer, "\r\n", sizeof( buffer ));
875         ok = Conn_Write(Idx, buffer, len);
876         My_Connections[Idx].msg_out++;
877
878         va_end( ap );
879         return ok;
880 } /* Conn_WriteStr */
881
882 GLOBAL char*
883 Conn_Password( CONN_ID Idx )
884 {
885         assert( Idx > NONE );
886         if (My_Connections[Idx].pwd == NULL)
887                 return (char*)"\0";
888         else
889                 return My_Connections[Idx].pwd;
890 } /* Conn_Password */
891
892 GLOBAL void
893 Conn_SetPassword( CONN_ID Idx, const char *Pwd )
894 {
895         assert( Idx > NONE );
896
897         if (My_Connections[Idx].pwd)
898                 free(My_Connections[Idx].pwd);
899
900         My_Connections[Idx].pwd = strdup(Pwd);
901         if (My_Connections[Idx].pwd == NULL) {
902                 Log(LOG_EMERG, "Can't allocate memory! [Conn_SetPassword]");
903                 exit(1);
904         }
905 } /* Conn_SetPassword */
906
907 /**
908  * Append Data to the outbound write buffer of a connection.
909  *
910  * @param Idx   Index of the connection.
911  * @param Data  pointer to the data.
912  * @param Len   length of Data.
913  * @returns     true on success, false otherwise.
914  */
915 static bool
916 Conn_Write( CONN_ID Idx, char *Data, size_t Len )
917 {
918         CLIENT *c;
919         size_t writebuf_limit = WRITEBUFFER_MAX_LEN;
920         assert( Idx > NONE );
921         assert( Data != NULL );
922         assert( Len > 0 );
923
924         /* Is the socket still open? A previous call to Conn_Write()
925          * may have closed the connection due to a fatal error.
926          * In this case it is sufficient to return an error, as well. */
927         if (My_Connections[Idx].sock <= NONE) {
928                 LogDebug("Skipped write on closed socket (connection %d).", Idx);
929                 return false;
930         }
931
932         /* Make sure that there still exists a CLIENT structure associated
933          * with this connection and check if this is a server or not: */
934         c = Conn_GetClient(Idx);
935         if (c) {
936                 /* Servers do get special write buffer limits, so they can
937                  * generate all the messages that are required while peering. */
938                 if (Client_Type(c) == CLIENT_SERVER)
939                         writebuf_limit = WRITEBUFFER_SLINK_LEN;
940         } else
941                 LogDebug("Write on socket without client (connection %d)!?", Idx);
942
943 #ifdef ZLIB
944         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP )) {
945                 /* Compressed link:
946                  * Zip_Buffer() does all the dirty work for us: it flushes
947                  * the (pre-)compression buffers if required and handles
948                  * all error conditions. */
949                 if (!Zip_Buffer(Idx, Data, Len))
950                         return false;
951         }
952         else
953 #endif
954         {
955                 /* Uncompressed link:
956                  * Check if outbound buffer has enough space for the data. */
957                 if (array_bytes(&My_Connections[Idx].wbuf) + Len >=
958                     WRITEBUFFER_FLUSH_LEN) {
959                         /* Buffer is full, flush it. Handle_Write deals with
960                          * low-level errors, if any. */
961                         if (!Handle_Write(Idx))
962                                 return false;
963                 }
964
965                 /* When the write buffer is still too big after flushing it,
966                  * the connection will be killed. */
967                 if (array_bytes(&My_Connections[Idx].wbuf) + Len >=
968                     writebuf_limit) {
969                         Log(LOG_NOTICE,
970                             "Write buffer space exhausted (connection %d, limit is %lu bytes, %lu bytes new, %lu bytes pending)",
971                             Idx, writebuf_limit, Len,
972                             (unsigned long)array_bytes(&My_Connections[Idx].wbuf));
973                         Conn_Close(Idx, "Write buffer space exhausted", NULL, false);
974                         return false;
975                 }
976
977                 /* Copy data to write buffer */
978                 if (!array_catb(&My_Connections[Idx].wbuf, Data, Len))
979                         return false;
980
981                 My_Connections[Idx].bytes_out += Len;
982         }
983
984         /* Adjust global write counter */
985         WCounter += Len;
986
987         return true;
988 } /* Conn_Write */
989
990 /**
991  * Shut down a connection.
992  *
993  * @param Idx           Connection index.
994  * @param LogMsg        Message to write to the log or NULL. If no LogMsg
995  *                      is given, the FwdMsg is logged.
996  * @param FwdMsg        Message to forward to remote servers.
997  * @param InformClient  If true, inform the client on the connection which is
998  *                      to be shut down of the reason (FwdMsg) and send
999  *                      connection statistics before disconnecting it.
1000  */
1001 GLOBAL void
1002 Conn_Close(CONN_ID Idx, const char *LogMsg, const char *FwdMsg, bool InformClient)
1003 {
1004         /* Close connection. Open pipes of asynchronous resolver
1005          * sub-processes are closed down. */
1006
1007         CLIENT *c;
1008         double in_k, out_k;
1009         UINT16 port;
1010 #ifdef ZLIB
1011         double in_z_k, out_z_k;
1012         int in_p, out_p;
1013 #endif
1014
1015         assert( Idx > NONE );
1016
1017         /* Is this link already shutting down? */
1018         if( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ISCLOSING )) {
1019                 /* Conn_Close() has been called recursively for this link;
1020                  * probable reason: Handle_Write() failed -- see below. */
1021                 LogDebug("Recursive request to close connection %d!", Idx );
1022                 return;
1023         }
1024
1025         assert( My_Connections[Idx].sock > NONE );
1026
1027         /* Mark link as "closing" */
1028         Conn_OPTION_ADD( &My_Connections[Idx], CONN_ISCLOSING );
1029
1030         port = ng_ipaddr_getport(&My_Connections[Idx].addr);
1031         Log(LOG_INFO, "Shutting down connection %d (%s) with \"%s:%d\" ...", Idx,
1032             LogMsg ? LogMsg : FwdMsg, My_Connections[Idx].host, port);
1033
1034         /* Search client, if any */
1035         c = Conn_GetClient( Idx );
1036
1037         /* Should the client be informed? */
1038         if (InformClient) {
1039 #ifndef STRICT_RFC
1040                 /* Send statistics to client if registered as user: */
1041                 if ((c != NULL) && (Client_Type(c) == CLIENT_USER)) {
1042                         Conn_WriteStr( Idx,
1043                          ":%s NOTICE %s :%sConnection statistics: client %.1f kb, server %.1f kb.",
1044                          Client_ID(Client_ThisServer()), Client_ID(c),
1045                          NOTICE_TXTPREFIX,
1046                          (double)My_Connections[Idx].bytes_in / 1024,
1047                          (double)My_Connections[Idx].bytes_out / 1024);
1048                 }
1049 #endif
1050                 /* Send ERROR to client (see RFC 2812, section 3.1.7) */
1051                 if (FwdMsg)
1052                         Conn_WriteStr(Idx, "ERROR :%s", FwdMsg);
1053                 else
1054                         Conn_WriteStr(Idx, "ERROR :Closing connection");
1055         }
1056
1057         /* Try to write out the write buffer. Note: Handle_Write() eventually
1058          * removes the CLIENT structure associated with this connection if an
1059          * error occurs! So we have to re-check if there is still an valid
1060          * CLIENT structure after calling Handle_Write() ...*/
1061         (void)Handle_Write( Idx );
1062
1063         /* Search client, if any (re-check!) */
1064         c = Conn_GetClient( Idx );
1065 #ifdef SSL_SUPPORT
1066         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_SSL )) {
1067                 LogDebug("SSL connection %d shutting down ...", Idx);
1068                 ConnSSL_Free(&My_Connections[Idx]);
1069         }
1070 #endif
1071         /* Shut down socket */
1072         if (! io_close(My_Connections[Idx].sock)) {
1073                 /* Oops, we can't close the socket!? This is ... ugly! */
1074                 Log(LOG_CRIT,
1075                     "Error closing connection %d (socket %d) with %s:%d - %s! (ignored)",
1076                     Idx, My_Connections[Idx].sock, My_Connections[Idx].host,
1077                     port, strerror(errno));
1078         }
1079
1080         /* Mark socket as invalid: */
1081         My_Connections[Idx].sock = NONE;
1082
1083         /* If there is still a client, unregister it now */
1084         if (c)
1085                 Client_Destroy(c, LogMsg, FwdMsg, true);
1086
1087         /* Calculate statistics and log information */
1088         in_k = (double)My_Connections[Idx].bytes_in / 1024;
1089         out_k = (double)My_Connections[Idx].bytes_out / 1024;
1090 #ifdef ZLIB
1091         if (Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP)) {
1092                 in_z_k = (double)My_Connections[Idx].zip.bytes_in / 1024;
1093                 out_z_k = (double)My_Connections[Idx].zip.bytes_out / 1024;
1094                 /* Make sure that no division by zero can occur during
1095                  * the calculation of in_p and out_p: in_z_k and out_z_k
1096                  * are non-zero, that's guaranteed by the protocol until
1097                  * compression can be enabled. */
1098                 if (! in_z_k)
1099                         in_z_k = in_k;
1100                 if (! out_z_k)
1101                         out_z_k = out_k;
1102                 in_p = (int)(( in_k * 100 ) / in_z_k );
1103                 out_p = (int)(( out_k * 100 ) / out_z_k );
1104                 Log(LOG_INFO,
1105                     "Connection %d with \"%s:%d\" closed (in: %.1fk/%.1fk/%d%%, out: %.1fk/%.1fk/%d%%).",
1106                     Idx, My_Connections[Idx].host, port,
1107                     in_k, in_z_k, in_p, out_k, out_z_k, out_p);
1108         }
1109         else
1110 #endif
1111         {
1112                 Log(LOG_INFO,
1113                     "Connection %d with \"%s:%d\" closed (in: %.1fk, out: %.1fk).",
1114                     Idx, My_Connections[Idx].host, port,
1115                     in_k, out_k);
1116         }
1117
1118         /* Servers: Modify time of next connect attempt? */
1119         Conf_UnsetServer( Idx );
1120
1121 #ifdef ZLIB
1122         /* Clean up zlib, if link was compressed */
1123         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP )) {
1124                 inflateEnd( &My_Connections[Idx].zip.in );
1125                 deflateEnd( &My_Connections[Idx].zip.out );
1126                 array_free(&My_Connections[Idx].zip.rbuf);
1127                 array_free(&My_Connections[Idx].zip.wbuf);
1128         }
1129 #endif
1130
1131         array_free(&My_Connections[Idx].rbuf);
1132         array_free(&My_Connections[Idx].wbuf);
1133         if (My_Connections[Idx].pwd != NULL)
1134                 free(My_Connections[Idx].pwd);
1135
1136         /* Clean up connection structure (=free it) */
1137         Init_Conn_Struct( Idx );
1138
1139         assert(NumConnections > 0);
1140         if (NumConnections)
1141                 NumConnections--;
1142         LogDebug("Shutdown of connection %d completed, %ld connection%s left.",
1143                  Idx, NumConnections, NumConnections != 1 ? "s" : "");
1144
1145         idle_t = NumConnections > 0 ? 0 : time(NULL);
1146 } /* Conn_Close */
1147
1148 /**
1149  * Get current number of connections.
1150  *
1151  * @returns     Number of current connections.
1152  */
1153 GLOBAL long
1154 Conn_Count(void)
1155 {
1156         return NumConnections;
1157 } /* Conn_Count */
1158
1159 /**
1160  * Get number of maximum simultaneous connections.
1161  *
1162  * @returns     Number of maximum simultaneous connections.
1163  */
1164 GLOBAL long
1165 Conn_CountMax(void)
1166 {
1167         return NumConnectionsMax;
1168 } /* Conn_CountMax */
1169
1170 /**
1171  * Get number of connections accepted since the daemon startet.
1172  *
1173  * @returns     Number of connections accepted.
1174  */
1175 GLOBAL long
1176 Conn_CountAccepted(void)
1177 {
1178         return NumConnectionsAccepted;
1179 } /* Conn_CountAccepted */
1180
1181 /**
1182  * Synchronize established connections and configured server structures
1183  * after a configuration update and store the correct connection IDs, if any.
1184  */
1185 GLOBAL void
1186 Conn_SyncServerStruct(void)
1187 {
1188         CLIENT *client;
1189         CONN_ID i;
1190         int c;
1191
1192         for (i = 0; i < Pool_Size; i++) {
1193                 if (My_Connections[i].sock == NONE)
1194                         continue;
1195
1196                 /* Server link? */
1197                 client = Conn_GetClient(i);
1198                 if (!client || Client_Type(client) != CLIENT_SERVER)
1199                         continue;
1200
1201                 for (c = 0; c < MAX_SERVERS; c++) {
1202                         /* Configured server? */
1203                         if (!Conf_Server[c].host[0])
1204                                 continue;
1205
1206                         if (strcasecmp(Conf_Server[c].name, Client_ID(client)) == 0)
1207                                 Conf_Server[c].conn_id = i;
1208                 }
1209         }
1210 } /* SyncServerStruct */
1211
1212 /**
1213  * Get IP address string of a connection.
1214  *
1215  * @param Idx Connection index.
1216  * @return Pointer to a global buffer containing the IP address as string.
1217  */
1218 GLOBAL const char *
1219 Conn_GetIPAInfo(CONN_ID Idx)
1220 {
1221         assert(Idx > NONE);
1222         return ng_ipaddr_tostr(&My_Connections[Idx].addr);
1223 }
1224
1225 /**
1226  * Send out data of write buffer; connect new sockets.
1227  *
1228  * @param Idx   Connection index.
1229  * @returns     true on success, false otherwise.
1230  */
1231 static bool
1232 Handle_Write( CONN_ID Idx )
1233 {
1234         ssize_t len;
1235         size_t wdatalen;
1236
1237         assert( Idx > NONE );
1238         if ( My_Connections[Idx].sock < 0 ) {
1239                 LogDebug("Handle_Write() on closed socket, connection %d", Idx);
1240                 return false;
1241         }
1242         assert( My_Connections[Idx].sock > NONE );
1243
1244         wdatalen = array_bytes(&My_Connections[Idx].wbuf );
1245
1246 #ifdef ZLIB
1247         if (wdatalen == 0) {
1248                 /* Write buffer is empty, so we try to flush the compression
1249                  * buffer and get some data to work with from there :-) */
1250                 if (!Zip_Flush(Idx))
1251                         return false;
1252
1253                 /* Now the write buffer most probably has changed: */
1254                 wdatalen = array_bytes(&My_Connections[Idx].wbuf);
1255         }
1256 #endif
1257
1258         if (wdatalen == 0) {
1259                 /* Still no data, fine. */
1260                 io_event_del(My_Connections[Idx].sock, IO_WANTWRITE );
1261                 return true;
1262         }
1263
1264 #if DEBUG_BUFFER
1265         LogDebug
1266             ("Handle_Write() called for connection %d, %ld bytes pending ...",
1267              Idx, wdatalen);
1268 #endif
1269
1270 #ifdef SSL_SUPPORT
1271         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_SSL )) {
1272                 len = ConnSSL_Write(&My_Connections[Idx],
1273                                     array_start(&My_Connections[Idx].wbuf),
1274                                     wdatalen);
1275         } else
1276 #endif
1277         {
1278                 len = write(My_Connections[Idx].sock,
1279                             array_start(&My_Connections[Idx].wbuf), wdatalen );
1280         }
1281         if( len < 0 ) {
1282                 if (errno == EAGAIN || errno == EINTR)
1283                         return true;
1284
1285                 if (!Conn_OPTION_ISSET(&My_Connections[Idx], CONN_ISCLOSING))
1286                         Log(LOG_ERR,
1287                             "Write error on connection %d (socket %d): %s!",
1288                             Idx, My_Connections[Idx].sock, strerror(errno));
1289                 else
1290                         LogDebug("Recursive write error on connection %d (socket %d): %s!",
1291                                  Idx, My_Connections[Idx].sock, strerror(errno));
1292                 Conn_Close(Idx, "Write error", NULL, false);
1293                 return false;
1294         }
1295
1296         /* move any data not yet written to beginning */
1297         array_moveleft(&My_Connections[Idx].wbuf, 1, (size_t)len);
1298
1299         return true;
1300 } /* Handle_Write */
1301
1302 /**
1303  * Count established connections to a specific IP address.
1304  *
1305  * @returns     Number of established connections.
1306  */
1307 static int
1308 Count_Connections(ng_ipaddr_t *a)
1309 {
1310         int i, cnt;
1311
1312         cnt = 0;
1313         for (i = 0; i < Pool_Size; i++) {
1314                 if (My_Connections[i].sock <= NONE)
1315                         continue;
1316                 if (ng_ipaddr_ipequal(&My_Connections[i].addr, a))
1317                         cnt++;
1318         }
1319         return cnt;
1320 } /* Count_Connections */
1321
1322 /**
1323  * Initialize new client connection on a listening socket.
1324  *
1325  * @param Sock  Listening socket descriptor.
1326  * @param IsSSL true if this socket expects SSL-encrypted data.
1327  * @returns     Accepted socket descriptor or -1 on error.
1328  */
1329 static int
1330 New_Connection(int Sock, UNUSED bool IsSSL)
1331 {
1332 #ifdef TCPWRAP
1333         struct request_info req;
1334 #endif
1335         ng_ipaddr_t new_addr;
1336         char ip_str[NG_INET_ADDRSTRLEN];
1337         int new_sock, new_sock_len;
1338         CLIENT *c;
1339         long cnt;
1340
1341         assert(Sock > NONE);
1342
1343         LogDebug("Accepting new connection on socket %d ...", Sock);
1344
1345         new_sock_len = (int)sizeof(new_addr);
1346         new_sock = accept(Sock, (struct sockaddr *)&new_addr,
1347                           (socklen_t *)&new_sock_len);
1348         if (new_sock < 0) {
1349                 Log(LOG_CRIT, "Can't accept connection: %s!", strerror(errno));
1350                 return -1;
1351         }
1352         NumConnectionsAccepted++;
1353
1354         if (!ng_ipaddr_tostr_r(&new_addr, ip_str)) {
1355                 Log(LOG_CRIT, "fd %d: Can't convert IP address!", new_sock);
1356                 Simple_Message(new_sock, "ERROR :Internal Server Error");
1357                 close(new_sock);
1358                 return -1;
1359         }
1360
1361 #ifdef TCPWRAP
1362         /* Validate socket using TCP Wrappers */
1363         request_init(&req, RQ_DAEMON, PACKAGE_NAME, RQ_FILE, new_sock,
1364                      RQ_CLIENT_SIN, &new_addr, NULL);
1365         fromhost(&req);
1366         if (!hosts_access(&req)) {
1367                 Log(deny_severity,
1368                     "Refused connection from %s (by TCP Wrappers)!", ip_str);
1369                 Simple_Message(new_sock, "ERROR :Connection refused");
1370                 close(new_sock);
1371                 return -1;
1372         }
1373 #endif
1374
1375         if (!Init_Socket(new_sock))
1376                 return -1;
1377
1378         /* Check global connection limit */
1379         if ((Conf_MaxConnections > 0) &&
1380             (NumConnections >= (size_t) Conf_MaxConnections)) {
1381                 Log(LOG_ALERT, "Can't accept connection: limit (%d) reached!",
1382                     Conf_MaxConnections);
1383                 Simple_Message(new_sock, "ERROR :Connection limit reached");
1384                 close(new_sock);
1385                 return -1;
1386         }
1387
1388         /* Check IP-based connection limit */
1389         cnt = Count_Connections(&new_addr);
1390         if ((Conf_MaxConnectionsIP > 0) && (cnt >= Conf_MaxConnectionsIP)) {
1391                 /* Access denied, too many connections from this IP address! */
1392                 Log(LOG_ERR,
1393                     "Refused connection from %s: too may connections (%ld) from this IP address!",
1394                     ip_str, cnt);
1395                 Simple_Message(new_sock,
1396                                "ERROR :Connection refused, too many connections from your IP address");
1397                 close(new_sock);
1398                 return -1;
1399         }
1400
1401         if (new_sock >= Pool_Size) {
1402                 if (!array_alloc(&My_ConnArray, sizeof(CONNECTION),
1403                                  (size_t) new_sock)) {
1404                         Log(LOG_EMERG,
1405                             "Can't allocate memory! [New_Connection]");
1406                         Simple_Message(new_sock, "ERROR: Internal error");
1407                         close(new_sock);
1408                         return -1;
1409                 }
1410                 LogDebug("Bumped connection pool to %ld items (internal: %ld items, %ld bytes)",
1411                          new_sock, array_length(&My_ConnArray,
1412                          sizeof(CONNECTION)), array_bytes(&My_ConnArray));
1413
1414                 /* Adjust pointer to new block */
1415                 My_Connections = array_start(&My_ConnArray);
1416                 while (Pool_Size <= new_sock)
1417                         Init_Conn_Struct(Pool_Size++);
1418         }
1419
1420         /* register callback */
1421         if (!io_event_create(new_sock, IO_WANTREAD, cb_clientserver)) {
1422                 Log(LOG_ALERT,
1423                     "Can't accept connection: io_event_create failed!");
1424                 Simple_Message(new_sock, "ERROR :Internal error");
1425                 close(new_sock);
1426                 return -1;
1427         }
1428
1429         c = Client_NewLocal(new_sock, NULL, CLIENT_UNKNOWN, false);
1430         if (!c) {
1431                 Log(LOG_ALERT,
1432                     "Can't accept connection: can't create client structure!");
1433                 Simple_Message(new_sock, "ERROR :Internal error");
1434                 io_close(new_sock);
1435                 return -1;
1436         }
1437
1438         Init_Conn_Struct(new_sock);
1439         My_Connections[new_sock].sock = new_sock;
1440         My_Connections[new_sock].addr = new_addr;
1441         My_Connections[new_sock].client = c;
1442
1443         /* Set initial hostname to IP address. This becomes overwritten when
1444          * the DNS lookup is enabled and succeeds, but is used otherwise. */
1445         if (ng_ipaddr_af(&new_addr) != AF_INET)
1446                 snprintf(My_Connections[new_sock].host,
1447                          sizeof(My_Connections[new_sock].host), "[%s]", ip_str);
1448         else
1449                 strlcpy(My_Connections[new_sock].host, ip_str,
1450                         sizeof(My_Connections[new_sock].host));
1451
1452         Client_SetHostname(c, My_Connections[new_sock].host);
1453
1454         Log(LOG_INFO, "Accepted connection %d from \"%s:%d\" on socket %d.",
1455             new_sock, My_Connections[new_sock].host,
1456             ng_ipaddr_getport(&new_addr), Sock);
1457         Account_Connection();
1458
1459 #ifdef SSL_SUPPORT
1460         /* Delay connection initalization until SSL handshake is finished */
1461         if (!IsSSL)
1462 #endif
1463                 Conn_StartLogin(new_sock);
1464
1465         return new_sock;
1466 } /* New_Connection */
1467
1468 /**
1469  * Finish connection initialization, start resolver subprocess.
1470  *
1471  * @param Idx Connection index.
1472  */
1473 GLOBAL void
1474 Conn_StartLogin(CONN_ID Idx)
1475 {
1476         int ident_sock = -1;
1477
1478         assert(Idx >= 0);
1479
1480         /* Nothing to do if DNS (and resolver subprocess) is disabled */
1481         if (!Conf_DNS)
1482                 return;
1483
1484 #ifdef IDENTAUTH
1485         /* Should we make an IDENT request? */
1486         if (Conf_Ident)
1487                 ident_sock = My_Connections[Idx].sock;
1488 #endif
1489
1490         if (Conf_NoticeAuth) {
1491                 /* Send "NOTICE AUTH" messages to the client */
1492 #ifdef IDENTAUTH
1493                 if (Conf_Ident)
1494                         (void)Conn_WriteStr(Idx,
1495                                 "NOTICE AUTH :*** Looking up your hostname and checking ident");
1496                 else
1497 #endif
1498                         (void)Conn_WriteStr(Idx,
1499                                 "NOTICE AUTH :*** Looking up your hostname");
1500                 /* Send buffered data to the client, but break on errors
1501                  * because Handle_Write() would have closed the connection
1502                  * again in this case! */
1503                 if (!Handle_Write(Idx))
1504                         return;
1505         }
1506
1507         Resolve_Addr(&My_Connections[Idx].proc_stat, &My_Connections[Idx].addr,
1508                      ident_sock, cb_Read_Resolver_Result);
1509 }
1510
1511 /**
1512  * Update global connection counters.
1513  */
1514 static void
1515 Account_Connection(void)
1516 {
1517         NumConnections++;
1518         idle_t = 0;
1519         if (NumConnections > NumConnectionsMax)
1520                 NumConnectionsMax = NumConnections;
1521         LogDebug("Total number of connections now %lu (max %lu).",
1522                  NumConnections, NumConnectionsMax);
1523 } /* Account_Connection */
1524
1525 /**
1526  * Translate socket handle into connection index.
1527  *
1528  * @param Sock  Socket handle.
1529  * @returns     Connecion index or NONE, if no connection could be found.
1530  */
1531 static CONN_ID
1532 Socket2Index( int Sock )
1533 {
1534         assert( Sock >= 0 );
1535
1536         if( Sock >= Pool_Size || My_Connections[Sock].sock != Sock ) {
1537                 /* the Connection was already closed again, likely due to
1538                  * an error. */
1539                 LogDebug("Socket2Index: can't get connection for socket %d!", Sock);
1540                 return NONE;
1541         }
1542         return Sock;
1543 } /* Socket2Index */
1544
1545 /**
1546  * Read data from the network to the read buffer. If an error occurs,
1547  * the socket of this connection will be shut down.
1548  *
1549  * @param Idx   Connection index.
1550  */
1551 static void
1552 Read_Request( CONN_ID Idx )
1553 {
1554         ssize_t len;
1555         static const unsigned int maxbps = COMMAND_LEN / 2;
1556         char readbuf[READBUFFER_LEN];
1557         time_t t;
1558         CLIENT *c;
1559         assert( Idx > NONE );
1560         assert( My_Connections[Idx].sock > NONE );
1561
1562 #ifdef ZLIB
1563         if ((array_bytes(&My_Connections[Idx].rbuf) >= READBUFFER_LEN) ||
1564                 (array_bytes(&My_Connections[Idx].zip.rbuf) >= READBUFFER_LEN))
1565 #else
1566         if (array_bytes(&My_Connections[Idx].rbuf) >= READBUFFER_LEN)
1567 #endif
1568         {
1569                 /* Read buffer is full */
1570                 Log(LOG_ERR,
1571                     "Receive buffer space exhausted (connection %d): %d/%d bytes",
1572                     Idx, array_bytes(&My_Connections[Idx].rbuf), READBUFFER_LEN);
1573                 Conn_Close(Idx, "Receive buffer space exhausted", NULL, false);
1574                 return;
1575         }
1576
1577 #ifdef SSL_SUPPORT
1578         if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_SSL))
1579                 len = ConnSSL_Read( &My_Connections[Idx], readbuf, sizeof(readbuf));
1580         else
1581 #endif
1582         len = read(My_Connections[Idx].sock, readbuf, sizeof(readbuf));
1583         if (len == 0) {
1584                 LogDebug("Client \"%s:%u\" is closing connection %d ...",
1585                          My_Connections[Idx].host,
1586                          ng_ipaddr_tostr(&My_Connections[Idx].addr), Idx);
1587                 Conn_Close(Idx, NULL, "Client closed connection", false);
1588                 return;
1589         }
1590
1591         if (len < 0) {
1592                 if( errno == EAGAIN ) return;
1593                 Log(LOG_ERR, "Read error on connection %d (socket %d): %s!",
1594                     Idx, My_Connections[Idx].sock, strerror(errno));
1595                 Conn_Close(Idx, "Read error", "Client closed connection",
1596                            false);
1597                 return;
1598         }
1599 #ifdef ZLIB
1600         if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_ZIP)) {
1601                 if (!array_catb(&My_Connections[Idx].zip.rbuf, readbuf,
1602                                 (size_t) len)) {
1603                         Log(LOG_ERR,
1604                             "Could not append received data to zip input buffer (connection %d): %d bytes!",
1605                             Idx, len);
1606                         Conn_Close(Idx, "Receive buffer space exhausted", NULL,
1607                                    false);
1608                         return;
1609                 }
1610         } else
1611 #endif
1612         {
1613                 if (!array_catb( &My_Connections[Idx].rbuf, readbuf, len)) {
1614                         Log(LOG_ERR,
1615                             "Could not append received data to input buffer (connection %d): %d bytes!",
1616                             Idx, len);
1617                         Conn_Close(Idx, "Receive buffer space exhausted", NULL,
1618                                    false );
1619                 }
1620         }
1621
1622         /* Update connection statistics */
1623         My_Connections[Idx].bytes_in += len;
1624
1625         /* Handle read buffer */
1626         My_Connections[Idx].bps += Handle_Buffer(Idx);
1627
1628         /* Make sure that there is still a valid client registered */
1629         c = Conn_GetClient(Idx);
1630         if (!c)
1631                 return;
1632
1633         /* Update timestamp of last data received if this connection is
1634          * registered as a user, server or service connection. Don't update
1635          * otherwise, so users have at least Conf_PongTimeout seconds time to
1636          * register with the IRC server -- see Check_Connections().
1637          * Update "lastping", too, if time shifted backwards ... */
1638         if (Client_Type(c) == CLIENT_USER
1639             || Client_Type(c) == CLIENT_SERVER
1640             || Client_Type(c) == CLIENT_SERVICE) {
1641                 t = time(NULL);
1642                 if (My_Connections[Idx].lastdata != t)
1643                         My_Connections[Idx].bps = 0;
1644
1645                 My_Connections[Idx].lastdata = t;
1646                 if (My_Connections[Idx].lastping > t)
1647                         My_Connections[Idx].lastping = t;
1648         }
1649
1650         /* Look at the data in the (read-) buffer of this connection */
1651         if (My_Connections[Idx].bps >= maxbps)
1652                 Throttle_Connection(Idx, c, THROTTLE_BPS, maxbps);
1653 } /* Read_Request */
1654
1655 /**
1656  * Handle all data in the connection read-buffer.
1657  *
1658  * Data is processed until no complete command is left in the read buffer,
1659  * or MAX_COMMANDS[_SERVER|_SERVICE] commands were processed.
1660  * When a fatal error occurs, the connection is shut down.
1661  *
1662  * @param Idx   Index of the connection.
1663  * @returns     Number of bytes processed.
1664  */
1665 static unsigned int
1666 Handle_Buffer(CONN_ID Idx)
1667 {
1668 #ifndef STRICT_RFC
1669         char *ptr1, *ptr2, *first_eol;
1670 #endif
1671         char *ptr;
1672         size_t len, delta;
1673         time_t starttime;
1674 #ifdef ZLIB
1675         bool old_z;
1676 #endif
1677         unsigned int i, maxcmd = MAX_COMMANDS, len_processed = 0;
1678         CLIENT *c;
1679
1680         c = Conn_GetClient(Idx);
1681         starttime = time(NULL);
1682
1683         assert(c != NULL);
1684
1685         /* Servers get special command limits that depend on the user count */
1686         switch (Client_Type(c)) {
1687             case CLIENT_SERVER:
1688                 maxcmd = (int)(Client_UserCount() / 5)
1689                        + MAX_COMMANDS_SERVER_MIN;
1690                 /* Allow servers to handle even more commands while peering
1691                  * to speed up server login and network synchronization. */
1692                 if (Conn_LastPing(Idx) == 0)
1693                         maxcmd *= 5;
1694                 break;
1695             case CLIENT_SERVICE:
1696                 maxcmd = MAX_COMMANDS_SERVICE; break;
1697         }
1698
1699         for (i=0; i < maxcmd; i++) {
1700                 /* Check penalty */
1701                 if (My_Connections[Idx].delaytime > starttime)
1702                         return 0;
1703 #ifdef ZLIB
1704                 /* Unpack compressed data, if compression is in use */
1705                 if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_ZIP)) {
1706                         /* When unzipping fails, Unzip_Buffer() shuts
1707                          * down the connection itself */
1708                         if (!Unzip_Buffer(Idx))
1709                                 return 0;
1710                 }
1711 #endif
1712
1713                 if (0 == array_bytes(&My_Connections[Idx].rbuf))
1714                         break;
1715
1716                 /* Make sure that the buffer is NULL terminated */
1717                 if (!array_cat0_temporary(&My_Connections[Idx].rbuf)) {
1718                         Conn_Close(Idx, NULL,
1719                                    "Can't allocate memory [Handle_Buffer]",
1720                                    true);
1721                         return 0;
1722                 }
1723
1724                 /* RFC 2812, section "2.3 Messages", 5th paragraph:
1725                  * "IRC messages are always lines of characters terminated
1726                  * with a CR-LF (Carriage Return - Line Feed) pair [...]". */
1727                 delta = 2;
1728                 ptr = strstr(array_start(&My_Connections[Idx].rbuf), "\r\n");
1729
1730 #ifndef STRICT_RFC
1731                 /* Check for non-RFC-compliant request (only CR or LF)?
1732                  * Unfortunately, there are quite a few clients out there
1733                  * that do this -- e. g. mIRC, BitchX, and Trillian :-( */
1734                 ptr1 = strchr(array_start(&My_Connections[Idx].rbuf), '\r');
1735                 ptr2 = strchr(array_start(&My_Connections[Idx].rbuf), '\n');
1736                 if (ptr) {
1737                         /* Check if there is a single CR or LF _before_ the
1738                          * correct CR+LF line terminator:  */
1739                         first_eol = ptr1 < ptr2 ? ptr1 : ptr2;
1740                         if (first_eol < ptr) {
1741                                 /* Single CR or LF before CR+LF found */
1742                                 ptr = first_eol;
1743                                 delta = 1;
1744                         }
1745                 } else if (ptr1 || ptr2) {
1746                         /* No CR+LF terminated command found, but single
1747                          * CR or LF found ... */
1748                         if (ptr1 && ptr2)
1749                                 ptr = ptr1 < ptr2 ? ptr1 : ptr2;
1750                         else
1751                                 ptr = ptr1 ? ptr1 : ptr2;
1752                         delta = 1;
1753                 }
1754 #endif
1755
1756                 if (!ptr)
1757                         break;
1758
1759                 /* Complete (=line terminated) request found, handle it! */
1760                 *ptr = '\0';
1761
1762                 len = ptr - (char *)array_start(&My_Connections[Idx].rbuf) + delta;
1763
1764                 if (len > (COMMAND_LEN - 1)) {
1765                         /* Request must not exceed 512 chars (incl. CR+LF!),
1766                          * see RFC 2812. Disconnect Client if this happens. */
1767                         Log(LOG_ERR,
1768                             "Request too long (connection %d): %d bytes (max. %d expected)!",
1769                             Idx, array_bytes(&My_Connections[Idx].rbuf),
1770                             COMMAND_LEN - 1);
1771                         Conn_Close(Idx, NULL, "Request too long", true);
1772                         return 0;
1773                 }
1774
1775                 len_processed += (unsigned int)len;
1776                 if (len <= delta) {
1777                         /* Request is empty (only '\r\n', '\r' or '\n');
1778                          * delta is 2 ('\r\n') or 1 ('\r' or '\n'), see above */
1779                         array_moveleft(&My_Connections[Idx].rbuf, 1, len);
1780                         continue;
1781                 }
1782 #ifdef ZLIB
1783                 /* remember if stream is already compressed */
1784                 old_z = My_Connections[Idx].options & CONN_ZIP;
1785 #endif
1786
1787                 My_Connections[Idx].msg_in++;
1788                 if (!Parse_Request
1789                     (Idx, (char *)array_start(&My_Connections[Idx].rbuf)))
1790                         return 0; /* error -> connection has been closed */
1791
1792                 array_moveleft(&My_Connections[Idx].rbuf, 1, len);
1793 #ifdef ZLIB
1794                 if ((!old_z) && (My_Connections[Idx].options & CONN_ZIP) &&
1795                     (array_bytes(&My_Connections[Idx].rbuf) > 0)) {
1796                         /* The last command activated socket compression.
1797                          * Data that was read after that needs to be copied
1798                          * to the unzip buffer for decompression: */
1799                         if (!array_copy
1800                             (&My_Connections[Idx].zip.rbuf,
1801                              &My_Connections[Idx].rbuf)) {
1802                                 Conn_Close(Idx, NULL,
1803                                            "Can't allocate memory [Handle_Buffer]",
1804                                            true);
1805                                 return 0;
1806                         }
1807
1808                         array_trunc(&My_Connections[Idx].rbuf);
1809                         LogDebug
1810                             ("Moved already received data (%u bytes) to uncompression buffer.",
1811                              array_bytes(&My_Connections[Idx].zip.rbuf));
1812                 }
1813 #endif
1814         }
1815 #if DEBUG_BUFFER
1816         LogDebug("Connection %d: Processed %ld commands (max=%ld), %ld bytes. %ld bytes left in read buffer.",
1817                  Idx, i, maxcmd, len_processed,
1818                  array_bytes(&My_Connections[Idx].rbuf));
1819 #endif
1820
1821         /* If data has been processed but there is still data in the read
1822          * buffer, the command limit triggered. Enforce the penalty time: */
1823         if (len_processed && array_bytes(&My_Connections[Idx].rbuf) > 2)
1824                 Throttle_Connection(Idx, c, THROTTLE_CMDS, maxcmd);
1825
1826         return len_processed;
1827 } /* Handle_Buffer */
1828
1829 /**
1830  * Check whether established connections are still alive or not.
1831  * If not, play PING-PONG first; and if that doesn't help either,
1832  * disconnect the respective peer.
1833  */
1834 static void
1835 Check_Connections(void)
1836 {
1837         CLIENT *c;
1838         CONN_ID i;
1839         char msg[64];
1840
1841         for (i = 0; i < Pool_Size; i++) {
1842                 if (My_Connections[i].sock < 0)
1843                         continue;
1844
1845                 c = Conn_GetClient(i);
1846                 if (c && ((Client_Type(c) == CLIENT_USER)
1847                           || (Client_Type(c) == CLIENT_SERVER)
1848                           || (Client_Type(c) == CLIENT_SERVICE))) {
1849                         /* connected User, Server or Service */
1850                         if (My_Connections[i].lastping >
1851                             My_Connections[i].lastdata) {
1852                                 /* We already sent a ping */
1853                                 if (My_Connections[i].lastping <
1854                                     time(NULL) - Conf_PongTimeout) {
1855                                         /* Timeout */
1856                                         snprintf(msg, sizeof(msg),
1857                                                  "Ping timeout: %d seconds",
1858                                                  Conf_PongTimeout);
1859                                         LogDebug("Connection %d: %s.", i, msg);
1860                                         Conn_Close(i, NULL, msg, true);
1861                                 }
1862                         } else if (My_Connections[i].lastdata <
1863                                    time(NULL) - Conf_PingTimeout) {
1864                                 /* We need to send a PING ... */
1865                                 LogDebug("Connection %d: sending PING ...", i);
1866                                 Conn_UpdatePing(i);
1867                                 Conn_WriteStr(i, "PING :%s",
1868                                               Client_ID(Client_ThisServer()));
1869                         }
1870                 } else {
1871                         /* The connection is not fully established yet, so
1872                          * we don't do the PING-PONG game here but instead
1873                          * disconnect the client after "a short time" if it's
1874                          * still not registered. */
1875
1876                         if (My_Connections[i].lastdata <
1877                             time(NULL) - Conf_PongTimeout) {
1878                                 LogDebug
1879                                     ("Unregistered connection %d timed out ...",
1880                                      i);
1881                                 Conn_Close(i, NULL, "Timeout", false);
1882                         }
1883                 }
1884         }
1885 } /* Check_Connections */
1886
1887 /**
1888  * Check if further server links should be established.
1889  */
1890 static void
1891 Check_Servers(void)
1892 {
1893         int i, n;
1894         time_t time_now;
1895
1896         time_now = time(NULL);
1897
1898         /* Check all configured servers */
1899         for (i = 0; i < MAX_SERVERS; i++) {
1900                 if (Conf_Server[i].conn_id != NONE)
1901                         continue;       /* Already establishing or connected */
1902                 if (!Conf_Server[i].host[0] || !Conf_Server[i].port > 0)
1903                         continue;       /* No host and/or port configured */
1904                 if (Conf_Server[i].flags & CONF_SFLAG_DISABLED)
1905                         continue;       /* Disabled configuration entry */
1906                 if (Conf_Server[i].lasttry > (time_now - Conf_ConnectRetry))
1907                         continue;       /* We have to wait a little bit ... */
1908
1909                 /* Is there already a connection in this group? */
1910                 if (Conf_Server[i].group > NONE) {
1911                         for (n = 0; n < MAX_SERVERS; n++) {
1912                                 if (n == i)
1913                                         continue;
1914                                 if ((Conf_Server[n].conn_id != NONE) &&
1915                                     (Conf_Server[n].group == Conf_Server[i].group))
1916                                         break;
1917                         }
1918                         if (n < MAX_SERVERS)
1919                                 continue;
1920                 }
1921
1922                 /* Okay, try to connect now */
1923                 Log(LOG_NOTICE,
1924                     "Preparing to establish a new server link for \"%s\" ...",
1925                     Conf_Server[i].name);
1926                 Conf_Server[i].lasttry = time_now;
1927                 Conf_Server[i].conn_id = SERVER_WAIT;
1928                 assert(Proc_GetPipeFd(&Conf_Server[i].res_stat) < 0);
1929                 Resolve_Name(&Conf_Server[i].res_stat, Conf_Server[i].host,
1930                              cb_Connect_to_Server);
1931         }
1932 } /* Check_Servers */
1933
1934 /**
1935  * Establish a new outgoing server connection.
1936  *
1937  * @param Server        Configuration index of the server.
1938  * @param dest          Destination IP address to connect to.
1939  */
1940 static void
1941 New_Server( int Server , ng_ipaddr_t *dest)
1942 {
1943         /* Establish new server link */
1944         char ip_str[NG_INET_ADDRSTRLEN];
1945         int af_dest, res, new_sock;
1946         CLIENT *c;
1947
1948         assert( Server > NONE );
1949
1950         /* Make sure that the remote server hasn't re-linked to this server
1951          * asynchronously on its own */
1952         if (Conf_Server[Server].conn_id > NONE) {
1953                 Log(LOG_INFO,
1954                         "Connection to \"%s\" meanwhile re-established, aborting preparation.");
1955                 return;
1956         }
1957
1958         if (!ng_ipaddr_tostr_r(dest, ip_str)) {
1959                 Log(LOG_WARNING, "New_Server: Could not convert IP to string");
1960                 Conf_Server[Server].conn_id = NONE;
1961                 return;
1962         }
1963
1964         af_dest = ng_ipaddr_af(dest);
1965         new_sock = socket(af_dest, SOCK_STREAM, 0);
1966
1967         Log(LOG_INFO,
1968             "Establishing connection for \"%s\" to \"%s:%d\" (%s), socket %d ...",
1969             Conf_Server[Server].name, Conf_Server[Server].host,
1970             Conf_Server[Server].port, ip_str, new_sock);
1971
1972         if (new_sock < 0) {
1973                 Log(LOG_CRIT, "Can't create socket (af %d): %s!",
1974                     af_dest, strerror(errno));
1975                 Conf_Server[Server].conn_id = NONE;
1976                 return;
1977         }
1978
1979         if (!Init_Socket(new_sock)) {
1980                 Conf_Server[Server].conn_id = NONE;
1981                 return;
1982         }
1983
1984         /* is a bind address configured? */
1985         res = ng_ipaddr_af(&Conf_Server[Server].bind_addr);
1986
1987         /* if yes, bind now. If it fails, warn and let connect() pick a
1988          * source address */
1989         if (res && bind(new_sock, (struct sockaddr *) &Conf_Server[Server].bind_addr,
1990                                 ng_ipaddr_salen(&Conf_Server[Server].bind_addr)))
1991         {
1992                 ng_ipaddr_tostr_r(&Conf_Server[Server].bind_addr, ip_str);
1993                 Log(LOG_WARNING, "Can't bind socket to %s: %s!", ip_str,
1994                     strerror(errno));
1995         }
1996         ng_ipaddr_setport(dest, Conf_Server[Server].port);
1997         res = connect(new_sock, (struct sockaddr *) dest, ng_ipaddr_salen(dest));
1998         if(( res != 0 ) && ( errno != EINPROGRESS )) {
1999                 Log( LOG_CRIT, "Can't connect socket: %s!", strerror( errno ));
2000                 close( new_sock );
2001                 Conf_Server[Server].conn_id = NONE;
2002                 return;
2003         }
2004
2005         if (!array_alloc(&My_ConnArray, sizeof(CONNECTION), (size_t)new_sock)) {
2006                 Log(LOG_ALERT,
2007                     "Cannot allocate memory for server connection (socket %d)",
2008                     new_sock);
2009                 close( new_sock );
2010                 Conf_Server[Server].conn_id = NONE;
2011                 return;
2012         }
2013
2014         if (!io_event_create( new_sock, IO_WANTWRITE, cb_connserver)) {
2015                 Log(LOG_ALERT, "io_event_create(): could not add fd %d",
2016                     strerror(errno));
2017                 close(new_sock);
2018                 Conf_Server[Server].conn_id = NONE;
2019                 return;
2020         }
2021
2022         My_Connections = array_start(&My_ConnArray);
2023
2024         assert(My_Connections[new_sock].sock <= 0);
2025
2026         Init_Conn_Struct(new_sock);
2027
2028         ng_ipaddr_tostr_r(dest, ip_str);
2029         c = Client_NewLocal(new_sock, ip_str, CLIENT_UNKNOWNSERVER, false);
2030         if (!c) {
2031                 Log( LOG_ALERT, "Can't establish connection: can't create client structure!" );
2032                 io_close(new_sock);
2033                 Conf_Server[Server].conn_id = NONE;
2034                 return;
2035         }
2036
2037         /* Conn_Close() decrements this counter again */
2038         Account_Connection();
2039         Client_SetIntroducer( c, c );
2040         Client_SetToken( c, TOKEN_OUTBOUND );
2041
2042         /* Register connection */
2043         if (!Conf_SetServer(Server, new_sock))
2044                 return;
2045         My_Connections[new_sock].sock = new_sock;
2046         My_Connections[new_sock].addr = *dest;
2047         My_Connections[new_sock].client = c;
2048         strlcpy( My_Connections[new_sock].host, Conf_Server[Server].host,
2049                                 sizeof(My_Connections[new_sock].host ));
2050
2051 #ifdef SSL_SUPPORT
2052         if (Conf_Server[Server].SSLConnect &&
2053             !ConnSSL_PrepareConnect(&My_Connections[new_sock], &Conf_Server[Server]))
2054         {
2055                 Log(LOG_ALERT, "Could not initialize SSL for outgoing connection");
2056                 Conn_Close(new_sock, "Could not initialize SSL for outgoing connection",
2057                            NULL, false);
2058                 Init_Conn_Struct(new_sock);
2059                 Conf_Server[Server].conn_id = NONE;
2060                 return;
2061         }
2062 #endif
2063         LogDebug("Registered new connection %d on socket %d (%ld in total).",
2064                  new_sock, My_Connections[new_sock].sock, NumConnections);
2065         Conn_OPTION_ADD( &My_Connections[new_sock], CONN_ISCONNECTING );
2066 } /* New_Server */
2067
2068 /**
2069  * Initialize connection structure.
2070  *
2071  * @param Idx   Connection index.
2072  */
2073 static void
2074 Init_Conn_Struct(CONN_ID Idx)
2075 {
2076         time_t now = time(NULL);
2077
2078         memset(&My_Connections[Idx], 0, sizeof(CONNECTION));
2079         My_Connections[Idx].sock = -1;
2080         My_Connections[Idx].signon = now;
2081         My_Connections[Idx].lastdata = now;
2082         My_Connections[Idx].lastprivmsg = now;
2083         Proc_InitStruct(&My_Connections[Idx].proc_stat);
2084
2085 #ifdef ICONV
2086         My_Connections[Idx].iconv_from = (iconv_t)(-1);
2087         My_Connections[Idx].iconv_to = (iconv_t)(-1);
2088 #endif
2089 } /* Init_Conn_Struct */
2090
2091 /**
2092  * Initialize options of a new socket.
2093  *
2094  * For example, we try to set socket options SO_REUSEADDR and IPTOS_LOWDELAY.
2095  * The socket is automatically closed if a fatal error is encountered.
2096  *
2097  * @param Sock  Socket handle.
2098  * @returns false if socket was closed due to fatal error.
2099  */
2100 static bool
2101 Init_Socket( int Sock )
2102 {
2103         int value;
2104
2105         if (!io_setnonblock(Sock)) {
2106                 Log(LOG_CRIT, "Can't enable non-blocking mode for socket: %s!",
2107                     strerror(errno));
2108                 close(Sock);
2109                 return false;
2110         }
2111
2112         /* Don't block this port after socket shutdown */
2113         value = 1;
2114         if (setsockopt(Sock, SOL_SOCKET, SO_REUSEADDR, &value,
2115                        (socklen_t)sizeof(value)) != 0) {
2116                 Log(LOG_ERR, "Can't set socket option SO_REUSEADDR: %s!",
2117                     strerror(errno));
2118                 /* ignore this error */
2119         }
2120
2121         /* Set type of service (TOS) */
2122 #if defined(IPPROTO_IP) && defined(IPTOS_LOWDELAY)
2123         value = IPTOS_LOWDELAY;
2124         if (setsockopt(Sock, IPPROTO_IP, IP_TOS, &value,
2125                        (socklen_t) sizeof(value))) {
2126                 LogDebug("Can't set socket option IP_TOS: %s!",
2127                          strerror(errno));
2128                 /* ignore this error */
2129         } else
2130                 LogDebug("IP_TOS on socket %d has been set to IPTOS_LOWDELAY.",
2131                          Sock);
2132 #endif
2133
2134         return true;
2135 } /* Init_Socket */
2136
2137 /**
2138  * Read results of a resolver sub-process and try to initiate a new server
2139  * connection.
2140  *
2141  * @param fd            File descriptor of the pipe to the sub-process.
2142  * @param events        (ignored IO specification)
2143  */
2144 static void
2145 cb_Connect_to_Server(int fd, UNUSED short events)
2146 {
2147         int i;
2148         size_t len;
2149
2150         /* we can handle at most 3 addresses; but we read up to 4 so we can
2151          * log the 'more than we can handle' condition. First result is tried
2152          * immediately, rest is saved for later if needed. */
2153         ng_ipaddr_t dest_addrs[4];
2154
2155         LogDebug("Resolver: Got forward lookup callback on fd %d, events %d",
2156                  fd, events);
2157
2158         for (i=0; i < MAX_SERVERS; i++) {
2159                   if (Proc_GetPipeFd(&Conf_Server[i].res_stat) == fd )
2160                           break;
2161         }
2162
2163         if( i >= MAX_SERVERS) {
2164                 /* Ops, no matching server found?! */
2165                 io_close( fd );
2166                 LogDebug("Resolver: Got Forward Lookup callback for unknown server!?");
2167                 return;
2168         }
2169
2170         /* Read result from pipe */
2171         len = Proc_Read(&Conf_Server[i].res_stat, dest_addrs, sizeof(dest_addrs));
2172         Proc_Close(&Conf_Server[i].res_stat);
2173         if (len == 0) {
2174                 /* Error resolving hostname: reset server structure */
2175                 Conf_Server[i].conn_id = NONE;
2176                 return;
2177         }
2178
2179         assert((len % sizeof(ng_ipaddr_t)) == 0);
2180
2181         LogDebug("Got result from resolver: %u structs (%u bytes).",
2182                  len/sizeof(ng_ipaddr_t), len);
2183
2184         memset(&Conf_Server[i].dst_addr, 0, sizeof(Conf_Server[i].dst_addr));
2185         if (len > sizeof(ng_ipaddr_t)) {
2186                 /* more than one address for this hostname, remember them
2187                  * in case first address is unreachable/not available */
2188                 len -= sizeof(ng_ipaddr_t);
2189                 if (len > sizeof(Conf_Server[i].dst_addr)) {
2190                         len = sizeof(Conf_Server[i].dst_addr);
2191                         Log(LOG_NOTICE,
2192                                 "Notice: Resolver returned more IP Addresses for host than we can handle, additional addresses dropped.");
2193                 }
2194                 memcpy(&Conf_Server[i].dst_addr, &dest_addrs[1], len);
2195         }
2196         /* connect() */
2197         New_Server(i, dest_addrs);
2198 } /* cb_Read_Forward_Lookup */
2199
2200 /**
2201  * Read results of a resolver sub-process from the pipe and update the
2202  * appropriate connection/client structure(s): hostname and/or IDENT user name.
2203  *
2204  * @param r_fd          File descriptor of the pipe to the sub-process.
2205  * @param events        (ignored IO specification)
2206  */
2207 static void
2208 cb_Read_Resolver_Result( int r_fd, UNUSED short events )
2209 {
2210         CLIENT *c;
2211         CONN_ID i;
2212         size_t len;
2213         char *identptr;
2214 #ifdef IDENTAUTH
2215         char readbuf[HOST_LEN + 2 + CLIENT_USER_LEN];
2216         char *ptr;
2217 #else
2218         char readbuf[HOST_LEN + 1];
2219 #endif
2220
2221         LogDebug("Resolver: Got callback on fd %d, events %d", r_fd, events );
2222         i = Conn_GetFromProc(r_fd);
2223         if (i == NONE) {
2224                 /* Ops, none found? Probably the connection has already
2225                  * been closed!? We'll ignore that ... */
2226                 io_close( r_fd );
2227                 LogDebug("Resolver: Got callback for unknown connection!?");
2228                 return;
2229         }
2230
2231         /* Read result from pipe */
2232         len = Proc_Read(&My_Connections[i].proc_stat, readbuf, sizeof readbuf -1);
2233         Proc_Close(&My_Connections[i].proc_stat);
2234         if (len == 0)
2235                 return;
2236
2237         readbuf[len] = '\0';
2238         identptr = strchr(readbuf, '\n');
2239         assert(identptr != NULL);
2240         if (!identptr) {
2241                 Log( LOG_CRIT, "Resolver: Got malformed result!");
2242                 return;
2243         }
2244
2245         *identptr = '\0';
2246         LogDebug("Got result from resolver: \"%s\" (%u bytes read).", readbuf, len);
2247         /* Okay, we got a complete result: this is a host name for outgoing
2248          * connections and a host name and IDENT user name (if enabled) for
2249          * incoming connections.*/
2250         assert ( My_Connections[i].sock >= 0 );
2251         /* Incoming connection. Search client ... */
2252         c = Conn_GetClient( i );
2253         assert( c != NULL );
2254
2255         /* Only update client information of unregistered clients.
2256          * Note: user commands (e. g. WEBIRC) are always read _after_ reading
2257          * the resolver results, so we don't have to worry to override settings
2258          * from these commands here. */
2259         if(Client_Type(c) == CLIENT_UNKNOWN) {
2260                 strlcpy(My_Connections[i].host, readbuf,
2261                         sizeof(My_Connections[i].host));
2262                 Client_SetHostname(c, readbuf);
2263                 if (Conf_NoticeAuth)
2264                         (void)Conn_WriteStr(i,
2265                                         "NOTICE AUTH :*** Found your hostname: %s",
2266                                         My_Connections[i].host);
2267 #ifdef IDENTAUTH
2268                 ++identptr;
2269                 if (*identptr) {
2270                         ptr = identptr;
2271                         while (*ptr) {
2272                                 if ((*ptr < '0' || *ptr > '9') &&
2273                                     (*ptr < 'A' || *ptr > 'Z') &&
2274                                     (*ptr < 'a' || *ptr > 'z'))
2275                                         break;
2276                                 ptr++;
2277                         }
2278                         if (*ptr) {
2279                                 /* Erroneous IDENT reply */
2280                                 Log(LOG_NOTICE,
2281                                     "Got invalid IDENT reply for connection %d! Ignored.",
2282                                     i);
2283                         } else {
2284                                 Log(LOG_INFO,
2285                                     "IDENT lookup for connection %d: \"%s\".",
2286                                     i, identptr);
2287                                 Client_SetUser(c, identptr, true);
2288                         }
2289                         if (Conf_NoticeAuth) {
2290                                 (void)Conn_WriteStr(i,
2291                                         "NOTICE AUTH :*** Got %sident response%s%s",
2292                                         *ptr ? "invalid " : "",
2293                                         *ptr ? "" : ": ",
2294                                         *ptr ? "" : identptr);
2295                         }
2296                 } else if(Conf_Ident) {
2297                         Log(LOG_INFO, "IDENT lookup for connection %d: no result.", i);
2298                         if (Conf_NoticeAuth)
2299                                 (void)Conn_WriteStr(i,
2300                                         "NOTICE AUTH :*** No ident response");
2301                 }
2302 #endif
2303
2304                 if (Conf_NoticeAuth) {
2305                         /* Send buffered data to the client, but break on
2306                          * errors because Handle_Write() would have closed
2307                          * the connection again in this case! */
2308                         if (!Handle_Write(i))
2309                                 return;
2310                 }
2311
2312                 Class_HandleServerBans(c);
2313         }
2314 #ifdef DEBUG
2315         else
2316                 LogDebug("Resolver: discarding result for already registered connection %d.", i);
2317 #endif
2318 } /* cb_Read_Resolver_Result */
2319
2320 /**
2321  * Write a "simple" (error) message to a socket.
2322  *
2323  * The message is sent without using the connection write buffers, without
2324  * compression/encryption, and even without any error reporting. It is
2325  * designed for error messages of e.g. New_Connection().
2326  *
2327  * @param Sock  Socket handle.
2328  * @param Msg   Message string to send.
2329  */
2330 static void
2331 Simple_Message(int Sock, const char *Msg)
2332 {
2333         char buf[COMMAND_LEN];
2334         size_t len;
2335
2336         assert(Sock > NONE);
2337         assert(Msg != NULL);
2338
2339         strlcpy(buf, Msg, sizeof buf - 2);
2340         len = strlcat(buf, "\r\n", sizeof buf);
2341         if (write(Sock, buf, len) < 0) {
2342                 /* Because this function most probably got called to log
2343                  * an error message, any write error is ignored here to
2344                  * avoid an endless loop. But casting the result of write()
2345                  * to "void" doesn't satisfy the GNU C code attribute
2346                  * "warn_unused_result" which is used by some versions of
2347                  * glibc (e.g. 2.11.1), therefore this silly error
2348                  * "handling" code here :-( */
2349                 return;
2350         }
2351 } /* Simple_Error */
2352
2353 /**
2354  * Get CLIENT structure that belongs to a local connection identified by its
2355  * index number. Each connection belongs to a client by definition, so it is
2356  * not required that the caller checks for NULL return values.
2357  *
2358  * @param Idx   Connection index number.
2359  * @returns     Pointer to CLIENT structure.
2360  */
2361 GLOBAL CLIENT *
2362 Conn_GetClient( CONN_ID Idx ) 
2363 {
2364         CONNECTION *c;
2365
2366         assert(Idx >= 0);
2367         c = array_get(&My_ConnArray, sizeof (CONNECTION), (size_t)Idx);
2368         assert(c != NULL);
2369         return c ? c->client : NULL;
2370 }
2371
2372 /**
2373  * Get PROC_STAT sub-process structure of a connection.
2374  *
2375  * @param Idx   Connection index number.
2376  * @returns     PROC_STAT structure.
2377  */
2378 GLOBAL PROC_STAT *
2379 Conn_GetProcStat(CONN_ID Idx)
2380 {
2381         CONNECTION *c;
2382
2383         assert(Idx >= 0);
2384         c = array_get(&My_ConnArray, sizeof (CONNECTION), (size_t)Idx);
2385         assert(c != NULL);
2386         return &c->proc_stat;
2387 } /* Conn_GetProcStat */
2388
2389 /**
2390  * Get CONN_ID from file descriptor associated to a subprocess structure.
2391  *
2392  * @param fd    File descriptor.
2393  * @returns     CONN_ID or NONE (-1).
2394  */
2395 GLOBAL CONN_ID
2396 Conn_GetFromProc(int fd)
2397 {
2398         int i;
2399
2400         assert(fd > 0);
2401         for (i = 0; i < Pool_Size; i++) {
2402                 if ((My_Connections[i].sock != NONE)
2403                     && (Proc_GetPipeFd(&My_Connections[i].proc_stat) == fd))
2404                         return i;
2405         }
2406         return NONE;
2407 } /* Conn_GetFromProc */
2408
2409 /**
2410  * Throttle a connection because of excessive usage.
2411  *
2412  * @param Reason The reason, see THROTTLE_xxx constants.
2413  * @param Idx The connection index.
2414  * @param Client The client of this connection.
2415  * @param Seconds The time to delay this connection.
2416  */
2417 static void
2418 Throttle_Connection(const CONN_ID Idx, CLIENT *Client, const int Reason,
2419                     unsigned int Value)
2420 {
2421         assert(Idx > NONE);
2422         assert(Client != NULL);
2423
2424         /* Never throttle servers or services, only interrupt processing */
2425         if (Client_Type(Client) == CLIENT_SERVER
2426             || Client_Type(Client) == CLIENT_UNKNOWNSERVER
2427             || Client_Type(Client) == CLIENT_SERVICE)
2428                 return;
2429
2430         LogDebug("Throttling connection %d: code %d, value %d!", Idx,
2431                  Reason, Value);
2432         Conn_SetPenalty(Idx, 1);
2433 }
2434
2435 #ifndef STRICT_RFC
2436
2437 GLOBAL long
2438 Conn_GetAuthPing(CONN_ID Idx)
2439 {
2440         assert (Idx != NONE);
2441         return My_Connections[Idx].auth_ping;
2442 } /* Conn_GetAuthPing */
2443
2444 GLOBAL void
2445 Conn_SetAuthPing(CONN_ID Idx, long ID)
2446 {
2447         assert (Idx != NONE);
2448         My_Connections[Idx].auth_ping = ID;
2449 } /* Conn_SetAuthPing */
2450
2451 #endif /* STRICT_RFC */
2452
2453 #ifdef SSL_SUPPORT
2454
2455 /**
2456  * IO callback for new SSL-enabled client and server connections.
2457  *
2458  * @param sock  Socket descriptor.
2459  * @param what  IO specification (IO_WANTREAD/IO_WANTWRITE/...).
2460  */
2461 static void
2462 cb_clientserver_ssl(int sock, UNUSED short what)
2463 {
2464         CONN_ID idx = Socket2Index(sock);
2465
2466         assert(idx >= 0);
2467
2468         if (idx < 0) {
2469                 io_close(sock);
2470                 return;
2471         }
2472
2473         switch (ConnSSL_Accept(&My_Connections[idx])) {
2474                 case 1:
2475                         break;  /* OK */
2476                 case 0:
2477                         return; /* EAGAIN: callback will be invoked again by IO layer */
2478                 default:
2479                         Conn_Close(idx,
2480                                    "SSL accept error, closing socket", "SSL accept error",
2481                                    false);
2482                         return;
2483         }
2484
2485         io_event_setcb(sock, cb_clientserver);  /* SSL handshake completed */
2486 }
2487
2488 /**
2489  * IO callback for listening SSL sockets: handle new connections. This callback
2490  * gets called when a new SSL-enabled connection should be accepted.
2491  *
2492  * @param sock          Socket descriptor.
2493  * @param irrelevant    (ignored IO specification)
2494  */
2495 static void
2496 cb_listen_ssl(int sock, short irrelevant)
2497 {
2498         int fd;
2499
2500         (void) irrelevant;
2501         fd = New_Connection(sock, true);
2502         if (fd < 0)
2503                 return;
2504         io_event_setcb(My_Connections[fd].sock, cb_clientserver_ssl);
2505 }
2506
2507 /**
2508  * IO callback for new outgoing SSL-enabled server connections.
2509  *
2510  * @param sock          Socket descriptor.
2511  * @param unused        (ignored IO specification)
2512  */
2513 static void
2514 cb_connserver_login_ssl(int sock, short unused)
2515 {
2516         CONN_ID idx = Socket2Index(sock);
2517
2518         assert(idx >= 0);
2519         if (idx < 0) {
2520                 io_close(sock);
2521                 return;
2522         }
2523         (void) unused;
2524         switch (ConnSSL_Connect( &My_Connections[idx])) {
2525                 case 1: break;
2526                 case 0: LogDebug("ConnSSL_Connect: not ready");
2527                         return;
2528                 case -1:
2529                         Log(LOG_ERR, "SSL connection on socket %d failed!", sock);
2530                         Conn_Close(idx, "Can't connect", NULL, false);
2531                         return;
2532         }
2533
2534         Log( LOG_INFO, "SSL connection %d with \"%s:%d\" established.", idx,
2535             My_Connections[idx].host, Conf_Server[Conf_GetServer( idx )].port );
2536
2537         server_login(idx);
2538 }
2539
2540
2541 /**
2542  * Check if SSL library needs to read SSL-protocol related data.
2543  *
2544  * SSL/TLS connections require extra treatment:
2545  * When either CONN_SSL_WANT_WRITE or CONN_SSL_WANT_READ is set, we
2546  * need to take care of that first, before checking read/write buffers.
2547  * For instance, while we might have data in our write buffer, the
2548  * TLS/SSL protocol might need to read internal data first for TLS/SSL
2549  * writes to succeed.
2550  *
2551  * If this function returns true, such a condition is met and we have
2552  * to reverse the condition (check for read even if we've data to write,
2553  * do not check for read but writeability even if write-buffer is empty).
2554  *
2555  * @param c     Connection to check.
2556  * @returns     true if SSL-library has to read protocol data.
2557  */
2558 static bool
2559 SSL_WantRead(const CONNECTION *c)
2560 {
2561         if (Conn_OPTION_ISSET(c, CONN_SSL_WANT_READ)) {
2562                 io_event_add(c->sock, IO_WANTREAD);
2563                 return true;
2564         }
2565         return false;
2566 }
2567
2568 /**
2569  * Check if SSL library needs to write SSL-protocol related data.
2570  *
2571  * Please see description of SSL_WantRead() for full description!
2572  *
2573  * @param c     Connection to check.
2574  * @returns     true if SSL-library has to write protocol data.
2575  */
2576 static bool
2577 SSL_WantWrite(const CONNECTION *c)
2578 {
2579         if (Conn_OPTION_ISSET(c, CONN_SSL_WANT_WRITE)) {
2580                 io_event_add(c->sock, IO_WANTWRITE);
2581                 return true;
2582         }
2583         return false;
2584 }
2585
2586 /**
2587  * Get information about used SSL cipher.
2588  *
2589  * @param Idx   Connection index number.
2590  * @param buf   Buffer for returned information text.
2591  * @param len   Size of return buffer "buf".
2592  * @returns     true on success, false otherwise.
2593  */
2594 GLOBAL bool
2595 Conn_GetCipherInfo(CONN_ID Idx, char *buf, size_t len)
2596 {
2597         if (Idx < 0)
2598                 return false;
2599         assert(Idx < (int) array_length(&My_ConnArray, sizeof(CONNECTION)));
2600         return ConnSSL_GetCipherInfo(&My_Connections[Idx], buf, len);
2601 }
2602
2603 /**
2604  * Check if a connection is SSL-enabled or not.
2605  *
2606  * @param Idx   Connection index number.
2607  * @return      true if connection is SSL-enabled, false otherwise.
2608  */
2609 GLOBAL bool
2610 Conn_UsesSSL(CONN_ID Idx)
2611 {
2612         if (Idx < 0)
2613                 return false;
2614         assert(Idx < (int) array_length(&My_ConnArray, sizeof(CONNECTION)));
2615         return Conn_OPTION_ISSET(&My_Connections[Idx], CONN_SSL);
2616 }
2617
2618 GLOBAL char *
2619 Conn_GetCertFp(CONN_ID Idx)
2620 {
2621         if (Idx < 0)
2622                 return NULL;
2623         assert(Idx < (int) array_length(&My_ConnArray, sizeof(CONNECTION)));
2624         return ConnSSL_GetCertFp(&My_Connections[Idx]);
2625 }
2626
2627 GLOBAL bool
2628 Conn_SetCertFp(CONN_ID Idx, const char *fingerprint)
2629 {
2630         if (Idx < 0)
2631                 return false;
2632         assert(Idx < (int) array_length(&My_ConnArray, sizeof(CONNECTION)));
2633         return ConnSSL_SetCertFp(&My_Connections[Idx], fingerprint);
2634 }
2635
2636 #else /* SSL_SUPPORT */
2637
2638 GLOBAL bool
2639 Conn_UsesSSL(UNUSED CONN_ID Idx)
2640 {
2641         return false;
2642 }
2643
2644 GLOBAL char *
2645 Conn_GetCertFp(UNUSED CONN_ID Idx)
2646 {
2647         return NULL;
2648 }
2649
2650 GLOBAL bool
2651 Conn_SetCertFp(UNUSED CONN_ID Idx, UNUSED const char *fingerprint)
2652 {
2653         return true;
2654 }
2655
2656 #endif /* SSL_SUPPORT */
2657
2658 #ifdef DEBUG
2659
2660 /**
2661  * Dump internal state of the "connection module".
2662  */
2663 GLOBAL void
2664 Conn_DebugDump(void)
2665 {
2666         int i;
2667
2668         Log(LOG_DEBUG, "Connection status:");
2669         for (i = 0; i < Pool_Size; i++) {
2670                 if (My_Connections[i].sock == NONE)
2671                         continue;
2672                 Log(LOG_DEBUG,
2673                     " - %d: host=%s, lastdata=%ld, lastping=%ld, delaytime=%ld, flag=%d, options=%d, bps=%d, client=%s",
2674                     My_Connections[i].sock, My_Connections[i].host,
2675                     My_Connections[i].lastdata, My_Connections[i].lastping,
2676                     My_Connections[i].delaytime, My_Connections[i].flag,
2677                     My_Connections[i].options, My_Connections[i].bps,
2678                     My_Connections[i].client ? Client_ID(My_Connections[i].client) : "-");
2679         }
2680 } /* Conn_DumpClients */
2681
2682 #endif /* DEBUG */
2683
2684 /* -eof- */