2010-02-12 00:03:44 +00:00
#!/usr/bin/env perl
2012-04-20 18:33:52 +02:00
#
# InspIRCd -- Internet Relay Chat Daemon
2007-07-16 17:30:04 +00:00
#
2012-04-20 18:33:52 +02:00
# Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
# Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org>
# Copyright (C) 2003, 2006-2008 Craig Edwards <craigedwards@brainbox.cc>
# Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
# Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
# Copyright (C) 2007 John Brooks <john.brooks@dereferenced.net>
# Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
# Copyright (C) 2003-2006 Craig McLure <craig@chatspike.net>
2007-07-16 17:30:04 +00:00
#
2012-04-20 18:33:52 +02:00
# This file is part of InspIRCd. InspIRCd is free software: you can
# redistribute it and/or modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation, version 2.
2007-07-16 17:30:04 +00:00
#
2012-04-20 18:33:52 +02:00
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
2007-07-16 17:30:04 +00:00
#
2012-04-20 18:33:52 +02:00
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
2007-07-16 17:30:04 +00:00
2008-01-27 14:49:41 +00:00
BEGIN {
require 5.8.0;
}
2008-01-17 21:36:02 +00:00
use strict;
use warnings FATAL => qw(all);
2008-01-27 14:32:20 +00:00
use File::Copy ();
2013-07-21 01:56:36 +01:00
use File::Spec::Functions qw(rel2abs);
2007-07-16 17:30:04 +00:00
use Cwd;
use Getopt::Long;
use make::configure;
2013-07-21 01:56:36 +01:00
use make::utilities;
2007-10-22 18:13:45 +00:00
2013-08-15 18:55:16 +01:00
our ($opt_use_gnutls, $opt_use_openssl, $opt_nointeractive, $opt_socketengine,
2013-07-21 01:56:36 +01:00
$opt_system, $opt_uid, $opt_base_dir, $opt_config_dir, $opt_module_dir, $opt_binary_dir,
$opt_data_dir, $opt_log_dir);
2007-10-22 18:13:45 +00:00
2008-01-19 17:33:13 +00:00
sub list_extras ();
sub enable_extras (@);
sub disable_extras (@);
my @opt_enableextras;
my @opt_disableextras;
2007-07-16 17:30:04 +00:00
GetOptions (
'enable-gnutls' => \$opt_use_gnutls,
2010-01-17 00:29:28 +00:00
'system' => \$opt_system,
'uid=s' => \$opt_uid,
2007-07-16 17:30:04 +00:00
'enable-openssl' => \$opt_use_openssl,
'disable-interactive' => \$opt_nointeractive,
2013-07-05 08:07:52 +01:00
'socketengine=s' => \$opt_socketengine,
2007-07-16 17:30:04 +00:00
'prefix=s' => \$opt_base_dir,
'config-dir=s' => \$opt_config_dir,
'module-dir=s' => \$opt_module_dir,
'binary-dir=s' => \$opt_binary_dir,
2012-09-23 12:30:30 +02:00
'data-dir=s' => \$opt_data_dir,
'log-dir=s' => \$opt_log_dir,
2013-08-15 05:57:46 +01:00
'help' => \&cmd_help,
'update' => \&cmd_update,
'clean' => \&cmd_clean,
2008-01-19 17:33:13 +00:00
'list-extras' => sub { list_extras; exit 0; }, # This, --enable-extras, and --disable-extras are for non-interactive managing.
'enable-extras=s@' => \@opt_enableextras, # ^
'disable-extras=s@' => \@opt_disableextras, # ^
2007-07-16 17:30:04 +00:00
);
2008-01-19 17:33:13 +00:00
if (scalar(@opt_enableextras) + scalar(@opt_disableextras) > 0) {
@opt_enableextras = split /,/, join(',', @opt_enableextras);
@opt_disableextras = split /,/, join(',', @opt_disableextras);
enable_extras(@opt_enableextras);
disable_extras(@opt_disableextras);
list_extras;
print "Remember: YOU are responsible for making sure any libraries needed have been installed!\n";
exit 0;
}
2010-01-17 00:29:28 +00:00
our $interactive = !(
2007-07-16 17:30:04 +00:00
(defined $opt_base_dir) ||
(defined $opt_config_dir) ||
(defined $opt_module_dir) ||
(defined $opt_base_dir) ||
(defined $opt_binary_dir) ||
2012-09-23 12:30:30 +02:00
(defined $opt_data_dir) ||
(defined $opt_log_dir) ||
2007-07-16 17:30:04 +00:00
(defined $opt_nointeractive) ||
2013-07-05 08:07:52 +01:00
(defined $opt_socketengine) ||
2007-07-16 17:30:04 +00:00
(defined $opt_use_openssl) ||
2010-01-17 00:29:28 +00:00
(defined $opt_system) ||
(defined $opt_uid) ||
2013-08-15 18:55:16 +01:00
(defined $opt_use_gnutls)
2007-07-16 17:30:04 +00:00
);
2013-07-21 01:56:36 +01:00
our $topdir = getcwd();
2013-08-15 05:57:46 +01:00
our %config = read_configure_cache();
print "Checking for cache from previous configure... ";
print %config ? "found\n" : "not found\n";
2007-07-16 17:30:04 +00:00
2013-07-21 01:56:36 +01:00
$config{BASE_DIR} = $topdir."/run";
2007-07-16 17:30:04 +00:00
2010-01-17 00:29:28 +00:00
if (defined $opt_base_dir) {
2007-07-16 17:30:04 +00:00
$config{BASE_DIR} = $opt_base_dir;
2012-11-15 17:54:41 +01:00
} elsif (defined $opt_system) {
2010-01-17 00:29:28 +00:00
$config{BASE_DIR} = '/var/lib/inspircd';
2007-07-16 17:30:04 +00:00
}
2012-11-15 17:54:41 +01:00
if (defined $opt_system) {
2010-01-17 00:29:28 +00:00
$config{UID} = $opt_uid || 'ircd';
2013-07-21 01:56:36 +01:00
$config{CONFIG_DIR} = '/etc/inspircd';
$config{MODULE_DIR} = '/usr/lib/inspircd';
$config{BINARY_DIR} = '/usr/sbin/';
$config{BUILD_DIR} = $topdir."/build";
$config{DATA_DIR} = '/var/inspircd';
$config{LOG_DIR} = '/var/log/inspircd';
2010-01-17 00:29:28 +00:00
} else {
2012-11-15 17:54:41 +01:00
$config{UID} = $opt_uid || $<;
2013-07-21 01:56:36 +01:00
$config{CONFIG_DIR} = rel2abs($config{BASE_DIR}."/conf");
$config{MODULE_DIR} = rel2abs($config{BASE_DIR}."/modules");
$config{BINARY_DIR} = rel2abs($config{BASE_DIR}."/bin");
$config{BUILD_DIR} = rel2abs($topdir."/build");
$config{DATA_DIR} = rel2abs($config{BASE_DIR}."/data");
2013-08-15 05:57:46 +01:00
$config{LOG_DIR} = rel2abs($config{BASE_DIR}."/logs");
2010-01-17 00:29:28 +00:00
}
2007-07-16 17:30:04 +00:00
2010-01-17 00:29:28 +00:00
if (defined $opt_config_dir) {
2007-07-16 17:30:04 +00:00
$config{CONFIG_DIR} = $opt_config_dir;
}
2010-01-17 00:29:28 +00:00
if (defined $opt_module_dir) {
2007-07-16 17:30:04 +00:00
$config{MODULE_DIR} = $opt_module_dir;
}
2010-01-17 00:29:28 +00:00
if (defined $opt_binary_dir) {
2007-07-16 17:30:04 +00:00
$config{BINARY_DIR} = $opt_binary_dir;
}
2012-09-23 12:30:30 +02:00
if (defined $opt_data_dir) {
$config{DATA_DIR} = $opt_data_dir;
}
if (defined $opt_log_dir) {
$config{LOG_DIR} = $opt_log_dir;
}
2013-08-15 18:55:16 +01:00
chomp($config{HAS_GNUTLS} = `pkg-config --modversion gnutls 2>/dev/null`);
chomp($config{HAS_OPENSSL} = `pkg-config --modversion openssl 2>/dev/null`);
2008-04-27 14:50:53 +00:00
2008-01-17 21:36:02 +00:00
chomp(our $gnutls_ver = $config{HAS_GNUTLS});
chomp(our $openssl_ver = $config{HAS_OPENSSL});
2013-08-22 13:41:11 +02:00
$config{USE_GNUTLS} = 0;
2007-07-16 17:30:04 +00:00
if (defined $opt_use_gnutls)
{
$config{USE_GNUTLS} = "y"; # Use gnutls.
}
2013-08-22 13:41:11 +02:00
$config{USE_OPENSSL} = 0; # Use openssl.
2007-07-16 17:30:04 +00:00
if (defined $opt_use_openssl)
{
$config{USE_OPENSSL} = "y";
}
2013-07-21 01:56:36 +01:00
$config{STARTSCRIPT} = $^O eq 'darwin' ? 'org.inspircd.plist' : 'inspircd';
2013-07-04 08:41:33 +01:00
2013-07-04 18:46:46 +01:00
$config{CXX} = defined $ENV{CXX} && !system("$ENV{CXX} -v > /dev/null 2>&1") ? $ENV{CXX} : find_compiler();
if ($config{CXX} eq "") {
2013-07-04 08:41:33 +01:00
print "A C++ compiler could not be detected on your system!\n";
print "Set the CXX environment variable to the full path if this is incorrect.\n";
exit 1;
2007-07-16 17:30:04 +00:00
}
2013-07-04 08:41:33 +01:00
2013-07-04 18:46:46 +01:00
our %cxx = get_compiler_info($config{CXX});
2013-07-04 09:27:12 +01:00
if ($cxx{UNSUPPORTED}) {
print "Your C++ compiler is too old to build InspIRCd!\n";
print "Reason: $cxx{REASON}\n";
exit 1;
}
2007-07-16 17:30:04 +00:00
2013-01-22 10:52:56 +00:00
if ($config{HAS_OPENSSL} =~ /^([-[:digit:].]+)(?:[a-z])?(?:\-[a-z][0-9])?/) {
2008-02-02 18:02:47 +00:00
$config{HAS_OPENSSL} = $1;
} else {
$config{HAS_OPENSSL} = "";
}
2007-07-16 17:30:04 +00:00
2013-08-04 16:03:17 +01:00
$config{HAS_CLOCK_GETTIME} = run_test 'clock_gettime()', test_file($config{CXX}, 'clock_gettime.cpp', '-lrt');
$config{HAS_EVENTFD} = run_test 'eventfd()', test_file($config{CXX}, 'eventfd.cpp');
2009-03-23 18:49:06 +00:00
2013-08-04 16:03:17 +01:00
if ($config{HAS_EPOLL} = run_test 'epoll', test_header($config{CXX}, 'sys/epoll.h')) {
$config{SOCKETENGINE} ||= 'epoll';
2007-07-16 17:30:04 +00:00
}
2013-05-04 16:40:27 +01:00
2013-08-04 16:03:17 +01:00
if ($config{HAS_KQUEUE} = run_test 'kqueue', test_file($config{CXX}, 'kqueue.cpp')) {
$config{SOCKETENGINE} ||= 'kqueue';
}
2013-05-04 16:40:27 +01:00
2013-08-04 16:03:17 +01:00
if ($config{HAS_PORTS} = run_test 'Solaris IOCP', test_header($config{CXX}, 'port.h')) {
$config{SOCKETENGINE} ||= 'ports';
}
2013-07-05 08:07:52 +01:00
2013-08-04 16:03:17 +01:00
if ($config{HAS_POLL} = run_test 'poll', test_header($config{CXX}, 'poll.h')) {
$config{SOCKETENGINE} ||= 'poll';
}
2013-07-05 08:07:52 +01:00
# Select is available on all platforms
$config{HAS_SELECT} = 1;
$config{SOCKETENGINE} ||= "select";
if (defined $opt_socketengine) {
my $cfgkey = "HAS_" . uc $opt_socketengine;
if ($config{$cfgkey} && -f "src/socketengines/socketengine_$opt_socketengine.cpp") {
$config{SOCKETENGINE} = $opt_socketengine;
} else {
print "Unable to use a socket engine which is not supported on this platform ($opt_socketengine)!\n";
print "Available socket engines are:";
foreach (<src/socketengines/socketengine_*.cpp>) {
s/src\/socketengines\/socketengine_(\w+)\.cpp/$1/;
print " $1" if $config{"HAS_" . uc $1};
}
print "\n";
exit 1;
}
}
2007-07-16 17:30:04 +00:00
2013-07-21 01:56:36 +01:00
print "Checking for libgnutls... ";
2008-02-02 18:02:47 +00:00
if (defined($config{HAS_GNUTLS}) && (($config{HAS_GNUTLS}) || ($config{HAS_GNUTLS} eq "y"))) {
2008-08-21 20:08:42 +00:00
if (defined($gnutls_ver) && ($gnutls_ver ne "")) {
print "yes\n";
$config{HAS_GNUTLS} = "y";
} else {
print "no\n";
$config{HAS_GNUTLS} = "n";
}
2007-07-16 17:30:04 +00:00
} else {
print "no\n";
$config{HAS_GNUTLS} = "n";
}
2013-07-21 01:56:36 +01:00
print "Checking for openssl... ";
2008-02-02 18:02:47 +00:00
if (defined($config{HAS_OPENSSL}) && (($config{HAS_OPENSSL}) || ($config{HAS_OPENSSL} eq "y"))) {
2008-08-21 20:08:42 +00:00
if (defined($openssl_ver) && ($openssl_ver ne "")) {
print "yes\n";
$config{HAS_OPENSSL} = "y";
} else {
print "no\n";
$config{HAS_OPENSSL} = "n";
}
2007-07-16 17:30:04 +00:00
} else {
print "no\n";
$config{HAS_OPENSSL} = "n";
}
if ($interactive)
{
2013-07-21 01:56:36 +01:00
# Clear the screen.
system 'tput', 'clear';
2013-08-15 05:57:46 +01:00
my $revision = get_revision();
2013-07-21 01:56:36 +01:00
chomp(my $version = `sh src/version.sh`);
2007-07-16 17:30:04 +00:00
# Display Introduction Message..
2008-01-27 14:32:20 +00:00
print <<"STOP" ;
Welcome to the \e[1mInspIRCd\e[0m Configuration program! (\e[1minteractive mode\e[0m)
\e[1mPackage maintainers: Type ./configure --help for non-interactive help\e[0m
2007-07-16 17:30:04 +00:00
*** If you are unsure of any of these values, leave it blank for ***
*** standard settings that will work, and your server will run ***
*** using them. Please consult your IRC network admin if in doubt. ***
2008-01-27 14:32:20 +00:00
Press \e[1m<RETURN>\e[0m to accept the default for any option, or enter
a new value. Please note: You will \e[1mHAVE\e[0m to read the docs
2007-07-16 17:30:04 +00:00
dir, otherwise you won't have a config file!
2013-07-21 01:56:36 +01:00
Your operating system is: \e[1;32m$^O\e[0m
2008-01-27 14:32:20 +00:00
STOP
2013-07-21 01:56:36 +01:00
print "Your InspIRCd version is: \e[1;32m";
print $revision eq 'release' ? substr($version, 9) : substr($revision, 1);
print "\e[0m\n\n";
print "The following compiler has been detected: \e[1;32m$cxx{NAME} $cxx{VERSION}\e[0m ($config{CXX})\n\n";
2007-07-16 17:30:04 +00:00
# Directory Settings..
my $tmpbase = $config{BASE_DIR};
2013-08-15 05:57:46 +01:00
$config{BASE_DIR} = prompt_dir(1, 'What directory do you wish to install the InspIRCd base?', $config{BASE_DIR});
2007-07-16 17:30:04 +00:00
if ($tmpbase ne $config{BASE_DIR}) {
2013-07-21 01:56:36 +01:00
$config{CONFIG_DIR} = rel2abs($config{BASE_DIR}."/conf");
$config{MODULE_DIR} = rel2abs($config{BASE_DIR}."/modules");
$config{DATA_DIR} = rel2abs($config{BASE_DIR}."/data");
$config{LOG_DIR} = rel2abs($config{BASE_DIR}."/logs");
$config{BINARY_DIR} = rel2abs($config{BASE_DIR}."/bin");
2007-07-16 17:30:04 +00:00
}
2013-08-15 05:57:46 +01:00
$config{BINARY_DIR} = prompt_dir(1, 'In what directory should the InspIRCd binary be placed?', $config{BINARY_DIR});
$config{CONFIG_DIR} = prompt_dir(1, 'In what directory are the configuration files to be stored?', $config{CONFIG_DIR});
$config{DATA_DIR} = prompt_dir(1, 'In what directory are variable data files to be stored?', $config{DATA_DIR});
$config{LOG_DIR} = prompt_dir(1, 'In what directory are log files to be stored?', $config{LOG_DIR});
$config{MODULE_DIR} = prompt_dir(1, 'In what directory are the modules to be placed?', $config{MODULE_DIR});
$config{BUILD_DIR} = prompt_dir(1, 'In what directory do you want the build to take place?', $config{BUILD_DIR});
2008-08-25 01:00:17 +00:00
my $chose_hiperf = 0;
2013-07-05 08:07:52 +01:00
if ($config{HAS_KQUEUE}) {
2013-08-15 05:57:46 +01:00
$config{USE_KQUEUE} = prompt_bool(1, 'Your operating system has support for the high performance kqueue socket engine. Would you like to enable it?', 1);
if ($config{USE_KQUEUE}) {
2013-07-05 08:07:52 +01:00
$config{SOCKETENGINE} = "kqueue";
2008-08-25 01:00:17 +00:00
$chose_hiperf = 1;
}
2007-07-16 17:30:04 +00:00
}
2013-07-05 08:07:52 +01:00
if ($config{HAS_EPOLL}) {
2013-08-15 05:57:46 +01:00
$config{USE_EPOLL} = prompt_bool(1, 'Your operating system has support for the high performance epoll socket engine. Would you like to enable it?', 1);
if ($config{USE_EPOLL}) {
2013-07-05 08:07:52 +01:00
$config{SOCKETENGINE} = "epoll";
2008-08-25 01:00:17 +00:00
$chose_hiperf = 1;
}
2007-07-16 17:30:04 +00:00
}
2013-07-05 08:07:52 +01:00
if ($config{HAS_PORTS}) {
2013-08-15 05:57:46 +01:00
$config{USE_PORTS} = prompt_bool(1, 'Your operating system has support for the high performance IOCP socket engine. Would you like to enable it?', 1);
if ($config{USE_PORTS}) {
2013-07-05 08:07:52 +01:00
$config{SOCKETENGINE} = "ports";
2008-08-25 01:00:17 +00:00
$chose_hiperf = 1;
}
2007-07-16 17:30:04 +00:00
}
2008-08-25 01:00:17 +00:00
2013-07-05 08:07:52 +01:00
if (!$chose_hiperf && $config{HAS_POLL}) {
2013-08-15 05:57:46 +01:00
$config{USE_POLL} = prompt_bool(1, 'Your operating system has support for the mid performance poll socket engine. Would you like to enable it?', 1);
if ($config{USE_POLL}) {
2013-07-05 08:07:52 +01:00
$config{SOCKETENGINE} = "poll";
2008-08-25 01:00:17 +00:00
}
2007-07-16 17:30:04 +00:00
}
2013-08-15 05:57:46 +01:00
unless ($chose_hiperf || $config{USE_POLL})
2013-07-05 08:07:52 +01:00
{
2013-08-15 05:57:46 +01:00
print "No high-performance socket engines are available, or you chose not to enable one. Defaulting to select() engine.\n\n";
2013-07-05 08:07:52 +01:00
$config{SOCKETENGINE} = "select";
}
2007-07-16 17:30:04 +00:00
2008-09-01 20:51:46 +00:00
if ($config{HAS_GNUTLS} eq "y" || $config{HAS_OPENSSL} eq "y")
{
2008-01-27 14:32:20 +00:00
print "Detected GnuTLS version: \e[1;32m" . $gnutls_ver . "\e[0m\n";
print "Detected OpenSSL version: \e[1;32m" . $openssl_ver . "\e[0m\n\n";
2007-07-16 17:30:04 +00:00
2013-08-15 05:57:46 +01:00
$config{USE_SSL} = prompt_bool(1, 'One or more SSL libraries detected. Would you like to enable SSL support?', 1);
if ($config{USE_SSL})
2008-09-01 20:51:46 +00:00
{
if ($config{HAS_GNUTLS} eq "y")
{
2013-08-15 05:57:46 +01:00
$config{USE_GNUTLS} = prompt_bool(1, 'Would you like to enable SSL with m_ssl_gnutls (recommended)?', 1);
if ($config{USE_GNUTLS})
2008-09-01 20:51:46 +00:00
{
2013-08-15 05:57:46 +01:00
print "Using GnuTLS SSL module.\n\n";
unlink 'src/modules/m_ssl_gnutls.cpp' if -f 'src/modules/m_ssl_gnutls.cpp';
symlink "extra/m_ssl_gnutls.cpp", "src/modules/m_ssl_gnutls.cpp" or print STDERR "Symlink failed: $!\n";
2008-09-01 20:51:46 +00:00
}
}
if ($config{HAS_OPENSSL} eq "y")
{
2013-08-15 05:57:46 +01:00
$config{USE_OPENSSL} = prompt_bool(1, 'Would you like to enable SSL with m_ssl_openssl (recommended)?', 1);
if ($config{USE_OPENSSL})
2008-09-01 20:51:46 +00:00
{
2013-08-15 05:57:46 +01:00
print "Using OpenSSL SSL module.\n\n";
unlink 'src/modules/m_ssl_openssl.cpp' if -f 'src/modules/m_ssl_openssl.cpp';
symlink "extra/m_ssl_openssl.cpp", "src/modules/m_ssl_openssl.cpp" or print STDERR "Symlink failed: $!\n";
2008-09-01 20:51:46 +00:00
}
}
2007-07-16 17:30:04 +00:00
}
}
2008-09-01 20:51:46 +00:00
else
{
2012-07-05 05:28:03 +01:00
print "\nCould not detect OpenSSL or GnuTLS. Make sure pkg-config is installed and\n";
print "is in your path.\n\n";
2007-07-16 17:30:04 +00:00
}
}
2010-03-07 15:56:16 +00:00
# We are on a POSIX system, we can enable POSIX extras without asking
symlink "extra/m_regex_posix.cpp", "src/modules/m_regex_posix.cpp";
2013-08-15 05:57:46 +01:00
if (($config{USE_GNUTLS}) && ($config{HAS_GNUTLS} ne "y"))
2007-07-16 17:30:04 +00:00
{
2013-08-15 18:55:16 +01:00
print "Sorry, but i couldn't detect gnutls. Make sure pkg-config is in your path.\n";
2013-07-21 01:56:36 +01:00
exit 1;
2007-07-16 17:30:04 +00:00
}
2013-08-15 05:57:46 +01:00
if (($config{USE_OPENSSL}) && ($config{HAS_OPENSSL} ne "y"))
2007-07-16 17:30:04 +00:00
{
2013-08-15 18:55:16 +01:00
print "Sorry, but i couldn't detect openssl. Make sure pkg-config is in your path.\n";
2013-07-21 01:56:36 +01:00
exit 1;
2007-07-16 17:30:04 +00:00
}
2013-08-15 05:57:46 +01:00
if ($config{USE_GNUTLS} || $config{USE_OPENSSL}) {
if (my $val = prompt_bool($interactive, 'Would you like to generate SSL certificates now?', $interactive)) {
2013-07-21 01:56:36 +01:00
unless (-r "$config{CONFIG_DIR}/key.pem" && -r "$config{CONFIG_DIR}/cert.pem" && -r "$config{CONFIG_DIR}/dhparams.pem") {
2013-08-15 05:57:46 +01:00
unless (system './tools/genssl auto') {
2013-07-21 01:56:36 +01:00
print "\nCertificate generation complete, copying to config directory... ";
File::Copy::move("key.pem", "$config{CONFIG_DIR}/key.pem") or print STDERR "Could not copy key.pem!\n";
File::Copy::move("cert.pem", "$config{CONFIG_DIR}/cert.pem") or print STDERR "Could not copy cert.pem!\n";
File::Copy::move("dhparams.pem", "$config{CONFIG_DIR}/dhparams.pem") or print STDERR "Could not copy dhparams.pem!\n";
print "Done.\n\n";
}
2007-07-16 17:30:04 +00:00
} else {
print "SSL Certificates found, skipping.\n\n"
}
2013-08-15 05:57:46 +01:00
} else {
print "Skipping SSL certificate generation in non-interactive mode.\n\n";
2007-07-16 17:30:04 +00:00
}
2013-08-15 05:57:46 +01:00
} else {
2007-07-16 17:30:04 +00:00
print "Skipping SSL Certificate generation, SSL support is not available.\n\n";
}
2013-08-15 05:57:46 +01:00
print "Writing \e[1;32m.config.cache\e[0m ...\n";
write_configure_cache(%config);
2013-07-21 01:56:36 +01:00
writefiles();
2013-08-15 05:57:46 +01:00
dump_hash();
2007-07-16 17:30:04 +00:00
2013-07-05 08:07:52 +01:00
print "\n";
2009-09-01 15:05:57 +00:00
print "To build your server with these settings, please run '\e[1;32mmake\e[0m' now.\n";
2013-08-15 05:57:46 +01:00
if ($config{USE_GNUTLS} || $config{USE_OPENSSL}) {
2008-02-21 20:34:25 +00:00
print "Please note: for \e[1;32mSSL support\e[0m you will need to load required\n";
print "modules in your config. This configure script has added those modules to the\n";
print "build process. For more info please refer to:\n";
2009-03-15 12:42:35 +00:00
print "\e[1;32mhttp://wiki.inspircd.org/Installation_From_Tarball\e[0m\n";
2007-07-16 17:30:04 +00:00
}
2013-07-05 08:07:52 +01:00
print "*** \e[1;32mRemember to edit your configuration files!!!\e[0m ***\n\n";
2007-07-16 17:30:04 +00:00
sub writefiles {
chomp(my $incos = `uname -n -s -r`);
2008-01-17 21:36:02 +00:00
chomp(my $version = `sh src/version.sh`);
2013-08-15 05:57:46 +01:00
my $revision = get_revision();
2012-07-11 20:38:17 +01:00
my $branch = "InspIRCd-0.0";
if ($version =~ /^(InspIRCd-[0-9]+\.[0-9]+)\.[0-9]+/)
{
$branch = $1;
}
2013-07-21 01:56:36 +01:00
print "Writing \e[1;32mconfig.h\e[0m\n";
open(FILEHANDLE, ">include/config.h.tmp");
print FILEHANDLE <<EOF;
2007-07-16 17:30:04 +00:00
/* Auto generated by configure, do not modify! */
2013-04-02 20:12:15 +01:00
#pragma once
2007-07-16 17:30:04 +00:00
2013-04-05 16:39:40 +01:00
#define BRANCH "$branch"
#define VERSION "$version"
2013-07-21 01:56:36 +01:00
#define REVISION "$revision"
2013-04-05 16:39:40 +01:00
#define SYSTEM "$incos"
2007-07-16 17:30:04 +00:00
2012-07-21 13:28:05 +02:00
#define CONFIG_PATH "$config{CONFIG_DIR}"
2012-09-23 12:30:30 +02:00
#define DATA_PATH "$config{DATA_DIR}"
#define LOG_PATH "$config{LOG_DIR}"
2007-07-16 17:30:04 +00:00
#define MOD_PATH "$config{MODULE_DIR}"
2008-02-21 17:06:20 +00:00
2007-07-16 17:30:04 +00:00
EOF
2013-08-04 16:03:17 +01:00
if ($config{HAS_EVENTFD}) {
2013-07-21 01:56:36 +01:00
print FILEHANDLE "#define HAS_EVENTFD\n";
}
2013-08-04 16:03:17 +01:00
if ($config{HAS_CLOCK_GETTIME}) {
2013-07-21 01:56:36 +01:00
print FILEHANDLE "#define HAS_CLOCK_GETTIME\n";
2009-09-01 15:05:18 +00:00
}
2008-02-26 19:18:26 +00:00
2013-07-21 01:56:36 +01:00
print FILEHANDLE "\n#include \"threadengines/threadengine_pthread.h\"\n";
close(FILEHANDLE);
unlink 'include/config.h';
rename 'include/config.h.tmp', 'include/config.h';
2008-02-26 19:18:26 +00:00
# Do this once here, and cache it in the .*.inc files,
# rather than attempting to read src/version.sh from
# compiled code -- we might not have the source to hand.
2009-10-20 01:17:04 +00:00
my @dotfiles = qw(main.mk inspircd);
2013-07-21 01:56:36 +01:00
push @dotfiles, 'org.inspircd.plist' if $^O eq 'darwin';
2007-10-23 16:42:03 +00:00
2009-10-20 01:17:04 +00:00
foreach my $file (@dotfiles) {
open(FILEHANDLE, "make/template/$file") or die "Can't open make/template/$file: $!";
$_ = join '', <FILEHANDLE>;
close(FILEHANDLE);
2008-02-26 19:18:26 +00:00
2013-07-21 01:56:36 +01:00
$config{BUILD_DIR} ||= rel2abs($topdir."/build");
2013-07-04 19:42:15 +01:00
$config{COMPILER} = lc $cxx{NAME};
2013-07-21 01:56:36 +01:00
$config{SYSTEM} = lc $^O;
2008-02-26 19:18:26 +00:00
2009-10-20 01:17:04 +00:00
for my $var (qw(
2013-07-04 19:42:15 +01:00
CXX COMPILER SYSTEM BASE_DIR CONFIG_DIR MODULE_DIR BINARY_DIR BUILD_DIR DATA_DIR UID
2013-07-21 01:56:36 +01:00
STARTSCRIPT SOCKETENGINE
2009-10-20 01:17:04 +00:00
)) {
s/\@$var\@/$config{$var}/g;
}
2013-07-21 01:56:36 +01:00
2009-10-20 01:17:04 +00:00
s/\@VERSION\@/$version/ if defined $version;
if ($file eq 'main.mk') {
print "Writing \e[1;32mGNUmakefile\e[0m ...\n";
my $mk_tmp = $_;
s/\@IFDEF (\S+)/ifdef $1/g;
s/\@IFNDEF (\S+)/ifndef $1/g;
s/\@IFEQ (\S+) (\S+)/ifeq ($1,$2)/g;
2013-06-14 04:06:35 +01:00
s/\@IFNEQ (\S+) (\S+)/ifneq ($1,$2)/g;
2009-10-20 01:17:04 +00:00
s/\@ELSIFEQ (\S+) (\S+)/else ifeq ($1,$2)/g;
s/\@ELSE/else/g;
s/\@ENDIF/endif/g;
s/ *\@BSD_ONLY .*\n//g;
s/\@GNU_ONLY //g;
s/\@DO_EXPORT (.*)/export $1/g;
open MKF, '>GNUmakefile' or die "Can't write to GNUmakefile: $!";
print MKF $_;
close MKF;
print "Writing \e[1;32mBSDmakefile\e[0m ...\n";
$_ = $mk_tmp;
s/\@IFDEF (\S+)/.if defined($1)/g;
s/\@IFNDEF (\S+)/.if !defined($1)/g;
s/\@IFEQ (\S+) (\S+)/.if $1 == $2/g;
2013-06-14 04:06:35 +01:00
s/\@IFNEQ (\S+) (\S+)/.if $1 != $2/g;
2009-10-20 01:17:04 +00:00
s/\@ELSIFEQ (\S+) (\S+)/.elif $1 == $2/g;
s/\@ELSE/.else/g;
s/\@ENDIF/.endif/g;
s/\@BSD_ONLY //g;
s/ *\@GNU_ONLY .*\n//g;
$mk_tmp = $_;
$mk_tmp =~ s#\@DO_EXPORT (.*)#"MAKEENV += ".join ' ', map "$_='\${$_}'", split /\s/, $1#eg;
open MKF, '>BSDmakefile' or die "Can't write to BSDmakefile: $!";
print MKF $mk_tmp;
close MKF;
} else {
2008-02-26 19:18:26 +00:00
print "Writing \e[1;32m$file\e[0m ...\n";
2009-10-20 01:17:04 +00:00
open(FILEHANDLE, ">$file") or die("Can't write to $file: $!\n");
print FILEHANDLE $_;
close(FILEHANDLE);
2008-02-26 19:18:26 +00:00
}
}
2013-08-15 05:57:46 +01:00
chmod 0750, 'inspircd';
2007-07-16 17:30:04 +00:00
}
2008-01-19 17:33:13 +00:00
# Routine to list out the extra/ modules that have been enabled.
# Note: when getting any filenames out and comparing, it's important to lc it if the
# file system is not case-sensitive (== Epoc, MacOS, OS/2 (incl DOS/DJGPP), VMS, Win32
# (incl NetWare, Symbian)). Cygwin may or may not be case-sensitive, depending on
# configuration, however, File::Spec does not currently tell us (it assumes Unix behavior).
sub list_extras () {
use File::Spec;
# @_ not used
my $srcdir = File::Spec->catdir("src", "modules");
my $abs_srcdir = File::Spec->rel2abs($srcdir);
local $_;
my $dd;
opendir $dd, File::Spec->catdir($abs_srcdir, "extra") or die (File::Spec->catdir($abs_srcdir, "extra") . ": $!\n");
my @extras = map { File::Spec->case_tolerant() ? lc($_) : $_ } (readdir($dd));
closedir $dd;
undef $dd;
opendir $dd, $abs_srcdir or die "$abs_srcdir: $!\n";
my @sources = map { File::Spec->case_tolerant() ? lc($_) : $_ } (readdir($dd));
closedir $dd;
undef $dd;
my $maxlen = (sort { $b <=> $a } (map {length($_)} (@extras)))[0];
my %extras = ();
EXTRA: for my $extra (@extras) {
next if (File::Spec->curdir() eq $extra || File::Spec->updir() eq $extra);
my $abs_extra = File::Spec->catfile($abs_srcdir, "extra", $extra);
my $abs_source = File::Spec->catfile($abs_srcdir, $extra);
next unless ($extra =~ m/\.(cpp|h)$/ || (-d $abs_extra)); # C++ Source/Header, or directory
if (-l $abs_source) {
# Symlink, is it in the right place?
my $targ = readlink($abs_source);
my $abs_targ = File::Spec->rel2abs($targ, $abs_srcdir);
if ($abs_targ eq $abs_extra) {
$extras{$extra} = "\e[32;1menabled\e[0m";
} else {
$extras{$extra} = sprintf("\e[31;1mwrong symlink target (%s)\e[0m", $abs_targ);
}
} elsif (-e $abs_source) {
my ($devext, $inoext) = stat($abs_extra);
my ($devsrc, $inosrc, undef, $lnksrc) = stat($abs_source);
if ($lnksrc > 1) {
if ($devsrc == $devext && $inosrc == $inoext) {
$extras{$extra} = "\e[32;1menabled\e[0m";
} else {
$extras{$extra} = sprintf("\e[31;1mwrong hardlink target (%d:%d)\e[0m", $devsrc, $inosrc);
}
} else {
open my $extfd, "<", $abs_extra;
open my $srcfd, "<", $abs_source;
local $/ = undef;
if (scalar(<$extfd>) eq scalar(<$srcfd>)) {
$extras{$extra} = "\e[32;1menabled\e[0m";
} else {
$extras{$extra} = sprintf("\e[31;1mout of synch (re-copy)\e[0m");
}
}
} else {
$extras{$extra} = "\e[33;1mdisabled\e[0m";
}
}
# Now let's add dependency info
for my $extra (keys(%extras)) {
next unless $extras{$extra} =~ m/enabled/; # only process enabled extras.
my $abs_extra = File::Spec->catfile($abs_srcdir, "extra", $extra);
2013-08-15 18:55:16 +01:00
my @deps = split /\s+/, get_property($abs_extra, 'ModDep');
2008-01-19 17:33:13 +00:00
for my $dep (@deps) {
if (exists($extras{$dep})) {
my $ref = \$extras{$dep}; # Take reference.
if ($$ref !~ m/needed by/) {
# First dependency found.
if ($$ref =~ m/enabled/) {
$$ref .= " (needed by \e[32;1m$extra\e[0m";
} else {
$$ref =~ s/\e\[.*?m//g; # Strip out previous coloring. Will be set in bold+red+blink later.
$$ref .= " (needed by \e[0;32;1;5m$extra\e[0;31;1;5m";
}
} else {
if ($$ref =~ m/enabled/) {
$$ref .= ", \e[32;1m$extra\e[0m";
} else {
$$ref .= ", \e[0;32;1;5m$extra\e[0;31;1;5m";
}
}
}
}
}
for my $extra (sort {$a cmp $b} keys(%extras)) {
my $text = $extras{$extra};
if ($text =~ m/needed by/ && $text !~ m/enabled/) {
printf "\e[31;1;5m%-*s = %s%s\e[0m\n", $maxlen, $extra, $text, ($text =~ m/needed by/ ? ")" : "");
} else {
printf "%-*s = %s%s\n", $maxlen, $extra, $text, ($text =~ m/needed by/ ? "\e[0m)" : "");
}
}
return keys(%extras) if wantarray; # Can be used by manage_extras.
}
sub enable_extras (@) {
my (@extras) = @_;
for my $extra (@extras) {
my $extrapath = "src/modules/extra/$extra";
if (!-e $extrapath) {
print STDERR "Cannot enable \e[32;1m$extra\e[0m : No such file or directory in src/modules/extra\n";
2008-01-27 14:32:20 +00:00
next;
2008-01-19 17:33:13 +00:00
}
my $source = "src/modules/$extra";
if (-e $source) {
print STDERR "Cannot enable \e[32;1m$extra\e[0m : destination in src/modules exists (might already be enabled?)\n";
next;
}
# Get dependencies, and add them to be processed.
2013-08-15 18:55:16 +01:00
my @deps = split /\s+/, get_property($extrapath, 'ModDep');
2008-01-19 17:33:13 +00:00
for my $dep (@deps) {
next if scalar(grep { $_ eq $dep } (@extras)) > 0; # Skip if we're going to be enabling it anyway.
2013-07-03 04:58:56 +01:00
if (!-e "src/modules/$dep" && !-e "include/$dep") {
2008-01-19 17:33:13 +00:00
if (-e "src/modules/extra/$dep") {
print STDERR "Will also enable extra \e[32;1m$dep\e[0m (needed by \e[32;1m$extra\e[0m)\n";
push @extras, $dep;
} else {
print STDERR "\e[33;1mWARNING:\e[0m module \e[32;1m$extra\e[0m might be missing dependency \e[32;1m$dep\e[0m - YOU are responsible for satisfying it!\n";
}
}
}
print "Enabling $extra ... \n";
symlink "extra/$extra", $source or print STDERR "$source: Cannot link to 'extra/$extra': $!\n";
}
}
sub disable_extras (@)
{
opendir my $dd, "src/modules/extra/";
my @files = readdir($dd);
closedir $dd;
my (@extras) = @_;
EXTRA: for my $extra (@extras) {
my $extrapath = "src/modules/extra/$extra";
my $source = "src/modules/$extra";
if (!-e $extrapath) {
print STDERR "Cannot disable \e[32;1m$extra\e[0m : Is not an extra\n";
next;
}
if ((! -l $source) || readlink($source) ne "extra/$extra") {
print STDERR "Cannot disable \e[32;1m$extra\e[0m : Source is not a link or doesn't refer to the right file. Remove manually if this is in error.\n";
next;
}
# Check if anything needs this.
for my $file (@files) {
2013-08-15 18:55:16 +01:00
my @deps = split /\s+/, get_property("src/modules/extra/$file", 'ModDep');
2008-01-19 17:33:13 +00:00
# File depends on this extra...
if (scalar(grep { $_ eq $extra } @deps) > 0) {
# And is both enabled and not about to be disabled.
if (-e "src/modules/$file" && scalar(grep { $_ eq $file } @extras) < 1) {
print STDERR "Cannot disable \e[32;1m$extra\e[0m : is needed by \e[32;1m$file\e[0m\n";
next EXTRA;
}
}
}
# Now remove.
print "Disabling $extra ... \n";
unlink "src/modules/$extra" or print STDERR "Cannot disable \e[32;1m$extra\e[0m : $!\n";
}
}