1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-10-01 08:22:24 +00:00

Compare commits

...

11 Commits

Author SHA1 Message Date
Alexander Barton
f7c63e9237 Debian package version 0.8.0-0ab1 2004-06-26 09:27:29 +00:00
Alexander Barton
0958133a0a ngIRCd 0.8.0 2004-06-26 09:19:58 +00:00
Alexander Barton
205fea28b3 Updated documentation. 2004-06-26 09:12:38 +00:00
Alexander Barton
8cd18eb6b4 Added cast to integer for Solaris. 2004-06-26 09:06:27 +00:00
Alexander Barton
7f66fd908e Fixed wrong buffer size calculation for resolver results. 2004-05-30 16:24:21 +00:00
Alexander Barton
3c33a41fe8 Version 0.8.0-pre2 2004-05-15 23:55:48 +00:00
Alexander Barton
0d0cdf4831 Fixed host name lookups when using IDENT user lookups. 2004-05-15 23:52:17 +00:00
Alexander Barton
030fef4a8a Enhanced logging to console when running in "no-detached mode": added PID
and log messages of resolver sub-processes. [from HEAD]
2004-05-15 23:51:13 +00:00
Alexander Barton
15d31d31db "make clean" and "make maintainer-clean" remove more files now. [from HEAD] 2004-05-11 00:38:17 +00:00
Alexander Barton
2a3ec21702 Version 0.8.0-pre1 2004-05-07 11:56:19 +00:00
Alexander Barton
9f9576ce31 New "chroot" feature (from Benjamin Pineau), introducing new configuration
variables "ChrootDir" and "MotdPhrase". [from HEAD]
2004-05-07 11:24:17 +00:00
23 changed files with 175 additions and 106 deletions

View File

@@ -31,4 +31,4 @@ Andrew Tridgell & Martin Pool: strl{cpy|cat}()-functions
-- --
$Id: AUTHORS,v 1.9 2004/05/07 11:19:20 alex Exp $ $Id: AUTHORS,v 1.8.2.1 2004/05/07 11:24:17 alex Exp $

View File

@@ -10,8 +10,17 @@
-- ChangeLog -- -- ChangeLog --
ngIRCd CVSHEAD ngircd 0.8.0 (2004-06-26)
- Fixed wrong buffer size calculation for results of the resolver.
ngircd 0.8.0-pre2 (2004-05-16)
- Enhanced logging to console when running in "no-detached mode": added
PID and log messages of resolver sub-processes.
- Fixed host name lookups when using IDENT user lookups.
- "make clean" and "make maintainer-clean" remove more files mow.
ngIRCd 0.8.0-pre1 (2004-05-07)
- Two new configuration options: "ChrootDir" and "MotdPhrase", thanks to - Two new configuration options: "ChrootDir" and "MotdPhrase", thanks to
Benjamin Pineau <ben@zouh.org>. Now you can force the daemon to change Benjamin Pineau <ben@zouh.org>. Now you can force the daemon to change
its root and working directory to something "safe". MotdPhrase is used its root and working directory to something "safe". MotdPhrase is used
@@ -521,4 +530,4 @@ ngIRCd 0.0.1, 31.12.2001
-- --
$Id: ChangeLog,v 1.234 2004/05/07 11:19:20 alex Exp $ $Id: ChangeLog,v 1.233.2.5 2004/06/26 09:12:38 alex Exp $

View File

@@ -163,4 +163,4 @@ number. In both cases the server exits after the output.
-- --
$Id: INSTALL,v 1.19 2004/05/07 11:19:20 alex Exp $ $Id: INSTALL,v 1.18.2.1 2004/05/07 11:24:17 alex Exp $

View File

@@ -8,18 +8,21 @@
# (at your option) any later version. # (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information. # Please read the file COPYING, README and AUTHORS for more information.
# #
# $Id: Makefile.am,v 1.14 2004/01/01 22:24:48 alex Exp $ # $Id: Makefile.am,v 1.14.2.1 2004/05/11 00:38:17 alex Exp $
# #
AUTOMAKE_OPTIONS = gnu AUTOMAKE_OPTIONS = gnu
SUBDIRS = doc src man contrib SUBDIRS = doc src man contrib
clean-local:
rm -f build-stamp*
maintainer-clean-local: maintainer-clean-local:
rm -rf autom4te.cache rm -rf autom4te.cache
rm -f Makefile.in Makefile aclocal.m4 configure rm -f Makefile.in Makefile aclocal.m4 configure
rm -f mkinstalldirs missing depcomp install-sh rm -f mkinstalldirs missing depcomp install-sh
rm -f config.log build-stamp* debian rm -f config.log debian
lint: lint:
make -C src/ngircd lint make -C src/ngircd lint

4
NEWS
View File

@@ -10,7 +10,7 @@
-- NEWS -- -- NEWS --
ngIRCd CVSHEAD ngIRCd 0.8.0 (2004-06-26)
- Two new configuration options: "ChrootDir" and "MotdPhrase", thanks to - Two new configuration options: "ChrootDir" and "MotdPhrase", thanks to
Benjamin Pineau <ben@zouh.org>. Now you can force the daemon to change Benjamin Pineau <ben@zouh.org>. Now you can force the daemon to change
@@ -189,4 +189,4 @@ ngIRCd 0.0.1, 31.12.2001
-- --
$Id: NEWS,v 1.65 2004/05/07 11:19:20 alex Exp $ $Id: NEWS,v 1.64.2.3 2004/06/26 09:12:38 alex Exp $

2
README
View File

@@ -84,4 +84,4 @@ mail to: <alex@barton.de> or <alex@arthur.ath.cx>
-- --
$Id: README,v 1.19 2004/05/07 11:19:20 alex Exp $ $Id: README,v 1.18.2.1 2004/05/07 11:24:17 alex Exp $

View File

@@ -8,13 +8,13 @@
# (at your option) any later version. # (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information. # Please read the file COPYING, README and AUTHORS for more information.
# #
# $Id: configure.in,v 1.102 2004/04/11 13:20:24 alex Exp $ # $Id: configure.in,v 1.102.2.3 2004/06/26 09:19:58 alex Exp $
# #
# -- Initialisation -- # -- Initialisation --
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT(ngircd, CVSHEAD) AC_INIT(ngircd, 0.8.0)
AC_CONFIG_SRCDIR(src/ngircd/ngircd.c) AC_CONFIG_SRCDIR(src/ngircd/ngircd.c)
AC_CANONICAL_TARGET AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE(1.6) AM_INIT_AUTOMAKE(1.6)

View File

@@ -8,7 +8,7 @@
# (at your option) any later version. # (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information. # Please read the file COPYING, README and AUTHORS for more information.
# #
# $Id: Makefile.am,v 1.3 2004/01/13 01:10:11 alex Exp $ # $Id: Makefile.am,v 1.3.2.1 2004/05/11 00:38:17 alex Exp $
# #
EXTRA_DIST = rules changelog compat control copyright \ EXTRA_DIST = rules changelog compat control copyright \
@@ -16,11 +16,12 @@ EXTRA_DIST = rules changelog compat control copyright \
maintainer-clean-local: maintainer-clean-local:
rm -f Makefile Makefile.in rm -f Makefile Makefile.in
clean-local:
rm -f ngircd.postinst.debhelper ngircd.postrm.debhelper \ rm -f ngircd.postinst.debhelper ngircd.postrm.debhelper \
ngircd.prerm.debhelper ngircd.substvars ngircd.prerm.debhelper ngircd.substvars
rm -f ngircd-full.postinst.debhelper ngircd-full.postrm.debhelper \ rm -f ngircd-full.postinst.debhelper ngircd-full.postrm.debhelper \
ngircd-full.prerm.debhelper ngircd-full.substvars ngircd-full.prerm.debhelper ngircd-full.substvars
rm -rf ngircd ngircd-full rm -rf ngircd ngircd-full
rm -f files rm -f files

View File

@@ -1,3 +1,9 @@
ngircd (0.8.0-0ab1) unstable; urgency=low
* New upstream version.
-- Alexander Barton <alex@Arthur.Ath.CX> Sat, 26 Jun 2004 11:25:59 +0200
ngircd (0.7.7+HEAD-0ab5) unstable; urgency=low ngircd (0.7.7+HEAD-0ab5) unstable; urgency=low
* Updates from CVS HEAD branch, most notably: "INVITE- and BAN-lists * Updates from CVS HEAD branch, most notably: "INVITE- and BAN-lists

View File

@@ -8,10 +8,13 @@
# (at your option) any later version. # (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information. # Please read the file COPYING, README and AUTHORS for more information.
# #
# $Id: Makefile.am,v 1.1 2004/02/29 17:19:43 alex Exp $ # $Id: Makefile.am,v 1.1.2.1 2004/05/11 00:38:17 alex Exp $
# #
clean-local: clean-local:
rm -rf build rm -rf build
maintainer-clean-local:
rm -f Makefile Makefile.in
# -eof- # -eof-

View File

@@ -1,5 +1,5 @@
%define name ngircd %define name ngircd
%define version CVSHEAD %define version 0.8.0
%define release 1 %define release 1
%define prefix %{_prefix} %define prefix %{_prefix}

View File

@@ -1,4 +1,4 @@
# $Id: sample-ngircd.conf,v 1.26 2004/05/07 11:19:20 alex Exp $ # $Id: sample-ngircd.conf,v 1.25.2.1 2004/05/07 11:24:17 alex Exp $
# #
# This is a sample configuration file for the ngIRCd, which must be adepted # This is a sample configuration file for the ngIRCd, which must be adepted

View File

@@ -1,5 +1,5 @@
.\" .\"
.\" $Id: ngircd.conf.5,v 1.13 2004/05/07 11:19:20 alex Exp $ .\" $Id: ngircd.conf.5,v 1.12.2.1 2004/05/07 11:24:18 alex Exp $
.\" .\"
.TH ngircd.conf 5 "Mai 2003" ngircd "ngIRCd Manual" .TH ngircd.conf 5 "Mai 2003" ngircd "ngIRCd Manual"
.SH NAME .SH NAME

View File

@@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: conf.c,v 1.64 2004/05/07 11:19:21 alex Exp $"; static char UNUSED id[] = "$Id: conf.c,v 1.63.2.1 2004/05/07 11:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>

View File

@@ -8,7 +8,7 @@
* (at your option) any later version. * (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information. * Please read the file COPYING, README and AUTHORS for more information.
* *
* $Id: conf.h,v 1.29 2004/05/07 11:19:21 alex Exp $ * $Id: conf.h,v 1.28.2.1 2004/05/07 11:24:18 alex Exp $
* *
* Configuration management (header) * Configuration management (header)
*/ */

View File

@@ -16,7 +16,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: conn.c,v 1.134 2004/04/25 14:06:12 alex Exp $"; static char UNUSED id[] = "$Id: conn.c,v 1.134.2.2 2004/05/30 16:24:21 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@@ -1600,35 +1600,28 @@ Init_Socket( INT Sock )
LOCAL VOID LOCAL VOID
Read_Resolver_Result( INT r_fd ) Read_Resolver_Result( INT r_fd )
{ {
/* Ergebnis von Resolver Sub-Prozess aus Pipe lesen /* Read result of resolver sub-process from pipe and update the
* und entsprechende Connection aktualisieren */ * apropriate connection/client structure(s): hostname and/or
* IDENT user name.*/
CHAR result[HOST_LEN];
CLIENT *c; CLIENT *c;
INT len, i, n; INT len, i, n;
RES_STAT *s;
FD_CLR( r_fd, &Resolver_FDs ); CHAR *ptr;
/* Read result from pipe */
len = read( r_fd, result, HOST_LEN - 1 );
if( len < 0 )
{
/* Error! */
close( r_fd );
Log( LOG_CRIT, "Resolver: Can't read result: %s!", strerror( errno ));
return;
}
result[len] = '\0';
/* Search associated connection ... */ /* Search associated connection ... */
for( i = 0; i < Pool_Size; i++ ) for( i = 0; i < Pool_Size; i++ )
{ {
if(( My_Connections[i].sock != NONE ) && ( My_Connections[i].res_stat ) && ( My_Connections[i].res_stat->pipe[0] == r_fd )) break; if(( My_Connections[i].sock != NONE )
&& ( My_Connections[i].res_stat != NULL )
&& ( My_Connections[i].res_stat->pipe[0] == r_fd ))
break;
} }
if( i >= Pool_Size ) if( i >= Pool_Size )
{ {
/* Ops, none found? Probably the connection has already /* Ops, none found? Probably the connection has already
* been closed. */ * been closed!? We'll ignore that ... */
FD_CLR( r_fd, &Resolver_FDs );
close( r_fd ); close( r_fd );
#ifdef DEBUG #ifdef DEBUG
Log( LOG_DEBUG, "Resolver: Got result for unknown connection!?" ); Log( LOG_DEBUG, "Resolver: Got result for unknown connection!?" );
@@ -1636,61 +1629,102 @@ Read_Resolver_Result( INT r_fd )
return; return;
} }
/* Get resolver structure */
s = My_Connections[i].res_stat;
assert( s != NULL );
/* Read result from pipe */
len = read( r_fd, s->buffer + s->bufpos, sizeof( s->buffer ) - s->bufpos - 1 );
if( len < 0 )
{
/* Error! */
close( r_fd );
Log( LOG_CRIT, "Resolver: Can't read result: %s!", strerror( errno ));
return;
}
s->bufpos += len;
s->buffer[s->bufpos] = '\0';
/* If the result string is incomplete, return to main loop and
* wait until we can read in more bytes. */
#ifdef IDENTAUTH
try_resolve:
#endif
ptr = strchr( s->buffer, '\n' );
if( ! ptr ) return;
*ptr = '\0';
#ifdef DEBUG #ifdef DEBUG
Log( LOG_DEBUG, "Resolver: %s is \"%s\".", My_Connections[i].host, result ); Log( LOG_DEBUG, "Got result from resolver: \"%s\" (%d bytes), stage %d.", s->buffer, len, s->stage );
#endif #endif
/* Clean up ... */ /* Okay, we got a complete result: this is a host name for outgoing
close( My_Connections[i].res_stat->pipe[0] ); * connections and a host name or IDENT user name (if enabled) for
close( My_Connections[i].res_stat->pipe[1] ); * incoming conneciions.*/
free( My_Connections[i].res_stat );
My_Connections[i].res_stat = NULL;
if( My_Connections[i].sock > NONE ) if( My_Connections[i].sock > NONE )
{ {
/* Incoming connection */ /* Incoming connection */
#ifdef IDENTAUTH
CHAR *ident;
#endif
/* Search client ... */ /* Search client ... */
c = Client_GetFromConn( i ); c = Client_GetFromConn( i );
assert( c != NULL ); assert( c != NULL );
/* Only update client information of unregistered clients */ /* Only update client information of unregistered clients */
if( Client_Type( c ) != CLIENT_UNKNOWN ) if( Client_Type( c ) == CLIENT_UNKNOWN )
{ {
#ifdef DEBUG if( s->stage == 0 )
Log( LOG_DEBUG, "Resolver: discarding result for already registered connection %d.", i ); {
#endif /* host name */
return; strlcpy( My_Connections[i].host, s->buffer, sizeof( My_Connections[i].host ));
} Client_SetHostname( c, s->buffer );
/* Set hostname */
strlcpy( My_Connections[i].host, result, sizeof( My_Connections[i].host ));
Client_SetHostname( c, result );
#ifdef IDENTAUTH #ifdef IDENTAUTH
ident = strchr( result, 0 ); /* clean up buffer for IDENT result */
ident++; len = strlen( s->buffer ) + 1;
memmove( s->buffer, s->buffer + len, sizeof( s->buffer ) - len );
s->bufpos -= len;
/* Do we have a result of the IDENT lookup? If so, set it as the user name */ /* Don't close pipe and clean up, but
if( *ident ) * instead wait for IDENT result */
{ s->stage = 1;
Log( LOG_INFO, "IDENT lookup for connection %ld: \"%s\".", i, ident ); goto try_resolve;
Client_SetUser( c, ident, TRUE ); }
else if( s->stage == 1 )
{
/* IDENT user name */
if( s->buffer[0] )
{
Log( LOG_INFO, "IDENT lookup for connection %ld: \"%s\".", i, s->buffer );
Client_SetUser( c, s->buffer, TRUE );
}
else Log( LOG_INFO, "IDENT lookup for connection %ld: no result.", i );
#endif
}
else Log( LOG_ERR, "Resolver: got result for unknown stage %d!?", s->stage );
} }
else Log( LOG_INFO, "IDENT lookup for connection %ld: no result.", i ); #ifdef DEBUG
else Log( LOG_DEBUG, "Resolver: discarding result for already registered connection %d.", i );
#endif #endif
} }
else else
{ {
/* Outgoing connection (server link!): set IP address */ /* Outgoing connection (server link): set the IP address
* so that we can connect to it in the main loop. */
/* Search server ... */
n = Conf_GetServer( i ); n = Conf_GetServer( i );
assert( n > NONE ); assert( n > NONE );
strlcpy( Conf_Server[n].ip, result, sizeof( Conf_Server[n].ip ));
strlcpy( Conf_Server[n].ip, s->buffer, sizeof( Conf_Server[n].ip ));
} }
/* Clean up ... */
FD_CLR( r_fd, &Resolver_FDs );
close( My_Connections[i].res_stat->pipe[0] );
close( My_Connections[i].res_stat->pipe[1] );
free( My_Connections[i].res_stat );
My_Connections[i].res_stat = NULL;
/* Reset penalty time */ /* Reset penalty time */
Conn_ResetPenalty( i ); Conn_ResetPenalty( i );
} /* Read_Resolver_Result */ } /* Read_Resolver_Result */

View File

@@ -8,7 +8,7 @@
* (at your option) any later version. * (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information. * Please read the file COPYING, README and AUTHORS for more information.
* *
* $Id: defines.h,v 1.46 2004/05/07 11:19:21 alex Exp $ * $Id: defines.h,v 1.45.2.1 2004/05/07 11:24:18 alex Exp $
* *
* Global defines of ngIRCd. * Global defines of ngIRCd.
*/ */

View File

@@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-info.c,v 1.22 2004/05/07 11:19:21 alex Exp $"; static char UNUSED id[] = "$Id: irc-info.c,v 1.21.2.1 2004/05/07 11:24:18 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>

View File

@@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: irc-server.c,v 1.36 2004/04/25 15:43:18 alex Exp $"; static char UNUSED id[] = "$Id: irc-server.c,v 1.36.2.1 2004/05/15 23:52:17 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@@ -23,6 +23,7 @@ static char UNUSED id[] = "$Id: irc-server.c,v 1.36 2004/04/25 15:43:18 alex Exp
#include <string.h> #include <string.h>
#include <strings.h> #include <strings.h>
#include "defines.h"
#include "resolve.h" #include "resolve.h"
#include "conn.h" #include "conn.h"
#include "conn-zip.h" #include "conn-zip.h"

View File

@@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: log.c,v 1.45 2004/05/07 11:19:21 alex Exp $"; static char UNUSED id[] = "$Id: log.c,v 1.44.2.3 2004/06/26 09:06:27 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@@ -182,7 +182,7 @@ va_dcl
if( NGIRCd_NoDaemon ) if( NGIRCd_NoDaemon )
{ {
/* auf Konsole ausgeben */ /* auf Konsole ausgeben */
fprintf( stdout, "[%d] %s\n", Level, msg ); fprintf( stdout, "[%d:%d] %s\n", (INT)getpid( ), Level, msg );
fflush( stdout ); fflush( stdout );
} }
#ifdef SYSLOG #ifdef SYSLOG
@@ -214,12 +214,14 @@ Log_Init_Resolver( VOID )
#ifdef SYSLOG #ifdef SYSLOG
openlog( PACKAGE_NAME, LOG_CONS|LOG_PID, LOG_LOCAL5 ); openlog( PACKAGE_NAME, LOG_CONS|LOG_PID, LOG_LOCAL5 );
#endif #endif
Log_Resolver( LOG_DEBUG, "Resolver sub-process starting, PID %d.", getpid( ));
} /* Log_Init_Resolver */ } /* Log_Init_Resolver */
GLOBAL VOID GLOBAL VOID
Log_Exit_Resolver( VOID ) Log_Exit_Resolver( VOID )
{ {
Log_Resolver( LOG_DEBUG, "Resolver sub-process %d done.", getpid( ));
#ifdef SYSLOG #ifdef SYSLOG
closelog( ); closelog( );
#endif #endif
@@ -239,17 +241,11 @@ va_dcl
{ {
/* Eintrag des Resolver in Logfile(s) schreiben */ /* Eintrag des Resolver in Logfile(s) schreiben */
#ifndef SYSLOG
return;
#else
CHAR msg[MAX_LOG_MSG_LEN]; CHAR msg[MAX_LOG_MSG_LEN];
va_list ap; va_list ap;
assert( Format != NULL ); assert( Format != NULL );
if( NGIRCd_NoDaemon ) return;
#ifdef DEBUG #ifdef DEBUG
if(( Level == LOG_DEBUG ) && ( ! NGIRCd_Debug )) return; if(( Level == LOG_DEBUG ) && ( ! NGIRCd_Debug )) return;
#else #else
@@ -265,9 +261,15 @@ va_dcl
vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap ); vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
va_end( ap ); va_end( ap );
/* ... und ausgeben */ /* Output */
syslog( Level, msg ); if( NGIRCd_NoDaemon )
{
/* Output to console */
fprintf( stdout, "[%d:%d] %s\n", (INT)getpid( ), Level, msg );
fflush( stdout );
}
#ifdef SYSLOG
else syslog( Level, msg );
#endif #endif
} /* Log_Resolver */ } /* Log_Resolver */

View File

@@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: ngircd.c,v 1.84 2004/05/07 11:19:21 alex Exp $"; static char UNUSED id[] = "$Id: ngircd.c,v 1.83.2.2 2004/05/15 23:52:17 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@@ -31,13 +31,13 @@ static char UNUSED id[] = "$Id: ngircd.c,v 1.84 2004/05/07 11:19:21 alex Exp $";
#include <pwd.h> #include <pwd.h>
#include <grp.h> #include <grp.h>
#include "defines.h"
#include "resolve.h" #include "resolve.h"
#include "conn.h" #include "conn.h"
#include "client.h" #include "client.h"
#include "channel.h" #include "channel.h"
#include "conf.h" #include "conf.h"
#include "cvs-version.h" #include "cvs-version.h"
#include "defines.h"
#include "lists.h" #include "lists.h"
#include "log.h" #include "log.h"
#include "parse.h" #include "parse.h"

View File

@@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: resolve.c,v 1.8 2004/03/11 22:16:31 alex Exp $"; static char UNUSED id[] = "$Id: resolve.c,v 1.8.2.1 2004/05/15 23:52:17 alex Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@@ -102,6 +102,8 @@ Resolve_Addr( struct sockaddr_in *Addr )
FD_SET( s->pipe[0], &Resolver_FDs ); FD_SET( s->pipe[0], &Resolver_FDs );
if( s->pipe[0] > Conn_MaxFD ) Conn_MaxFD = s->pipe[0]; if( s->pipe[0] > Conn_MaxFD ) Conn_MaxFD = s->pipe[0];
s->pid = pid; s->pid = pid;
s->stage = 0;
s->bufpos = 0;
return s; return s;
} }
else if( pid == 0 ) else if( pid == 0 )
@@ -160,6 +162,8 @@ Resolve_Name( CHAR *Host )
FD_SET( s->pipe[0], &Resolver_FDs ); FD_SET( s->pipe[0], &Resolver_FDs );
if( s->pipe[0] > Conn_MaxFD ) Conn_MaxFD = s->pipe[0]; if( s->pipe[0] > Conn_MaxFD ) Conn_MaxFD = s->pipe[0];
s->pid = pid; s->pid = pid;
s->stage = 0;
s->bufpos = 0;
return s; return s;
} }
else if( pid == 0 ) else if( pid == 0 )
@@ -193,13 +197,13 @@ Do_ResolveAddr( struct sockaddr_in *Addr, INT w_fd )
CHAR hostname[HOST_LEN]; CHAR hostname[HOST_LEN];
struct hostent *h; struct hostent *h;
INT len;
#ifdef IDENTAUTH #ifdef IDENTAUTH
CHAR *res; CHAR *res;
#endif #endif
Log_Resolver( LOG_DEBUG, "Now resolving %s ...", inet_ntoa( Addr->sin_addr ));
/* Resolve IP address */ /* Resolve IP address */
Log_Resolver( LOG_DEBUG, "Now resolving %s ...", inet_ntoa( Addr->sin_addr ));
h = gethostbyaddr( (CHAR *)&Addr->sin_addr, sizeof( Addr->sin_addr ), AF_INET ); h = gethostbyaddr( (CHAR *)&Addr->sin_addr, sizeof( Addr->sin_addr ), AF_INET );
if( h ) strlcpy( hostname, h->h_name, sizeof( hostname )); if( h ) strlcpy( hostname, h->h_name, sizeof( hostname ));
else else
@@ -211,33 +215,35 @@ Do_ResolveAddr( struct sockaddr_in *Addr, INT w_fd )
#endif #endif
strlcpy( hostname, inet_ntoa( Addr->sin_addr ), sizeof( hostname )); strlcpy( hostname, inet_ntoa( Addr->sin_addr ), sizeof( hostname ));
} }
Log_Resolver( LOG_DEBUG, "Ok, translated %s to \"%s\".", inet_ntoa( Addr->sin_addr ), hostname );
#ifdef IDENTAUTH /* Write resolver result into pipe to parent */
/* Do "IDENT" (aka "AUTH") lookup and write result to parent */ len = strlen( hostname );
Log_Resolver( LOG_DEBUG, "Doing IDENT lookup on socket %d ...", Sock ); hostname[len] = '\n'; len++;
res = ident_id( Sock, 10 ); if( (size_t)write( w_fd, hostname, len ) != (size_t)len )
Log_Resolver( LOG_DEBUG, "IDENT lookup on socket %d done.", Sock );
#endif
/* Write result into pipe to parent */
if( (size_t)write( w_fd, hostname, strlen( hostname ) + 1 ) != (size_t)( strlen( hostname ) + 1 ))
{ {
Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent: %s!", strerror( errno )); Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent: %s!", strerror( errno ));
close( w_fd ); close( w_fd );
return; return;
} }
#ifdef IDENTAUTH #ifdef IDENTAUTH
if( (size_t)write( w_fd, res ? res : "", strlen( res ? res : "" ) + 1 ) != (size_t)( strlen( res ? res : "" ) + 1 )) /* Do "IDENT" (aka "AUTH") lookup and write result to parent */
Log_Resolver( LOG_DEBUG, "Doing IDENT lookup on socket %d ...", Sock );
res = ident_id( Sock, 10 );
Log_Resolver( LOG_DEBUG, "Ok, IDENT lookup on socket %d done: \"%s\"", Sock, res ? res : "" );
/* Write IDENT result into pipe to parent */
len = strlen( res ? res : "" );
if( res != NULL ) res[len] = '\n';
len++;
if( (size_t)write( w_fd, res ? res : "\n", len ) != (size_t)len )
{ {
Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent (IDENT): %s!", strerror( errno )); Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent (IDENT): %s!", strerror( errno ));
close( w_fd ); close( w_fd );
free( res );
return;
} }
free( res ); free( res );
#endif #endif
Log_Resolver( LOG_DEBUG, "Ok, translated %s to \"%s\".", inet_ntoa( Addr->sin_addr ), hostname );
} /* Do_ResolveAddr */ } /* Do_ResolveAddr */
@@ -250,6 +256,7 @@ Do_ResolveName( CHAR *Host, INT w_fd )
CHAR ip[16]; CHAR ip[16];
struct hostent *h; struct hostent *h;
struct in_addr *addr; struct in_addr *addr;
INT len;
Log_Resolver( LOG_DEBUG, "Now resolving \"%s\" ...", Host ); Log_Resolver( LOG_DEBUG, "Now resolving \"%s\" ...", Host );
@@ -269,16 +276,16 @@ Do_ResolveName( CHAR *Host, INT w_fd )
#endif #endif
strcpy( ip, "" ); strcpy( ip, "" );
} }
if( ip[0] ) Log_Resolver( LOG_DEBUG, "Ok, translated \"%s\" to %s.", Host, ip );
/* Write result into pipe to parent */ /* Write result into pipe to parent */
if( (size_t)write( w_fd, ip, strlen( ip ) + 1 ) != (size_t)( strlen( ip ) + 1 )) len = strlen( ip );
ip[len] = '\n'; len++;
if( (size_t)write( w_fd, ip, len ) != (size_t)len )
{ {
Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent: %s!", strerror( errno )); Log_Resolver( LOG_CRIT, "Resolver: Can't write to parent: %s!", strerror( errno ));
close( w_fd ); close( w_fd );
return;
} }
if( ip[0] ) Log_Resolver( LOG_DEBUG, "Ok, translated \"%s\" to %s.", Host, ip );
} /* Do_ResolveName */ } /* Do_ResolveName */

View File

@@ -8,7 +8,7 @@
* (at your option) any later version. * (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information. * Please read the file COPYING, README and AUTHORS for more information.
* *
* $Id: resolve.h,v 1.6 2003/12/27 13:01:12 alex Exp $ * $Id: resolve.h,v 1.6.2.1 2004/05/15 23:52:17 alex Exp $
* *
* Asynchronous resolver (header) * Asynchronous resolver (header)
*/ */
@@ -29,6 +29,9 @@ typedef struct _Res_Stat
{ {
INT pid; /* PID des Child-Prozess */ INT pid; /* PID des Child-Prozess */
INT pipe[2]; /* Pipe fuer IPC */ INT pipe[2]; /* Pipe fuer IPC */
INT stage; /* Hostname/IP(0) or IDENT(1)? */
INT bufpos; /* Position in buffer */
CHAR buffer[HOST_LEN]; /* Buffer */
} RES_STAT; } RES_STAT;