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