From 23a3123832b8a9718ac50010c261b76749a06c81 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 25 Nov 2015 08:15:04 -0800 Subject: [PATCH 1/1] ofproto: Correctly reject duplicate bucket ID for OFPGC_INSERT_BUCKET. Otherwise duplicate bucket IDs cause linked list loops and other nastiness because the ofputil_bucket_find() in the OFPG15_BUCKET_LAST case later in copy_buckets_for_insert_bucket() will find the new bucket instead of the old one and the list_splice() call becomes nonsensical. Reported-by: Ray Li Reported-at: http://openvswitch.org/pipermail/discuss/2015-September/018731.html Signed-off-by: Ben Pfaff Reviewed-by: Simon Horman --- AUTHORS | 1 + ofproto/ofproto.c | 2 +- tests/ofproto.at | 8 ++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index a083dde45..72a7f46b5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -347,6 +347,7 @@ Pratap Reddy preddy@nicira.com Ralf Heiringhoff ralf@frosty-geek.net Ram Jothikumar rjothikumar@nicira.com Ramana Reddy gtvrreddy@gmail.com +Ray Li rayli1107@gmail.com RishiRaj Maulick rishi.raj2509@gmail.com Rob Sherwood rob.sherwood@bigswitch.com Robert Strickler anomalyst@gmail.com diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index 28b2c0350..e41ea3948 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -6380,7 +6380,7 @@ copy_buckets_for_insert_bucket(const struct ofgroup *ofgroup, ofputil_bucket_clone_list(&new_ofgroup->buckets, &ofgroup->buckets, NULL); - if (ofputil_bucket_check_duplicate_id(&ofgroup->buckets)) { + if (ofputil_bucket_check_duplicate_id(&new_ofgroup->buckets)) { VLOG_INFO_RL(&rl, "Duplicate bucket id"); return OFPERR_OFPGMFC_BUCKET_EXISTS; } diff --git a/tests/ofproto.at b/tests/ofproto.at index 5c40c7d8f..729121a7f 100644 --- a/tests/ofproto.at +++ b/tests/ofproto.at @@ -441,6 +441,14 @@ AT_CHECK([STRIP_XIDS stdout], [0], [dnl OFPST_GROUP_DESC reply (OF1.5): group_id=1234,type=all,bucket=bucket_id:0,actions=output:0,bucket=bucket_id:1,actions=output:1,bucket=bucket_id:10,actions=output:10,bucket=bucket_id:11,actions=output:11,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15 ]) + +# Verify that duplicate bucket IDs are rejected. +AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=last,bucket=bucket_id:14,actions=output:14,bucket=bucket_id:15,actions=output:15], [1], [], [stderr]) +AT_CHECK([STRIP_XIDS stderr | sed '/truncated/,$d'], [0], [dnl +OFPT_ERROR (OF1.5): OFPGMFC_BUCKET_EXISTS +OFPT_GROUP_MOD (OF1.5): +]) + AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn insert-buckets br0 group_id=1234,command_bucket_id=15]) AT_CHECK([ovs-ofctl -O OpenFlow15 -vwarn dump-groups br0], [0], [stdout]) AT_CHECK([STRIP_XIDS stdout], [0], [dnl -- 2.20.1