diff -burNp eggdrop1.6.19/aclocal.m4 eggdrop1.6.19.new/aclocal.m4 --- eggdrop1.6.19/aclocal.m4 2008-04-19 06:21:20.000000000 +0200 +++ eggdrop1.6.19.new/aclocal.m4 2008-09-22 14:03:38.304371902 +0200 @@ -36,6 +36,63 @@ AC_DEFUN([EGG_MSG_CONFIGURE_START], AC_MSG_RESULT ]) +dnl EGG_SSL_CRAP() +dnl +AC_DEFUN(EGG_SSL_CRAP, [dnl +#ssl checks - hoe +AC_MSG_CHECKING(whether to include SSL support) +AC_ARG_WITH(ssl, +[ --with-ssl[=PATH] Include SSL support (DIR is OpenSSL's install dir).], +[ + case "$withval" in + no) + AC_MSG_RESULT(no) ;; + yes) + AC_MSG_RESULT(yes) + AC_CHECK_LIB(ssl,SSL_accept,[AC_DEFINE(EGG_SSL_EXT) + SSL_LIBS="-lssl -lcrypto"],[AC_MSG_ERROR([You requested SSL support, but OpenSSL was not found. Please supply a pathname to OpenSSL])],-lcrypto) + ;; + *) +dnl A whole whack of possible places where this might be + test -f $withval/openssl/ssl.h && SSL_INCLUDE="$withval" + test -f $withval/include/openssl/ssl.h && SSL_INCLUDE="$withval/include" + + test -f $withval/lib/libssl.a && SSL_LIB="$withval/lib" + test -f $withval/lib/ssl/libssl.a && SSL_LIB="$withval/lib/ssl" + test -f $withval/lib/openssl/libssl.a && SSL_LIB="$withval/lib/openssl/ssl" + test -f $withval/libssl.a && SSL_LIB="$withval" + test -f $withval/ssl/libssl.a && SSL_LIB="$withval/ssl" + test -f $withval/openssl/libssl.a && SSL_LIB="$withval/openssl" + + test -f $withval/lib/libcrypto.a && CRYPTO_LIB="$withval/lib" + test -f $withval/lib/ssl/libcrypto.a && CRYPTO_LIB="$withval/lib/ssl" + test -f $withval/lib/openssl/libcrypto.a && CRYPTO_LIB="$withval/lib/openssl/ssl" + test -f $withval/libcrypto.a && CRYPTO_LIB="$withval" + test -f $withval/ssl/libcrypto.a && CRYPTO_LIB="$withval/ssl" + test -f $withval/openssl/libcrypto.a && CRYPTO_LIB="$withval/openssl" + + if test -n "$SSL_INCLUDE" && test -n "$SSL_LIB" && test -n "$CRYPTO_LIB"; then + SSL_LIBS="-lssl -lcrypto -L$SSL_LIB -L$CRYPTO_LIB"; + AC_DEFINE([EGG_SSL_EXT], [], [SSL support]) + AC_MSG_RESULT(yes) + else + AC_MSG_RESULT(no) + AC_MSG_ERROR([You requested SSL support, but OpenSSL was not found. Please supply a pathname to OpenSSL]) + fi ;; + esac +],[ + AC_MSG_RESULT(will try to find) + AC_CHECK_LIB(ssl,SSL_accept,[AC_DEFINE(EGG_SSL_EXT) + SSL_LIBS="-lssl -lcrypto"],[AC_MSG_ERROR([OpenSSL was not found. Please supply a pathname to OpenSSL])],-lcrypto) + AC_CHECK_HEADERS("openssl/ssl.h",,[AC_MSG_ERROR([OpenSSL was not found. Please supply a pathname to OpenSSL])],) + + AC_SUBST(SSL_LIBS)dnl + AC_SUBST(SSL_INCLUDE)dnl +]) + +#end of ssl checks - hoe (.16 by poci) +])dnl + dnl EGG_MSG_CONFIGURE_END() dnl diff -burNp eggdrop1.6.19/config.h.in eggdrop1.6.19.new/config.h.in --- eggdrop1.6.19/config.h.in 2006-11-20 12:38:25.000000000 +0100 +++ eggdrop1.6.19.new/config.h.in 2008-09-22 14:07:26.990831137 +0200 @@ -33,6 +33,9 @@ /* Define to 1 if you have the `clock' function. */ #undef HAVE_CLOCK +/* Defines ssl mode */ +#undef EGG_SSL_EXT + /* Define to 1 if you have the header file, and it defines `DIR'. */ #undef HAVE_DIRENT_H diff -burNp eggdrop1.6.19/configure eggdrop1.6.19.new/configure --- eggdrop1.6.19/configure 2008-04-19 06:21:20.000000000 +0200 +++ eggdrop1.6.19.new/configure 2008-09-22 14:22:28.610498567 +0200 @@ -856,6 +857,7 @@ Optional Packages: --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-tcllib=PATH full path to Tcl library --with-tclinc=PATH full path to Tcl header + --with-ssl=PATH Include SSL support (DIR is OpenSSL's install dir). Some influential environment variables: CC C compiler command @@ -10113,8 +10115,372 @@ EOF ac_config_commands="$ac_config_commands replace-if-changed" +#ssl checks - hoe +echo "$as_me:$LINENO: checking whether to include SSL support" >&5 +echo $ECHO_N "checking whether to include SSL support... $ECHO_C" >&6 + +# Check whether --with-ssl or --without-ssl was given. +if test "${with_ssl+set}" = set; then + withval="$with_ssl" + + case "$withval" in + no) + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 ;; + yes) + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + echo "$as_me:$LINENO: checking for SSL_accept in -lssl" >&5 +echo $ECHO_N "checking for SSL_accept in -lssl... $ECHO_C" >&6 +if test "${ac_cv_lib_ssl_SSL_accept+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lssl -lcrypto $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char SSL_accept (); +int +main () +{ +SSL_accept (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_ssl_SSL_accept=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_ssl_SSL_accept=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_ssl_SSL_accept" >&5 +echo "${ECHO_T}$ac_cv_lib_ssl_SSL_accept" >&6 +if test $ac_cv_lib_ssl_SSL_accept = yes; then + cat >>confdefs.h <<\_ACEOF +#define EGG_SSL_EXT 1 +_ACEOF + + SSL_LIBS="-lssl -lcrypto" +else + { { echo "$as_me:$LINENO: error: You requested SSL support, but OpenSSL was not found. Please supply a pathname to OpenSSL" >&5 +echo "$as_me: error: You requested SSL support, but OpenSSL was not found. Please supply a pathname to OpenSSL" >&2;} + { (exit 1); exit 1; }; } +fi + + ;; + *) + test -f $withval/openssl/ssl.h && SSL_INCLUDE="$withval" + test -f $withval/include/openssl/ssl.h && SSL_INCLUDE="$withval/include" + + test -f $withval/lib/libssl.a && SSL_LIB="$withval/lib" + test -f $withval/lib/ssl/libssl.a && SSL_LIB="$withval/lib/ssl" + test -f $withval/lib/openssl/libssl.a && SSL_LIB="$withval/lib/openssl/ssl" + test -f $withval/libssl.a && SSL_LIB="$withval" + test -f $withval/ssl/libssl.a && SSL_LIB="$withval/ssl" + test -f $withval/openssl/libssl.a && SSL_LIB="$withval/openssl" + + test -f $withval/lib/libcrypto.a && CRYPTO_LIB="$withval/lib" + test -f $withval/lib/ssl/libcrypto.a && CRYPTO_LIB="$withval/lib/ssl" + test -f $withval/lib/openssl/libcrypto.a && CRYPTO_LIB="$withval/lib/openssl/ssl" + test -f $withval/libcrypto.a && CRYPTO_LIB="$withval" + test -f $withval/ssl/libcrypto.a && CRYPTO_LIB="$withval/ssl" + test -f $withval/openssl/libcrypto.a && CRYPTO_LIB="$withval/openssl" + + if test -n "$SSL_INCLUDE" && test -n "$SSL_LIB" && test -n "$CRYPTO_LIB"; then + SSL_LIBS="-lssl -lcrypto -L$SSL_LIB -L$CRYPTO_LIB"; + cat >>confdefs.h <<\_ACEOF +#define EGG_SSL_EXT 1 +_ACEOF + + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 + else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 + { { echo "$as_me:$LINENO: error: You requested SSL support, but OpenSSL was not found. Please supply a pathname to OpenSSL" >&5 +echo "$as_me: error: You requested SSL support, but OpenSSL was not found. Please supply a pathname to OpenSSL" >&2;} + { (exit 1); exit 1; }; } + fi ;; + esac + +else + + echo "$as_me:$LINENO: result: will try to find" >&5 +echo "${ECHO_T}will try to find" >&6 + echo "$as_me:$LINENO: checking for SSL_accept in -lssl" >&5 +echo $ECHO_N "checking for SSL_accept in -lssl... $ECHO_C" >&6 +if test "${ac_cv_lib_ssl_SSL_accept+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lssl -lcrypto $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char SSL_accept (); +int +main () +{ +SSL_accept (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_lib_ssl_SSL_accept=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_lib_ssl_SSL_accept=no +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_lib_ssl_SSL_accept" >&5 +echo "${ECHO_T}$ac_cv_lib_ssl_SSL_accept" >&6 +if test $ac_cv_lib_ssl_SSL_accept = yes; then + cat >>confdefs.h <<\_ACEOF +#define EGG_SSL_EXT 1 +_ACEOF + + SSL_LIBS="-lssl -lcrypto" +else + { { echo "$as_me:$LINENO: error: OpenSSL was not found. Please supply a pathname to OpenSSL" >&5 +echo "$as_me: error: OpenSSL was not found. Please supply a pathname to OpenSSL" >&2;} + { (exit 1); exit 1; }; } +fi + + +for ac_header in "openssl/ssl.h" +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +else + # Is the header compilable? +echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" + || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_header_compiler=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6 + +# Is the header present? +echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <$ac_header> +_ACEOF +if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + ac_cpp_err=$ac_cpp_err$ac_c_werror_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6 +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + ( + cat <<\_ASBOX +## -------------------------------- ## +## Report this to bugs@eggheads.org ## +## -------------------------------- ## +_ASBOX + ) | + sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac +echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +else + { { echo "$as_me:$LINENO: error: OpenSSL was not found. Please supply a pathname to OpenSSL" >&5 +echo "$as_me: error: OpenSSL was not found. Please supply a pathname to OpenSSL" >&2;} + { (exit 1); exit 1; }; } +fi + +done + + + +fi; +#end of ssl checks - hoe (.16 by poci) # Substitute Makefile variables. @@ -10827,6 +11193,8 @@ s,@TCLINC@,$TCLINC,;t t s,@TCLINCFN@,$TCLINCFN,;t t s,@TCL_REQS@,$TCL_REQS,;t t s,@TCL_LIBS@,$TCL_LIBS,;t t +s,@SSL_LIBS@,$SSL_LIBS,;t t +s,@SSL_INCLUDE@,$SSL_INCLUDE,;t t s,@EGGVERSION@,$EGGVERSION,;t t s,@DEST@,$DEST,;t t s,@MOD_UPDIR@,$MOD_UPDIR,;t t diff -burNp eggdrop1.6.19/configure.ac eggdrop1.6.19.new/configure.ac --- eggdrop1.6.19/configure.ac 2008-02-18 23:25:33.000000000 +0100 +++ eggdrop1.6.19.new/configure.ac 2008-09-22 14:23:32.432890637 +0200 @@ -150,6 +150,7 @@ EGG_TCL_CHECK_THREADS EGG_TCL_LIB_REQS EGG_TCL_LUSH +EGG_SSL_CRAP # Substitute Makefile variables. EGG_SUBST_EGGVERSION diff -burNp eggdrop1.6.19/disabled_modules eggdrop1.6.19.new/disabled_modules --- eggdrop1.6.19/disabled_modules 2002-06-04 07:11:10.000000000 +0200 +++ eggdrop1.6.19.new/disabled_modules 2008-09-22 14:25:14.439395696 +0200 @@ -1,12 +0,0 @@ -# disabled_modules -- File which lists all Eggdrop modules that are -# disabled by default. -# -# $Id$ -# -# Note: -# - Lines which start with a '#' character are ignored. -# - Every module name needs to be on its own line - -# Woobie only serves as an example for module programming. No need to -# compile it for normal bots ... -woobie diff -burNp eggdrop1.6.19/Makefile eggdrop1.6.19.new/Makefile --- eggdrop1.6.19/Makefile 2008-04-19 06:21:34.000000000 +0200 +++ eggdrop1.6.19.new/Makefile 2008-09-22 14:25:56.388522764 +0200 @@ -1,8 +0,0 @@ -all: - @echo "" - @echo "Before you can compile your bot you have to configure it." - @echo "Please start the configure script now:" - @echo "" - @echo " % ./configure" - @echo "" - diff -burNp eggdrop1.6.19/Makefile.in eggdrop1.6.19.new/Makefile.in --- eggdrop1.6.19/Makefile.in 2004-08-28 08:43:21.000000000 +0200 +++ eggdrop1.6.19.new/Makefile.in 2008-09-22 14:29:11.247383482 +0200 @@ -57,6 +57,8 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ RANLIB = @RANLIB@ MOD_EXT = @MOD_EXT@ XREQS = @TCL_REQS@ +XSSL_LIBS = @SSL_LIBS@ +XSSL_INCLUDE = @SSL_INCLUDE@ TCLLIB = @TCLLIB@ TCLLIBFN = @TCLLIBFN@ @@ -89,7 +91,8 @@ egg_install_msg = echo "" && \ MAKE_MODEGG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(MOD_CC)' 'LD=$(MOD_LD)' \ 'STRIP=$(MOD_STRIP)' 'RANLIB=$(RANLIB)' 'CFLGS=$(CFLGS)' \ 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \ -'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(standard build)' 'MODOBJS=' +'XSSL_LIBS=$(XSSL_LIBS)' 'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' \ +'XSSL_INCLUDE=$(XSSL_INCLUDE)' 'EGGBUILD=' 'MODOBJS=' MAKE_MODULES = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(SHLIB_CC)' 'LD=$(SHLIB_LD)' \ 'STRIP=$(SHLIB_STRIP)' 'CFLGS=$(CFLGS)' 'XLIBS=$(XLIBS)' 'MOD_EXT=$(MOD_EXT)' \ @@ -99,12 +102,13 @@ MAKE_STATIC = $(MAKE) 'MAKE=$(MAKE)' 'CC 'STRIP=$(STRIP)' 'RANLIB=$(RANLIB)' 'CFLGS=$(CFLGS) -DSTATIC' \ 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \ 'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static version)' \ -'MODOBJS=mod/*.o' +'XSSL_INCLUDE=$(XSSL_INCLUDE)' 'XSSL_LIBS=$(XSSL_LIBS)' 'MODOBJS=mod/*.o' MAKE_DEBEGG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(MOD_CC)' 'LD=$(MOD_LD) -g' \ 'STRIP=touch' 'RANLIB=$(RANLIB)' 'CFLGS=-g3 $(DEBCFLAGS) $(CFLGS)' \ 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' \ -'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(debug version)' 'MODOBJS=' +'XSSL_LIBS=$(XSSL_LIBS)' 'XLIBS=$(XLIBS)' 'EGGEXEC=$(EGGEXEC)' \ +'XSSL_INCLUDE=$(XSSL_INCLUDE)' 'EGGBUILD=(debug version)' 'MODOBJS=' MAKE_DEBMODULES = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(SHLIB_CC)' 'LD=$(SHLIB_LD)' \ 'XLIBS=$(XLIBS)' 'STRIP=touch' 'CFLGS=-g3 $(DEBCFLAGS) $(CFLGS)' \ @@ -113,7 +117,8 @@ MAKE_DEBMODULES = $(MAKE) 'MAKE=$(MAKE)' MAKE_SDEBUG = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' 'LD=$(LD) -g' \ 'STRIP=touch' 'RANLIB=$(RANLIB)' 'CFLGS=-g3 $(DEBCFLAGS) -DSTATIC $(CFLGS)' \ 'TCLLIB=$(TCLLIB)' 'TCLLIBFN=$(TCLLIBFN)' 'XREQS=$(XREQS)' 'XLIBS=$(XLIBS)' \ -'EGGEXEC=$(EGGEXEC)' 'EGGBUILD=(static debug version)' 'MODOBJS=mod/*.o' +'XSSL_INCLUDE=$(XSSL_INCLUDE)' 'XSSL_LIBS=$(XSSL_LIBS)' 'EGGEXEC=$(EGGEXEC)' \ +'EGGBUILD=(static and debug version)' 'MODOBJS=mod/*.o' MAKE_DEPEND = $(MAKE) 'MAKE=$(MAKE)' 'CC=$(CC)' diff -burNp eggdrop1.6.19/src/dcc.c eggdrop1.6.19.new/src/dcc.c --- eggdrop1.6.19/src/dcc.c 2008-02-16 22:41:03.000000000 +0100 +++ eggdrop1.6.19.new/src/dcc.c 2008-09-22 14:30:37.252784308 +0200 @@ -32,7 +32,11 @@ #include "tandem.h" /* Includes for botnet md5 challenge/response code */ +#ifndef EGG_SSL_EXT #include "md5/md5.h" +#else +#include "openssl/md5.h" +#endif extern struct userrec *userlist; extern struct chanset_t *chanset; diff -burNp eggdrop1.6.19/src/dccutil.c eggdrop1.6.19.new/src/dccutil.c --- eggdrop1.6.19/src/dccutil.c 2008-02-16 22:41:03.000000000 +0100 +++ eggdrop1.6.19.new/src/dccutil.c 2008-09-22 14:31:42.540452895 +0200 @@ -33,6 +33,7 @@ #include "chan.h" #include "modules.h" #include "tandem.h" +#include "net.h" extern struct dcc_t *dcc; extern int dcc_total, max_dcc, dcc_flood_thr, backgrd, copy_to_tmp, MAXSOCKS; diff -burNp eggdrop1.6.19/src/eggdrop.h eggdrop1.6.19.new/src/eggdrop.h --- eggdrop1.6.19/src/eggdrop.h 2008-02-16 22:41:03.000000000 +0100 +++ eggdrop1.6.19.new/src/eggdrop.h 2008-09-22 14:33:40.008829213 +0200 @@ -616,18 +616,6 @@ enum { #define HELP_TEXT 2 #define HELP_IRC 16 -/* This is used by the net module to keep track of sockets and what's - * queued on them - */ -typedef struct { - int sock; - short flags; - char *inbuf; - char *outbuf; - unsigned long outbuflen; /* Outbuf could be binary data */ - unsigned long inbuflen; /* Inbuf could be binary data */ -} sock_list; - enum { EGG_OPTION_SET = 1, /* Set option(s). */ EGG_OPTION_UNSET = 2 /* Unset option(s). */ diff -burNp eggdrop1.6.19/src/main.c eggdrop1.6.19.new/src/main.c --- eggdrop1.6.19/src/main.c 2008-02-16 22:41:03.000000000 +0100 +++ eggdrop1.6.19.new/src/main.c 2008-09-22 14:35:26.008450672 +0200 @@ -161,6 +161,9 @@ int cx_line[16]; int cx_ptr = 0; #endif +#ifdef EGG_SSL_EXT +int clean_net(); +#endif void fatal(const char *s, int recoverable) { @@ -171,6 +174,9 @@ void fatal(const char *s, int recoverabl for (i = 0; i < dcc_total; i++) if (dcc[i].sock >= 0) killsock(dcc[i].sock); + #ifdef EGG_SSL_EXT + clean_net(); + #endif unlink(pid_file); if (!recoverable) { bg_send_quit(BG_ABORT); diff -burNp eggdrop1.6.19/src/Makefile.in eggdrop1.6.19.new/src/Makefile.in --- eggdrop1.6.19/src/Makefile.in 2006-11-20 12:38:25.000000000 +0100 +++ eggdrop1.6.19.new/src/Makefile.in 2008-09-22 14:38:37.400421493 +0200 @@ -11,6 +11,8 @@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ +XSSL_LIBS = @SSL_LIBS@ +XSSL_INCLUDE = @SSL_INCLUDE@ CC = @CC@ LD = @CC@ @@ -37,7 +39,7 @@ doofus: @echo "Linking eggdrop $(EGGBUILD)." @echo "" @touch mod/mod.xlibs - $(LD) -o ../$(EGGEXEC) $(eggdrop_objs) $(MODOBJS) $(XLIBS) md5/md5c.o compat/*.o `cat mod/mod.xlibs` + $(LD) -o ../$(EGGEXEC) $(eggdrop_objs) $(MODOBJS) $(XLIBS) md5/md5c.o compat/*.o `cat mod/mod.xlibs` $(XSSL_LIBS) $(XSSL_INCLUDE) $(STRIP) ../$(EGGEXEC) @echo "" @echo "Successful compile: $(EGGEXEC)" diff -burNp eggdrop1.6.19/src/md5/md5c.c eggdrop1.6.19.new/src/md5/md5c.c --- eggdrop1.6.19/src/md5/md5c.c 2004-04-10 09:49:23.000000000 +0200 +++ eggdrop1.6.19.new/src/md5/md5c.c 2008-09-22 14:40:36.140399142 +0200 @@ -17,9 +17,23 @@ #include +#ifndef EGG_SSL_EXT #include "md5.h" +#else +#include "openssl/md5.h" +#endif + #include "compat/compat.h" +typedef unsigned long MD5_u32plus; + +typedef struct { + MD5_u32plus lo, hi; + MD5_u32plus a, b, c, d; + unsigned char buffer[64]; + MD5_u32plus block[16]; +} MD5_CTX; + /* * The basic MD5 functions. * diff -burNp eggdrop1.6.19/src/md5/md5.h eggdrop1.6.19.new/src/md5/md5.h --- eggdrop1.6.19/src/md5/md5.h 2003-03-06 04:35:59.000000000 +0100 +++ eggdrop1.6.19.new/src/md5/md5.h 2008-09-22 14:44:22.801432410 +0200 @@ -5,6 +5,8 @@ * Written by Solar Designer in 2001, and placed in * the public domain. See md5c.c for more information. */ +#include "../config.h" +#ifndef EGG_SSL_EXT #ifndef _MD5_H #define _MD5_H @@ -24,3 +26,4 @@ extern void MD5_Update(MD5_CTX *ctx, voi extern void MD5_Final(unsigned char *result, MD5_CTX *ctx); #endif +#endif diff -burNp eggdrop1.6.19/src/mod/irc.mod/chan.c eggdrop1.6.19.new/src/mod/irc.mod/chan.c --- eggdrop1.6.19/src/mod/irc.mod/chan.c 2008-02-16 22:41:09.000000000 +0100 +++ eggdrop1.6.19.new/src/mod/irc.mod/chan.c 2008-09-22 14:46:27.143879710 +0200 @@ -965,10 +965,10 @@ static int got324(char *from, char *msg) q = strchr(p, ' '); if (q != NULL) { *q = 0; - set_key(chan, p); + set_keyegg(chan, p); strcpy(p, q + 1); } else { - set_key(chan, p); + set_keyegg(chan, p); *p = 0; } } diff -burNp eggdrop1.6.19/src/mod/irc.mod/irc.c eggdrop1.6.19.new/src/mod/irc.mod/irc.c --- eggdrop1.6.19/src/mod/irc.mod/irc.c 2008-02-16 22:41:09.000000000 +0100 +++ eggdrop1.6.19.new/src/mod/irc.mod/irc.c 2008-09-22 14:47:35.182249518 +0200 @@ -256,7 +256,7 @@ static void maybe_revenge(struct chanset /* Set the key. */ -static void set_key(struct chanset_t *chan, char *k) +static void set_keyegg(struct chanset_t *chan, char *k) { nfree(chan->channel.key); if (k == NULL) { diff -burNp eggdrop1.6.19/src/mod/irc.mod/irc.h eggdrop1.6.19.new/src/mod/irc.mod/irc.h --- eggdrop1.6.19/src/mod/irc.mod/irc.h 2008-02-16 22:41:09.000000000 +0100 +++ eggdrop1.6.19.new/src/mod/irc.mod/irc.h 2008-09-22 14:53:47.281677127 +0200 @@ -69,7 +69,7 @@ static void set_delay(struct chanset_t * static void reset_chan_info(struct chanset_t *); static void recheck_channel(struct chanset_t *, int); -static void set_key(struct chanset_t *, char *); +static void set_keyegg(struct chanset_t *, char *); static void maybe_revenge(struct chanset_t *, char *, char *, int); static int detect_chan_flood(char *, char *, char *, struct chanset_t *, int, char *); diff -burNp eggdrop1.6.19/src/mod/irc.mod/mode.c eggdrop1.6.19.new/src/mod/irc.mod/mode.c --- eggdrop1.6.19/src/mod/irc.mod/mode.c 2008-02-16 22:41:09.000000000 +0100 +++ eggdrop1.6.19.new/src/mod/irc.mod/mode.c 2008-09-22 14:57:12.177766159 +0200 @@ -1128,7 +1128,7 @@ static int gotmode(char *from, char *ori break; } if (ms2[0] == '+') { - set_key(chan, op); + set_keyegg(chan, op); if (channel_active(chan)) got_key(chan, nick, from, op); } else { @@ -1139,7 +1139,7 @@ static int gotmode(char *from, char *ori !chan_master(user) && !match_my_nick(nick)) add_mode(chan, '+', 'k', chan->key_prot); } - set_key(chan, NULL); + set_keyegg(chan, NULL); } check_tcl_mode(nick, from, u, chan->dname, ms2, op); break; diff -burNp eggdrop1.6.19/src/mod/module.h eggdrop1.6.19.new/src/mod/module.h --- eggdrop1.6.19/src/mod/module.h 2008-02-16 22:41:06.000000000 +0100 +++ eggdrop1.6.19.new/src/mod/module.h 2008-09-22 15:00:36.262853551 +0200 @@ -471,13 +471,23 @@ /* IPv6 leftovers: 286 */ /* IPv6 leftovers: 287 */ /* 288 - 291 */ -/* IPv6 leftovers: 288 */ +#ifdef EGG_SSL_EXT +#define net_switch_to_ssl ((int (*)(int))global[289]) +#define use_ssl (*(int *)global[290]) /* kyotou */ +#define strip_mirc_codes ((void (*)(int, char *))global[291]) +#define check_ansi ((int (*) (char *))global[292]) +#define oatoi ((int (*) (const char *))global[293]) +/* 292 - 295 */ +#define str_isdigit ((int (*) (const char *))global[294]) +#define remove_crlf ((void (*)(char **))global[295]) +#else #define strip_mirc_codes ((void (*)(int, char *))global[289]) #define check_ansi ((int (*) (char *))global[290]) #define oatoi ((int (*) (const char *))global[291]) /* 292 - 295 */ #define str_isdigit ((int (*) (const char *))global[292]) #define remove_crlf ((void (*)(char **))global[293]) +#endif /* hostmasking */ #define maskhost(a,b) _maskhost((a),(b),1) diff -burNp eggdrop1.6.19/src/mod/server.mod/servmsg.c eggdrop1.6.19.new/src/mod/server.mod/servmsg.c --- eggdrop1.6.19/src/mod/server.mod/servmsg.c 2008-02-16 22:41:10.000000000 +0100 +++ eggdrop1.6.19.new/src/mod/server.mod/servmsg.c 2008-09-22 15:16:40.818273894 +0200 @@ -1293,6 +1293,14 @@ static void server_resolve_success(int s fatal("NO SERVERS WILL ACCEPT MY CONNECTION.", 0); } else { dcc[servidx].sock = serv; + #ifdef EGG_SSL_EXT + if (use_ssl) { /* kyotou */ + if (net_switch_to_ssl(serv)==0) { + putlog(LOG_SERV, "*", "SSL %s %s (Error while switching to SSL)", IRC_FAILEDCONNECT, dcc[servidx].host); + lostdcc(servidx); + } + } + #endif /* Queue standard login */ dcc[servidx].timeval = now; SERVER_SOCKET.timeout_val = &server_timeout; diff -burNp eggdrop1.6.19/src/modules.c eggdrop1.6.19.new/src/modules.c --- eggdrop1.6.19/src/modules.c 2008-02-16 22:41:04.000000000 +0100 +++ eggdrop1.6.19.new/src/modules.c 2008-09-22 15:30:23.753434245 +0200 @@ -29,9 +29,17 @@ #include "main.h" #include "modules.h" #include "tandem.h" + +#ifndef EGG_SSL_EXT #include "md5/md5.h" +#else +#include "openssl/md5.h" +#endif + #include "users.h" +#include "net.h" + #ifndef STATIC # ifdef MOD_USE_SHL # include @@ -94,6 +102,10 @@ extern int parties, noshare, dcc_total, password_timeout, force_expire, protect_readonly, reserved_port_min, reserved_port_max, copy_to_tmp, quiet_reject; +#ifdef EGG_SSL_EXT +extern int use_ssl; /* kyotou */ +#endif + extern party_t *party; extern time_t now, online_since; extern tand_t *tandbot; @@ -128,6 +140,9 @@ void check_static(char *name, char *(*fu } #endif /* STATIC */ +#ifdef EGG_SSL_EXT +int net_switch_to_ssl(int); +#endif /* The null functions */ void null_func() @@ -564,7 +579,13 @@ Function global_table[] = { (Function) 0, /* IPv6 leftovers: 286 */ (Function) 0, /* IPv6 leftovers: 287 */ /* 288 - 291 */ +#ifdef EGG_SSL_EXT (Function) 0, /* IPv6 leftovers: 288 */ + (Function) net_switch_to_ssl, + (Function) & use_ssl, /* kyotou */ +#else + (Function) 0, /* IPv6 leftovers: 288 */ +#endif (Function) strip_mirc_codes, (Function) check_ansi, (Function) oatoi, diff -burNp eggdrop1.6.19/src/net.c eggdrop1.6.19.new/src/net.c --- eggdrop1.6.19/src/net.c 2008-02-16 22:41:04.000000000 +0100 +++ eggdrop1.6.19.new/src/net.c 2008-09-22 16:10:28.739840200 +0200 @@ -52,6 +52,18 @@ # endif #endif +#ifdef EGG_SSL_EXT +# ifndef EGG_SSL_INCS +# include +# include +# include +# define EGG_SSL_INCS 1 +# endif +#endif + +#include "net.h" + + extern struct dcc_t *dcc; extern int backgrd, use_stderr, resolve_timeout, dcc_total; extern unsigned long otraffic_irc_today, otraffic_bn_today, otraffic_dcc_today, @@ -65,6 +77,12 @@ int firewallport = 1080; /* Default char botuser[21] = "eggdrop"; /* Username of the user running the bot. */ int dcc_sanitycheck = 0; /* Do some sanity checking on dcc connections. */ +#ifdef EGG_SSL_EXT +SSL_CTX *ssl_ctx=NULL; +char *tls_rand_file = NULL; +int use_ssl = 0; /* kyotou */ +#endif + sock_list *socklist = NULL; /* Enough to be safe. */ int MAXSOCKS = 0; sigjmp_buf alarmret; /* Env buffer for alarm() returns. */ @@ -88,6 +106,46 @@ IP my_atoul(char *s) return ret; } +#ifdef EGG_SSL_EXT +int seed_PRNG(void) +{ + char stackdata[1024]; + static char rand_file[300]; + FILE *fh; + +#if OPENSSL_VERSION_NUMBER >= 0x00905100 + if (RAND_status()) + return 0; /* PRNG already good seeded */ +#endif + /* if the device '/dev/urandom' is present, OpenSSL uses it by default. + * check if it's present, else we have to make random data ourselfs. + */ + if ((fh = fopen("/dev/urandom", "r"))) { + fclose(fh); + return 0; + } + if (RAND_file_name(rand_file, sizeof(rand_file))) + tls_rand_file = rand_file; + else + return 1; + if (!RAND_load_file(rand_file, 1024)) { + /* no .rnd file found, create new seed */ + unsigned int c; + c = time(NULL); + RAND_seed(&c, sizeof(c)); + c = getpid(); + RAND_seed(&c, sizeof(c)); + RAND_seed(stackdata, sizeof(stackdata)); + } +#if OPENSSL_VERSION_NUMBER >= 0x00905100 + if (!RAND_status()) + return 2; /* PRNG still badly seeded */ +#endif + return 0; +} +#endif + + /* Initialize the socklist */ void init_net() @@ -96,9 +154,35 @@ void init_net() for (i = 0; i < MAXSOCKS; i++) { socklist[i].flags = SOCK_UNUSED; +#ifdef EGG_SSL_EXT + socklist[i].ssl=NULL; +#endif } +#ifdef EGG_SSL_EXT + /* good place to init ssl stuff */ + SSL_load_error_strings(); + OpenSSL_add_ssl_algorithms(); + ssl_ctx=SSL_CTX_new(SSLv23_client_method()); + if (!ssl_ctx) + fatal("SSL_CTX_new() failed",0); + if (seed_PRNG()) + fatal("Wasn't able to properly seed the PRNG!",0); +#endif } +#ifdef EGG_SSL_EXT +/* cleanup mess when quiting */ +int clean_net() { + if (ssl_ctx) { + SSL_CTX_free(ssl_ctx); + ssl_ctx = NULL; + } + if (tls_rand_file) + RAND_write_file(tls_rand_file); + return 0; + } +#endif + int expmem_net() { int i, tot = 0; @@ -231,6 +315,13 @@ int sockoptions(int sock, int operation, for (i = 0; i < MAXSOCKS; i++) if ((socklist[i].sock == sock) && !(socklist[i].flags & SOCK_UNUSED)) { +#ifdef EGG_SSL_EXT + if (socklist[i].ssl) { + SSL_shutdown(socklist[i].ssl); + SSL_free(socklist[i].ssl); + socklist[i].ssl=NULL; + } +#endif if (operation == EGG_OPTION_SET) socklist[i].flags |= sock_options; else if (operation == EGG_OPTION_UNSET) @@ -366,6 +457,64 @@ static int proxy_connect(int sock, char return sock; } +#ifdef EGG_SSL_EXT +int net_switch_to_ssl(int sock) { +int err; +int i=0; + debug0("net_switch_to_ssl()"); + while (i +# include +# include +# define EGG_SSL_INCS 1 +# endif +#endif + +/* This is used by the net module to keep track of sockets and what's + * queued on them + */ +typedef struct { + int sock; +#ifdef EGG_SSL_EXT + SSL *ssl; +#endif + short flags; + char *inbuf; + char *outbuf; + unsigned long outbuflen; /* Outbuf could be binary data */ + unsigned long inbuflen; /* Inbuf could be binary data */ +#ifdef USE_IPV6 + unsigned int af; +#endif /* USE_IPV6 */ +} sock_list; + +#endif /* _EGG_NET_H */ diff -burNp eggdrop1.6.19/src/patch.h eggdrop1.6.19.new/src/patch.h --- eggdrop1.6.19/src/patch.h 2008-04-19 06:21:20.000000000 +0200 +++ eggdrop1.6.19.new/src/patch.h 2008-09-22 16:13:41.491758122 +0200 @@ -36,7 +36,9 @@ * * */ -/* PATCH GOES HERE */ +#ifdef EGG_SSL_EXT +patch("SSL"); +#endif /* * * diff -burNp eggdrop1.6.19/src/tcl.c eggdrop1.6.19.new/src/tcl.c --- eggdrop1.6.19/src/tcl.c 2008-02-16 22:41:04.000000000 +0100 +++ eggdrop1.6.19.new/src/tcl.c 2008-09-22 16:16:08.499821489 +0200 @@ -45,6 +45,10 @@ typedef struct { extern time_t online_since; +#ifdef EGG_SSL_EXT +extern int use_ssl; /* kyotou */ +#endif + extern char origbotname[], botuser[], motdfile[], admin[], userfile[], firewall[], helpdir[], notify_new[], hostname[], myip[], moddir[], tempdir[], owner[], network[], botnetnick[], bannerfile[], @@ -522,6 +526,9 @@ static tcl_ints def_tcl_ints[] = { {"enable-simul", &enable_simul, 0}, /* compat */ {"debug-output", &debug_output, 0}, /* compat */ {"use-console-r", &use_console_r, 0}, /* compat */ +#ifdef EGG_SSL_EXT + {"use-ssl", &use_ssl, 0}, /* kyotou */ +#endif {NULL, NULL, 0} }; diff -burNp eggdrop1.6.19/src/tclmisc.c eggdrop1.6.19.new/src/tclmisc.c --- eggdrop1.6.19/src/tclmisc.c 2008-02-16 22:41:04.000000000 +0100 +++ eggdrop1.6.19.new/src/tclmisc.c 2008-09-22 16:17:34.872716077 +0200 @@ -26,7 +26,12 @@ #include "main.h" #include "modules.h" #include "tandem.h" -#include "md5/md5.h" + +#ifndef EGG_SSL_EXT + #include "md5/md5.h" +#else +#include "openssl/md5.h" +#endif #ifdef TIME_WITH_SYS_TIME # include