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