]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Reprogram flows when ovs-vswitchd restarts
authorKyle Mestery <kmestery@cisco.com>
Fri, 16 May 2014 04:21:32 +0000 (04:21 +0000)
committerKyle Mestery <kmestery@cisco.com>
Wed, 28 May 2014 20:07:09 +0000 (20:07 +0000)
commit8e9f00a19dab98e5cfc7ca32beb9f17ebb5bc1bb
treefe344b02482a941121e414863da71eb1f6a49063
parentf2ffb17f5deb8f74d9ccfdcaca7128ff1b3bbf6b
Reprogram flows when ovs-vswitchd restarts

When OVS is restarted, by default it will not reprogram flows which were
programmed. For the case of the OVS agent, this means a restart will cause
all traffic to be switched using the NORMAL action. This is undesirable for
a number of reasons, including obvious security reasons.

This change provides a way for the agent to check if a restart of ovs-vswitchd
has happened in the main agent loop. If a restart of ovs-vswitchd is detected,
the agent will run through the setup of the bridges on the host and reprogram
flows for all the ports connected.

DocImpact
This changes adds a new table (table 23) to the integration bridge, with a
single 'drop' flow. This is used to monitor OVS restarts and to reprogram
flows from the agent.

Change-Id: If9e07465c43115838de23e12a4e0087c9218cea2
Closes-Bug: #1290486
neutron/agent/linux/ovs_lib.py
neutron/plugins/openvswitch/agent/ovs_neutron_agent.py
neutron/plugins/openvswitch/common/constants.py
neutron/tests/unit/openvswitch/test_ovs_neutron_agent.py
neutron/tests/unit/openvswitch/test_ovs_tunnel.py