2008-05-30 16:47:24 +00:00
|
|
|
#!/bin/sh
|
2006-01-24 21:45:42 +00:00
|
|
|
# vim:textwidth=80:tabstop=4:shiftwidth=4:smartindent:autoindent
|
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
ASTETCDIR=__ASTERISK_ETC_DIR__
|
2011-01-06 01:41:57 +00:00
|
|
|
ASTSBINDIR=__ASTERISK_SBIN_DIR__
|
|
|
|
ASTVARRUNDIR=__ASTERISK_VARRUN_DIR__
|
|
|
|
ASTVARLOGDIR=__ASTERISK_LOG_DIR__
|
|
|
|
|
|
|
|
CLIARGS="$*" # Grab any args passed to safe_asterisk
|
2006-01-24 21:45:42 +00:00
|
|
|
TTY=9 # TTY (if you want one) for Asterisk to run on
|
|
|
|
CONSOLE=yes # Whether or not you want a console
|
2011-01-06 01:41:57 +00:00
|
|
|
#NOTIFY=root@localhost.localdomain # Who to notify about crashes
|
2011-12-20 20:06:17 +00:00
|
|
|
NOTIFY=${NOTIFY:-} # Who to notify about crashes
|
2011-01-06 01:41:57 +00:00
|
|
|
#EXEC=/path/to/somescript # Run this command if Asterisk crashes
|
|
|
|
#LOGFILE=${ASTVARLOGDIR}/safe_asterisk.log # Where to place the normal logfile (disabled if blank)
|
2011-12-20 20:06:17 +00:00
|
|
|
SYSLOG=${SYSLOG:-} # Which syslog facility to use (disabled if blank)
|
2011-01-06 01:41:57 +00:00
|
|
|
MACHINE=`hostname` # To specify which machine has crashed when getting the mail
|
2011-12-20 20:06:17 +00:00
|
|
|
DUMPDROP=${DUMPDROP:-/tmp}
|
|
|
|
RUNDIR=${RUNDIR:-/tmp}
|
2006-01-24 22:06:37 +00:00
|
|
|
SLEEPSECS=4
|
2009-02-21 13:13:35 +00:00
|
|
|
ASTPIDFILE=${ASTVARRUNDIR}/asterisk.pid
|
2006-01-24 21:45:42 +00:00
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
# Obtain parameters from the safe_asterisk.conf file in the
|
|
|
|
# ASTETCDIR directory
|
2006-01-24 21:45:42 +00:00
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
kvalue=`grep ^KILLALLMPG123= $ASTETCDIR 2>/dev/null | cut -c 15`
|
|
|
|
if test "x$kvalue" != "x" ; then
|
|
|
|
KILLALLMPG123=$kvalue
|
|
|
|
else
|
|
|
|
KILLALLMPG123=0
|
|
|
|
fi
|
2006-01-24 21:45:42 +00:00
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
pvalue=`grep ^PRIORITY= $ASTETCDIR 2>/dev/null | cut -c 10`
|
|
|
|
if test "x$pvalue" != "x" ; then
|
|
|
|
PRIORITY=$pvalue
|
|
|
|
else
|
|
|
|
PRIORITY=0
|
|
|
|
fi
|
2006-01-24 21:45:42 +00:00
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
svalue=`grep ^SYSMAXFILES= $ASTETCDIR 2>/dev/null | cut -c 13-21`
|
|
|
|
if test "x$svalue" != "x" ; then
|
|
|
|
SYSMAXFILES=$svalue
|
|
|
|
fi
|
2008-12-16 19:54:11 +00:00
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
mvalue=`grep ^MAXFILES= $ASTETCDIR 2>/dev/null | cut -c 10-15`
|
|
|
|
if test "x$mvalue" != "x" ; then
|
|
|
|
MAXFILES=$mvalue
|
|
|
|
fi
|
2006-01-24 21:45:42 +00:00
|
|
|
|
2008-08-01 12:17:33 +00:00
|
|
|
message() {
|
2007-09-06 16:57:20 +00:00
|
|
|
echo "$1" >&2
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$SYSLOG" != "x" ; then
|
2007-09-06 16:57:20 +00:00
|
|
|
logger -p "${SYSLOG}.warn" -t safe_asterisk[$$] "$1"
|
|
|
|
fi
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$LOGFILE" != "x" ; then
|
2007-09-06 16:57:20 +00:00
|
|
|
echo "safe_asterisk[$$]: $1" >> "$LOGFILE"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2008-05-05 03:25:35 +00:00
|
|
|
# Check if Asterisk is already running. If it is, then bug out, because
|
|
|
|
# starting safe_asterisk when Asterisk is running is very bad.
|
Update init.d scripts to handle stderr; readd splash screen for remote consoles
When r376428 was commited to re-order start up sequences to be more tolerant of
forking with thread primitives, a few items were changed that caused changes
in behavior on some distros. This includes:
* Not displaying the splash screen on a remote console.
* Displaying an error message on stderr when a remote console cannot connect
to a running instance of Asterisk.
In the first case, the splash screen was re-added (thanks to Michael L. Young).
In the second case, the various init.d scripts were modified to pipe stderr
to /dev/null, as the error message is useful - if you execute a remote
console or a remote console command execution and it fail, it should tell
you. Note that the error message was always present, it just failed to be
printed prior to r376428.
Much thanks to the folks who quickly reported this problem, provided solutions,
and promptly tested the various init.d scripts on a variety of distros.
(closes issue ASTERISK-20945)
Reported by: Warren Selby
Tested by: Michael L. Young, Jamuel Starkey, kaldemar, Danny Nicholas, mjordan
patches:
asterisk-20945-remote-intro-msg.diff uploaded by elguero (license 5026)
ASTERISK-20945-1.8-mjordan.diff uploaded by mjordan (license 6283)
........
Merged revisions 379760 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 379777 from http://svn.asterisk.org/svn/asterisk/branches/10
........
Merged revisions 379790 from http://svn.asterisk.org/svn/asterisk/branches/11
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@379791 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2013-01-21 20:41:12 +00:00
|
|
|
VERSION=`${ASTSBINDIR}/asterisk -nrx 'core show version' 2>/dev/null`
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "`echo $VERSION | cut -c 1-8`" = "Asterisk" ; then
|
2008-05-05 03:25:35 +00:00
|
|
|
message "Asterisk is already running. $0 will exit now."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-01-24 21:45:42 +00:00
|
|
|
# since we're going to change priority and open files limits, we need to be
|
|
|
|
# root. if running asterisk as other users, pass that to asterisk on the command
|
|
|
|
# line.
|
|
|
|
# if we're not root, fall back to standard everything.
|
2010-01-12 03:21:40 +00:00
|
|
|
if test `id -u` != 0 ; then
|
2007-09-06 16:57:20 +00:00
|
|
|
echo "Oops. I'm not root. Falling back to standard prio and file max." >&2
|
2006-01-24 21:45:42 +00:00
|
|
|
echo "This is NOT suitable for large systems." >&2
|
|
|
|
PRIORITY=0
|
2007-09-06 16:57:20 +00:00
|
|
|
message "safe_asterisk was started by `id -n` (uid `id -u`)."
|
2006-01-24 21:45:42 +00:00
|
|
|
else
|
2010-01-12 03:21:40 +00:00
|
|
|
if `uname -s | grep Linux >/dev/null 2>&1`; then
|
2006-01-24 21:45:42 +00:00
|
|
|
# maximum number of open files is set to the system maximum divided by two if
|
|
|
|
# MAXFILES is not set.
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$MAXFILES" = "x" ; then
|
2006-01-24 21:45:42 +00:00
|
|
|
# just check if file-max is readable
|
2010-01-12 03:21:40 +00:00
|
|
|
if test -r /proc/sys/fs/file-max ; then
|
2006-01-24 21:45:42 +00:00
|
|
|
MAXFILES=$(( `cat /proc/sys/fs/file-max` / 2 ))
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
SYSCTL_MAXFILES="fs.file-max"
|
2010-01-12 03:21:40 +00:00
|
|
|
elif `uname -s | grep Darwin /dev/null 2>&1`; then
|
2006-01-24 21:45:42 +00:00
|
|
|
SYSCTL_MAXFILES="kern.maxfiles"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$SYSMAXFILES" != "x"; then
|
|
|
|
if test "x$SYSCTL_MAXFILES" != "x"; then
|
2006-01-24 21:45:42 +00:00
|
|
|
sysctl -w $SYSCTL_MAXFILES=$SYSMAXFILES
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# set the process's filemax to whatever set above
|
|
|
|
ulimit -n $MAXFILES
|
|
|
|
|
2010-01-12 03:21:40 +00:00
|
|
|
if test ! -d ${ASTVARRUNDIR} ; then
|
2009-02-21 13:13:35 +00:00
|
|
|
mkdir -p ${ASTVARRUNDIR}
|
|
|
|
chmod 770 ${ASTVARRUNDIR}
|
|
|
|
fi
|
|
|
|
|
2006-01-24 21:45:42 +00:00
|
|
|
fi
|
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
|
|
|
|
uvalue=`grep ^UMASK= $ASTETCDIR 2>/dev/null | cut -c 7-10`
|
|
|
|
if test "x$uvalue" != "x" ; then
|
|
|
|
umask $uvalue
|
2008-12-16 19:54:11 +00:00
|
|
|
fi
|
|
|
|
|
2006-01-24 21:45:42 +00:00
|
|
|
#
|
|
|
|
# Let Asterisk dump core
|
|
|
|
#
|
|
|
|
ulimit -c unlimited
|
|
|
|
|
2002-05-27 23:15:47 +00:00
|
|
|
#
|
|
|
|
# Don't fork when running "safely"
|
|
|
|
#
|
2002-07-30 14:17:55 +00:00
|
|
|
ASTARGS=""
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$TTY" != "x" ; then
|
|
|
|
if test -c /dev/tty${TTY} ; then
|
2003-02-18 18:15:30 +00:00
|
|
|
TTY=tty${TTY}
|
2010-01-12 03:21:40 +00:00
|
|
|
elif test -c /dev/vc/${TTY} ; then
|
2003-02-18 18:15:30 +00:00
|
|
|
TTY=vc/${TTY}
|
|
|
|
else
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Cannot find specified TTY (${TTY})"
|
2003-02-18 18:15:30 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2003-05-07 22:33:55 +00:00
|
|
|
ASTARGS="${ASTARGS} -vvvg"
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$CONSOLE" != "xno" ; then
|
2002-05-27 23:15:47 +00:00
|
|
|
ASTARGS="${ASTARGS} -c"
|
|
|
|
fi
|
|
|
|
fi
|
2011-12-20 20:06:17 +00:00
|
|
|
|
|
|
|
if test ! -d "${RUNDIR}" ; then
|
|
|
|
message "${RUNDIR} does not exist, creating"
|
|
|
|
mkdir -p "${RUNDIR}"
|
|
|
|
if test ! -d "${RUNDIR}" ; then
|
|
|
|
message "Unable to create ${RUNDIR}"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2013-07-21 18:12:00 +00:00
|
|
|
if test ! -w "${DUMPDROP}" ; then
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Cannot write to ${DUMPDROP}"
|
2003-02-18 18:15:30 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2002-05-27 23:15:47 +00:00
|
|
|
|
2007-05-11 16:37:16 +00:00
|
|
|
#
|
|
|
|
# Don't die if stdout/stderr can't be written to
|
|
|
|
#
|
2007-06-18 17:50:01 +00:00
|
|
|
trap '' PIPE
|
2007-05-11 16:37:16 +00:00
|
|
|
|
2006-04-19 21:11:31 +00:00
|
|
|
#
|
|
|
|
# Run scripts to set any environment variables or do any other system-specific setup needed
|
|
|
|
#
|
|
|
|
|
2010-01-12 03:21:40 +00:00
|
|
|
if test -d /etc/asterisk/startup.d ; then
|
2006-04-19 21:11:31 +00:00
|
|
|
for script in /etc/asterisk/startup.d/*.sh; do
|
2010-01-12 03:21:40 +00:00
|
|
|
if test -r ${script} ; then
|
2009-05-26 13:06:50 +00:00
|
|
|
. ${script}
|
2006-04-19 21:11:31 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2002-05-27 23:15:47 +00:00
|
|
|
|
2002-07-30 14:17:55 +00:00
|
|
|
run_asterisk()
|
|
|
|
{
|
2013-07-21 18:12:00 +00:00
|
|
|
while :; do
|
2002-07-30 14:17:55 +00:00
|
|
|
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$TTY" != "x" ; then
|
2011-12-20 20:06:17 +00:00
|
|
|
cd "${RUNDIR}"
|
2003-02-18 18:15:30 +00:00
|
|
|
stty sane < /dev/${TTY}
|
2008-08-01 12:17:33 +00:00
|
|
|
nice -n $PRIORITY ${ASTSBINDIR}/asterisk -f ${CLIARGS} ${ASTARGS} > /dev/${TTY} 2>&1 < /dev/${TTY}
|
2002-07-30 14:17:55 +00:00
|
|
|
else
|
2011-12-20 20:06:17 +00:00
|
|
|
cd "${RUNDIR}"
|
2007-05-11 16:37:16 +00:00
|
|
|
nice -n $PRIORITY ${ASTSBINDIR}/asterisk -f ${CLIARGS} ${ASTARGS}
|
2002-05-27 23:15:47 +00:00
|
|
|
fi
|
2002-07-30 14:17:55 +00:00
|
|
|
EXITSTATUS=$?
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Asterisk ended with exit status $EXITSTATUS"
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$EXITSTATUS" = "x0" ; then
|
2002-07-30 14:17:55 +00:00
|
|
|
# Properly shutdown....
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Asterisk shutdown normally."
|
2002-07-30 14:17:55 +00:00
|
|
|
exit 0
|
2010-01-12 03:21:40 +00:00
|
|
|
elif test "0$EXITSTATUS" -gt "128" ; then
|
|
|
|
EXITSIGNAL=$(($EXITSTATUS - 128))
|
2002-07-30 14:17:55 +00:00
|
|
|
echo "Asterisk exited on signal $EXITSIGNAL."
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$NOTIFY" != "x" ; then
|
2004-12-01 05:10:32 +00:00
|
|
|
echo "Asterisk on $MACHINE exited on signal $EXITSIGNAL. Might want to take a peek." | \
|
2002-07-30 14:17:55 +00:00
|
|
|
mail -s "Asterisk Died" $NOTIFY
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Exited on signal $EXITSIGNAL"
|
2002-07-30 14:17:55 +00:00
|
|
|
fi
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "x$EXEC" != "x" ; then
|
2006-08-14 01:13:32 +00:00
|
|
|
$EXEC
|
|
|
|
fi
|
2007-05-11 16:37:16 +00:00
|
|
|
|
|
|
|
PID=`cat ${ASTPIDFILE}`
|
2010-01-12 03:21:40 +00:00
|
|
|
DATE=`date "+%Y-%m-%dT%H:%M:%S%z"`
|
2011-12-20 20:06:17 +00:00
|
|
|
if test -f ${RUNDIR}/core.${PID} ; then
|
|
|
|
mv ${RUNDIR}/core.${PID} ${DUMPDROP}/core.`hostname`-$DATE &
|
|
|
|
elif test -f ${RUNDIR}/core ; then
|
|
|
|
mv ${RUNDIR}/core ${DUMPDROP}/core.`hostname`-$DATE &
|
2003-02-18 18:15:30 +00:00
|
|
|
fi
|
2002-07-30 14:17:55 +00:00
|
|
|
else
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Asterisk died with code $EXITSTATUS."
|
|
|
|
|
|
|
|
PID=`cat ${ASTPIDFILE}`
|
2010-01-12 03:21:40 +00:00
|
|
|
DATE=`date "+%Y-%m-%dT%H:%M:%S%z"`
|
2011-12-20 20:06:17 +00:00
|
|
|
if test -f ${RUNDIR}/core.${PID} ; then
|
|
|
|
mv ${RUNDIR}/core.${PID} ${DUMPDROP}/core.`hostname`-$DATE &
|
|
|
|
elif test -f ${RUNDIR}/core ; then
|
|
|
|
mv ${RUNDIR}/core ${DUMPDROP}/core.`hostname`-$DATE &
|
2003-02-18 18:15:30 +00:00
|
|
|
fi
|
2002-07-30 14:17:55 +00:00
|
|
|
fi
|
2007-09-06 16:57:20 +00:00
|
|
|
message "Automatically restarting Asterisk."
|
2006-01-24 21:45:42 +00:00
|
|
|
sleep $SLEEPSECS
|
2010-01-12 03:21:40 +00:00
|
|
|
if test "0$KILLALLMPG123" -gt "0" ; then
|
2008-10-07 18:00:48 +00:00
|
|
|
pkill -9 mpg123
|
2006-01-24 21:45:42 +00:00
|
|
|
fi
|
2002-07-30 14:17:55 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
run_asterisk &
|