client: fix race condition in Echo() function#458
Open
booxter wants to merge 1 commit intoovn-kubernetes:mainfrom
Open
client: fix race condition in Echo() function#458booxter wants to merge 1 commit intoovn-kubernetes:mainfrom
booxter wants to merge 1 commit intoovn-kubernetes:mainfrom
Conversation
905b89f to
7764aa5
Compare
The Echo() function had a race condition where it would fall through
and access the reply variable after CallWithContext() returned an error
(other than ErrShutdown). This caused a data race between the calling
goroutine reading reply in reflect.DeepEqual() and the RPC readLoop
goroutine potentially still writing to it during JSON unmarshaling.
The fix adds the missing error return, matching the pattern used in
all other RPC call sites (transact, getSchema, listDbs, etc).
Race detector output before fix:
==================
WARNING: DATA RACE
Write at reflect.Value.grow() during json.Unmarshal()
github.com/cenkalti/rpc2.(*Client).readLoop()
Previous read at:
github.com/ovn-kubernetes/libovsdb/client.(*ovsdbClient).Echo()
if !reflect.DeepEqual(args, reply) { // Line 1095
==================
The race is reliably reproduced by the new TestEchoRace test which
runs concurrent Echo() calls while triggering disconnects/reconnects.
Signed-off-by: Ihar Hrachyshka <ihrachyshka@nvidia.com>
Assisted-by: opus (claude-opus-4-5-20251101)
7764aa5 to
6c8c8d4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Echo() function had a race condition where it would fall through
and access the reply variable after CallWithContext() returned an error
(other than ErrShutdown). This caused a data race between the calling
goroutine reading reply in reflect.DeepEqual() and the RPC readLoop
goroutine potentially still writing to it during JSON unmarshaling.
The fix adds the missing error return, matching the pattern used in
all other RPC call sites (transact, getSchema, listDbs, etc).
Race detector output before fix:
The race is reliably reproduced by the new TestEchoRace test which
runs concurrent Echo() calls while triggering disconnects/reconnects.