#!/bin/sh

PID_FILE="/run/unrealircd/ircd.pid"
PID_BACKUP="/run/unrealircd/ircd.pid.bak"
if [ ! -f /usr/bin/unrealircd ]; then
	echo "ERROR: Could not find the IRCd binary (/usr/bin/unrealircd)"
	echo "This could mean two things:"
	echo "1) You forgot to run 'make install' after running 'make'"
	echo "2) You answered a ./Config question incorrectly"
	exit
fi
if [ "$1" = "start" ] ; then
	echo "Starting UnrealIRCd"
	if [ -r $PID_FILE ] ; then
		mv -f $PID_FILE $PID_BACKUP
	fi
	# Check if ~/Unrealxxx/unrealircd.conf exists but the file
	# ~/unrealircd/conf/unrealircd.conf does not.
	# If so, then assume a user-build and give the user a nice hint...
	if [ ! -f /etc/unrealircd/unrealircd.conf -a -f /build/unrealircd/src/unrealircd-4.0.6/unrealircd.conf ]; then
		echo ""
		echo "There is no unrealircd.conf in /etc/unrealircd"
		echo "However I did find an unrealircd.conf in /build/unrealircd/src/unrealircd-4.0.6"
		echo "With UnrealIRCd 4 you should no longer run the IRCd from /build/unrealircd/src/unrealircd-4.0.6."
		echo "You should 'cd /usr' and work from there."
		echo "See https://www.unrealircd.org/docs/UnrealIRCd_files_and_directories"
		exit 1
	fi
	if [ ! -f /etc/unrealircd/unrealircd.conf ]; then
		echo ""
		echo "The configuration file does not exist (/etc/unrealircd/unrealircd.conf)."
		echo "* Create one by following:"
		echo "  https://www.unrealircd.org/docs/Installing_from_source#Creating_a_configuration_file"
		echo "* Or if you are upgrading from version 3.2.x then read:"
		echo "  https://www.unrealircd.org/docs/Upgrading_from_3.2.x and"
		echo "  https://www.unrealircd.org/docs/UnrealIRCd_files_and_directories"
		exit 1
	fi
	/usr/bin/unrealircd
	if [ $? -ne 0 ] ; then
		echo "====================================================="
		echo "UnrealIRCd failed to start. Check above for possible errors."
		echo "If you don't understand the problem, then have a look at our:"
		echo "* FAQ (Frequently Asked Questions): https://www.unrealircd.org/docs/FAQ"
		echo "* Documentation: https://www.unrealircd.org/docs/"
		echo "====================================================="
		if [ -r $PID_BACKUP ] ; then
			mv -f $PID_BACKUP $PID_FILE
		fi
		exit 1
	fi
	# Now check if we need to create a crash report.
	/usr/bin/unrealircd -R
elif [ "$1" = "stop" ] ; then
	echo "Stopping UnrealIRCd"
	if [ ! -r $PID_FILE ] ; then
		echo "ERROR: UnrealIRCd is not running"
		exit 1
	fi
	kill -15 `cat $PID_FILE`
	if [ "$?" != 0 ]; then
		echo "ERROR: UnrealIRCd is not running"
		exit 1
	fi
	sleep 1
	kill -9 `cat $PID_FILE` 1>/dev/null 2>&1
elif [ "$1" = "rehash" ] ; then
	echo "Rehashing UnrealIRCd"
	if [ ! -r $PID_FILE ] ; then
		echo "ERROR: UnrealIRCd is not running"
		exit 1
	fi
	kill -1 `cat $PID_FILE`
	if [ "$?" != 0 ]; then
		echo "ERROR: UnrealIRCd is not running"
		exit 1
	fi
elif [ "$1" = "restart" ] ; then
	echo "Restarting UnrealIRCd"
	if [ ! -r $PID_FILE ] ; then
		echo "WARNING: UnrealIRCd was not running"
	else
		kill -15 `cat $PID_FILE`
		if [ "$?" != 0 ]; then
			echo "WARNING: UnrealIRCd was not running"
		else
			sleep 1
			kill -9 `cat $PID_FILE` 1>/dev/null 2>&1
		fi
	fi
	$0 start
elif [ "$1" = "croncheck" ] ; then
	if [ -r $PID_FILE ] ; then
		kill -CHLD `cat $PID_FILE` 1>/dev/null 2>&1
		if [ "$?" = 0 ]; then
			# IRCd is running, bail out silently.
			exit 0
		fi
	fi
	# PID file not found or found but stale
	echo "UnrealIRCd is not running. Starting now..."
	$0 start
elif [ "$1" = "reloadtls" ] ; then
	echo "Reloading SSL/TLS certificates"
	if [ ! -r $PID_FILE ] ; then
		echo "ERROR: UnrealIRCd is not running"
		exit 1
	fi
	kill -USR1 `cat $PID_FILE`
	if [ "$?" != 0 ]; then
		echo "ERROR: UnrealIRCd is not running"
		exit 1
	fi
elif [ "$1" = "mkpasswd" ] ; then
	/usr/bin/unrealircd -P $2 $3
elif [ "$1" = "version" ] ; then
	/usr/bin/unrealircd -v
elif [ "$1" = "gencloak" ] ; then
	/usr/bin/unrealircd -k
elif [ "$1" = "upgrade-conf" ] ; then
	/usr/bin/unrealircd -U
elif [ "$1" = "backtrace" ] ; then
	cd /tmp

	modpath="/usr/lib/unrealircd"

	# Find the corefile
	echo "Core files available:"
	n="0"
	for i in `echo *core*`
	do
		ls -l $i
		n=`expr $n + 1`
	done

	if [ "$n" -gt 1 ]; then
		echo "Type the name of the core file you want to research:"
		read corefile
	elif [ "$i" = "*core*" -o "$n" -eq 0 ]; then
		echo 'No core files found... Nothing to do'
		echo ''
		echo 'If you are sure UnrealIRCd crashed, then verify that unreal'
		echo 'has permission to dump core (type "ulimit -c unlimited" and see'
		echo 'if you get permission denied errors). Also verify that you did'
		echo 'not run out of quota.'
		echo 'If all that is ok, then it might be that UnrealIRCd did not crash but'
		echo 'got killed by the OS (eg: cpu/mem resource limits), the syadmin,'
		echo 'or an automated process.'
		exit 1
	else
		corefile="$i"
	fi

	if [ ! -f "$corefile" ]; then
		echo "Core file '$corefile' not found"
	fi
	if [ ! -s "$corefile" ]; then
		echo 'Seems the corefile is 0 bytes'
		echo 'This usually means you need to relax the core file resource limit'
		echo '(type "ulimit -c unlimited"), or you might have ran out of quota.'
		exit 1
	fi

	# The tmp/*.so files are often already deleted. Here we have some
	# (ugly) scripting to recreate the tmp/*.so links to the modules *.so files...
	echo 'info sharedlibrary'|gdb /usr/bin/unrealircd $corefile 2>/dev/null|\
	grep No|grep tmp/|awk '{ print $2 }'|\
	awk -F '.' "{ system(\"[ -f $modpath/\" \$2 \"/\" \$3 \".so ] && ln -s $modpath/\" \$2 \"/\" \$3 \".so \" \$0 \" || ln -s $modpath/\" \$2 \".so \" \$0) }"
	
	echo ""
	echo "=================== START HERE ======================"
	echo "BACKTRACE:"

cat >/tmp/gdb.commands << __EOF__
bt
echo \n
frame
echo \n
x/s backupbuf
echo \n
bt 3 full
quit
__EOF__

	gdb -batch -x /tmp/gdb.commands /usr/bin/unrealircd $corefile
	rm -f /tmp/gdb.commands
	echo "GCC: `gcc -v 2>&1|tail -n 1`"
	echo "UNAME: `uname -a`"
	echo "UNREAL: `$0 version`"
	echo "CORE: `ls -al $corefile`"
	echo "===================  STOP HERE ======================"
	echo ""
	echo "Copy the parts between the START HERE and STOP HERE marker"
	echo "and report it on http://bugs.unrealircd.org/"
	echo ""
	echo 'But before you do, note the following:'
	echo '1. We do not support modifications of any unrealircd code'
	echo '   (except for config.h changes).'
	echo '2. If you are using 3rd party modules we might request you'
	echo '   to run without them and verify you still crash. This is'
	echo '   to eleminate any loss of time due to bugs made by others'
	echo '3. Always use the latest UnrealIRCd version, we fix (crash)bugs'
	echo '   all the time so your bug might as well be fixed already.'
	echo ""
	echo "Thanks!"
else
	echo "Usage: unrealircd start|stop|rehash|restart|mkpasswd|version|croncheck|gencloak|reloadtls|upgrade-conf"
fi
