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