diff options
author | Marco Bonetti <sid77@slackware.it> | 2011-07-12 05:16:43 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-07-14 21:54:05 -0300 |
commit | dbe994aba120a176479cc90a362c8253c602b422 (patch) | |
tree | 5cf2b0b04d31853cde2c8c3151c645248473e985 /network/tor/rc.tor | |
parent | 4973e0648d438e98c648f870fe6cf35faa48afa9 (diff) | |
download | slackbuilds-dbe994aba120a176479cc90a362c8253c602b422.tar.gz |
network/tor: Updated rc.tor to remove hardcoded values, other fixes.
See README.SLACKWARE for more info.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/tor/rc.tor')
-rw-r--r-- | network/tor/rc.tor | 137 |
1 files changed, 109 insertions, 28 deletions
diff --git a/network/tor/rc.tor b/network/tor/rc.tor index cdeb865af3..b54dbdf118 100644 --- a/network/tor/rc.tor +++ b/network/tor/rc.tor @@ -1,42 +1,123 @@ #!/bin/sh # -# tor The Onion Router +# tor - The Onion Router # -# Startup/shutdown script for tor. This is a wrapper around torctl; -# torctl does the actual work in a relatively system-independent, or at least -# distribution-independent, way, and this script deals with fitting the -# whole thing into the conventions of the particular system at hand. +# Startup/shutdown script for Tor. +# +# Written by Marco Bonetti <sid77@slackware.it>, heavily based on +# contrib/tor.sh, contrib/torctl and Debian init script. -# This script is a modified contrb/tor.sh, for use on Slackware. +# Check available file descriptors +if [ -r /proc/sys/fs/file-max ]; then + SYSTEM_MAX=`cat /proc/sys/fs/file-max` + if [ "$SYSTEM_MAX" -gt "80000" ]; then + MAX_FILEDESCRIPTORS=32768 + elif [ "$SYSTEM_MAX" -gt "40000" ]; then + MAX_FILEDESCRIPTORS=16384 + elif [ "$SYSTEM_MAX" -gt "10000" ]; then + MAX_FILEDESCRIPTORS=8192 + else + MAX_FILEDESCRIPTORS=1024 + cat << EOF -TORCTL=/usr/bin/torctl +Warning: Your system has very few filedescriptors available in total. -# torctl will use these environment variables -TORUSER=tor -export TORUSER +Maybe you should try raising that by adding 'fs.file-max=100000' to your +/etc/sysctl.conf file. Feel free to pick any number that you deem appropriate. +Then run 'sysctl -p'. See /proc/sys/fs/file-max for the current value, and +file-nr in the same directory for how many of those are used at the moment. -case "$1" in +EOF + fi +else + MAX_FILEDESCRIPTORS=8192 +fi + +tor_start() { + if [ -n "$MAX_FILEDESCRIPTORS" ]; then + echo -n "Raising maximum number of filedescriptors (ulimit -n) to $MAX_FILEDESCRIPTORS" + if ulimit -n "$MAX_FILEDESCRIPTORS" ; then + echo "..." + else + echo ": FAILED." + fi + fi + echo "Starting Tor..." + /usr/bin/tor +} + +tor_stop() { + echo -n "Stopping Tor..." + PID=`cat /var/run/tor/tor.pid 2>/dev/null` + if [ -z "$PID" ]; then + echo " not running." + exit 0 + fi + if kill -15 $PID; then + echo " stopped." + else + sleep 1 + if kill -9 $PID; then + echo " killed." + else + echo " error!" + exit 1 + fi + fi +} - start) - $TORCTL start - ;; +tor_reload() { + echo -n "Reloading Tor..." + PID=`cat /var/run/tor/tor.pid 2>/dev/null` + if [ -z "$PID" ]; then + echo " not running." + exit 0 + fi + if kill -1 $PID; then + echo " reloaded." + else + echo " error!" + exit 1 + fi +} + +tor_status() { + PID=`cat /var/run/tor/tor.pid 2>/dev/null` + if [ -z "$PID" ]; then + echo "Not running." + exit 1 + elif kill -0 $PID; then + echo "Running." + exit 0 + else + echo "PID file /var/run/tor/tor.pid present but PID $PID is not running." + exit 1 + fi +} + +case "$1" in + start) + tor_start + ;; - stop) - $TORCTL stop - ;; + stop) + tor_stop + ;; - restart) - $TORCTL restart - ;; + restart) + tor_stop + sleep 1 + tor_start + ;; - reload) - $TORCTL reload - ;; + reload) + tor_reload + ;; - status) - $TORCTL status - ;; + status) + tor_status + ;; - *) - echo "Usage: $0 (start|stop|restart|reload|status)" + *) + echo "Usage: $0 (start|stop|restart|reload|status)" esac |