generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathquery_test.sh
153 lines (137 loc) · 3.67 KB
/
query_test.sh
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
#!/usr/bin/bash
#
# SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note
#
# Copyright (c) 2023, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License v2 as published by the Free Software Foundation.
#
# This program 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 program; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 021110-1307, USA.
#
# test various queries
. ./test_lib.sh
LOGFILE=$TESTLOG_LAST
SLEEPTIME=1
TIMEOUT=30
MAX_CONN=50
test_setup true
for QUERY in help tuners tunables ; do
test_start "$0|query $QUERY test"
test_run_cmd_local "$BPFTUNE -s &" true
sleep $SETUPTIME
$BPFTUNE_CMD -q $QUERY
test_pass
done
test_cleanup
if [[ -n "$JQ_CMD" ]]; then
test_setup true
for JQUERY in jtunables jstatus ; do
test_start "$0|query $JQUERY test"
test_run_cmd_local "$BPFTUNE -s &" true
sleep $SETUPTIME
$BPFTUNE_CMD -q $JQUERY | $JQ_CMD
test_pass
done
test_cleanup
fi
for QUERY in summary rollback status ; do
for FAMILY in ipv4 ; do
for NS in global; do
case $FAMILY in
ipv4)
if [[ $NS == "global" ]]; then
ADDR=$VETH2_IPV4
else
ADDR=$VETH1_IPV4
fi
SYSCTL_PREFIX=net.ipv4.ipfrag_
SYSCTL_NAME="${SYSCTL_PREFIX}high_thresh"
;;
ipv6)
if [[ $NS == "global" ]]; then
ADDR=$VETH2_IPV6
else
ADDR=$VETH1_IPV6
fi
SYSCTL_PREFIX=net.ipv6.ip6frag_
SYSCTL_NAME="${SYSCTL_PREFIX}high_thresh"
;;
esac
test_start "$0|query $QUERY test to $ADDR:$PORT $FAMILY $NS"
if [[ $NS == "global" ]]; then
CLIENT_PREFIX="ip netns exec $NETNS"
CLIENT_VETH=$VETH1
SERVER_PREFIX=""
SERVER_VETH=$VETH2
else
CLIENT_PREFIX=""
CLIENT_VETH=$VETH2
SERVER_PREFIX="ip netns exec $NETNS"
SERVER_VETH=$VETH1
fi
test_setup true
$CLIENT_PREFIX ethtool --offload $CLIENT_VETH rx off tx off gso off gro off lro off tso off
$SERVER_PREFIX ethtool --offload $SERVER_VETH rx off tx off gso off gro off lro off tso off
frag_orig=($(sysctl -n $SYSCTL_NAME))
low_orig=($(sysctl -n ${SYSCTL_PREFIX}low_thresh))
sysctl -w ${SYSCTL_PREFIX}low_thresh=8192
sysctl -w $SYSCTL_NAME="8192"
frag_pre=($(sysctl -n $SYSCTL_NAME))
# prevent firewall from reassembling packets.
set +e
FIREWALLD_PID=$(pgrep firewalld)
set -e
if [[ -n "$FIREWALLD_PID" ]]; then
service firewalld stop
fi
for MODE in baseline test ; do
echo "Running ${MODE}..."
if [[ $MODE != "baseline" ]]; then
test_run_cmd_local "$BPFTUNE -s &" true
sleep $SETUPTIME
else
LOGSZ=$(wc -l $LOGFILE | awk '{print $1}')
LOGSZ=$(expr $LOGSZ + 1)
fi
set +e
echo "Running $CLIENT_PREFIX ping -v -c 20 -M t -s 8192 $ADDR"
$CLIENT_PREFIX ping -v -c 20 -M want -s 8192 $ADDR
set -e
sleep $SLEEPTIME
done
if [[ -n "$FIREWALLD_PID" ]]; then
service firewalld start
fi
frag_post=($(sysctl -n $SYSCTL_NAME))
if [[ -n $SERVER_PREFIX ]]; then
sysctl -w ${SYSCTL_NAME}=$frag_orig
sysctl -w ${SYSCTL_PREFIX}low_thresh=$low_orig
fi
echo "$SYSCTL_NAME before ${frag_pre}"
echo "$SYSCTL_NAME after ${frag_post}"
if [[ $MODE == "test" ]]; then
if [[ "${frag_post}" -gt ${frag_pre} ]]; then
grep "approaching fragmentation maximum threshold" $LOGFILE
${BPFTUNE_PROG} -q $QUERY
pkill -TERM bpftune
test_pass
else
pkill -TERM bpftune
test_cleanup
fi
fi
test_cleanup
done
done
done
test_exit