osmith has uploaded this change for review.
net: run.sh: store all spawned pids in files
Replace the previous approach of only storing the PIDs of the spawned
terminals, and then attempting to kill all other processes (the ones
running inside the spawned terminals and tcpdump) with "killall".
Instead, store PIDs of all spawned programs:
* Terminals
* Osmocom programs (new)
* Tcpdump (new)
Kill old processes at the start of run.sh as well, so even if run.sh was
killed before it could clean up, the Osmocom programs don't fail to
start anymore (as it was the case before).
Change-Id: I379ef71de2f1ab0ac4a28064e5cf9e275c4c61e9
---
M net/templates/run.sh
1 file changed, 79 insertions(+), 57 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-dev refs/changes/34/27034/1
diff --git a/net/templates/run.sh b/net/templates/run.sh
index af7bc36..7b36101 100755
--- a/net/templates/run.sh
+++ b/net/templates/run.sh
@@ -39,7 +39,8 @@
fi
logdir="current_log"
-mkdir -p "$logdir"
+piddir="pids"
+mkdir -p "$logdir" "$piddir"
find_term() {
# Find a terminal program and write to the global "terminal" variable
@@ -72,15 +73,68 @@
exit 1
}
+pidfiles_must_not_exist() {
+ local pidfile
+
+ for pidfile in "$@"; do
+ if [ -e "$pidfile" ]; then
+ echo
+ echo "ERROR: pidfile exists: $pidfile"
+ echo
+ kill_pids
+ exit 1
+ fi
+ done
+}
+
term() {
title="$2"
if [ -z "$title" ]; then
title="$(basename $@)"
fi
- exec $terminal -title "CN:$title" -e sh -c "export LD_LIBRARY_PATH='/usr/local/lib'; $1; echo; while true; do echo 'q Enter to close'; read q_to_close; if [ \"x\$q_to_close\" = xq ]; then break; fi; done"
+
+ local pidfile="$piddir/$title.pid"
+ local pidfile_term="$piddir/$title.term.pid"
+ pidfiles_must_not_exist "$pidfile" "$pidfile_term"
+
+ $terminal \
+ -title "CN:$title" \
+ -e sh -c "export LD_LIBRARY_PATH='/usr/local/lib'
+ $1 &
+ echo \$! > $pidfile
+ wait
+ echo
+ while true; do
+ echo 'q Enter to close'
+ read q_to_close
+ if [ \"x\$q_to_close\" = xq ]; then
+ break
+ fi
+ done" \
+ &
+
+ echo "$!" > "$pidfile_term"
+}
+
+kill_pids() {
+ local pidfile
+ local pid
+
+ for pidfile in "$piddir"/*.pid; do
+ if ! [ -e "$pidfile" ]; then
+ continue
+ fi
+
+ pid="$(cat "$pidfile")"
+
+ echo "killing $(basename "$pidfile") ($pid)"
+ sudo kill "$pid"
+ rm "$pidfile"
+ done
}
find_term
+kill_pids
hnbgw="osmo-hnbgw"
msc="gdb -ex run --args $(which osmo-msc)"
@@ -134,78 +188,66 @@
esac
fi
+PIDFILE_TCPDUMP_DEV="$piddir/tcpdump.$dev.pid"
+PIDFILE_TCPDUMP_LO="$piddir/tcpdump.lo.pid"
+pidfiles_must_not_exist "$PIDFILE_TCPDUMP_DEV" "$PIDFILE_TCPDUMP_LO"
+
sudo tcpdump -i $dev -n -w current_log/$dev.single.pcap -U not port 22 &
+echo "$!" > "$PIDFILE_TCPDUMP_DEV"
sudo tcpdump -i lo -n -w current_log/lo.single.pcap -U not port 22 &
+echo "$!" > "$PIDFILE_TCPDUMP_LO"
-PIDS=""
-
-term "$ggsn" GGSN &
-PIDS="$PIDS $!"
+term "$ggsn" GGSN
if [ "${STP_CN_IP}" = "${STP_RAN_IP}" ]; then
sleep .2
- term "$stp4cn" STP &
- PIDS="$PIDS $!"
+ term "$stp4cn" STP
else
sleep .2
- term "$stp4cn" STP4CN &
- PIDS="$PIDS $!"
+ term "$stp4cn" STP4CN
sleep .2
- term "$stp4ran" STP4RAN &
- PIDS="$PIDS $!"
+ term "$stp4ran" STP4RAN
sleep .2
- term "$bscnat" BSCNAT &
- PIDS="$PIDS $!"
+ term "$bscnat" BSCNAT
fi
sleep .2
-term "$hlr" HLR &
-PIDS="$PIDS $!"
+term "$hlr" HLR
sleep .2
-term "$sgsn" SGSN &
-PIDS="$PIDS $!"
+term "$sgsn" SGSN
sleep .2
-term "$gbproxy" GBPROXY &
-PIDS="$PIDS $!"
+term "$gbproxy" GBPROXY
sleep .2
-term "$mgw4msc" MGW4MSC &
-PIDS="$PIDS $!"
+term "$mgw4msc" MGW4MSC
sleep .2
-term "$mgw4bsc" MGW4BSC &
-PIDS="$PIDS $!"
+term "$mgw4bsc" MGW4BSC
sleep .2
-term "$msc" MSC &
-PIDS="$PIDS $!"
+term "$msc" MSC
sleep 2
-term "$hnbgw" HNBGW &
-PIDS="$PIDS $!"
+term "$hnbgw" HNBGW
sleep .2
-term "$bsc" BSC &
-PIDS="$PIDS $!"
+term "$bsc" BSC
if [ "x${MSC_MNCC}" != "xinternal" ]; then
sleep .2
- term "$sipcon" SIPCON &
- PIDS="$PIDS $!"
+ term "$sipcon" SIPCON
sleep .2
case "${PBX_SERVER}" in
"kamailio")
- term "$kamailio" KAMAILIO &
- PIDS="$PIDS $!"
+ term "$kamailio" KAMAILIO
;;
"freeswitch")
- term "./freeswitch/freeswitch.sh" FREESWITCH &
- PIDS="$PIDS $!"
+ term "./freeswitch/freeswitch.sh" FREESWITCH
;;
esac
fi
@@ -219,27 +261,7 @@
#ssh bts neels/stop_remote.sh
-for i in $PIDS; do
- kill "$i"
-done
-killall osmo-msc
-killall osmo-bsc
-killall osmo-gbproxy
-killall osmo-sgsn
-#killall osmo-hnbgw
-killall osmo-mgw
-killall osmo-hlr
-killall -9 osmo-stp
-sudo killall tcpdump
-killall osmo-ggsn
-killall osmo-bsc-nat
-
-if [ "x${MSC_MNCC}" != "xinternal" ]; then
- # 'killall' seems to work only with the shortened name
- killall osmo-sip-connec
- killall "${PBX_SERVER}"
-fi
-
+kill_pids
set +e
cp *.cfg "$logdir"/
To view, visit change 27034. To unsubscribe, or for help writing mail filters, visit settings.