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