1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
# Copyright (C) 2011-2016 Free Software Foundation, Inc.
# Copyright (C) 2015-2016 Red Hat, Inc.
#
# This file is part of GnuTLS.
#
# The launch_server() function was contributed by Cedric Arbogast.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file. If not, see <https://www.gnu.org/licenses/>.
export TZ="UTC"
# Check for a utility to list ports. Both ss and netstat will list
# ports for normal users, and have similar semantics, so put the
# command in the caller's PFCMD, or exit, indicating an unsupported
# test. Prefer ss from iproute2 over the older netstat.
have_port_finder() {
# Prefer PFCMD if set
if test "${PFCMD+set}" = set; then
return
fi
if (ss --version) > /dev/null 2>&1; then
PFCMD=ss
return
fi
# 'ss' might be installed in /sbin
for dir in /sbin /usr/sbin /usr/local/sbin; do
if ($dir/ss --version) > /dev/null 2>&1; then
PFCMD=$dir/ss
return
fi
done
# We can't assume netstat --version for portability reasons
if (type netstat) > /dev/null 2>&1; then
PFCMD=netstat
return
fi
echo "neither ss nor netstat found" 1>&2
exit 77
}
reserve_port() {
local PORT=$1
mkdir "$abs_top_builddir/tests/port.lock.d.$PORT" > /dev/null 2>&1 || return 1
echo "reserved port $PORT"
trap "unreserve_port $PORT" 0 1 15 2
}
unreserve_port() {
local PORT=$1
echo "unreserved port $PORT"
rmdir "$abs_top_builddir/tests/port.lock.d.$PORT" > /dev/null 2>&1 || :
}
check_if_port_in_use() {
local PORT=$1
reserve_port $PORT
have_port_finder
if ! $PFCMD -an|grep "[\:\.]$PORT" >/dev/null 2>&1; then
return 1
fi
unreserve_port $PORT
}
check_if_port_listening() {
local PORT=$1
have_port_finder
$PFCMD -anl|grep "[\:\.]$PORT"|grep LISTEN >/dev/null 2>&1
}
# Find a port number not currently in use.
GETPORT='
rc=0
while test $rc = 0; do
unset myrandom
if test -n "$RANDOM"; then myrandom=$(($RANDOM + $RANDOM)); fi
if test -z "$myrandom"; then myrandom=$(date +%N | sed s/^0*//); fi
if test -z "$myrandom"; then myrandom=0; fi
PORT="$(((($$<<15)|$myrandom) % 63001 + 2000))"
check_if_port_in_use $PORT;rc=$?
done
'
skip_if_no_datefudge() {
if test "$gnutls_cv_prog_faketime_works" != yes; then
exit 77
fi
}
fail() {
PID="$1"
shift
echo "Failure: $1" >&2
[ -n "${PID}" ] && kill ${PID}
exit 1
}
exit_if_non_x86()
{
if (lscpu --version) >/dev/null 2>&1 && \
! lscpu 2>/dev/null | grep 'Architecture:[ ]*x86' >/dev/null; then
echo "non-x86 CPU detected"
exit
fi
}
exit_if_non_padlock()
{
if (lscpu --version) >/dev/null 2>&1 && \
! lscpu 2>/dev/null | grep 'Flags:[ ]*phe' >/dev/null; then
echo "non-Via padlock CPU detected"
exit
fi
}
wait_for_port()
{
local ret
local PORT="$1"
sleep 1
local i=0
while test $i -lt 90; do
check_if_port_listening ${PORT}
ret=$?
if test $ret = 0;then
break
fi
i=`expr $i + 1`
check_if_port_in_use ${PORT}
echo "try $i: waiting for port"
sleep 2
done
return $ret
}
wait_for_free_port()
{
local ret
local PORT="$1"
for i in 1 2 3 4 5 6;do
check_if_port_in_use ${PORT}
ret=$?
if test $ret != 0;then
break
else
sleep 2
fi
done
return $ret
}
launch_bare_server() {
wait_for_free_port "$PORT"
"$@" >${LOGFILE-/dev/null} &
}
launch_server() {
launch_bare_server $VALGRIND $SERV $DEBUG -p "$PORT" "$@"
}
wait_server() {
local PID=$1
trap "test -n \"${PID}\" && kill ${PID}; exit 1" 1 15 2
wait_for_port $PORT
if test $? != 0;then
echo "Server $PORT did not come up"
kill $PID
exit 1
fi
}
wait_udp_server() {
local PID=$1
trap "test -n \"${PID}\" && kill ${PID};exit 1" 1 15 2
sleep 4
}
create_testdir() {
local PREFIX=$1
d=`mktemp -d -t ${PREFIX}.XXXXXX`
if test $? -ne 0; then
d=${TMPDIR}/${PREFIX}.$$
mkdir "$d" || exit 1
fi
trap "test -e \"$d\" && rm -rf \"$d\"" 1 15 2
echo "$d"
}
wait_for_file() {
local filename="$1"
local timeout="$2"
local loops=$((timeout * 10)) loop=0
while test $loop -lt $loops; do
[ -f "$filename" ] && {
#allow file to be written to
sleep 0.2
return 1
}
sleep 0.1
loop=$((loop+1))
done
return 0
}
# Kill a process quietly
# @1: signal, e.g. -9
# @2: pid
kill_quiet() {
local sig="$1"
local pid="$2"
sh -c "kill $sig $pid 2>/dev/null"
return $?
}
# Terminate a process first using SIGTERM, wait 1s and if still avive use
# SIGKILL
# @1: pid
terminate_proc() {
local pid="$1"
local ctr=0
kill_quiet -15 $pid
while [ $ctr -lt 10 ]; do
sleep 0.1
kill -0 $pid 2>/dev/null
[ $? -ne 0 ] && return
ctr=$((ctr + 1))
done
kill_quiet -9 $pid
sleep 0.1
}
# $1, $2: the two files to check for equality
# $3: Strings to be ignored, separated by |
check_if_equal() {
if test -n "$3"; then
local tmp1=`basename "$1"`"1.tmp"
local tmp2=`basename "$2"`"2.tmp"
egrep -v "$3" "$1" | tr -d '\r' >"$tmp1"
egrep -v "$3" "$2" | tr -d '\r' >"$tmp2"
diff -b -B "$tmp1" "$tmp2"
local rc=$?
rm -f "$tmp1" "$tmp2"
return $rc
fi
diff -b -B "$1" "$2"
return $?
}
# works for FreeBSD and Linux
# $1: the major version to check against
# $2: the minor version to check against
kernel_version_check() {
local required_major=$1
local required_minor=$2
kernel_version=$(uname -r | sed -E 's/^([0-9]+\.[0-9]+).*/\1/' 2>/dev/null)
kernel_major=$(echo $kernel_version | cut -d. -f1 2>/dev/null)
kernel_minor=$(echo $kernel_version | cut -d. -f2 2>/dev/null)
if ! [[ "$kernel_major" =~ ^[0-9]+$ ]] || ! [[ "$kernel_minor" =~ ^[0-9]+$ ]]; then
return 1
fi
if [ "$kernel_major" -lt "$required_major" ]; then
return 1
fi
if [ "$kernel_major" -eq "$required_major" ] && [ "$kernel_minor" -lt "$required_minor" ]; then
return 1
fi
return 0
}
|