]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conn.c
Remove Proc_Kill(), use timeout to kill child processes
[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         /* Servers: Modify time of next connect attempt? */
1095         Conf_UnsetServer( Idx );
1096
1097 #ifdef ZLIB
1098         /* Clean up zlib, if link was compressed */
1099         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP )) {
1100                 inflateEnd( &My_Connections[Idx].zip.in );
1101                 deflateEnd( &My_Connections[Idx].zip.out );
1102                 array_free(&My_Connections[Idx].zip.rbuf);
1103                 array_free(&My_Connections[Idx].zip.wbuf);
1104         }
1105 #endif
1106
1107         array_free(&My_Connections[Idx].rbuf);
1108         array_free(&My_Connections[Idx].wbuf);
1109
1110         /* Clean up connection structure (=free it) */
1111         Init_Conn_Struct( Idx );
1112
1113         assert(NumConnections > 0);
1114         if (NumConnections)
1115                 NumConnections--;
1116         LogDebug("Shutdown of connection %d completed, %ld connection%s left.",
1117                  Idx, NumConnections, NumConnections != 1 ? "s" : "");
1118 } /* Conn_Close */
1119
1120
1121 GLOBAL long
1122 Conn_Count(void)
1123 {
1124         return NumConnections;
1125 } /* Conn_Count */
1126
1127
1128 GLOBAL long
1129 Conn_CountMax(void)
1130 {
1131         return NumConnectionsMax;
1132 } /* Conn_CountMax */
1133
1134
1135 GLOBAL long
1136 Conn_CountAccepted(void)
1137 {
1138         return NumConnectionsAccepted;
1139 } /* Conn_CountAccepted */
1140
1141
1142 GLOBAL void
1143 Conn_SyncServerStruct( void )
1144 {
1145         /* Synchronize server structures (connection IDs):
1146          * connections <-> configuration */
1147
1148         CLIENT *client;
1149         CONN_ID i;
1150         int c;
1151
1152         for( i = 0; i < Pool_Size; i++ ) {
1153                 /* Established connection? */
1154                 if (My_Connections[i].sock < 0)
1155                         continue;
1156
1157                 /* Server connection? */
1158                 client = Conn_GetClient( i );
1159                 if(( ! client ) || ( Client_Type( client ) != CLIENT_SERVER )) continue;
1160
1161                 for( c = 0; c < MAX_SERVERS; c++ )
1162                 {
1163                         /* Configured server? */
1164                         if( ! Conf_Server[c].host[0] ) continue;
1165
1166                         /* Duplicate? */
1167                         if( strcmp( Conf_Server[c].name, Client_ID( client )) == 0 )
1168                                 Conf_Server[c].conn_id = i;
1169                 }
1170         }
1171 } /* SyncServerStruct */
1172
1173
1174 /**
1175  * Send out data of write buffer; connect new sockets.
1176  */
1177 static bool
1178 Handle_Write( CONN_ID Idx )
1179 {
1180         ssize_t len;
1181         size_t wdatalen;
1182
1183         assert( Idx > NONE );
1184         if ( My_Connections[Idx].sock < 0 ) {
1185                 LogDebug("Handle_Write() on closed socket, connection %d", Idx);
1186                 return false;
1187         }
1188         assert( My_Connections[Idx].sock > NONE );
1189
1190         wdatalen = array_bytes(&My_Connections[Idx].wbuf );
1191
1192 #ifdef ZLIB
1193         if (wdatalen == 0) {
1194                 /* Write buffer is empty, so we try to flush the compression
1195                  * buffer and get some data to work with from there :-) */
1196                 if (!Zip_Flush(Idx))
1197                         return false;
1198
1199                 /* Now the write buffer most probably has changed: */
1200                 wdatalen = array_bytes(&My_Connections[Idx].wbuf);
1201         }
1202 #endif
1203
1204         if (wdatalen == 0) {
1205                 /* Still no data, fine. */
1206                 io_event_del(My_Connections[Idx].sock, IO_WANTWRITE );
1207                 return true;
1208         }
1209
1210         LogDebug
1211             ("Handle_Write() called for connection %d, %ld bytes pending ...",
1212              Idx, wdatalen);
1213
1214 #ifdef SSL_SUPPORT
1215         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_SSL )) {
1216                 len = ConnSSL_Write(&My_Connections[Idx], array_start(&My_Connections[Idx].wbuf), wdatalen);
1217         } else
1218 #endif
1219         {
1220                 len = write(My_Connections[Idx].sock,
1221                             array_start(&My_Connections[Idx].wbuf), wdatalen );
1222         }
1223         if( len < 0 ) {
1224                 if (errno == EAGAIN || errno == EINTR)
1225                         return true;
1226
1227                 Log(LOG_ERR, "Write error on connection %d (socket %d): %s!",
1228                     Idx, My_Connections[Idx].sock, strerror(errno));
1229                 Conn_Close(Idx, "Write error!", NULL, false);
1230                 return false;
1231         }
1232
1233         /* move any data not yet written to beginning */
1234         array_moveleft(&My_Connections[Idx].wbuf, 1, (size_t)len);
1235
1236         return true;
1237 } /* Handle_Write */
1238
1239
1240 static int
1241 Count_Connections(ng_ipaddr_t *a)
1242 {
1243         int i, cnt;
1244
1245         cnt = 0;
1246         for (i = 0; i < Pool_Size; i++) {
1247                 if (My_Connections[i].sock <= NONE)
1248                         continue;
1249                 if (ng_ipaddr_ipequal(&My_Connections[i].addr, a))
1250                         cnt++;
1251         }
1252         return cnt;
1253 } /* Count_Connections */
1254
1255
1256 /**
1257  * Initialize new client connection on a listening socket.
1258  * @param Sock Listening socket descriptor
1259  * @return Accepted socket descriptor or -1 on error
1260  */
1261 static int
1262 New_Connection(int Sock)
1263 {
1264 #ifdef TCPWRAP
1265         struct request_info req;
1266 #endif
1267         ng_ipaddr_t new_addr;
1268         char ip_str[NG_INET_ADDRSTRLEN];
1269         int new_sock, new_sock_len, identsock;
1270         CLIENT *c;
1271         long cnt;
1272
1273         assert(Sock > NONE);
1274
1275         new_sock_len = (int)sizeof(new_addr);
1276         new_sock = accept(Sock, (struct sockaddr *)&new_addr,
1277                           (socklen_t *)&new_sock_len);
1278         if (new_sock < 0) {
1279                 Log(LOG_CRIT, "Can't accept connection: %s!", strerror(errno));
1280                 return -1;
1281         }
1282         NumConnectionsAccepted++;
1283
1284         if (!ng_ipaddr_tostr_r(&new_addr, ip_str)) {
1285                 Log(LOG_CRIT, "fd %d: Can't convert IP address!", new_sock);
1286                 Simple_Message(new_sock, "ERROR :Internal Server Error");
1287                 close(new_sock);
1288                 return -1;
1289         }
1290
1291 #ifdef TCPWRAP
1292         /* Validate socket using TCP Wrappers */
1293         request_init(&req, RQ_DAEMON, PACKAGE_NAME, RQ_FILE, new_sock,
1294                      RQ_CLIENT_SIN, &new_addr, NULL);
1295         fromhost(&req);
1296         if (!hosts_access(&req)) {
1297                 Log(deny_severity,
1298                     "Refused connection from %s (by TCP Wrappers)!", ip_str);
1299                 Simple_Message(new_sock, "ERROR :Connection refused");
1300                 close(new_sock);
1301                 return -1;
1302         }
1303 #endif
1304
1305         if (!Init_Socket(new_sock))
1306                 return -1;
1307
1308         /* Check global connection limit */
1309         if ((Conf_MaxConnections > 0) &&
1310             (NumConnections >= (size_t) Conf_MaxConnections)) {
1311                 Log(LOG_ALERT, "Can't accept connection: limit (%d) reached!",
1312                     Conf_MaxConnections);
1313                 Simple_Message(new_sock, "ERROR :Connection limit reached");
1314                 close(new_sock);
1315                 return -1;
1316         }
1317
1318         /* Check IP-based connection limit */
1319         cnt = Count_Connections(&new_addr);
1320         if ((Conf_MaxConnectionsIP > 0) && (cnt >= Conf_MaxConnectionsIP)) {
1321                 /* Access denied, too many connections from this IP address! */
1322                 Log(LOG_ERR,
1323                     "Refused connection from %s: too may connections (%ld) from this IP address!",
1324                     ip_str, cnt);
1325                 Simple_Message(new_sock,
1326                                "ERROR :Connection refused, too many connections from your IP address!");
1327                 close(new_sock);
1328                 return -1;
1329         }
1330
1331         if (new_sock >= Pool_Size) {
1332                 if (!array_alloc(&My_ConnArray, sizeof(CONNECTION),
1333                                  (size_t) new_sock)) {
1334                         Log(LOG_EMERG,
1335                             "Can't allocate memory! [New_Connection]");
1336                         Simple_Message(new_sock, "ERROR: Internal error");
1337                         close(new_sock);
1338                         return -1;
1339                 }
1340                 LogDebug("Bumped connection pool to %ld items (internal: %ld items, %ld bytes)",
1341                          new_sock, array_length(&My_ConnArray,
1342                          sizeof(CONNECTION)), array_bytes(&My_ConnArray));
1343
1344                 /* Adjust pointer to new block */
1345                 My_Connections = array_start(&My_ConnArray);
1346                 while (Pool_Size <= new_sock)
1347                         Init_Conn_Struct(Pool_Size++);
1348         }
1349
1350         /* register callback */
1351         if (!io_event_create(new_sock, IO_WANTREAD, cb_clientserver)) {
1352                 Log(LOG_ALERT,
1353                     "Can't accept connection: io_event_create failed!");
1354                 Simple_Message(new_sock, "ERROR :Internal error");
1355                 close(new_sock);
1356                 return -1;
1357         }
1358
1359         c = Client_NewLocal(new_sock, ip_str, CLIENT_UNKNOWN, false);
1360         if (!c) {
1361                 Log(LOG_ALERT,
1362                     "Can't accept connection: can't create client structure!");
1363                 Simple_Message(new_sock, "ERROR :Internal error");
1364                 io_close(new_sock);
1365                 return -1;
1366         }
1367
1368         Init_Conn_Struct(new_sock);
1369         My_Connections[new_sock].sock = new_sock;
1370         My_Connections[new_sock].addr = new_addr;
1371         My_Connections[new_sock].client = c;
1372
1373         /* Set initial hostname to IP address. This becomes overwritten when
1374          * the DNS lookup is enabled and succeeds, but is used otherwise. */
1375         if (ng_ipaddr_af(&new_addr) != AF_INET)
1376                 snprintf(My_Connections[new_sock].host,
1377                          sizeof(My_Connections[new_sock].host), "[%s]", ip_str);
1378         else
1379                 strlcpy(My_Connections[new_sock].host, ip_str,
1380                         sizeof(My_Connections[new_sock].host));
1381
1382         Client_SetHostname(c, My_Connections[new_sock].host);
1383
1384         Log(LOG_INFO, "Accepted connection %d from %s:%d on socket %d.",
1385             new_sock, My_Connections[new_sock].host,
1386             ng_ipaddr_getport(&new_addr), Sock);
1387
1388         identsock = new_sock;
1389 #ifdef IDENTAUTH
1390         if (Conf_NoIdent)
1391                 identsock = -1;
1392 #endif
1393         if (!Conf_NoDNS)
1394                 Resolve_Addr(&My_Connections[new_sock].proc_stat, &new_addr,
1395                              identsock, cb_Read_Resolver_Result);
1396
1397         Account_Connection();
1398         return new_sock;
1399 } /* New_Connection */
1400
1401
1402 static void
1403 Account_Connection(void)
1404 {
1405         NumConnections++;
1406         if (NumConnections > NumConnectionsMax)
1407                 NumConnectionsMax = NumConnections;
1408         LogDebug("Total number of connections now %lu (max %lu).",
1409                  NumConnections, NumConnectionsMax);
1410 } /* Account_Connection */
1411
1412
1413 static CONN_ID
1414 Socket2Index( int Sock )
1415 {
1416         assert( Sock >= 0 );
1417
1418         if( Sock >= Pool_Size || My_Connections[Sock].sock != Sock ) {
1419                 /* the Connection was already closed again, likely due to
1420                  * an error. */
1421                 LogDebug("Socket2Index: can't get connection for socket %d!", Sock);
1422                 return NONE;
1423         }
1424         return Sock;
1425 } /* Socket2Index */
1426
1427
1428 /**
1429  * Read data from the network to the read buffer. If an error occures,
1430  * the socket of this connection will be shut down.
1431  */
1432 static void
1433 Read_Request( CONN_ID Idx )
1434 {
1435         ssize_t len;
1436         static const unsigned int maxbps = COMMAND_LEN / 2;
1437         char readbuf[READBUFFER_LEN];
1438         time_t t;
1439         CLIENT *c;
1440         assert( Idx > NONE );
1441         assert( My_Connections[Idx].sock > NONE );
1442
1443 #ifdef ZLIB
1444         if ((array_bytes(&My_Connections[Idx].rbuf) >= READBUFFER_LEN) ||
1445                 (array_bytes(&My_Connections[Idx].zip.rbuf) >= READBUFFER_LEN))
1446 #else
1447         if (array_bytes(&My_Connections[Idx].rbuf) >= READBUFFER_LEN)
1448 #endif
1449         {
1450                 /* Read buffer is full */
1451                 Log(LOG_ERR,
1452                     "Receive buffer overflow (connection %d): %d bytes!",
1453                     Idx, array_bytes(&My_Connections[Idx].rbuf));
1454                 Conn_Close( Idx, "Receive buffer overflow!", NULL, false );
1455                 return;
1456         }
1457
1458 #ifdef SSL_SUPPORT
1459         if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_SSL))
1460                 len = ConnSSL_Read( &My_Connections[Idx], readbuf, sizeof(readbuf));
1461         else
1462 #endif
1463         len = read(My_Connections[Idx].sock, readbuf, sizeof(readbuf));
1464         if (len == 0) {
1465                 Log(LOG_INFO, "%s:%u (%s) is closing the connection ...",
1466                                 My_Connections[Idx].host,
1467                                 (unsigned int) ng_ipaddr_getport(&My_Connections[Idx].addr),
1468                                 ng_ipaddr_tostr(&My_Connections[Idx].addr));
1469                 Conn_Close(Idx,
1470                            "Socket closed!", "Client closed connection",
1471                            false);
1472                 return;
1473         }
1474
1475         if (len < 0) {
1476                 if( errno == EAGAIN ) return;
1477                 Log(LOG_ERR, "Read error on connection %d (socket %d): %s!",
1478                     Idx, My_Connections[Idx].sock, strerror(errno));
1479                 Conn_Close(Idx, "Read error!", "Client closed connection",
1480                            false);
1481                 return;
1482         }
1483 #ifdef ZLIB
1484         if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_ZIP)) {
1485                 if (!array_catb(&My_Connections[Idx].zip.rbuf, readbuf,
1486                                 (size_t) len)) {
1487                         Log(LOG_ERR,
1488                             "Could not append recieved data to zip input buffer (connn %d): %d bytes!",
1489                             Idx, len);
1490                         Conn_Close(Idx, "Receive buffer overflow!", NULL,
1491                                    false);
1492                         return;
1493                 }
1494         } else
1495 #endif
1496         {
1497                 if (!array_catb( &My_Connections[Idx].rbuf, readbuf, len)) {
1498                         Log( LOG_ERR, "Could not append recieved data to input buffer (connn %d): %d bytes!", Idx, len );
1499                         Conn_Close( Idx, "Receive buffer overflow!", NULL, false );
1500                 }
1501         }
1502
1503         /* Update connection statistics */
1504         My_Connections[Idx].bytes_in += len;
1505
1506         /* Update timestamp of last data received if this connection is
1507          * registered as a user, server or service connection. Don't update
1508          * otherwise, so users have at least Conf_PongTimeout seconds time to
1509          * register with the IRC server -- see Check_Connections().
1510          * Set "lastping", too, so we can handle time shifts backwards ... */
1511         c = Conn_GetClient(Idx);
1512         if (c && (Client_Type(c) == CLIENT_USER
1513                   || Client_Type(c) == CLIENT_SERVER
1514                   || Client_Type(c) == CLIENT_SERVICE)) {
1515                 t = time(NULL);
1516                 if (My_Connections[Idx].lastdata != t)
1517                         My_Connections[Idx].bps = 0;
1518
1519                 My_Connections[Idx].lastdata = t;
1520                 My_Connections[Idx].lastping = My_Connections[Idx].lastdata;
1521         }
1522
1523         /* Look at the data in the (read-) buffer of this connection */
1524         My_Connections[Idx].bps += Handle_Buffer(Idx);
1525         if (Client_Type(c) != CLIENT_SERVER
1526             && My_Connections[Idx].bps >= maxbps) {
1527                 LogDebug("Throttling connection %d: BPS exceeded! (%u >= %u)",
1528                          Idx, My_Connections[Idx].bps, maxbps);
1529                 Conn_SetPenalty(Idx, 1);
1530         }
1531 } /* Read_Request */
1532
1533
1534 /**
1535  * Handle all data in the connection read-buffer.
1536  * Data is processed until no complete command is left in the read buffer,
1537  * or MAX_COMMANDS[_SERVER] commands were processed.
1538  * When a fatal error occurs, the connection is shut down.
1539  * @param Idx Index of the connection.
1540  * @return number of bytes processed.
1541  */
1542 static unsigned int
1543 Handle_Buffer(CONN_ID Idx)
1544 {
1545 #ifndef STRICT_RFC
1546         char *ptr1, *ptr2, *first_eol;
1547 #endif
1548         char *ptr;
1549         size_t len, delta;
1550         time_t starttime;
1551 #ifdef ZLIB
1552         bool old_z;
1553 #endif
1554         unsigned int i, maxcmd = MAX_COMMANDS, len_processed = 0;
1555         CLIENT *c;
1556
1557         c = Conn_GetClient(Idx);
1558         assert( c != NULL);
1559
1560         /* Servers do get special command limits, so they can process
1561          * all the messages that are required while peering. */
1562         if (Client_Type(c) == CLIENT_SERVER)
1563                 maxcmd = MAX_COMMANDS_SERVER;
1564
1565         starttime = time(NULL);
1566         for (i=0; i < maxcmd; i++) {
1567                 /* Check penalty */
1568                 if (My_Connections[Idx].delaytime > starttime)
1569                         return 0;
1570 #ifdef ZLIB
1571                 /* Unpack compressed data, if compression is in use */
1572                 if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_ZIP)) {
1573                         /* When unzipping fails, Unzip_Buffer() shuts
1574                          * down the connection itself */
1575                         if (!Unzip_Buffer(Idx))
1576                                 return 0;
1577                 }
1578 #endif
1579
1580                 if (0 == array_bytes(&My_Connections[Idx].rbuf))
1581                         break;
1582
1583                 /* Make sure that the buffer is NULL terminated */
1584                 if (!array_cat0_temporary(&My_Connections[Idx].rbuf)) {
1585                         Conn_Close(Idx, NULL,
1586                                    "Can't allocate memory [Handle_Buffer]",
1587                                    true);
1588                         return 0;
1589                 }
1590
1591                 /* RFC 2812, section "2.3 Messages", 5th paragraph:
1592                  * "IRC messages are always lines of characters terminated
1593                  * with a CR-LF (Carriage Return - Line Feed) pair [...]". */
1594                 delta = 2;
1595                 ptr = strstr(array_start(&My_Connections[Idx].rbuf), "\r\n");
1596
1597 #ifndef STRICT_RFC
1598                 /* Check for non-RFC-compliant request (only CR or LF)?
1599                  * Unfortunately, there are quite a few clients out there
1600                  * that do this -- e. g. mIRC, BitchX, and Trillian :-( */
1601                 ptr1 = strchr(array_start(&My_Connections[Idx].rbuf), '\r');
1602                 ptr2 = strchr(array_start(&My_Connections[Idx].rbuf), '\n');
1603                 if (ptr) {
1604                         /* Check if there is a single CR or LF _before_ the
1605                          * corerct CR+LF line terminator:  */
1606                         first_eol = ptr1 < ptr2 ? ptr1 : ptr2;
1607                         if (first_eol < ptr) {
1608                                 /* Single CR or LF before CR+LF found */
1609                                 ptr = first_eol;
1610                                 delta = 1;
1611                         }
1612                 } else if (ptr1 || ptr2) {
1613                         /* No CR+LF terminated command found, but single
1614                          * CR or LF found ... */
1615                         if (ptr1 && ptr2)
1616                                 ptr = ptr1 < ptr2 ? ptr1 : ptr2;
1617                         else
1618                                 ptr = ptr1 ? ptr1 : ptr2;
1619                         delta = 1;
1620                 }
1621 #endif
1622
1623                 if (!ptr)
1624                         break;
1625
1626                 /* Complete (=line terminated) request found, handle it! */
1627                 *ptr = '\0';
1628
1629                 len = ptr - (char *)array_start(&My_Connections[Idx].rbuf) + delta;
1630
1631                 if (len > (COMMAND_LEN - 1)) {
1632                         /* Request must not exceed 512 chars (incl. CR+LF!),
1633                          * see RFC 2812. Disconnect Client if this happens. */
1634                         Log(LOG_ERR,
1635                             "Request too long (connection %d): %d bytes (max. %d expected)!",
1636                             Idx, array_bytes(&My_Connections[Idx].rbuf),
1637                             COMMAND_LEN - 1);
1638                         Conn_Close(Idx, NULL, "Request too long", true);
1639                         return 0;
1640                 }
1641
1642                 len_processed += (unsigned int)len;
1643                 if (len <= delta) {
1644                         /* Request is empty (only '\r\n', '\r' or '\n');
1645                          * delta is 2 ('\r\n') or 1 ('\r' or '\n'), see above */
1646                         array_moveleft(&My_Connections[Idx].rbuf, 1, len);
1647                         continue;
1648                 }
1649 #ifdef ZLIB
1650                 /* remember if stream is already compressed */
1651                 old_z = My_Connections[Idx].options & CONN_ZIP;
1652 #endif
1653
1654                 My_Connections[Idx].msg_in++;
1655                 if (!Parse_Request
1656                     (Idx, (char *)array_start(&My_Connections[Idx].rbuf)))
1657                         return 0; /* error -> connection has been closed */
1658
1659                 array_moveleft(&My_Connections[Idx].rbuf, 1, len);
1660                 LogDebug("Connection %d: %d bytes left in read buffer.",
1661                          Idx, array_bytes(&My_Connections[Idx].rbuf));
1662 #ifdef ZLIB
1663                 if ((!old_z) && (My_Connections[Idx].options & CONN_ZIP) &&
1664                     (array_bytes(&My_Connections[Idx].rbuf) > 0)) {
1665                         /* The last command activated socket compression.
1666                          * Data that was read after that needs to be copied
1667                          * to the unzip buffer for decompression: */
1668                         if (!array_copy
1669                             (&My_Connections[Idx].zip.rbuf,
1670                              &My_Connections[Idx].rbuf)) {
1671                                 Conn_Close(Idx, NULL,
1672                                            "Can't allocate memory [Handle_Buffer]",
1673                                            true);
1674                                 return 0;
1675                         }
1676
1677                         array_trunc(&My_Connections[Idx].rbuf);
1678                         LogDebug
1679                             ("Moved already received data (%u bytes) to uncompression buffer.",
1680                              array_bytes(&My_Connections[Idx].zip.rbuf));
1681                 }
1682 #endif
1683         }
1684         return len_processed;
1685 } /* Handle_Buffer */
1686
1687
1688 static void
1689 Check_Connections(void)
1690 {
1691         /* check if connections are alive. if not, play PING-PONG first.
1692          * if this doesn't help either, disconnect client. */
1693         CLIENT *c;
1694         CONN_ID i;
1695         char msg[64];
1696
1697         for (i = 0; i < Pool_Size; i++) {
1698                 if (My_Connections[i].sock < 0)
1699                         continue;
1700
1701                 c = Conn_GetClient(i);
1702                 if (c && ((Client_Type(c) == CLIENT_USER)
1703                           || (Client_Type(c) == CLIENT_SERVER)
1704                           || (Client_Type(c) == CLIENT_SERVICE))) {
1705                         /* connected User, Server or Service */
1706                         if (My_Connections[i].lastping >
1707                             My_Connections[i].lastdata) {
1708                                 /* We already sent a ping */
1709                                 if (My_Connections[i].lastping <
1710                                     time(NULL) - Conf_PongTimeout) {
1711                                         /* Timeout */
1712                                         LogDebug
1713                                             ("Connection %d: Ping timeout: %d seconds.",
1714                                              i, Conf_PongTimeout);
1715                                         snprintf(msg, sizeof(msg), "Ping timeout: %d seconds", Conf_PongTimeout);
1716                                         Conn_Close(i, NULL, msg, true);
1717                                 }
1718                         } else if (My_Connections[i].lastdata <
1719                                    time(NULL) - Conf_PingTimeout) {
1720                                 /* We need to send a PING ... */
1721                                 LogDebug("Connection %d: sending PING ...", i);
1722                                 My_Connections[i].lastping = time(NULL);
1723                                 Conn_WriteStr(i, "PING :%s",
1724                                               Client_ID(Client_ThisServer()));
1725                         }
1726                 } else {
1727                         /* The connection is not fully established yet, so
1728                          * we don't do the PING-PONG game here but instead
1729                          * disconnect the client after "a short time" if it's
1730                          * still not registered. */
1731
1732                         if (My_Connections[i].lastdata <
1733                             time(NULL) - Conf_PongTimeout) {
1734                                 LogDebug
1735                                     ("Unregistered connection %d timed out ...",
1736                                      i);
1737                                 Conn_Close(i, NULL, "Timeout", false);
1738                         }
1739                 }
1740         }
1741 } /* Check_Connections */
1742
1743
1744 static void
1745 Check_Servers( void )
1746 {
1747         /* Check if we can establish further server links */
1748
1749         int i, n;
1750         time_t time_now;
1751
1752         /* Check all configured servers */
1753         for( i = 0; i < MAX_SERVERS; i++ ) {
1754                 /* Valid outgoing server which isn't already connected or disabled? */
1755                 if(( ! Conf_Server[i].host[0] ) || ( ! Conf_Server[i].port > 0 ) ||
1756                         ( Conf_Server[i].conn_id > NONE ) || ( Conf_Server[i].flags & CONF_SFLAG_DISABLED ))
1757                                 continue;
1758
1759                 /* Is there already a connection in this group? */
1760                 if( Conf_Server[i].group > NONE ) {
1761                         for (n = 0; n < MAX_SERVERS; n++) {
1762                                 if (n == i) continue;
1763                                 if ((Conf_Server[n].conn_id != NONE) &&
1764                                         (Conf_Server[n].group == Conf_Server[i].group))
1765                                                 break;
1766                         }
1767                         if (n < MAX_SERVERS) continue;
1768                 }
1769
1770                 /* Check last connect attempt? */
1771                 time_now = time(NULL);
1772                 if( Conf_Server[i].lasttry > (time_now - Conf_ConnectRetry))
1773                         continue;
1774
1775                 /* Okay, try to connect now */
1776                 Conf_Server[i].lasttry = time_now;
1777                 Conf_Server[i].conn_id = SERVER_WAIT;
1778                 assert(Proc_GetPipeFd(&Conf_Server[i].res_stat) < 0);
1779                 Resolve_Name(&Conf_Server[i].res_stat, Conf_Server[i].host, cb_Connect_to_Server);
1780         }
1781 } /* Check_Servers */
1782
1783
1784 static void
1785 New_Server( int Server , ng_ipaddr_t *dest)
1786 {
1787         /* Establish new server link */
1788         char ip_str[NG_INET_ADDRSTRLEN];
1789         int af_dest, res, new_sock;
1790         CLIENT *c;
1791
1792         assert( Server > NONE );
1793
1794         if (!ng_ipaddr_tostr_r(dest, ip_str)) {
1795                 Log(LOG_WARNING, "New_Server: Could not convert IP to string");
1796                 return;
1797         }
1798
1799         Log( LOG_INFO, "Establishing connection to \"%s\", %s, port %d ... ",
1800                         Conf_Server[Server].host, ip_str, Conf_Server[Server].port );
1801
1802         af_dest = ng_ipaddr_af(dest);
1803         new_sock = socket(af_dest, SOCK_STREAM, 0);
1804         if (new_sock < 0) {
1805                 Log( LOG_CRIT, "Can't create socket (af %d) : %s!", af_dest, strerror( errno ));
1806                 return;
1807         }
1808
1809         if (!Init_Socket(new_sock))
1810                 return;
1811
1812         /* is a bind address configured? */
1813         res = ng_ipaddr_af(&Conf_Server[Server].bind_addr);
1814         /* if yes, bind now. If it fails, warn and let connect() pick a source address */
1815         if (res && bind(new_sock, (struct sockaddr *) &Conf_Server[Server].bind_addr,
1816                                 ng_ipaddr_salen(&Conf_Server[Server].bind_addr)))
1817         {
1818                 ng_ipaddr_tostr_r(&Conf_Server[Server].bind_addr, ip_str);
1819                 Log(LOG_WARNING, "Can't bind socket to %s: %s!", ip_str, strerror(errno));
1820         }
1821         ng_ipaddr_setport(dest, Conf_Server[Server].port);
1822         res = connect(new_sock, (struct sockaddr *) dest, ng_ipaddr_salen(dest));
1823         if(( res != 0 ) && ( errno != EINPROGRESS )) {
1824                 Log( LOG_CRIT, "Can't connect socket: %s!", strerror( errno ));
1825                 close( new_sock );
1826                 return;
1827         }
1828
1829         if (!array_alloc(&My_ConnArray, sizeof(CONNECTION), (size_t)new_sock)) {
1830                 Log(LOG_ALERT,
1831                     "Cannot allocate memory for server connection (socket %d)",
1832                     new_sock);
1833                 close( new_sock );
1834                 return;
1835         }
1836
1837         My_Connections = array_start(&My_ConnArray);
1838
1839         assert(My_Connections[new_sock].sock <= 0);
1840
1841         Init_Conn_Struct(new_sock);
1842
1843         ng_ipaddr_tostr_r(dest, ip_str);
1844         c = Client_NewLocal(new_sock, ip_str, CLIENT_UNKNOWNSERVER, false);
1845         if (!c) {
1846                 Log( LOG_ALERT, "Can't establish connection: can't create client structure!" );
1847                 close( new_sock );
1848                 return;
1849         }
1850
1851         /* Conn_Close() decrements this counter again */
1852         Account_Connection();
1853         Client_SetIntroducer( c, c );
1854         Client_SetToken( c, TOKEN_OUTBOUND );
1855
1856         /* Register connection */
1857         Conf_Server[Server].conn_id = new_sock;
1858         My_Connections[new_sock].sock = new_sock;
1859         My_Connections[new_sock].addr = *dest;
1860         My_Connections[new_sock].client = c;
1861         strlcpy( My_Connections[new_sock].host, Conf_Server[Server].host,
1862                                 sizeof(My_Connections[new_sock].host ));
1863
1864         /* Register new socket */
1865         if (!io_event_create( new_sock, IO_WANTWRITE, cb_connserver)) {
1866                 Log( LOG_ALERT, "io_event_create(): could not add fd %d", strerror(errno));
1867                 Conn_Close( new_sock, "io_event_create() failed", NULL, false );
1868                 Init_Conn_Struct( new_sock );
1869                 Conf_Server[Server].conn_id = NONE;
1870         }
1871 #ifdef SSL_SUPPORT
1872         if (Conf_Server[Server].SSLConnect && !ConnSSL_PrepareConnect( &My_Connections[new_sock],
1873                                                                 &Conf_Server[Server] ))
1874         {
1875                 Log(LOG_ALERT, "Could not initialize SSL for outgoing connection");
1876                 Conn_Close( new_sock, "Could not initialize SSL for outgoing connection", NULL, false );
1877                 Init_Conn_Struct( new_sock );
1878                 Conf_Server[Server].conn_id = NONE;
1879                 return;
1880         }
1881 #endif
1882         LogDebug("Registered new connection %d on socket %d (%ld in total).",
1883                  new_sock, My_Connections[new_sock].sock, NumConnections);
1884         Conn_OPTION_ADD( &My_Connections[new_sock], CONN_ISCONNECTING );
1885 } /* New_Server */
1886
1887
1888 /**
1889  * Initialize connection structure.
1890  */
1891 static void
1892 Init_Conn_Struct(CONN_ID Idx)
1893 {
1894         time_t now = time(NULL);
1895
1896         memset(&My_Connections[Idx], 0, sizeof(CONNECTION));
1897         My_Connections[Idx].sock = -1;
1898         My_Connections[Idx].signon = now;
1899         My_Connections[Idx].lastdata = now;
1900         My_Connections[Idx].lastprivmsg = now;
1901         Proc_InitStruct(&My_Connections[Idx].proc_stat);
1902 } /* Init_Conn_Struct */
1903
1904
1905 static bool
1906 Init_Socket( int Sock )
1907 {
1908         /* Initialize socket (set options) */
1909
1910         int value;
1911
1912         if (!io_setnonblock(Sock)) {
1913                 Log( LOG_CRIT, "Can't enable non-blocking mode for socket: %s!", strerror( errno ));
1914                 close( Sock );
1915                 return false;
1916         }
1917
1918         /* Don't block this port after socket shutdown */
1919         value = 1;
1920         if( setsockopt( Sock, SOL_SOCKET, SO_REUSEADDR, &value, (socklen_t)sizeof( value )) != 0 )
1921         {
1922                 Log( LOG_ERR, "Can't set socket option SO_REUSEADDR: %s!", strerror( errno ));
1923                 /* ignore this error */
1924         }
1925
1926         /* Set type of service (TOS) */
1927 #if defined(IPPROTO_IP) && defined(IPTOS_LOWDELAY)
1928         value = IPTOS_LOWDELAY;
1929         LogDebug("Setting IP_TOS on socket %d to IPTOS_LOWDELAY.", Sock);
1930         if (setsockopt(Sock, IPPROTO_IP, IP_TOS, &value,
1931                        (socklen_t) sizeof(value))) {
1932                 Log(LOG_ERR, "Can't set socket option IP_TOS: %s!",
1933                     strerror(errno));
1934                 /* ignore this error */
1935         }
1936 #endif
1937
1938         return true;
1939 } /* Init_Socket */
1940
1941
1942 static void
1943 cb_Connect_to_Server(int fd, UNUSED short events)
1944 {
1945         /* Read result of resolver sub-process from pipe and start connection */
1946         int i;
1947         size_t len;
1948         ng_ipaddr_t dest_addrs[4];      /* we can handle at most 3; but we read up to
1949                                            four so we can log the 'more than we can handle'
1950                                            condition. First result is tried immediately, rest
1951                                            is saved for later if needed. */
1952
1953         LogDebug("Resolver: Got forward lookup callback on fd %d, events %d", fd, events);
1954
1955         for (i=0; i < MAX_SERVERS; i++) {
1956                   if (Proc_GetPipeFd(&Conf_Server[i].res_stat) == fd )
1957                           break;
1958         }
1959
1960         if( i >= MAX_SERVERS) {
1961                 /* Ops, no matching server found?! */
1962                 io_close( fd );
1963                 LogDebug("Resolver: Got Forward Lookup callback for unknown server!?");
1964                 return;
1965         }
1966
1967         /* Read result from pipe */
1968         len = Proc_Read(&Conf_Server[i].res_stat, dest_addrs, sizeof(dest_addrs));
1969         if (len == 0)
1970                 return;
1971
1972         assert((len % sizeof(ng_ipaddr_t)) == 0);
1973
1974         LogDebug("Got result from resolver: %u structs (%u bytes).", len/sizeof(ng_ipaddr_t), len);
1975
1976         memset(&Conf_Server[i].dst_addr, 0, sizeof(Conf_Server[i].dst_addr));
1977         if (len > sizeof(ng_ipaddr_t)) {
1978                 /* more than one address for this hostname, remember them
1979                  * in case first address is unreachable/not available */
1980                 len -= sizeof(ng_ipaddr_t);
1981                 if (len > sizeof(Conf_Server[i].dst_addr)) {
1982                         len = sizeof(Conf_Server[i].dst_addr);
1983                         Log(LOG_NOTICE,
1984                                 "Notice: Resolver returned more IP Addresses for host than we can handle, additional addresses dropped.");
1985                 }
1986                 memcpy(&Conf_Server[i].dst_addr, &dest_addrs[1], len);
1987         }
1988         /* connect() */
1989         New_Server(i, dest_addrs);
1990 } /* cb_Read_Forward_Lookup */
1991
1992
1993 static void
1994 cb_Read_Resolver_Result( int r_fd, UNUSED short events )
1995 {
1996         /* Read result of resolver sub-process from pipe and update the
1997          * apropriate connection/client structure(s): hostname and/or
1998          * IDENT user name.*/
1999
2000         CLIENT *c;
2001         CONN_ID i;
2002         size_t len;
2003         char *identptr;
2004 #ifdef IDENTAUTH
2005         char readbuf[HOST_LEN + 2 + CLIENT_USER_LEN];
2006 #else
2007         char readbuf[HOST_LEN + 1];
2008 #endif
2009
2010         LogDebug("Resolver: Got callback on fd %d, events %d", r_fd, events );
2011         i = Conn_GetFromProc(r_fd);
2012         if (i == NONE) {
2013                 /* Ops, none found? Probably the connection has already
2014                  * been closed!? We'll ignore that ... */
2015                 io_close( r_fd );
2016                 LogDebug("Resolver: Got callback for unknown connection!?");
2017                 return;
2018         }
2019
2020         /* Read result from pipe */
2021         len = Proc_Read(&My_Connections[i].proc_stat, readbuf, sizeof readbuf -1);
2022         if (len == 0)
2023                 return;
2024
2025         readbuf[len] = '\0';
2026         identptr = strchr(readbuf, '\n');
2027         assert(identptr != NULL);
2028         if (!identptr) {
2029                 Log( LOG_CRIT, "Resolver: Got malformed result!");
2030                 return;
2031         }
2032
2033         *identptr = '\0';
2034         LogDebug("Got result from resolver: \"%s\" (%u bytes read).", readbuf, len);
2035         /* Okay, we got a complete result: this is a host name for outgoing
2036          * connections and a host name and IDENT user name (if enabled) for
2037          * incoming connections.*/
2038         assert ( My_Connections[i].sock >= 0 );
2039         /* Incoming connection. Search client ... */
2040         c = Conn_GetClient( i );
2041         assert( c != NULL );
2042
2043         /* Only update client information of unregistered clients.
2044          * Note: user commands (e. g. WEBIRC) are always read _after_ reading
2045          * the resolver results, so we don't have to worry to override settings
2046          * from these commands here. */
2047         if(Client_Type(c) == CLIENT_UNKNOWN) {
2048                 strlcpy(My_Connections[i].host, readbuf,
2049                         sizeof(My_Connections[i].host));
2050                 Client_SetHostname(c, readbuf);
2051 #ifdef IDENTAUTH
2052                 ++identptr;
2053                 if (*identptr) {
2054                         Log(LOG_INFO, "IDENT lookup for connection %d: \"%s\".", i, identptr);
2055                         Client_SetUser(c, identptr, true);
2056                 } else {
2057                         Log(LOG_INFO, "IDENT lookup for connection %d: no result.", i);
2058                 }
2059 #endif
2060         }
2061 #ifdef DEBUG
2062                 else Log( LOG_DEBUG, "Resolver: discarding result for already registered connection %d.", i );
2063 #endif
2064 } /* cb_Read_Resolver_Result */
2065
2066
2067 /**
2068  * Write a "simple" (error) message to a socket.
2069  * The message is sent without using the connection write buffers, without
2070  * compression/encryption, and even without any error reporting. It is
2071  * designed for error messages of e.g. New_Connection(). */
2072 static void
2073 Simple_Message(int Sock, const char *Msg)
2074 {
2075         char buf[COMMAND_LEN];
2076         size_t len;
2077
2078         assert(Sock > NONE);
2079         assert(Msg != NULL);
2080
2081         strlcpy(buf, Msg, sizeof buf - 2);
2082         len = strlcat(buf, "\r\n", sizeof buf);
2083         if (write(Sock, buf, len) < 0) {
2084                 /* Because this function most probably got called to log
2085                  * an error message, any write error is ignored here to
2086                  * avoid an endless loop. But casting the result of write()
2087                  * to "void" doesn't satisfy the GNU C code attribute
2088                  * "warn_unused_result" which is used by some versions of
2089                  * glibc (e.g. 2.11.1), therefore this silly error
2090                  * "handling" code here :-( */
2091                 return;
2092         }
2093 } /* Simple_Error */
2094
2095
2096 /**
2097  * Get CLIENT structure that belongs to a local connection identified by its
2098  * index number. Each connection belongs to a client by definition, so it is
2099  * not required that the caller checks for NULL return values.
2100  * @param Idx Connection index number
2101  * @return Pointer to CLIENT structure
2102  */
2103 GLOBAL CLIENT *
2104 Conn_GetClient( CONN_ID Idx ) 
2105 {
2106         CONNECTION *c;
2107
2108         assert(Idx >= 0);
2109         c = array_get(&My_ConnArray, sizeof (CONNECTION), (size_t)Idx);
2110         assert(c != NULL);
2111         return c ? c->client : NULL;
2112 }
2113
2114 /**
2115  * Get PROC_STAT sub-process structure of a connection.
2116  * @param Idx Connection index number
2117  * @return PROC_STAT structure
2118  */
2119 GLOBAL PROC_STAT *
2120 Conn_GetProcStat(CONN_ID Idx)
2121 {
2122         CONNECTION *c;
2123
2124         assert(Idx >= 0);
2125         c = array_get(&My_ConnArray, sizeof (CONNECTION), (size_t)Idx);
2126         assert(c != NULL);
2127         return &c->proc_stat;
2128 } /* Conn_GetProcStat */
2129
2130
2131 /**
2132  * Get CONN_ID from file descriptor associated to a subprocess structure.
2133  * @param fd File descriptor
2134  * @return CONN_ID or NONE (-1)
2135  */
2136 GLOBAL CONN_ID
2137 Conn_GetFromProc(int fd)
2138 {
2139         int i;
2140
2141         assert(fd > 0);
2142         for (i = 0; i < Pool_Size; i++) {
2143                 if ((My_Connections[i].sock != NONE)
2144                     && (Proc_GetPipeFd(&My_Connections[i].proc_stat) == fd))
2145                         return i;
2146         }
2147         return NONE;
2148 } /* Conn_GetFromProc */
2149
2150
2151 #ifdef SSL_SUPPORT
2152
2153 /**
2154  * Get information about used SSL chiper.
2155  * @param Idx Connection index number
2156  * @param buf Buffer for returned information text
2157  * @param len Size of return buffer "buf"
2158  * @return true on success, false otherwise
2159  */
2160 GLOBAL bool
2161 Conn_GetCipherInfo(CONN_ID Idx, char *buf, size_t len)
2162 {
2163         if (Idx < 0)
2164                 return false;
2165         assert(Idx < (int) array_length(&My_ConnArray, sizeof(CONNECTION)));
2166         return ConnSSL_GetCipherInfo(&My_Connections[Idx], buf, len);
2167 }
2168
2169
2170 /**
2171  * Check if a connection is SSL-enabled or not.
2172  * @param Idx Connection index number
2173  * @return true if connection is SSL-enabled, false otherwise.
2174  */
2175 GLOBAL bool
2176 Conn_UsesSSL(CONN_ID Idx)
2177 {
2178         if (Idx < 0)
2179                 return false;
2180         assert(Idx < (int) array_length(&My_ConnArray, sizeof(CONNECTION)));
2181         return Conn_OPTION_ISSET(&My_Connections[Idx], CONN_SSL);
2182 }
2183
2184 #endif
2185
2186
2187 /* -eof- */