3 # Copyright (C) - 2012 Christian Babeux <christian.babeux@efficios.com>
4 # David Goulet <dgoulet@efficios.com>
6 # This library is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU Lesser General Public License as published by the Free
8 # Software Foundation; version 2.1 of the License.
10 # This library is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with this library; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 TEST_DESC
="Streaming - High throughput with bandwidth limits"
22 TESTDIR
=$CURDIR/..
/..
/..
25 TESTAPP_PATH
="$TESTDIR/utils/testapp"
26 TESTAPP_NAME
="gen-ust-events"
27 TESTAPP_BIN
="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
28 SESSION_NAME
="high-throughput"
29 EVENT_NAME
="tp:tptest"
30 SESSIOND_CTRL_PORT
=5342
31 SESSIOND_DATA_PORT
=5343
34 TRACE_PATH
=$
(mktemp
-d)
38 source $TESTDIR/utils
/utils.sh
40 if [ ! -x "$TESTAPP_BIN" ]; then
41 BAIL_OUT
"No UST events binary detected."
47 ctrlportlimit
=$
(($limit/10))
48 # failsafe to have at least 1kbit/s for control (in the case where $1 < 10)
49 [ $ctrlportlimit = 0 ] && ctrlportlimit
=1
50 # if $1 < 10, we might bust the limit set here, but the
51 # parent qdisc (1:) will always limit us to the right max value
52 dataportlimit
=$
((9*${ctrlportlimit}))
55 tc qdisc add dev
$DEFAULT_IF root handle
1: htb default
15 >/dev
/null
2>&1
57 # the total bandwidth is the limit set by the user
58 tc class add dev
$DEFAULT_IF parent
1: classid
1:1 htb rate
${limit}kbit ceil
${limit}kbit
>/dev
/null
2>&1
59 # 1/10 of the bandwidth guaranteed and traffic prioritized for the control port
60 tc class add dev
$DEFAULT_IF parent
1:1 classid
1:10 htb rate
${ctrlportlimit}kbit ceil
${limit}kbit prio
1 >/dev
/null
2>&1
61 # 9/10 of the bandwidth guaranteed and can borrow up to the total bandwidth (if unused)
62 tc class add dev
$DEFAULT_IF parent
1:1 classid
1:11 htb rate
${dataportlimit}kbit ceil
${limit}kbit prio
2 >/dev
/null
2>&1
64 # filter to assign control traffic to the 1:10 class
65 tc filter add dev
$DEFAULT_IF parent
1: protocol ip u32 match ip dport
$SESSIOND_CTRL_PORT 0xffff flowid
1:10 >/dev
/null
2>&1
66 # filter to assign data traffic to the 1:11 class
67 tc filter add dev
$DEFAULT_IF parent
1: protocol ip u32 match ip dport
$SESSIOND_DATA_PORT 0xffff flowid
1:11 >/dev
/null
2>&1
69 ok $?
"Set bandwidth limits to ${limit}kbits, ${ctrlportlimit} for control and ${dataportlimit} for data"
72 function reset_bw_limit
74 tc qdisc del dev
$DEFAULT_IF root
>/dev
/null
2>&1
75 ok $?
"Reset bandwith limits"
78 function create_lttng_session_with_uri
82 # Create session with custom URI
83 $TESTDIR/..
/src
/bin
/lttng
/$LTTNG_BIN create
-U $uri $sess_name >/dev
/null
2>&1
84 ok $?
"Create session with uri $uri"
89 for i
in `seq 1 $NR_APP_ITER`; do
90 # With bandwidth limitation, unfortunately, application easily timeout
91 # due to very slow communication between the consumer and relayd making
92 # the status reply from the consumer quite slow thus delaying the
93 # registration done message.
94 LTTNG_UST_REGISTER_TIMEOUT
=-1 $TESTAPP_BIN -i $NR_ITER & >/dev
/null
2>&1
98 function test_high_throughput
100 NETWORK_URI
="net://localhost"
101 create_lttng_session_with_uri
$SESSION_NAME $NETWORK_URI
102 enable_ust_lttng_event_ok
$SESSION_NAME $EVENT_NAME
103 start_lttng_tracing_ok
$SESSION_NAME
105 diag
"Waiting for applications to end"
108 stop_lttng_tracing_ok
$SESSION_NAME
109 destroy_lttng_session_ok
$SESSION_NAME
113 function validate_event_count
117 TEMP_FILE_2
=$
(mktemp
)
119 traced
=$
(babeltrace
$TRACE_PATH 2>/dev
/null |
wc -l)
120 babeltrace
$TRACE_PATH >/dev
/null
2>$TEMP_FILE_2
122 cat $TEMP_FILE_2 | cut
-f4 -d " " >$TEMP_FILE
127 let dropped
=$dropped+$line
130 let total
=$dropped+$traced
131 let wanted
=$NR_APP_ITER*$NR_ITER
133 if [ $wanted -ne $total ]; then
134 fail
"Validate trace event count"
135 diag
"Expected $wanted. Dropped $dropped. Recorded $traced. Total $total... "
138 pass
"Validate trace event count"
139 diag
"Expected $wanted. Dropped $dropped. Recorded $traced. Total $total... "
142 rm $TEMP_FILE $TEMP_FILE_2
148 function interrupt_cleanup
()
150 diag
"*** Exiting ***"
157 plan_tests
$NUM_TESTS
159 print_test_banner
"$TEST_DESC"
161 if [ "$(id -u)" == "0" ]; then
167 skip
$isroot "Root access is needed to set bandwith limits. Skipping all tests." $NUM_TESTS ||
170 # Catch sigint and try to cleanup limits
171 trap interrupt_cleanup SIGTERM
172 trap interrupt_cleanup SIGINT
174 BW_LIMITS
=(3200 1600 800 400 200 100 50 25)
175 for BW
in ${BW_LIMITS[@]};
177 diag
"Test high-throughput with bandwidth limit set to ${BW}kbits"
182 start_lttng_relayd
"-o $TRACE_PATH"