- use daemon(8) to write out a pid file for processes, and check for for the existence of that file after killing processes - use explict named parameters to jail(8)
98 lines
2.5 KiB
Bash
98 lines
2.5 KiB
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
jail_name_to_jid()
|
|
{
|
|
local check_name="$1"
|
|
(
|
|
line="$(jls -n 2> /dev/null | grep name=$check_name )"
|
|
for nv in $line; do
|
|
local name="${nv%=*}"
|
|
if [ "${name}" = "jid" ]; then
|
|
eval $nv
|
|
echo $jid
|
|
break
|
|
fi
|
|
done
|
|
)
|
|
}
|
|
|
|
base=pgrep_j_test
|
|
|
|
echo "1..3"
|
|
|
|
name="pgrep -j <jid>"
|
|
if [ `id -u` -eq 0 ]; then
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
jail -c path=/ name=${base}_1_1 ip4.addr=127.0.0.1 \
|
|
command=daemon -p ${PWD}/${base}_1_1.pid $sleep 5 &
|
|
|
|
jail -c path=/ name=${base}_1_2 ip4.addr=127.0.0.1 \
|
|
command=daemon -p ${PWD}/${base}_1_2.pid $sleep 5 &
|
|
|
|
jid1=$(jail_name_to_jid ${base}_1_1)
|
|
jid2=$(jail_name_to_jid ${base}_1_2)
|
|
jid="${jid1},${jid2}"
|
|
pid1="$(pgrep -f -x -j $jid "$sleep 5" | sort)"
|
|
pid2=$(printf "%s\n%s" "$(cat ${PWD}/${base}_1_1.pid)" \
|
|
$(cat ${PWD}/${base}_1_2.pid) | sort)
|
|
if [ "$pid1" = "$pid2" ]; then
|
|
echo "ok 1 - $name"
|
|
else
|
|
echo "not ok 1 - $name"
|
|
fi
|
|
[ -f ${PWD}/${base}_1_1.pid ] && kill $(cat ${PWD}/${base}_1_1.pid)
|
|
[ -f ${PWD}/${base}_1_2.pid ] && kill $(cat ${PWD}/${base}_1_2.pid)
|
|
rm -f $sleep
|
|
else
|
|
echo "ok 1 - $name # skip Test needs uid 0."
|
|
fi
|
|
|
|
name="pgrep -j any"
|
|
if [ `id -u` -eq 0 ]; then
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
jail -c path=/ name=${base}_2_1 ip4.addr=127.0.0.1 \
|
|
command=daemon -p ${PWD}/${base}_2_1.pid $sleep 5 &
|
|
|
|
jail -c path=/ name=${base}_2_2 ip4.addr=127.0.0.1 \
|
|
command=daemon -p ${PWD}/${base}_2_2.pid $sleep 5 &
|
|
|
|
sleep 2
|
|
pid1="$(pgrep -f -x -j any "$sleep 5" | sort)"
|
|
pid2=$(printf "%s\n%s" "$(cat ${PWD}/${base}_2_1.pid)" \
|
|
$(cat ${PWD}/${base}_2_2.pid) | sort)
|
|
if [ "$pid1" = "$pid2" ]; then
|
|
echo "ok 2 - $name"
|
|
else
|
|
echo "not ok 2 - $name"
|
|
fi
|
|
[ -f ${PWD}/${base}_2_1.pid ] && kill $(cat ${PWD}/${base}_2_1.pid)
|
|
[ -f ${PWD}/${base}_2_2.pid ] && kill $(cat ${PWD}/${base}_2_2.pid)
|
|
rm -f $sleep
|
|
else
|
|
echo "ok 2 - $name # skip Test needs uid 0."
|
|
fi
|
|
|
|
name="pgrep -j none"
|
|
if [ `id -u` -eq 0 ]; then
|
|
sleep=$(pwd)/sleep.txt
|
|
ln -sf /bin/sleep $sleep
|
|
daemon -p ${PWD}/${base}_3_1.pid $sleep 5 &
|
|
jail -c path=/ name=${base}_3_2 ip4.addr=127.0.0.1 \
|
|
command=daemon -p ${PWD}/${base}_3_2.pid $sleep 5 &
|
|
sleep 2
|
|
pid="$(pgrep -f -x -j none "$sleep 5")"
|
|
if [ "$pid" = "$(cat ${PWD}/${base}_3_1.pid)" ]; then
|
|
echo "ok 3 - $name"
|
|
else
|
|
echo "not ok 3 - $name"
|
|
fi
|
|
rm -f $sleep
|
|
[ -f ${PWD}/${base}_3_1.pid ] && kill $(cat $PWD/${base}_3_1.pid)
|
|
[ -f ${PWD}/${base}_3_2.pid ] && kill $(cat $PWD/${base}_3_2.pid)
|
|
else
|
|
echo "ok 3 - $name # skip Test needs uid 0."
|
|
fi
|