Skip to content

Commit

Permalink
util/interval-tree: Use qatomic_read for left/right while searching
Browse files Browse the repository at this point in the history
Fixes a race condition (generally without optimization) in which
the subtree is re-read after the protecting if condition.

Cc: qemu-stable@nongnu.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Jul 31, 2023
1 parent 234320c commit 055b86e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions util/interval-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -745,8 +745,9 @@ static IntervalTreeNode *interval_tree_subtree_search(IntervalTreeNode *node,
* Loop invariant: start <= node->subtree_last
* (Cond2 is satisfied by one of the subtree nodes)
*/
if (node->rb.rb_left) {
IntervalTreeNode *left = rb_to_itree(node->rb.rb_left);
RBNode *tmp = qatomic_read(&node->rb.rb_left);
if (tmp) {
IntervalTreeNode *left = rb_to_itree(tmp);

if (start <= left->subtree_last) {
/*
Expand All @@ -765,8 +766,9 @@ static IntervalTreeNode *interval_tree_subtree_search(IntervalTreeNode *node,
if (start <= node->last) { /* Cond2 */
return node; /* node is leftmost match */
}
if (node->rb.rb_right) {
node = rb_to_itree(node->rb.rb_right);
tmp = qatomic_read(&node->rb.rb_right);
if (tmp) {
node = rb_to_itree(tmp);
if (start <= node->subtree_last) {
continue;
}
Expand Down Expand Up @@ -814,8 +816,9 @@ IntervalTreeNode *interval_tree_iter_first(IntervalTreeRoot *root,
IntervalTreeNode *interval_tree_iter_next(IntervalTreeNode *node,
uint64_t start, uint64_t last)
{
RBNode *rb = node->rb.rb_right, *prev;
RBNode *rb, *prev;

rb = qatomic_read(&node->rb.rb_right);
while (true) {
/*
* Loop invariants:
Expand All @@ -840,7 +843,7 @@ IntervalTreeNode *interval_tree_iter_next(IntervalTreeNode *node,
}
prev = &node->rb;
node = rb_to_itree(rb);
rb = node->rb.rb_right;
rb = qatomic_read(&node->rb.rb_right);
} while (prev == rb);

/* Check if the node intersects [start;last] */
Expand Down

0 comments on commit 055b86e

Please sign in to comment.