]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conn.c
fix compressed server links
[ngircd-alex.git] / src / ngircd / conn.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2005 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 "io.h"
19
20 static char UNUSED id[] = "$Id: conn.c,v 1.205 2007/05/02 12:34:31 fw Exp $";
21
22 #include "imp.h"
23 #include <assert.h>
24 #ifdef PROTOTYPES
25 #       include <stdarg.h>
26 #else
27 #       include <varargs.h>
28 #endif
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <errno.h>
33 #include <string.h>
34 #include <sys/socket.h>
35 #include <sys/time.h>
36 #include <sys/types.h>
37 #include <time.h>
38 #include <netinet/in.h>
39
40 #ifdef HAVE_NETINET_IP_H
41 # include <netinet/ip.h>
42 #endif
43
44 #ifdef HAVE_ARPA_INET_H
45 # include <arpa/inet.h>
46 #else
47 # define PF_INET AF_INET
48 #endif
49
50 #ifdef HAVE_STDINT_H
51 # include <stdint.h>                    /* e.g. for Mac OS X */
52 #endif
53
54 #ifdef TCPWRAP
55 # include <tcpd.h>                      /* for TCP Wrappers */
56 #endif
57
58 #include "array.h"
59 #include "defines.h"
60 #include "resolve.h"
61
62 #include "exp.h"
63 #include "conn.h"
64
65 #include "imp.h"
66 #include "ngircd.h"
67 #include "client.h"
68 #include "conf.h"
69 #include "conn-zip.h"
70 #include "conn-func.h"
71 #include "log.h"
72 #include "parse.h"
73 #include "tool.h"
74
75 #ifdef ZEROCONF
76 # include "rendezvous.h"
77 #endif
78
79 #include "exp.h"
80
81
82 #define SERVER_WAIT (NONE - 1)
83
84
85 static bool Handle_Write PARAMS(( CONN_ID Idx ));
86 static int New_Connection PARAMS(( int Sock ));
87 static CONN_ID Socket2Index PARAMS(( int Sock ));
88 static void Read_Request PARAMS(( CONN_ID Idx ));
89 static bool Handle_Buffer PARAMS(( CONN_ID Idx ));
90 static void Check_Connections PARAMS(( void ));
91 static void Check_Servers PARAMS(( void ));
92 static void Init_Conn_Struct PARAMS(( CONN_ID Idx ));
93 static bool Init_Socket PARAMS(( int Sock ));
94 static void New_Server PARAMS(( int Server ));
95 static void Simple_Message PARAMS(( int Sock, const char *Msg ));
96 static int Count_Connections PARAMS(( struct sockaddr_in addr ));
97 static int NewListener PARAMS(( const UINT16 Port ));
98
99 static array My_Listeners;
100 static array My_ConnArray;
101
102 #ifdef TCPWRAP
103 int allow_severity = LOG_INFO;
104 int deny_severity = LOG_ERR;
105 #endif
106
107 static void server_login PARAMS((CONN_ID idx));
108
109 static void cb_Read_Resolver_Result PARAMS(( int sock, UNUSED short what));
110 static void cb_Connect_to_Server PARAMS(( int sock, UNUSED short what));
111 static void cb_clientserver PARAMS((int sock, short what));
112
113 static void
114 cb_listen(int sock, short irrelevant)
115 {
116         (void) irrelevant;
117         New_Connection( sock );
118 }
119
120
121 static void
122 cb_connserver(int sock, UNUSED short what)
123 {
124         int res, err;
125         socklen_t sock_len;
126         CONN_ID idx = Socket2Index( sock );
127         if (idx <= NONE) {
128                 LogDebug("cb_connserver wants to write on unknown socket?!");
129                 io_close(sock);
130                 return;
131         }
132
133         assert( what & IO_WANTWRITE);
134
135         /* connect() finished, get result. */
136         sock_len = sizeof( err );
137         res = getsockopt( My_Connections[idx].sock, SOL_SOCKET, SO_ERROR, &err, &sock_len );
138         assert( sock_len == sizeof( err ));
139
140         /* Error while connecting? */
141         if ((res != 0) || (err != 0)) {
142                 if (res != 0)
143                         Log(LOG_CRIT, "getsockopt (connection %d): %s!",
144                             idx, strerror(errno));
145                 else
146                         Log(LOG_CRIT,
147                             "Can't connect socket to \"%s:%d\" (connection %d): %s!",
148                             My_Connections[idx].host,
149                             Conf_Server[Conf_GetServer(idx)].port,
150                             idx, strerror(err));
151
152                 Conn_Close(idx, "Can't connect!", NULL, false);
153                 return;
154         }
155
156         Conn_OPTION_DEL( &My_Connections[idx], CONN_ISCONNECTING );
157         server_login(idx);
158 }
159
160
161 static void
162 server_login(CONN_ID idx)
163 {
164         Log( LOG_INFO, "Connection %d with \"%s:%d\" established. Now logging in ...", idx,
165                         My_Connections[idx].host, Conf_Server[Conf_GetServer( idx )].port );
166
167         io_event_setcb( My_Connections[idx].sock, cb_clientserver);
168         io_event_add( My_Connections[idx].sock, IO_WANTREAD|IO_WANTWRITE);
169
170         /* Send PASS and SERVER command to peer */
171         Conn_WriteStr( idx, "PASS %s %s", Conf_Server[Conf_GetServer( idx )].pwd_out, NGIRCd_ProtoID );
172         Conn_WriteStr( idx, "SERVER %s :%s", Conf_ServerName, Conf_ServerInfo );
173 }
174
175
176 static void
177 cb_clientserver(int sock, short what)
178 {
179         CONN_ID idx = Socket2Index( sock );
180         if (idx <= NONE) {
181 #ifdef DEBUG
182                 Log(LOG_WARNING, "WTF: cb_clientserver wants to write on unknown socket?!");
183 #endif
184                 io_close(sock);
185                 return;
186         }
187
188         if (what & IO_WANTREAD)
189                 Read_Request( idx );
190
191         if (what & IO_WANTWRITE)
192                 Handle_Write( idx );
193 }
194
195
196 GLOBAL void
197 Conn_Init( void )
198 {
199         /* Modul initialisieren: statische Strukturen "ausnullen". */
200
201         CONN_ID i;
202
203         /* Speicher fuer Verbindungs-Pool anfordern */
204         Pool_Size = CONNECTION_POOL;
205         if( Conf_MaxConnections > 0 )
206         {
207                 /* konfiguriertes Limit beachten */
208                 if( Pool_Size > Conf_MaxConnections ) Pool_Size = Conf_MaxConnections;
209         }
210         
211         if (!array_alloc(&My_ConnArray, sizeof(CONNECTION), (size_t)Pool_Size)) {
212                 Log( LOG_EMERG, "Can't allocate memory! [Conn_Init]" );
213                 exit( 1 );
214         }
215
216         /* FIXME: My_Connetions/Pool_Size is needed by other parts of the
217          * code; remove them! */
218         My_Connections = (CONNECTION*) array_start(&My_ConnArray);
219
220         LogDebug("Allocated connection pool for %d items (%ld bytes).",
221                 array_length(&My_ConnArray, sizeof( CONNECTION )), array_bytes(&My_ConnArray));
222
223         assert( array_length(&My_ConnArray, sizeof( CONNECTION )) >= (size_t) Pool_Size);
224         
225         array_free( &My_Listeners );
226
227         /* Connection-Struktur initialisieren */
228         for( i = 0; i < Pool_Size; i++ ) Init_Conn_Struct( i );
229
230         /* Global write counter */
231         WCounter = 0;
232 } /* Conn_Init */
233
234
235 GLOBAL void
236 Conn_Exit( void )
237 {
238         /* Modul abmelden: alle noch offenen Connections
239          * schliessen und freigeben. */
240
241         CONN_ID idx;
242
243         LogDebug("Shutting down all connections ..." );
244
245         Conn_ExitListeners();
246
247         /* Sockets schliessen */
248         for( idx = 0; idx < Pool_Size; idx++ ) {
249                 if( My_Connections[idx].sock > NONE ) {
250                         Conn_Close( idx, NULL, NGIRCd_SignalRestart ?
251                                 "Server going down (restarting)":"Server going down", true );
252                 }
253         }
254
255         array_free(&My_ConnArray);
256         My_Connections = NULL;
257         Pool_Size = 0;
258         io_library_shutdown();
259 } /* Conn_Exit */
260
261
262 static unsigned int
263 ports_initlisteners(array *a, void (*func)(int,short))
264 {
265         unsigned int created = 0;
266         size_t len;
267         int fd;
268         UINT16 *port;
269
270         len = array_length(a, sizeof (UINT16));
271         port = array_start(a);
272         while(len--) {
273                 fd = NewListener( *port );
274                 if (fd < 0) {
275                         port++;
276                         continue;
277                 }
278                 if (!io_event_create( fd, IO_WANTREAD, func )) {
279                         Log( LOG_ERR, "io_event_create(): Could not add listening fd %d (port %u): %s!",
280                                                         fd, (unsigned int) *port, strerror(errno));
281                         close(fd);
282                         port++;
283                         continue;
284                 }
285                 created++;
286                 port++;
287         }
288
289         return created;
290 }
291
292
293 GLOBAL unsigned int
294 Conn_InitListeners( void )
295 {
296         /* Initialize ports on which the server should accept connections */
297
298         unsigned int created;
299
300         if (!io_library_init(CONNECTION_POOL)) {
301                 Log(LOG_EMERG, "Cannot initialize IO routines: %s", strerror(errno));
302                 return -1;
303         }
304
305         created = ports_initlisteners(&Conf_ListenPorts, cb_listen);
306
307         return created;
308 } /* Conn_InitListeners */
309
310
311 GLOBAL void
312 Conn_ExitListeners( void )
313 {
314         /* Close down all listening sockets */
315         int *fd;
316         size_t arraylen;
317 #ifdef ZEROCONF
318         Rendezvous_UnregisterListeners( );
319 #endif
320
321         arraylen = array_length(&My_Listeners, sizeof (int));
322         Log( LOG_INFO, "Shutting down all listening sockets (%d total)...", arraylen );
323         fd = array_start(&My_Listeners);
324         while(arraylen--) {
325                 assert(fd != NULL);
326                 assert(*fd >= 0);
327                 io_close(*fd);
328                 LogDebug("Listening socket %d closed.", *fd );
329                 fd++;
330         }
331         array_free(&My_Listeners);
332 } /* Conn_ExitListeners */
333
334
335 /* return new listening port file descriptor or -1 on failure */
336 static int
337 NewListener( const UINT16 Port )
338 {
339         /* Create new listening socket on specified port */
340
341         struct sockaddr_in addr;
342         struct in_addr inaddr;
343         int sock;
344 #ifdef ZEROCONF
345         char name[CLIENT_ID_LEN], *info;
346 #endif
347
348         /* Server-"Listen"-Socket initialisieren */
349         memset( &addr, 0, sizeof( addr ));
350         memset( &inaddr, 0, sizeof( inaddr ));
351         addr.sin_family = (sa_family_t)AF_INET;
352         addr.sin_port = htons( Port );
353         if( Conf_ListenAddress[0] )
354         {
355 #ifdef HAVE_INET_ATON
356                 if( inet_aton( Conf_ListenAddress, &inaddr ) == 0 )
357 #else
358                 inaddr.s_addr = inet_addr( Conf_ListenAddress );
359                 if( inaddr.s_addr == (unsigned)-1 )
360 #endif
361                 {
362                         Log( LOG_CRIT, "Can't listen on %s:%u: can't convert ip address %s!",
363                                         Conf_ListenAddress, Port, Conf_ListenAddress );
364                         return -1;
365                 }
366         }
367         else inaddr.s_addr = htonl( INADDR_ANY );
368         addr.sin_addr = inaddr;
369
370         sock = socket( PF_INET, SOCK_STREAM, 0);
371         if( sock < 0 ) {
372                 Log( LOG_CRIT, "Can't create socket: %s!", strerror( errno ));
373                 return -1;
374         }
375
376         if( ! Init_Socket( sock )) return -1;
377
378         if (bind(sock, (struct sockaddr *)&addr, (socklen_t)sizeof(addr)) != 0) {
379                 Log( LOG_CRIT, "Can't bind socket (port %d) : %s!", Port, strerror( errno ));
380                 close( sock );
381                 return -1;
382         }
383
384         if( listen( sock, 10 ) != 0 ) {
385                 Log( LOG_CRIT, "Can't listen on socket: %s!", strerror( errno ));
386                 close( sock );
387                 return -1;
388         }
389
390         /* keep fd in list so we can close it when ngircd restarts/shuts down */
391         if (!array_catb( &My_Listeners,(char*) &sock, sizeof(int) )) {
392                 Log( LOG_CRIT, "Can't add socket to My_Listeners array: %s!", strerror( errno ));
393                 close( sock );
394                 return -1;
395         }
396
397         if( Conf_ListenAddress[0]) Log( LOG_INFO, "Now listening on %s:%d (socket %d).", Conf_ListenAddress, Port, sock );
398         else Log( LOG_INFO, "Now listening on 0.0.0.0:%d (socket %d).", Port, sock );
399
400 #ifdef ZEROCONF
401         /* Get best server description text */
402         if( ! Conf_ServerInfo[0] ) info = Conf_ServerName;
403         else
404         {
405                 /* Use server info string */
406                 info = NULL;
407                 if( Conf_ServerInfo[0] == '[' )
408                 {
409                         /* Cut off leading hostname part in "[]" */
410                         info = strchr( Conf_ServerInfo, ']' );
411                         if( info )
412                         {
413                                 info++;
414                                 while( *info == ' ' ) info++;
415                         }
416                 }
417                 if( ! info ) info = Conf_ServerInfo;
418         }
419
420         /* Add port number to description if non-standard */
421         if (Port != 6667)
422                 snprintf(name, sizeof name, "%s (port %u)", info,
423                          (unsigned int)Port);
424         else
425                 strlcpy(name, info, sizeof name);
426
427         /* Register service */
428         Rendezvous_Register( name, MDNS_TYPE, Port );
429 #endif
430         return sock;
431 } /* NewListener */
432
433
434 GLOBAL void
435 Conn_Handler( void )
436 {
437         /* "Main Loop.": Loop until a signal (for shutdown or restart) arrives.
438          * Call io_dispatch() to check for read/writeable sockets every second
439          * Wait for status change on pending connections (e.g: when the hostname has been resolved)
440          * check for penalty/timeouts
441          * handle input buffers
442          */
443         int i;
444         unsigned int wdatalen;
445         struct timeval tv;
446         time_t t;
447         bool timeout;
448
449         while(( ! NGIRCd_SignalQuit ) && ( ! NGIRCd_SignalRestart )) {
450                 timeout = true;
451
452 #ifdef ZEROCONF
453                 Rendezvous_Handler( );
454 #endif
455
456                 /* Should the configuration be reloaded? */
457                 if (NGIRCd_SignalRehash) {
458                         NGIRCd_Rehash( );
459                 }
460
461                 /* Check configured servers and established links */
462                 Check_Servers( );
463                 Check_Connections( );
464
465                 t = time( NULL );
466
467                 /* noch volle Lese-Buffer suchen */
468                 for( i = 0; i < Pool_Size; i++ ) {
469                         if(( My_Connections[i].sock > NONE ) && ( array_bytes(&My_Connections[i].rbuf) > 0 ) &&
470                          ( My_Connections[i].delaytime < t ))
471                         {
472                                 /* Kann aus dem Buffer noch ein Befehl extrahiert werden? */
473                                 if (Handle_Buffer( i )) timeout = false;
474                         }
475                 }
476
477                 /* noch volle Schreib-Puffer suchen */
478                 for( i = 0; i < Pool_Size; i++ ) {
479                         if ( My_Connections[i].sock <= NONE )
480                                 continue;
481
482                         wdatalen = (unsigned int)array_bytes(&My_Connections[i].wbuf);
483
484 #ifdef ZLIB
485                         if (( wdatalen > 0 ) || ( array_bytes(&My_Connections[i].zip.wbuf)> 0 ))
486 #else
487                         if ( wdatalen > 0 )
488 #endif
489                         {
490                                 /* Socket der Verbindung in Set aufnehmen */
491                                 io_event_add( My_Connections[i].sock, IO_WANTWRITE );
492                         }
493                 }
494
495                 /* von welchen Sockets koennte gelesen werden? */
496                 for (i = 0; i < Pool_Size; i++ ) {
497                         if ( My_Connections[i].sock <= NONE )
498                                 continue;
499
500                         if (Resolve_INPROGRESS(&My_Connections[i].res_stat)) {
501                                 /* wait for completion of Resolver Sub-Process */
502                                 io_event_del( My_Connections[i].sock, IO_WANTREAD );
503                                 continue;
504                         }
505
506                         if ( Conn_OPTION_ISSET( &My_Connections[i], CONN_ISCONNECTING ))
507                                 continue;       /* wait for completion of connect() */
508
509                         if( My_Connections[i].delaytime > t ) {
510                                 /* Fuer die Verbindung ist eine "Penalty-Zeit" gesetzt */
511                                 io_event_del( My_Connections[i].sock, IO_WANTREAD );
512                                 continue;
513                         }
514                         io_event_add( My_Connections[i].sock, IO_WANTREAD );
515                 }
516
517                 /* (re-)set timeout - tv_sec/usec are undefined after io_dispatch() returns */
518                 tv.tv_usec = 0;
519                 tv.tv_sec = timeout ? 1 : 0;
520
521                 /* wait for activity */
522                 i = io_dispatch( &tv );
523                 if (i == -1 && errno != EINTR ) {
524                         Log(LOG_EMERG, "Conn_Handler(): io_dispatch(): %s!", strerror(errno));
525                         Log(LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE_NAME);
526                         exit( 1 );
527                 }
528         }
529
530         if( NGIRCd_SignalQuit ) Log( LOG_NOTICE|LOG_snotice, "Server going down NOW!" );
531         else if( NGIRCd_SignalRestart ) Log( LOG_NOTICE|LOG_snotice, "Server restarting NOW!" );
532 } /* Conn_Handler */
533
534
535 /**
536  * Write a text string into the socket of a connection.
537  * This function automatically appends CR+LF to the string and validates that
538  * the result is a valid IRC message (oversized messages are shortened, for
539  * example). Then it calls the Conn_Write() function to do the actual sending.
540  * @param Idx Index fo the connection.
541  * @param Format Format string, see printf().
542  * @return true on success, false otherwise.
543  */
544 #ifdef PROTOTYPES
545 GLOBAL bool
546 Conn_WriteStr( CONN_ID Idx, char *Format, ... )
547 #else
548 GLOBAL bool 
549 Conn_WriteStr( Idx, Format, va_alist )
550 CONN_ID Idx;
551 char *Format;
552 va_dcl
553 #endif
554 {
555         char buffer[COMMAND_LEN];
556         size_t len;
557         bool ok;
558         va_list ap;
559
560         assert( Idx > NONE );
561         assert( Format != NULL );
562
563 #ifdef PROTOTYPES
564         va_start( ap, Format );
565 #else
566         va_start( ap );
567 #endif
568         if (vsnprintf( buffer, COMMAND_LEN - 2, Format, ap ) >= COMMAND_LEN - 2 ) {
569                 /*
570                  * The string that should be written to the socket is longer
571                  * than the allowed size of COMMAND_LEN bytes (including both
572                  * the CR and LF characters). This can be caused by the
573                  * IRC_WriteXXX() functions when the prefix of this server had
574                  * to be added to an already "quite long" command line which
575                  * has been received from a regular IRC client, for example.
576                  * 
577                  * We are not allowed to send such "oversized" messages to
578                  * other servers and clients, see RFC 2812 2.3 and 2813 3.3
579                  * ("these messages SHALL NOT exceed 512 characters in length,
580                  * counting all characters including the trailing CR-LF").
581                  *
582                  * So we have a big problem here: we should send more bytes
583                  * to the network than we are allowed to and we don't know
584                  * the originator (any more). The "old" behaviour of blaming
585                  * the receiver ("next hop") is a bad idea (it could be just
586                  * an other server only routing the message!), so the only
587                  * option left is to shorten the string and to hope that the
588                  * result is still somewhat useful ...
589                  *                                                   -alex-
590                  */
591
592                 strcpy (buffer + sizeof(buffer) - strlen(CUT_TXTSUFFIX) - 2 - 1,
593                         CUT_TXTSUFFIX);
594         }
595
596 #ifdef SNIFFER
597         if (NGIRCd_Sniffer)
598                 Log(LOG_DEBUG, " -> connection %d: '%s'.", Idx, buffer);
599 #endif
600
601         len = strlcat( buffer, "\r\n", sizeof( buffer ));
602         ok = Conn_Write(Idx, buffer, len);
603         My_Connections[Idx].msg_out++;
604
605         va_end( ap );
606         return ok;
607 } /* Conn_WriteStr */
608
609
610 GLOBAL bool
611 Conn_Write( CONN_ID Idx, char *Data, size_t Len )
612 {
613         /* Daten in Socket schreiben. Bei "fatalen" Fehlern wird
614          * der Client disconnectiert und false geliefert. */
615
616         assert( Idx > NONE );
617         assert( Data != NULL );
618         assert( Len > 0 );
619
620         /* Ist der entsprechende Socket ueberhaupt noch offen? In einem
621          * "Handler-Durchlauf" kann es passieren, dass dem nicht mehr so
622          * ist, wenn einer von mehreren Conn_Write()'s fehlgeschlagen ist.
623          * In diesem Fall wird hier einfach ein Fehler geliefert. */
624         if( My_Connections[Idx].sock <= NONE ) {
625                 LogDebug("Skipped write on closed socket (connection %d).", Idx );
626                 return false;
627         }
628
629         /* Pruefen, ob im Schreibpuffer genuegend Platz ist. Ziel ist es,
630          * moeglichts viel im Puffer zu haben und _nicht_ gleich alles auf den
631          * Socket zu schreiben (u.a. wg. Komprimierung). */
632         if( array_bytes(&My_Connections[Idx].wbuf) >= WRITEBUFFER_LEN) {
633                 /* Der Puffer ist dummerweise voll. Jetzt versuchen, den Puffer
634                  * zu schreiben, wenn das nicht klappt, haben wir ein Problem ... */
635                 if( ! Handle_Write( Idx )) return false;
636
637                 /* check again: if our writebuf is twice als large as the initial limit: Kill connection */
638                 if( array_bytes(&My_Connections[Idx].wbuf) >= (WRITEBUFFER_LEN*2)) {
639                         Log( LOG_NOTICE, "Write buffer overflow (connection %d)!", Idx );
640                         Conn_Close( Idx, "Write buffer overflow!", NULL, false );
641                         return false;
642                 }
643         }
644
645 #ifdef ZLIB
646         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP )) {
647                 /* Daten komprimieren und in Puffer kopieren */
648                 if( ! Zip_Buffer( Idx, Data, Len )) return false;
649         }
650         else
651 #endif
652         {
653                 /* Daten in Puffer kopieren */
654                 if (!array_catb( &My_Connections[Idx].wbuf, Data, Len ))
655                         return false;
656
657                 My_Connections[Idx].bytes_out += Len;
658         }
659
660         /* Adjust global write counter */
661         WCounter += Len;
662
663         return true;
664 } /* Conn_Write */
665
666
667 GLOBAL void
668 Conn_Close( CONN_ID Idx, char *LogMsg, char *FwdMsg, bool InformClient )
669 {
670         /* Close connection. Open pipes of asyncronous resolver
671          * sub-processes are closed down. */
672
673         CLIENT *c;
674         char *txt;
675         double in_k, out_k;
676 #ifdef ZLIB
677         double in_z_k, out_z_k;
678         int in_p, out_p;
679 #endif
680
681         assert( Idx > NONE );
682
683         /* Is this link already shutting down? */
684         if( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ISCLOSING )) {
685                 /* Conn_Close() has been called recursively for this link;
686                  * probabe reason: Handle_Write() failed  -- see below. */
687                 LogDebug("Recursive request to close connection: %d", Idx );
688                 return;
689         }
690
691         assert( My_Connections[Idx].sock > NONE );
692
693         /* Mark link as "closing" */
694         Conn_OPTION_ADD( &My_Connections[Idx], CONN_ISCLOSING );
695
696         if (LogMsg)
697                 txt = LogMsg;
698         else
699                 txt = FwdMsg;
700         if (! txt)
701                 txt = "Reason unknown";
702
703         Log(LOG_INFO, "Shutting down connection %d (%s) with %s:%d ...", Idx,
704             LogMsg ? LogMsg : FwdMsg, My_Connections[Idx].host,
705             ntohs(My_Connections[Idx].addr.sin_port));
706
707         /* Search client, if any */
708         c = Conn_GetClient( Idx );
709
710         /* Should the client be informed? */
711         if (InformClient) {
712 #ifndef STRICT_RFC
713                 /* Send statistics to client if registered as user: */
714                 if ((c != NULL) && (Client_Type(c) == CLIENT_USER)) {
715                         Conn_WriteStr( Idx,
716                          ":%s NOTICE %s :%sConnection statistics: client %.1f kb, server %.1f kb.",
717                          Client_ID(Client_ThisServer()), Client_ID(c),
718                          NOTICE_TXTPREFIX,
719                          (double)My_Connections[Idx].bytes_in / 1024,
720                          (double)My_Connections[Idx].bytes_out / 1024);
721                 }
722 #endif
723                 /* Send ERROR to client (see RFC!) */
724                 if (FwdMsg)
725                         Conn_WriteStr(Idx, "ERROR :%s", FwdMsg);
726                 else
727                         Conn_WriteStr(Idx, "ERROR :Closing connection.");
728         }
729
730         /* Try to write out the write buffer. Note: Handle_Write() eventually
731          * removes the CLIENT structure associated with this connection if an
732          * error occurs! So we have to re-check if there is still an valid
733          * CLIENT structure after calling Handle_Write() ...*/
734         (void)Handle_Write( Idx );
735
736         /* Search client, if any (re-check!) */
737         c = Conn_GetClient( Idx );
738
739         /* Shut down socket */
740         if (! io_close(My_Connections[Idx].sock)) {
741                 /* Oops, we can't close the socket!? This is ... ugly! */
742                 Log(LOG_CRIT,
743                     "Error closing connection %d (socket %d) with %s:%d - %s! (ignored)",
744                     Idx, My_Connections[Idx].sock, My_Connections[Idx].host,
745                     ntohs(My_Connections[Idx].addr.sin_port), strerror(errno));
746         }
747
748         /* Mark socket as invalid: */
749         My_Connections[Idx].sock = NONE;
750
751         /* If there is still a client, unregister it now */
752         if (c)
753                 Client_Destroy(c, LogMsg, FwdMsg, true);
754
755         /* Calculate statistics and log information */
756         in_k = (double)My_Connections[Idx].bytes_in / 1024;
757         out_k = (double)My_Connections[Idx].bytes_out / 1024;
758 #ifdef ZLIB
759         if (Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP)) {
760                 in_z_k = (double)My_Connections[Idx].zip.bytes_in / 1024;
761                 out_z_k = (double)My_Connections[Idx].zip.bytes_out / 1024;
762                 /* Make sure that no division by zero can occur during
763                  * the calculation of in_p and out_p: in_z_k and out_z_k
764                  * are non-zero, that's guaranteed by the protocol until
765                  * compression can be enabled. */
766                 if (! in_z_k)
767                         in_z_k = in_k;
768                 if (! out_z_k)
769                         out_z_k = out_k;
770                 in_p = (int)(( in_k * 100 ) / in_z_k );
771                 out_p = (int)(( out_k * 100 ) / out_z_k );
772                 Log(LOG_INFO,
773                     "Connection %d with %s:%d closed (in: %.1fk/%.1fk/%d%%, out: %.1fk/%.1fk/%d%%).",
774                     Idx, My_Connections[Idx].host,
775                     ntohs(My_Connections[Idx].addr.sin_port),
776                     in_k, in_z_k, in_p, out_k, out_z_k, out_p);
777         }
778         else
779 #endif
780         {
781                 Log(LOG_INFO,
782                     "Connection %d with %s:%d closed (in: %.1fk, out: %.1fk).",
783                     Idx, My_Connections[Idx].host,
784                     ntohs(My_Connections[Idx].addr.sin_port),
785                     in_k, out_k);
786         }
787
788         /* cancel running resolver */
789         if (Resolve_INPROGRESS(&My_Connections[Idx].res_stat))
790                 Resolve_Shutdown(&My_Connections[Idx].res_stat);
791
792         /* Servers: Modify time of next connect attempt? */
793         Conf_UnsetServer( Idx );
794
795 #ifdef ZLIB
796         /* Clean up zlib, if link was compressed */
797         if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP )) {
798                 inflateEnd( &My_Connections[Idx].zip.in );
799                 deflateEnd( &My_Connections[Idx].zip.out );
800                 array_free(&My_Connections[Idx].zip.rbuf);
801                 array_free(&My_Connections[Idx].zip.wbuf);
802         }
803 #endif
804
805         array_free(&My_Connections[Idx].rbuf);
806         array_free(&My_Connections[Idx].wbuf);
807
808         /* Clean up connection structure (=free it) */
809         Init_Conn_Struct( Idx );
810
811         LogDebug("Shutdown of connection %d completed.", Idx );
812 } /* Conn_Close */
813
814
815 GLOBAL void
816 Conn_SyncServerStruct( void )
817 {
818         /* Synchronize server structures (connection IDs):
819          * connections <-> configuration */
820
821         CLIENT *client;
822         CONN_ID i;
823         int c;
824
825         for( i = 0; i < Pool_Size; i++ ) {
826                 /* Established connection? */
827                 if (My_Connections[i].sock < 0)
828                         continue;
829
830                 /* Server connection? */
831                 client = Conn_GetClient( i );
832                 if(( ! client ) || ( Client_Type( client ) != CLIENT_SERVER )) continue;
833
834                 for( c = 0; c < MAX_SERVERS; c++ )
835                 {
836                         /* Configured server? */
837                         if( ! Conf_Server[c].host[0] ) continue;
838
839                         /* Duplicate? */
840                         if( strcmp( Conf_Server[c].name, Client_ID( client )) == 0 )
841                                 Conf_Server[c].conn_id = i;
842                 }
843         }
844 } /* SyncServerStruct */
845
846
847 /**
848  * Send out data of write buffer; connect new sockets.
849  */
850 static bool
851 Handle_Write( CONN_ID Idx )
852 {
853         ssize_t len;
854         size_t wdatalen;
855
856         assert( Idx > NONE );
857         if ( My_Connections[Idx].sock < 0 ) {
858                 LogDebug("Handle_Write() on closed socket, connection %d", Idx);
859                 return false;
860         }
861         assert( My_Connections[Idx].sock > NONE );
862
863         wdatalen = array_bytes(&My_Connections[Idx].wbuf );
864
865 #ifdef ZLIB
866         if (wdatalen == 0 && !array_bytes(&My_Connections[Idx].zip.wbuf)) {
867                 io_event_del(My_Connections[Idx].sock, IO_WANTWRITE );
868                 return true;
869         }
870
871         /* write buffer empty, but not compression buffer?
872          * -> flush compression buffer! */
873         if (wdatalen == 0)
874                 Zip_Flush(Idx);
875 #else
876         if (wdatalen == 0) {
877                 io_event_del(My_Connections[Idx].sock, IO_WANTWRITE );
878                 return true;
879         }
880 #endif
881
882         /* Zip_Flush() may have changed the write buffer ... */
883         wdatalen = array_bytes(&My_Connections[Idx].wbuf);
884         LogDebug
885             ("Handle_Write() called for connection %d, %ld bytes pending ...",
886              Idx, wdatalen);
887
888         len = write(My_Connections[Idx].sock,
889                     array_start(&My_Connections[Idx].wbuf), wdatalen );
890
891         if( len < 0 ) {
892                 if (errno == EAGAIN || errno == EINTR)
893                         return true;
894
895                 Log(LOG_ERR, "Write error on connection %d (socket %d): %s!",
896                     Idx, My_Connections[Idx].sock, strerror(errno));
897                 Conn_Close(Idx, "Write error!", NULL, false);
898                 return false;
899         }
900
901         /* move any data not yet written to beginning */
902         array_moveleft(&My_Connections[Idx].wbuf, 1, (size_t)len);
903
904         return true;
905 } /* Handle_Write */
906
907
908 static int
909 New_Connection( int Sock )
910 {
911         /* Neue Client-Verbindung von Listen-Socket annehmen und
912          * CLIENT-Struktur anlegen. */
913
914 #ifdef TCPWRAP
915         struct request_info req;
916 #endif
917         struct sockaddr_in new_addr;
918         int new_sock, new_sock_len, new_Pool_Size;
919         CLIENT *c;
920         long cnt;
921
922         assert( Sock > NONE );
923         /* Connection auf Listen-Socket annehmen */
924         new_sock_len = (int)sizeof new_addr;
925         new_sock = accept(Sock, (struct sockaddr *)&new_addr,
926                           (socklen_t *)&new_sock_len);
927         if (new_sock < 0) {
928                 Log(LOG_CRIT, "Can't accept connection: %s!", strerror(errno));
929                 return -1;
930         }
931
932 #ifdef TCPWRAP
933         /* Validate socket using TCP Wrappers */
934         request_init( &req, RQ_DAEMON, PACKAGE_NAME, RQ_FILE, new_sock, RQ_CLIENT_SIN, &new_addr, NULL );
935         fromhost(&req);
936         if( ! hosts_access( &req ))
937         {
938                 /* Access denied! */
939                 Log( deny_severity, "Refused connection from %s (by TCP Wrappers)!", inet_ntoa( new_addr.sin_addr ));
940                 Simple_Message( new_sock, "ERROR :Connection refused" );
941                 close( new_sock );
942                 return -1;
943         }
944 #endif
945
946         /* Socket initialisieren */
947         if (!Init_Socket( new_sock ))
948                 return -1;
949         
950         /* Check IP-based connection limit */
951         cnt = Count_Connections( new_addr );
952         if(( Conf_MaxConnectionsIP > 0 ) && ( cnt >= Conf_MaxConnectionsIP ))
953         {
954                 /* Access denied, too many connections from this IP address! */
955                 Log( LOG_ERR, "Refused connection from %s: too may connections (%ld) from this IP address!", inet_ntoa( new_addr.sin_addr ), cnt);
956                 Simple_Message( new_sock, "ERROR :Connection refused, too many connections from your IP address!" );
957                 close( new_sock );
958                 return -1;
959         }
960
961         if( new_sock >= Pool_Size ) {
962                 new_Pool_Size = new_sock + 1;
963                 /* No free Connection Structures, check if we may accept further connections */
964                 if ((( Conf_MaxConnections > 0) && Pool_Size >= Conf_MaxConnections) ||
965                         (new_Pool_Size < Pool_Size))
966                 {
967                         Log( LOG_ALERT, "Can't accept connection: limit (%d) reached!", Pool_Size );
968                         Simple_Message( new_sock, "ERROR :Connection limit reached" );
969                         close( new_sock );
970                         return -1;
971                 }
972
973                 if (!array_alloc(&My_ConnArray, sizeof(CONNECTION),
974                                  (size_t)new_sock)) {
975                         Log( LOG_EMERG, "Can't allocate memory! [New_Connection]" );
976                         Simple_Message( new_sock, "ERROR: Internal error" );
977                         close( new_sock );
978                         return -1;
979                 }
980                 LogDebug("Bumped connection pool to %ld items (internal: %ld items, %ld bytes)",
981                         new_sock, array_length(&My_ConnArray, sizeof(CONNECTION)), array_bytes(&My_ConnArray));
982
983                 /* Adjust pointer to new block */
984                 My_Connections = array_start(&My_ConnArray);
985                 while (Pool_Size < new_Pool_Size)
986                         Init_Conn_Struct(Pool_Size++);
987         }
988
989         /* register callback */
990         if (!io_event_create( new_sock, IO_WANTREAD, cb_clientserver)) {
991                 Log(LOG_ALERT, "Can't accept connection: io_event_create failed!");
992                 Simple_Message(new_sock, "ERROR :Internal error");
993                 close(new_sock);
994                 return -1;
995         }
996
997         c = Client_NewLocal( new_sock, inet_ntoa( new_addr.sin_addr ), CLIENT_UNKNOWN, false );
998         if( ! c ) {
999                 Log(LOG_ALERT, "Can't accept connection: can't create client structure!");
1000                 Simple_Message(new_sock, "ERROR :Internal error");
1001                 io_close(new_sock);
1002                 return -1;
1003         }
1004
1005         Init_Conn_Struct( new_sock );
1006         My_Connections[new_sock].sock = new_sock;
1007         My_Connections[new_sock].addr = new_addr;
1008         My_Connections[new_sock].client = c;
1009
1010         Log( LOG_INFO, "Accepted connection %d from %s:%d on socket %d.", new_sock,
1011                         inet_ntoa( new_addr.sin_addr ), ntohs( new_addr.sin_port), Sock );
1012
1013         /* Hostnamen ermitteln */
1014         strlcpy( My_Connections[new_sock].host, inet_ntoa( new_addr.sin_addr ),
1015                                                 sizeof( My_Connections[new_sock].host ));
1016
1017         Client_SetHostname( c, My_Connections[new_sock].host );
1018
1019         Resolve_Addr(&My_Connections[new_sock].res_stat, &new_addr,
1020                 My_Connections[new_sock].sock, cb_Read_Resolver_Result);
1021
1022         /* Penalty-Zeit setzen */
1023         Conn_SetPenalty( new_sock, 4 );
1024         return new_sock;
1025 } /* New_Connection */
1026
1027
1028 static CONN_ID
1029 Socket2Index( int Sock )
1030 {
1031         /* zum Socket passende Connection suchen */
1032
1033         assert( Sock >= 0 );
1034
1035         if( Sock >= Pool_Size || My_Connections[Sock].sock != Sock ) {
1036                 /* die Connection wurde vermutlich (wegen eines
1037                  * Fehlers) bereits wieder abgebaut ... */
1038                 LogDebug("Socket2Index: can't get connection for socket %d!", Sock);
1039                 return NONE;
1040         }
1041         return Sock;
1042 } /* Socket2Index */
1043
1044
1045 static void
1046 Read_Request( CONN_ID Idx )
1047 {
1048         /* Daten von Socket einlesen und entsprechend behandeln.
1049          * Tritt ein Fehler auf, so wird der Socket geschlossen. */
1050
1051         ssize_t len;
1052         char readbuf[1024];
1053         CLIENT *c;
1054
1055         assert( Idx > NONE );
1056         assert( My_Connections[Idx].sock > NONE );
1057
1058 #ifdef ZLIB
1059         if (( array_bytes(&My_Connections[Idx].rbuf) >= READBUFFER_LEN ) ||
1060                 ( array_bytes(&My_Connections[Idx].zip.rbuf) >= ZREADBUFFER_LEN ))
1061 #else
1062         if ( array_bytes(&My_Connections[Idx].rbuf) >= READBUFFER_LEN )
1063 #endif
1064         {
1065                 /* Der Lesepuffer ist voll */
1066                 Log( LOG_ERR, "Receive buffer overflow (connection %d): %d bytes!", Idx,
1067                                                 array_bytes(&My_Connections[Idx].rbuf));
1068                 Conn_Close( Idx, "Receive buffer overflow!", NULL, false );
1069                 return;
1070         }
1071
1072         len = read( My_Connections[Idx].sock, readbuf, sizeof readbuf -1 );
1073         if( len == 0 ) {
1074                 Log( LOG_INFO, "%s:%d (%s) is closing the connection ...",
1075                         My_Connections[Idx].host, ntohs( My_Connections[Idx].addr.sin_port),
1076                                         inet_ntoa( My_Connections[Idx].addr.sin_addr ));
1077                 Conn_Close( Idx, "Socket closed!", "Client closed connection", false );
1078                 return;
1079         }
1080
1081         if( len < 0 ) {
1082                 if( errno == EAGAIN ) return;
1083                 Log( LOG_ERR, "Read error on connection %d (socket %d): %s!", Idx,
1084                                         My_Connections[Idx].sock, strerror( errno ));
1085                 Conn_Close( Idx, "Read error!", "Client closed connection", false );
1086                 return;
1087         }
1088 #ifdef ZLIB
1089         if (Conn_OPTION_ISSET(&My_Connections[Idx], CONN_ZIP)) {
1090                 if (!array_catb(&My_Connections[Idx].zip.rbuf, readbuf,
1091                                 (size_t) len)) {
1092                         Log(LOG_ERR,
1093                             "Could not append recieved data to zip input buffer (connn %d): %d bytes!",
1094                             Idx, len);
1095                         Conn_Close(Idx, "Receive buffer overflow!", NULL,
1096                                    false);
1097                         return;
1098                 }
1099         } else
1100 #endif
1101         {
1102                 if (!array_catb( &My_Connections[Idx].rbuf, readbuf, len)) {
1103                         Log( LOG_ERR, "Could not append recieved data to input buffer (connn %d): %d bytes!", Idx, len );
1104                         Conn_Close( Idx, "Receive buffer overflow!", NULL, false );
1105                 }
1106         }
1107
1108         /* Update connection statistics */
1109         My_Connections[Idx].bytes_in += len;
1110
1111         /* Update timestamp of last data received if this connection is
1112          * registered as a user, server or service connection. Don't update
1113          * otherwise, so users have at least Conf_PongTimeout seconds time to
1114          * register with the IRC server -- see Check_Connections().
1115          * Set "lastping", too, so we can handle time shifts backwards ... */
1116         c = Conn_GetClient(Idx);
1117         if (c && (Client_Type(c) == CLIENT_USER
1118                   || Client_Type(c) == CLIENT_SERVER
1119                   || Client_Type(c) == CLIENT_SERVICE)) {
1120                 My_Connections[Idx].lastdata = time(NULL);
1121                 My_Connections[Idx].lastping = My_Connections[Idx].lastdata;
1122         }
1123
1124         /* Look at the data in the (read-) buffer of this connection */
1125         Handle_Buffer(Idx);
1126 } /* Read_Request */
1127
1128
1129 static bool
1130 Handle_Buffer( CONN_ID Idx )
1131 {
1132         /* Handle Data in Connections Read-Buffer.
1133          * Return true if a reuqest was handled, false otherwise (also returned on errors). */
1134 #ifndef STRICT_RFC
1135         char *ptr1, *ptr2;
1136 #endif
1137         char *ptr;
1138         size_t len, delta;
1139         bool result;
1140         time_t starttime;
1141 #ifdef ZLIB
1142         bool old_z;
1143 #endif
1144
1145         starttime = time(NULL);
1146         result = false;
1147         for (;;) {
1148                 /* Check penalty */
1149                 if( My_Connections[Idx].delaytime > starttime) return result;
1150 #ifdef ZLIB
1151                 /* unpack compressed data */
1152                 if ( Conn_OPTION_ISSET( &My_Connections[Idx], CONN_ZIP ))
1153                         if( ! Unzip_Buffer( Idx )) return false;
1154 #endif
1155
1156                 if (0 == array_bytes(&My_Connections[Idx].rbuf))
1157                         break;
1158
1159                 if (!array_cat0_temporary(&My_Connections[Idx].rbuf)) /* make sure buf is NULL terminated */
1160                         return false;
1161
1162                 /* A Complete Request end with CR+LF, see RFC 2812. */
1163                 ptr = strstr( array_start(&My_Connections[Idx].rbuf), "\r\n" );
1164
1165                 if( ptr ) delta = 2; /* complete request */
1166 #ifndef STRICT_RFC
1167                 else {
1168                         /* Check for non-RFC-compliant request (only CR or LF)? Unfortunately,
1169                          * there are quite a few clients that do this (incl. "mIRC" :-( */
1170                         ptr1 = strchr( array_start(&My_Connections[Idx].rbuf), '\r' );
1171                         ptr2 = strchr( array_start(&My_Connections[Idx].rbuf), '\n' );
1172                         delta = 1;
1173                         if( ptr1 && ptr2 ) ptr = ptr1 > ptr2 ? ptr2 : ptr1;
1174                         else if( ptr1 ) ptr = ptr1;
1175                         else if( ptr2 ) ptr = ptr2;
1176                 }
1177 #endif
1178
1179                 if( ! ptr )
1180                         break;
1181
1182                 /* End of request found */
1183                 *ptr = '\0';
1184
1185                 len = ( ptr - (char*) array_start(&My_Connections[Idx].rbuf)) + delta;
1186
1187                 if( len > ( COMMAND_LEN - 1 )) {
1188                         /* Request must not exceed 512 chars (incl. CR+LF!), see
1189                          * RFC 2812. Disconnect Client if this happens. */
1190                         Log( LOG_ERR, "Request too long (connection %d): %d bytes (max. %d expected)!",
1191                                                 Idx, array_bytes(&My_Connections[Idx].rbuf), COMMAND_LEN - 1 );
1192                         Conn_Close( Idx, NULL, "Request too long", true );
1193                         return false;
1194                 }
1195
1196                 if (len <= 2) { /* request was empty (only '\r\n') */
1197                         array_moveleft(&My_Connections[Idx].rbuf, 1, delta); /* delta is either 1 or 2 */
1198                         break;
1199                 }
1200 #ifdef ZLIB
1201                 /* remember if stream is already compressed */
1202                 old_z = My_Connections[Idx].options & CONN_ZIP;
1203 #endif
1204
1205                 My_Connections[Idx].msg_in++;
1206                 if (!Parse_Request(Idx, (char*)array_start(&My_Connections[Idx].rbuf) ))
1207                         return false;
1208
1209                 result = true;
1210
1211                 array_moveleft(&My_Connections[Idx].rbuf, 1, len);
1212                 LogDebug("Connection %d: %d bytes left in read buffer.",
1213                     Idx, array_bytes(&My_Connections[Idx].rbuf));
1214 #ifdef ZLIB
1215                 if(( ! old_z ) && ( My_Connections[Idx].options & CONN_ZIP ) &&
1216                                 ( array_bytes(&My_Connections[Idx].rbuf) > 0 ))
1217                 {
1218                         /* The last Command activated Socket-Compression.
1219                          * Data that was read after that needs to be copied to Unzip-buf
1220                          * for decompression */
1221                         if( array_bytes(&My_Connections[Idx].rbuf)> ZREADBUFFER_LEN ) {
1222                                 Log( LOG_ALERT, "Connection %d: No space left in unzip buf (need %u bytes)!",
1223                                                                 Idx, array_bytes(&My_Connections[Idx].rbuf ));
1224                                 return false;
1225                         }
1226                         if (!array_copy( &My_Connections[Idx].zip.rbuf, &My_Connections[Idx].rbuf ))
1227                                 return false;
1228
1229                         array_trunc(&My_Connections[Idx].rbuf);
1230                         LogDebug("Moved already received data (%u bytes) to uncompression buffer.",
1231                                                                 array_bytes(&My_Connections[Idx].zip.rbuf));
1232                 }
1233 #endif /* ZLIB */
1234         }
1235         return result;
1236 } /* Handle_Buffer */
1237
1238
1239 static void
1240 Check_Connections(void)
1241 {
1242         /* check if connections are alive. if not, play PING-PONG first.
1243          * if this doesn't help either, disconnect client. */
1244         CLIENT *c;
1245         CONN_ID i;
1246
1247         for (i = 0; i < Pool_Size; i++) {
1248                 if (My_Connections[i].sock < 0)
1249                         continue;
1250
1251                 c = Conn_GetClient(i);
1252                 if (c && ((Client_Type(c) == CLIENT_USER)
1253                           || (Client_Type(c) == CLIENT_SERVER)
1254                           || (Client_Type(c) == CLIENT_SERVICE))) {
1255                         /* connected User, Server or Service */
1256                         if (My_Connections[i].lastping >
1257                             My_Connections[i].lastdata) {
1258                                 /* We already sent a ping */
1259                                 if (My_Connections[i].lastping <
1260                                     time(NULL) - Conf_PongTimeout) {
1261                                         /* Timeout */
1262                                         LogDebug
1263                                             ("Connection %d: Ping timeout: %d seconds.",
1264                                              i, Conf_PongTimeout);
1265                                         Conn_Close(i, NULL, "Ping timeout",
1266                                                    true);
1267                                 }
1268                         } else if (My_Connections[i].lastdata <
1269                                    time(NULL) - Conf_PingTimeout) {
1270                                 /* We need to send a PING ... */
1271                                 LogDebug("Connection %d: sending PING ...", i);
1272                                 My_Connections[i].lastping = time(NULL);
1273                                 Conn_WriteStr(i, "PING :%s",
1274                                               Client_ID(Client_ThisServer()));
1275                         }
1276                 } else {
1277                         /* The connection is not fully established yet, so
1278                          * we don't do the PING-PONG game here but instead
1279                          * disconnect the client after "a short time" if it's
1280                          * still not registered. */
1281
1282                         if (My_Connections[i].lastdata <
1283                             time(NULL) - Conf_PongTimeout) {
1284                                 LogDebug
1285                                     ("Unregistered connection %d timed out ...",
1286                                      i);
1287                                 Conn_Close(i, NULL, "Timeout", false);
1288                         }
1289                 }
1290         }
1291 } /* Check_Connections */
1292
1293
1294 static void
1295 Check_Servers( void )
1296 {
1297         /* Check if we can establish further server links */
1298
1299         int i, n;
1300         time_t time_now;
1301
1302         /* Check all configured servers */
1303         for( i = 0; i < MAX_SERVERS; i++ ) {
1304                 /* Valid outgoing server which isn't already connected or disabled? */
1305                 if(( ! Conf_Server[i].host[0] ) || ( ! Conf_Server[i].port > 0 ) ||
1306                         ( Conf_Server[i].conn_id > NONE ) || ( Conf_Server[i].flags & CONF_SFLAG_DISABLED ))
1307                                 continue;
1308
1309                 /* Is there already a connection in this group? */
1310                 if( Conf_Server[i].group > NONE ) {
1311                         for (n = 0; n < MAX_SERVERS; n++) {
1312                                 if (n == i) continue;
1313                                 if ((Conf_Server[n].conn_id > NONE) &&
1314                                         (Conf_Server[n].group == Conf_Server[i].group))
1315                                                 break;
1316                         }
1317                         if (n < MAX_SERVERS) continue;
1318                 }
1319
1320                 /* Check last connect attempt? */
1321                 time_now = time(NULL);
1322                 if( Conf_Server[i].lasttry > (time_now - Conf_ConnectRetry))
1323                         continue;
1324
1325                 /* Okay, try to connect now */
1326                 Conf_Server[i].lasttry = time_now;
1327                 assert(Resolve_Getfd(&Conf_Server[i].res_stat) < 0);
1328                 Resolve_Name(&Conf_Server[i].res_stat, Conf_Server[i].host, cb_Connect_to_Server);
1329         }
1330 } /* Check_Servers */
1331
1332
1333 static void
1334 New_Server( int Server )
1335 {
1336         /* Establish new server link */
1337
1338         struct sockaddr_in new_addr;
1339         struct in_addr inaddr;
1340         int res, new_sock;
1341         CLIENT *c;
1342
1343         assert( Server > NONE );
1344
1345         Log( LOG_INFO, "Establishing connection to \"%s\", %s, port %d ... ", Conf_Server[Server].host,
1346                                                         Conf_Server[Server].ip, Conf_Server[Server].port );
1347
1348 #ifdef HAVE_INET_ATON
1349         if( inet_aton( Conf_Server[Server].ip, &inaddr ) == 0 )
1350 #else
1351         memset( &inaddr, 0, sizeof( inaddr ));
1352         inaddr.s_addr = inet_addr( Conf_Server[Server].ip );
1353         if( inaddr.s_addr == (unsigned)-1 )
1354 #endif
1355         {
1356                 Log( LOG_ERR, "Can't connect to \"%s\": can't convert ip address %s!",
1357                                 Conf_Server[Server].host, Conf_Server[Server].ip );
1358                 return;
1359         }
1360
1361         memset( &new_addr, 0, sizeof( new_addr ));
1362         new_addr.sin_family = (sa_family_t)AF_INET;
1363         new_addr.sin_addr = inaddr;
1364         new_addr.sin_port = htons( Conf_Server[Server].port );
1365
1366         new_sock = socket( PF_INET, SOCK_STREAM, 0 );
1367         if ( new_sock < 0 ) {
1368                 Log( LOG_CRIT, "Can't create socket: %s!", strerror( errno ));
1369                 return;
1370         }
1371
1372         if( ! Init_Socket( new_sock )) return;
1373
1374         res = connect(new_sock, (struct sockaddr *)&new_addr,
1375                         (socklen_t)sizeof(new_addr));
1376         if(( res != 0 ) && ( errno != EINPROGRESS )) {
1377                 Log( LOG_CRIT, "Can't connect socket: %s!", strerror( errno ));
1378                 close( new_sock );
1379                 return;
1380         }
1381         
1382         if (!array_alloc(&My_ConnArray, sizeof(CONNECTION), (size_t)new_sock)) {
1383                 Log(LOG_ALERT,
1384                     "Cannot allocate memory for server connection (socket %d)",
1385                     new_sock);
1386                 close( new_sock );
1387                 return;
1388         }
1389
1390         My_Connections = array_start(&My_ConnArray);
1391
1392         assert(My_Connections[new_sock].sock <= 0);
1393
1394         Init_Conn_Struct(new_sock);
1395
1396         c = Client_NewLocal( new_sock, inet_ntoa( new_addr.sin_addr ), CLIENT_UNKNOWNSERVER, false );
1397         if( ! c ) {
1398                 Log( LOG_ALERT, "Can't establish connection: can't create client structure!" );
1399                 close( new_sock );
1400                 return;
1401         }
1402
1403         Client_SetIntroducer( c, c );
1404         Client_SetToken( c, TOKEN_OUTBOUND );
1405
1406         /* Register connection */
1407         Conf_Server[Server].conn_id = new_sock;
1408         My_Connections[new_sock].sock = new_sock;
1409         My_Connections[new_sock].addr = new_addr;
1410         My_Connections[new_sock].client = c;
1411         strlcpy( My_Connections[new_sock].host, Conf_Server[Server].host,
1412                                 sizeof(My_Connections[new_sock].host ));
1413
1414         /* Register new socket */
1415         if (!io_event_create( new_sock, IO_WANTWRITE, cb_connserver)) {
1416                 Log( LOG_ALERT, "io_event_create(): could not add fd %d", strerror(errno));
1417                 Conn_Close( new_sock, "io_event_create() failed", NULL, false );
1418                 Init_Conn_Struct( new_sock );
1419                 Conf_Server[Server].conn_id = NONE;
1420         }
1421
1422         LogDebug("Registered new connection %d on socket %d.",
1423                                 new_sock, My_Connections[new_sock].sock );
1424         Conn_OPTION_ADD( &My_Connections[new_sock], CONN_ISCONNECTING );
1425 } /* New_Server */
1426
1427
1428 static void
1429 Init_Conn_Struct( CONN_ID Idx )
1430 {
1431         time_t now = time( NULL );
1432         /* Connection-Struktur initialisieren */
1433
1434         memset( &My_Connections[Idx], 0, sizeof ( CONNECTION ));
1435         My_Connections[Idx].sock = -1;
1436         My_Connections[Idx].lastdata = now;
1437         My_Connections[Idx].lastprivmsg = now;
1438         Resolve_Init(&My_Connections[Idx].res_stat);
1439 } /* Init_Conn_Struct */
1440
1441
1442 static bool
1443 Init_Socket( int Sock )
1444 {
1445         /* Initialize socket (set options) */
1446
1447         int value;
1448
1449         if (!io_setnonblock(Sock)) {
1450                 Log( LOG_CRIT, "Can't enable non-blocking mode for socket: %s!", strerror( errno ));
1451                 close( Sock );
1452                 return false;
1453         }
1454
1455         /* Don't block this port after socket shutdown */
1456         value = 1;
1457         if( setsockopt( Sock, SOL_SOCKET, SO_REUSEADDR, &value, (socklen_t)sizeof( value )) != 0 )
1458         {
1459                 Log( LOG_ERR, "Can't set socket option SO_REUSEADDR: %s!", strerror( errno ));
1460                 /* ignore this error */
1461         }
1462
1463         /* Set type of service (TOS) */
1464 #if defined(IP_TOS) && defined(IPTOS_LOWDELAY)
1465         value = IPTOS_LOWDELAY;
1466         LogDebug("Setting option IP_TOS on socket %d to IPTOS_LOWDELAY (%d).", Sock, value );
1467         if( setsockopt( Sock, SOL_IP, IP_TOS, &value, (socklen_t)sizeof( value )) != 0 )
1468         {
1469                 Log( LOG_ERR, "Can't set socket option IP_TOS: %s!", strerror( errno ));
1470                 /* ignore this error */
1471         }
1472 #endif
1473
1474         return true;
1475 } /* Init_Socket */
1476
1477
1478
1479 static void
1480 cb_Connect_to_Server(int fd, UNUSED short events)
1481 {
1482         /* Read result of resolver sub-process from pipe and start connection */
1483         int i;
1484         size_t len;
1485         char readbuf[HOST_LEN + 1];
1486
1487         LogDebug("Resolver: Got forward lookup callback on fd %d, events %d", fd, events);
1488
1489         for (i=0; i < MAX_SERVERS; i++) {
1490                   if (Resolve_Getfd(&Conf_Server[i].res_stat) == fd )
1491                           break;
1492         }
1493         
1494         if( i >= MAX_SERVERS) {
1495                 /* Ops, no matching server found?! */
1496                 io_close( fd );
1497                 LogDebug("Resolver: Got Forward Lookup callback for unknown server!?");
1498                 return;
1499         }
1500
1501         /* Read result from pipe */
1502         len = Resolve_Read(&Conf_Server[i].res_stat, readbuf, sizeof readbuf -1);
1503         if (len == 0)
1504                 return;
1505         
1506         readbuf[len] = '\0';
1507         LogDebug("Got result from resolver: \"%s\" (%u bytes read).", readbuf, len);
1508         strlcpy( Conf_Server[i].ip, readbuf, sizeof( Conf_Server[i].ip ));
1509
1510         /* connect() */
1511         New_Server(i);
1512 } /* cb_Read_Forward_Lookup */
1513
1514
1515 static void
1516 cb_Read_Resolver_Result( int r_fd, UNUSED short events )
1517 {
1518         /* Read result of resolver sub-process from pipe and update the
1519          * apropriate connection/client structure(s): hostname and/or
1520          * IDENT user name.*/
1521
1522         CLIENT *c;
1523         int i;
1524         size_t len;
1525         char *identptr;
1526 #ifdef IDENTAUTH
1527         char readbuf[HOST_LEN + 2 + CLIENT_USER_LEN];
1528 #else
1529         char readbuf[HOST_LEN + 1];
1530 #endif
1531
1532         LogDebug("Resolver: Got callback on fd %d, events %d", r_fd, events );
1533
1534         /* Search associated connection ... */
1535         for( i = 0; i < Pool_Size; i++ ) {
1536                 if(( My_Connections[i].sock != NONE )
1537                   && ( Resolve_Getfd(&My_Connections[i].res_stat) == r_fd ))
1538                         break;
1539         }
1540         if( i >= Pool_Size ) {
1541                 /* Ops, none found? Probably the connection has already
1542                  * been closed!? We'll ignore that ... */
1543                 io_close( r_fd );
1544                 LogDebug("Resolver: Got callback for unknown connection!?");
1545                 return;
1546         }
1547
1548         /* Read result from pipe */
1549         len = Resolve_Read(&My_Connections[i].res_stat, readbuf, sizeof readbuf -1);
1550         if (len == 0)
1551                 return;
1552
1553         readbuf[len] = '\0';
1554         identptr = strchr(readbuf, '\n');
1555         assert(identptr != NULL);
1556         if (!identptr) {
1557                 Log( LOG_CRIT, "Resolver: Got malformed result!");
1558                 return;
1559         }
1560
1561         *identptr = '\0';
1562         LogDebug("Got result from resolver: \"%s\" (%u bytes read).", readbuf, len);
1563         /* Okay, we got a complete result: this is a host name for outgoing
1564          * connections and a host name and IDENT user name (if enabled) for
1565          * incoming connections.*/
1566         assert ( My_Connections[i].sock >= 0 );
1567         /* Incoming connection. Search client ... */
1568         c = Conn_GetClient( i );
1569         assert( c != NULL );
1570
1571         /* Only update client information of unregistered clients */
1572         if( Client_Type( c ) == CLIENT_UNKNOWN ) {
1573                 strlcpy(My_Connections[i].host, readbuf, sizeof( My_Connections[i].host));
1574                 Client_SetHostname( c, readbuf);
1575 #ifdef IDENTAUTH
1576                 ++identptr;
1577                 if (*identptr) {
1578                         Log( LOG_INFO, "IDENT lookup for connection %ld: \"%s\".", i, identptr);
1579                         Client_SetUser( c, identptr, true );
1580                 } else {
1581                         Log( LOG_INFO, "IDENT lookup for connection %ld: no result.", i );
1582                 }
1583 #endif
1584         }
1585 #ifdef DEBUG
1586                 else Log( LOG_DEBUG, "Resolver: discarding result for already registered connection %d.", i );
1587 #endif
1588         /* Reset penalty time */
1589         Conn_ResetPenalty( i );
1590 } /* cb_Read_Resolver_Result */
1591
1592
1593 static void
1594 Simple_Message( int Sock, const char *Msg )
1595 {
1596         char buf[COMMAND_LEN];
1597         size_t len;
1598         /* Write "simple" message to socket, without using compression
1599          * or even the connection write buffers. Used e.g. for error
1600          * messages by New_Connection(). */
1601         assert( Sock > NONE );
1602         assert( Msg != NULL );
1603
1604         strlcpy( buf, Msg, sizeof buf - 2);
1605         len = strlcat( buf, "\r\n", sizeof buf);
1606         (void)write(Sock, buf, len);
1607 } /* Simple_Error */
1608
1609
1610 static int
1611 Count_Connections( struct sockaddr_in addr_in )
1612 {
1613         int i, cnt;
1614         
1615         cnt = 0;
1616         for( i = 0; i < Pool_Size; i++ ) {
1617                 if(( My_Connections[i].sock > NONE ) && ( My_Connections[i].addr.sin_addr.s_addr == addr_in.sin_addr.s_addr )) cnt++;
1618         }
1619         return cnt;
1620 } /* Count_Connections */
1621
1622
1623 GLOBAL CLIENT *
1624 Conn_GetClient( CONN_ID Idx ) 
1625 {
1626         /* return Client-Structure that belongs to the local Connection Idx.
1627          * If none is found, return NULL.
1628          */
1629         CONNECTION *c;
1630         assert( Idx >= 0 );
1631
1632         c = array_get(&My_ConnArray, sizeof (CONNECTION), (size_t)Idx);
1633
1634         assert(c != NULL);
1635
1636         return c ? c->client : NULL;
1637 }
1638
1639 /* -eof- */