summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@ovn.org>2022-10-10 15:11:57 +0200
committerIlya Maximets <i.maximets@ovn.org>2022-10-11 21:11:09 +0200
commitdc54104526030123fc8390e6106782c6a3aca2f3 (patch)
tree58596514537e38232275256c168bfbe62814e3c0 /.github/workflows
parentccd26e79e5d24dd19e59d53337b51ce167966530 (diff)
downloadopenvswitch-dc54104526030123fc8390e6106782c6a3aca2f3.tar.gz
ovsdb: Fix race for datum JSON string reference counter.
Compaction thread supposed to not change anything in the database it is working on, since the same data can be accessed by the main thread at the same time. However, while converting database rows to JSON objects, strings in the datum will be cloned using json_clone(), which is a shallow copy, and that will change the reference counter for the JSON string object. If both the main thread and the compaction thread will clone/destroy the same object at the same time we may end up with a broken reference counter leading to a memory leak or use-after free. Adding a new argument to the database to JSON conversion to prevent use of shallow copies from the compaction thread. This way all the database operations will be truly read-only avoiding the race. 'ovsdb_atom_to_json' and 'ovsdb_datum_to_json' are more widely used, so creating separate variant for these functions instead of adding a new argument, to avoid changing a lot of existing code. Other solution might be to use atomic reference counters, but that will require API/ABI break, because counter is exposed in public headers. Also, we can not easily expose atomic functions, so we'll need to un-inline reference counting with the associated performance cost. Fixes: 3cd2cbd684e0 ("ovsdb: Prepare snapshot JSON in a separate thread.") Reported-at: https://bugzilla.redhat.com/2133431 Acked-by: Dumitru Ceara <dceara@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to '.github/workflows')
0 files changed, 0 insertions, 0 deletions