summaryrefslogtreecommitdiff
path: root/ofproto
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2016-12-06 13:48:50 -0800
committerBen Pfaff <blp@ovn.org>2016-12-21 13:25:32 -0800
commit82a3160eb996eea2fb689845148becb7bcd5c3df (patch)
treecdbd9bb9a82d227aaf5a9ce180430e749278e9de /ofproto
parentfeb38b6d35dd2b9e51c985b13449591ffc372672 (diff)
downloadopenvswitch-82a3160eb996eea2fb689845148becb7bcd5c3df.tar.gz
ofproto: Update access rules for 'flow_cookie'.
The 'flow_cookie' member of struct rule is read during flow translation without holding a mutex, breaking the documented OVS_GUARDED access rule. However, the flow_cookie member is actually never modified after a rule is initialized, so this commit changes the access rules to reflect that. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Jarno Rajahalme <jarno@ovn.org> Acked-by: Lance Richardson <lrichard@redhat.com>
Diffstat (limited to 'ofproto')
-rw-r--r--ofproto/ofproto-provider.h4
-rw-r--r--ofproto/ofproto.c5
2 files changed, 5 insertions, 4 deletions
diff --git a/ofproto/ofproto-provider.h b/ofproto/ofproto-provider.h
index c515779d7..3739ebce7 100644
--- a/ofproto/ofproto-provider.h
+++ b/ofproto/ofproto-provider.h
@@ -365,8 +365,8 @@ struct rule {
struct ovs_refcount ref_count;
/* A "flow cookie" is the OpenFlow name for a 64-bit value associated with
- * a flow.. */
- ovs_be64 flow_cookie OVS_GUARDED;
+ * a flow. */
+ const ovs_be64 flow_cookie; /* Immutable once rule is constructed. */
struct hindex_node cookie_node OVS_GUARDED_BY(ofproto_mutex);
enum ofputil_flow_mod_flags flags OVS_GUARDED;
diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c
index 4f43c45e2..58295a1ff 100644
--- a/ofproto/ofproto.c
+++ b/ofproto/ofproto.c
@@ -4859,7 +4859,7 @@ ofproto_rule_create(struct ofproto *ofproto, struct cls_rule *cr,
ovs_mutex_init(&rule->mutex);
ovs_mutex_lock(&rule->mutex);
- rule->flow_cookie = new_cookie;
+ *CONST_CAST(ovs_be64 *, &rule->flow_cookie) = new_cookie;
rule->created = rule->modified = time_msec();
rule->idle_timeout = idle_timeout;
rule->hard_timeout = hard_timeout;
@@ -5098,7 +5098,8 @@ replace_rule_start(struct ofproto *ofproto, struct ofproto_flow_mod *ofm,
new_rule->created = old_rule->created;
}
if (!change_cookie) {
- new_rule->flow_cookie = old_rule->flow_cookie;
+ *CONST_CAST(ovs_be64 *, &new_rule->flow_cookie)
+ = old_rule->flow_cookie;
}
ovs_mutex_unlock(&old_rule->mutex);
ovs_mutex_unlock(&new_rule->mutex);