Re: [ovs-dev] [PATCH 1/2] ovsdb: Fix use after free on schema conversion error.

2023-12-16 Thread Frode Nordahl
On Fri, Dec 15, 2023 at 7:24 PM Ilya Maximets wrote: > > On 12/13/23 23:19, Frode Nordahl wrote: > > In the event a schema conversion aborts, the cleanup code in > > ovsdb_convert() prior to this patch will remove the in-memory > > copy of the new database prior to aborting any on-going > > transa

Re: [ovs-dev] [PATCH 1/2] ovsdb: Fix use after free on schema conversion error.

2023-12-15 Thread Ilya Maximets
On 12/13/23 23:19, Frode Nordahl wrote: > In the event a schema conversion aborts, the cleanup code in > ovsdb_convert() prior to this patch will remove the in-memory > copy of the new database prior to aborting any on-going > transactions in that database, consequently leading to a use after > fre

[ovs-dev] [PATCH 1/2] ovsdb: Fix use after free on schema conversion error.

2023-12-13 Thread Frode Nordahl
In the event a schema conversion aborts, the cleanup code in ovsdb_convert() prior to this patch will remove the in-memory copy of the new database prior to aborting any on-going transactions in that database, consequently leading to a use after free and potential crash. Fixes: 1b1d2e6daa56 ("ovsd