RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1626096 - systemctl reload openvswitch includes default flow.
Summary: systemctl reload openvswitch includes default flow.
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: openvswitch
Version: 7.5
Hardware: x86_64
OS: Linux
high
high
Target Milestone: rc
: ---
Assignee: Timothy Redaelli
QA Contact: Rick Alongi
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2018-09-06 14:49 UTC by Flavio Leitner
Modified: 2018-11-05 14:59 UTC (History)
7 users (show)

Fixed In Version: openvswitch-2.9.0-64.el7fdn
Doc Type: Bug Fix
Doc Text:
Previously, when OpenvSwitch service was reloaded, the default flow was not removed and it became part of the final flow table. With this update, the default flow rule is no longer added after a service reload. As a result, the described problem no longer occurs.
Clone Of:
: 1628905 (view as bug list)
Environment:
Last Closed: 2018-11-05 14:59:03 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Flavio Leitner 2018-09-06 14:49:33 UTC
Description of problem:
The flows should be restored when issuing a service reload, however the default flow is not removed when it starts and becomes part of the final flow table.

// installed version
# rpm -q openvswitch
openvswitch-2.9.0-56.el7fdp.x86_64

// adding an example of flow table
# ovs-ofctl del-flows ovsbr0 
# ovs-ofctl add-flow ovsbr0 'in_port=10 actions=output:20'
# ovs-ofctl add-flow ovsbr0 'in_port=20 actions=output:10'
# ovs-ofctl add-flow ovsbr0 'actions=drop'

// Dumping the flows
# ovs-ofctl dump-flows ovsbr0 
 cookie=0x0, duration=24.416s, table=0, n_packets=0, n_bytes=0, in_port=veth1 actions=output:veth2
 cookie=0x0, duration=18.466s, table=0, n_packets=0, n_bytes=0, in_port=veth2 actions=output:veth1
 cookie=0x0, duration=7.818s, table=0, n_packets=0, n_bytes=0, actions=drop

// Reload the service
# systemctl reload openvswitch 

// Dump the flow table again to check
[root@localhost ~]# ovs-ofctl dump-flows ovsbr0 
 cookie=0x0, duration=3.136s, table=0, n_packets=0, n_bytes=0, in_port=veth1 actions=output:veth2
 cookie=0x0, duration=3.136s, table=0, n_packets=0, n_bytes=0, in_port=veth2 actions=output:veth1
 cookie=0x0, duration=3.151s, table=0, n_packets=0, n_bytes=0, priority=0 actions=NORMAL
 cookie=0x0, duration=3.136s, table=0, n_packets=0, n_bytes=0, actions=drop


Notice the default 'actions=NORMAL' is added to the flow table.

Expected results:
The flow table is restored as it was before the reloading the service.

Comment 2 Timothy Redaelli 2018-09-10 14:21:12 UTC
Patch sent on OVS mailing list: https://mail.openvswitch.org/pipermail/ovs-dev/2018-September/351970.html

Comment 5 Rick Alongi 2018-10-11 17:59:05 UTC
Reproduced issue:

[root@netqe11 yum.repos.d]# rpm -q openvswitch
openvswitch-2.9.0-56.el7fdp.x86_64

systemctl start openvswitch

# add bridge and flows

ovs-vsctl --if-exists del-br ovsbr0
ovs-vsctl add-br ovsbr0

ovs-ofctl del-flows ovsbr0 
ovs-ofctl add-flow ovsbr0 'in_port=10 actions=output:20'
ovs-ofctl add-flow ovsbr0 'in_port=20 actions=output:10'
ovs-ofctl add-flow ovsbr0 'actions=drop'

ovs-ofctl dump-flows ovsbr0

[root@netqe11 yum.repos.d]# ovs-ofctl dump-flows ovsbr0
 cookie=0x0, duration=28.241s, table=0, n_packets=0, n_bytes=0, in_port=10 actions=output:20
 cookie=0x0, duration=28.238s, table=0, n_packets=0, n_bytes=0, in_port=20 actions=output:10
 cookie=0x0, duration=28.235s, table=0, n_packets=0, n_bytes=0, actions=drop
 
 systemctl reload openvswitch
 
 # observe issue where NORMAL flow rule is added after systemctl reload openvswitch
 
 [root@netqe11 yum.repos.d]# ovs-ofctl dump-flows ovsbr0
 cookie=0x0, duration=5.715s, table=0, n_packets=0, n_bytes=0, in_port=10 actions=output:20
 cookie=0x0, duration=5.715s, table=0, n_packets=0, n_bytes=0, in_port=20 actions=output:10
 cookie=0x0, duration=5.731s, table=0, n_packets=0, n_bytes=0, priority=0 actions=NORMAL
 cookie=0x0, duration=5.715s, table=0, n_packets=0, n_bytes=0, actions=drop

# Verified fix using openvswitch-2.9.0-70.el7fdp.x86_64

systemctl start openvswitch

# add bridge and flows

ovs-vsctl --if-exists del-br ovsbr0
ovs-vsctl add-br ovsbr0

ovs-ofctl del-flows ovsbr0 
ovs-ofctl add-flow ovsbr0 'in_port=10 actions=output:20'
ovs-ofctl add-flow ovsbr0 'in_port=20 actions=output:10'
ovs-ofctl add-flow ovsbr0 'actions=drop'

[root@netqe9 home]# ovs-ofctl dump-flows ovsbr0
 cookie=0x0, duration=0.044s, table=0, n_packets=0, n_bytes=0, in_port=10 actions=output:20
 cookie=0x0, duration=0.029s, table=0, n_packets=0, n_bytes=0, in_port=20 actions=output:10
 cookie=0x0, duration=0.014s, table=0, n_packets=0, n_bytes=0, actions=drop

[root@netqe9 home]# systemctl reload openvswitch

# NORMAL flow rule is no longer added after systemctl reload openvswitch

[root@netqe9 home]# ovs-ofctl dump-flows ovsbr0
 cookie=0x0, duration=2.896s, table=0, n_packets=0, n_bytes=0, in_port=10 actions=output:20
 cookie=0x0, duration=2.896s, table=0, n_packets=0, n_bytes=0, in_port=20 actions=output:10
 cookie=0x0, duration=2.896s, table=0, n_packets=0, n_bytes=0, actions=drop

Ran of_rules regression: https://beaker.engineering.redhat.com/jobs/2882488

Marking as Verified.

Comment 7 errata-xmlrpc 2018-11-05 14:59:03 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2018:3500


Note You need to log in before you can comment on or make changes to this bug.