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