In test runs, I've occasionally seen mysterious failures in which parse_listening_port failed to find the listening port even though an examination of the log file showed that it was there. I spent some time trying to figure out what was going wrong. It seemed like everything was lined up properly to ensure that a command like "ovs-vsctl set-controller br0 tcp:127.0.0.1:0" would only return to the command prompt after the new listener was ready and the proper log message was written. It was obviously a very small race because I could only reproduce it with a large test parallelism (e.g. -j10 on my quad-core laptop).
The problem turned out to be asynchronous logging in ovs-vswitchd. If I turned that off, by commenting out the call to vlog_enable_async() in bridge.c, parse_listening_port became reliable. This commit works around the problem by making parse_listening_port retry for a while if necessary. It also transforms the shell function into an m4 macro (so that it can use OVS_WAIT_UNTIL) and renames it to all-uppercase to follow the convention for macros. Signed-off-by: Ben Pfaff <b...@nicira.com> --- tests/ofproto-dpif.at | 16 ++++++++-------- tests/ofproto-macros.at | 21 +++++++++++---------- tests/ovs-vsctl.at | 2 +- tests/ovsdb-idl.at | 4 ++-- tests/ovsdb-server.at | 12 ++++++------ 5 files changed, 28 insertions(+), 27 deletions(-) diff --git a/tests/ofproto-dpif.at b/tests/ofproto-dpif.at index 121f84d..596da24 100644 --- a/tests/ofproto-dpif.at +++ b/tests/ofproto-dpif.at @@ -4736,7 +4736,7 @@ m4_define([CHECK_SFLOW_SAMPLING_PACKET], ON_EXIT([kill `cat test-sflow.pid`]) AT_CHECK([ovstest test-sflow --log-file --detach --no-chdir --pidfile 0:$1 > sflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([sflow.log]) - SFLOW_PORT=`parse_listening_port < test-sflow.log` + PARSE_LISTENING_PORT([test-sflow.log], [SFLOW_PORT]) ovs-appctl time/stop ADD_OF_PORTS([br0], 1, 2) @@ -5079,7 +5079,7 @@ OVS_VSWITCHD_START([dnl ON_EXIT([kill `cat test-sflow.pid`]) AT_CHECK([ovstest test-sflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > sflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([sflow.log]) -SFLOW_PORT=`parse_listening_port < test-sflow.log` +PARSE_LISTENING_PORT([test-sflow.log], [SFLOW_PORT]) ovs-appctl time/stop @@ -5124,7 +5124,7 @@ dnl set up sFlow logging dnl ON_EXIT([kill `cat test-sflow.pid`]) AT_CHECK([ovstest test-sflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > sflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([sflow.log]) -SFLOW_PORT=`parse_listening_port < test-sflow.log` +PARSE_LISTENING_PORT([test-sflow.log], [SFLOW_PORT]) ovs-appctl time/stop OVS_VSWITCHD_DISABLE_TUNNEL_PUSH_POP @@ -5195,7 +5195,7 @@ dnl set up sFlow logging dnl ON_EXIT([kill `cat test-sflow.pid`]) AT_CHECK([ovstest test-sflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > sflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([sflow.log]) -SFLOW_PORT=`parse_listening_port < test-sflow.log` +PARSE_LISTENING_PORT([test-sflow.log], [SFLOW_PORT]) ovs-appctl time/stop AT_CHECK([ovs-appctl vlog/set dpif:dbg dpif_netdev:dbg]) @@ -5300,7 +5300,7 @@ dnl set up sFlow logging dnl ON_EXIT([kill `cat test-sflow.pid`]) AT_CHECK([ovstest test-sflow --log-file --detach --no-chdir --pidfile 0:127.0.0.1 > sflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([sflow.log]) -SFLOW_PORT=`parse_listening_port < test-sflow.log` +PARSE_LISTENING_PORT([test-sflow.log], [SFLOW_PORT]) ovs-appctl time/stop dnl configure sflow @@ -5394,7 +5394,7 @@ m4_define([CHECK_NETFLOW_EXPIRATION], ON_EXIT([kill `cat test-netflow.pid`]) AT_CHECK([ovstest test-netflow --log-file --detach --no-chdir --pidfile 0:$1 > netflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([netflow.log]) - NETFLOW_PORT=`parse_listening_port < test-netflow.log` + PARSE_LISTENING_PORT([test-netflow.log], [NETFLOW_PORT]) ovs-vsctl \ set Bridge br0 netflow=@nf -- \ @@ -5441,7 +5441,7 @@ m4_define([CHECK_NETFLOW_ACTIVE_EXPIRATION], ON_EXIT([kill `cat test-netflow.pid`]) AT_CHECK([ovstest test-netflow --log-file --detach --no-chdir --pidfile 0:$1 > netflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([netflow.log]) - NETFLOW_PORT=`parse_listening_port < test-netflow.log` + PARSE_LISTENING_PORT([test-netflow.log], [NETFLOW_PORT]) ovs-vsctl \ set Bridge br0 netflow=@nf -- \ @@ -6119,7 +6119,7 @@ m4_define([CHECK_MEGAFLOW_NETFLOW], ON_EXIT([kill `cat test-netflow.pid`]) AT_CHECK([ovstest test-netflow --log-file --detach --no-chdir --pidfile 0:$1 > netflow.log], [0], [], [ignore]) AT_CAPTURE_FILE([netflow.log]) - NETFLOW_PORT=`parse_listening_port < test-netflow.log` + PARSE_LISTENING_PORT([test-netflow.log], [NETFLOW_PORT]) ovs-vsctl \ set Bridge br0 netflow=@nf -- \ --id=@nf create NetFlow targets=\"$1:$NETFLOW_PORT\" \ diff --git a/tests/ofproto-macros.at b/tests/ofproto-macros.at index 0dc208e..1f0d7b0 100644 --- a/tests/ofproto-macros.at +++ b/tests/ofproto-macros.at @@ -31,24 +31,25 @@ s/tcp:127.0.0.1:[0-9][0-9]*:/unix:/ s/No error/Success/ ' } +] +m4_divert_pop([PREPARE_TESTS]) -# parse_listening_port [SERVER] +# PARSE_LISTENING_PORT LOGFILE VARIABLE # -# Parses the TCP or SSL port on which a server is listening from the -# log, given that the server was told to listen on a kernel-chosen -# port, file provided on stdin, and prints the port number on stdout. -# You should specify the listening remote as ptcp:0:127.0.0.1 or +# Parses the TCP or SSL port on which a server is listening from +# LOGFILE, given that the server was told to listen on a kernel-chosen +# port, and assigns the port number to shell VARIABLE. You should +# specify the listening remote as ptcp:0:127.0.0.1 or # pssl:0:127.0.0.1, or the equivalent with [::1] instead of 127.0.0.1. # # Here's an example of how to use this with ovsdb-server: # # OVS_LOGDIR=`pwd`; export OVS_LOGDIR # ovsdb-server --log-file --remote=ptcp:0:127.0.0.1 ... -# TCP_PORT=`parse_listening_port < ovsdb-server.log` -parse_listening_port () { - sed -n 's/.*0:.*: listening on port \([0-9]*\)$/\1/p' -}] -m4_divert_pop([PREPARE_TESTS]) +# PARSE_LISTENING_PORT([ovsdb-server.log], [TCP_PORT]) +# # Now $TCP_PORT holds the listening port. +m4_define([PARSE_LISTENING_PORT], + [OVS_WAIT_UNTIL([$2=`sed -n 's/.*0:.*: listening on port \([[0-9]]*\)$/\1/p' "$1"` && test X != X"[$]$2"])]) m4_define([STRIP_XIDS], [[sed 's/ (xid=0x[0-9a-fA-F]*)//']]) m4_define([STRIP_DURATION], [[sed 's/\bduration=[0-9.]*s/duration=?s/']]) diff --git a/tests/ovs-vsctl.at b/tests/ovs-vsctl.at index fef7b88..4640102 100644 --- a/tests/ovs-vsctl.at +++ b/tests/ovs-vsctl.at @@ -1324,7 +1324,7 @@ touch .conf.db.~lock~ AT_CHECK([ovsdb-tool create conf.db $abs_top_srcdir/vswitchd/vswitch.ovsschema]) AT_CHECK([ovsdb-server --detach --no-chdir --pidfile="`pwd`"/pid --private-key=$PKIDIR/ovsdbserver-privkey.pem --certificate=$PKIDIR/ovsdbserver-cert.pem --ca-cert=$PKIDIR/pki/switchca/cacert.pem --peer-ca-cert=$PKIDIR/ovsdbserver-cert.pem --remote=pssl:0:127.0.0.1 --unixctl="`pwd`"/unixctl --log-file="`pwd`"/ovsdb-server.log conf.db], [0], [ignore], [ignore]) ON_EXIT_UNQUOTED([kill `cat pid`]) -SSL_PORT=`parse_listening_port < ovsdb-server.log` +PARSE_LISTENING_PORT([ovsdb-server.log], [SSL_PORT]) # During bootstrap, the connection gets torn down. So the o/p of ovs-vsctl is error. AT_CHECK([ovs-vsctl -t 5 --db=ssl:127.0.0.1:$SSL_PORT --private-key=$PKIDIR/vsctl-privkey.pem --certificate=$PKIDIR/vsctl-cert.pem --bootstrap-ca-cert=$PKIDIR/cacert.pem show], [1], [ignore], [ignore]) diff --git a/tests/ovsdb-idl.at b/tests/ovsdb-idl.at index 11b8b36..1a68c57 100644 --- a/tests/ovsdb-idl.at +++ b/tests/ovsdb-idl.at @@ -61,7 +61,7 @@ m4_define([OVSDB_CHECK_IDL_TCP_PY], AT_CHECK([ovsdb-tool create db $abs_srcdir/idltest.ovsschema], [0], [stdout], [ignore]) AT_CHECK([ovsdb-server --log-file '-vPATTERN:console:ovsdb-server|%c|%m' --detach --no-chdir --pidfile="`pwd`"/pid --remote=punix:socket --remote=ptcp:0:127.0.0.1 --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) - TCP_PORT=`parse_listening_port < ovsdb-server.log` + PARSE_LISTENING_PORT([ovsdb-server.log], [TCP_PORT]) m4_if([$2], [], [], [AT_CHECK([ovsdb-client transact tcp:127.0.0.1:$TCP_PORT $2], [0], [ignore], [ignore], [kill `cat pid`])]) @@ -83,7 +83,7 @@ m4_define([OVSDB_CHECK_IDL_TCP6_PY], AT_CHECK([ovsdb-tool create db $abs_srcdir/idltest.ovsschema], [0], [stdout], [ignore]) AT_CHECK([ovsdb-server --log-file '-vPATTERN:console:ovsdb-server|%c|%m' --detach --no-chdir --pidfile="`pwd`"/pid --remote=ptcp:0:[[::1]] --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) - TCP_PORT=`parse_listening_port < ovsdb-server.log` + PARSE_LISTENING_PORT([ovsdb-server.log], [TCP_PORT]) echo "TCP_PORT=$TCP_PORT" m4_if([$2], [], [], diff --git a/tests/ovsdb-server.at b/tests/ovsdb-server.at index 8fce70e..9f8d74d 100644 --- a/tests/ovsdb-server.at +++ b/tests/ovsdb-server.at @@ -538,7 +538,7 @@ AT_CHECK( --ca-cert=db:mydb,SSL,ca_cert \ --remote=pssl:0:127.0.0.1 --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) -SSL_PORT=`parse_listening_port < ovsdb-server.log` +PARSE_LISTENING_PORT([ovsdb-server.log], [SSL_PORT]) AT_CHECK( [[ovsdb-client \ --private-key=$PKIDIR/testpki-privkey.pem \ @@ -818,7 +818,7 @@ m4_define([OVSDB_CHECK_EXECUTION], PKIDIR=$abs_top_builddir/tests AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore]) AT_CHECK([ovsdb-server --log-file --detach --no-chdir --pidfile="`pwd`"/pid --private-key=$PKIDIR/testpki-privkey2.pem --certificate=$PKIDIR/testpki-cert2.pem --ca-cert=$PKIDIR/testpki-cacert.pem --remote=pssl:0:127.0.0.1 --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) - SSL_PORT=`parse_listening_port < ovsdb-server.log` + PARSE_LISTENING_PORT([ovsdb-server.log], [SSL_PORT]) m4_foreach([txn], [$3], [AT_CHECK([ovsdb-client --private-key=$PKIDIR/testpki-privkey.pem --certificate=$PKIDIR/testpki-cert.pem --ca-cert=$PKIDIR/testpki-cacert.pem transact ssl:127.0.0.1:$SSL_PORT 'txn'], [0], [stdout], [ignore], [test ! -e pid || kill `cat pid`]) @@ -858,7 +858,7 @@ m4_define([OVSDB_CHECK_EXECUTION], PKIDIR=$abs_top_builddir/tests AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore]) AT_CHECK([ovsdb-server --log-file --detach --no-chdir --pidfile="`pwd`"/pid --private-key=$PKIDIR/testpki-privkey2.pem --certificate=$PKIDIR/testpki-cert2.pem --ca-cert=$PKIDIR/testpki-cacert.pem --remote=pssl:0:[[::1]] --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) - SSL_PORT=`parse_listening_port < ovsdb-server.log` + PARSE_LISTENING_PORT([ovsdb-server.log], [SSL_PORT]) m4_foreach([txn], [$3], [AT_CHECK([ovsdb-client --private-key=$PKIDIR/testpki-privkey.pem --certificate=$PKIDIR/testpki-cert.pem --ca-cert=$PKIDIR/testpki-cacert.pem transact ssl:[[::1]]:$SSL_PORT 'txn'], [0], [stdout], [ignore], [test ! -e pid || kill `cat pid`]) @@ -879,7 +879,7 @@ ordinal_schema > schema AT_CHECK([ovsdb-tool create db schema], [0], [ignore], [ignore]) OVS_LOGDIR=`pwd`; export OVS_LOGDIR AT_CHECK([ovsdb-server --log-file --detach --no-chdir --pidfile="`pwd`"/pid --unixctl="`pwd`"/unixctl --remote=ptcp:0:127.0.0.1 db], [0], [ignore], [ignore]) -TCP_PORT=`parse_listening_port < ovsdb-server.log` +PARSE_LISTENING_PORT([ovsdb-server.log], [TCP_PORT]) AT_CHECK([ovsdb-client get-schema-version tcp:127.0.0.1:$TCP_PORT ordinals], [0], [5.1.3 ]) OVSDB_SERVER_SHUTDOWN @@ -908,7 +908,7 @@ m4_define([OVSDB_CHECK_EXECUTION], PKIDIR=$abs_top_builddir/tests AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore]) AT_CHECK([ovsdb-server --log-file --detach --no-chdir --pidfile="`pwd`"/pid --remote=ptcp:0:127.0.0.1 --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) - TCP_PORT=`parse_listening_port < ovsdb-server.log` + PARSE_LISTENING_PORT([ovsdb-server.log], [TCP_PORT]) m4_foreach([txn], [$3], [AT_CHECK([ovsdb-client transact tcp:127.0.0.1:$TCP_PORT 'txn'], [0], [stdout], [ignore], [test ! -e pid || kill `cat pid`]) @@ -947,7 +947,7 @@ m4_define([OVSDB_CHECK_EXECUTION], PKIDIR=$abs_top_builddir/tests AT_CHECK([ovsdb-tool create db schema], [0], [stdout], [ignore]) AT_CHECK([ovsdb-server --log-file --detach --no-chdir --pidfile="`pwd`"/pid --remote=ptcp:0:[[::1]] --unixctl="`pwd`"/unixctl db], [0], [ignore], [ignore]) - TCP_PORT=`parse_listening_port < ovsdb-server.log` + PARSE_LISTENING_PORT([ovsdb-server.log], [TCP_PORT]) m4_foreach([txn], [$3], [AT_CHECK([ovsdb-client transact tcp:[[::1]]:$TCP_PORT 'txn'], [0], [stdout], [ignore], [test ! -e pid || kill `cat pid`]) -- 2.1.3 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev