Обсуждение: [PATCH] Compressed TOAST data corruption with REPACK CONCURRENTLY
Hi hackers,
restore_tuple() in repack.c uses SET_VARSIZE() to reconstruct the varlena header when
reading back external attributes from the spill file. In this process, looks like the flag
SET_VARSIZE_COMPRESSED is silently lost. Because of this, when REPACK CONCURRENTLY
run any concurrently updated column whose value was TOAST-compressed ends up with raw
compressed bytes behind an "uncompressed" header returning garbled data on subsequent reads.
It appears that existing tests are using random chars which are uncompressable.
Please find the attached 0001-Fix-restore_tuple-losing-varlena-compression-flag.patch to fix this.
Additionally I updated the existing repack_toast test to include the scenario I was talking about.
Thanks,
Satya
Вложения
> On Apr 16, 2026, at 14:13, SATYANARAYANA NARLAPURAM <satyanarlapuram@gmail.com> wrote: > > Hi hackers, > > restore_tuple() in repack.c uses SET_VARSIZE() to reconstruct the varlena header when > reading back external attributes from the spill file. In this process, looks like the flag > SET_VARSIZE_COMPRESSED is silently lost. Because of this, when REPACK CONCURRENTLY > run any concurrently updated column whose value was TOAST-compressed ends up with raw > compressed bytes behind an "uncompressed" header returning garbled data on subsequent reads. > It appears that existing tests are using random chars which are uncompressable. > > Please find the attached 0001-Fix-restore_tuple-losing-varlena-compression-flag.patch to fix this. > Additionally I updated the existing repack_toast test to include the scenario I was talking about. > > Thanks, > Satya > <0001-Fix-restore_tuple-losing-varlena-compression-flag.patch><0002-Add-compressed-TOAST-test-to-repack_toast.patch> I managed to reproduce the bug manually, and confirmed your fix to work for me. The repro is not simple, so I won’t put ithere. If somebody is interested in it, then I can provide. I didn’t review the test in 0002, I guess we don’t have to add the test because once fixed, the bug won’t be there anymore,thus it’s not worthy extending the test time. Best regards, -- Chao Li (Evan) HighGo Software Co., Ltd. https://www.highgo.com/
SATYANARAYANA NARLAPURAM <satyanarlapuram@gmail.com> wrote: > restore_tuple() in repack.c uses SET_VARSIZE() to reconstruct the varlena header when > reading back external attributes from the spill file. In this process, looks like the flag > SET_VARSIZE_COMPRESSED is silently lost. Because of this, when REPACK CONCURRENTLY > run any concurrently updated column whose value was TOAST-compressed ends up with raw > compressed bytes behind an "uncompressed" header returning garbled data on subsequent reads. > It appears that existing tests are using random chars which are uncompressable. > > Please find the attached 0001-Fix-restore_tuple-losing-varlena-compression-flag.patch to fix this. > Additionally I updated the existing repack_toast test to include the scenario I was talking about. Good catch, thanks! I'd slightly prefer to fix it w/o checking the varlena type, as attached. However, your test fails to reproduce the issue here, so I'm not able to verify the fix. I'll take a closer look early next week. -- Antonin Houska Web: https://www.cybertec-postgresql.com
Вложения
Re: [PATCH] Compressed TOAST data corruption with REPACK CONCURRENTLY
От
SATYANARAYANA NARLAPURAM
Дата:
Hi
On Fri, Apr 17, 2026 at 8:45 AM Antonin Houska <ah@cybertec.at> wrote:
SATYANARAYANA NARLAPURAM <satyanarlapuram@gmail.com> wrote:
> restore_tuple() in repack.c uses SET_VARSIZE() to reconstruct the varlena header when
> reading back external attributes from the spill file. In this process, looks like the flag
> SET_VARSIZE_COMPRESSED is silently lost. Because of this, when REPACK CONCURRENTLY
> run any concurrently updated column whose value was TOAST-compressed ends up with raw
> compressed bytes behind an "uncompressed" header returning garbled data on subsequent reads.
> It appears that existing tests are using random chars which are uncompressable.
>
> Please find the attached 0001-Fix-restore_tuple-losing-varlena-compression-flag.patch to fix this.
> Additionally I updated the existing repack_toast test to include the scenario I was talking about.
Good catch, thanks!
I'd slightly prefer to fix it w/o checking the varlena type, as
attached. However, your test fails to reproduce the issue here, so I'm not
able to verify the fix. I'll take a closer look early next week.
I started with that but tried to follow the existing code pattern. This LGTM.
Please add a comment as well.
--
Antonin Houska
Web: https://www.cybertec-postgresql.com
On Fri, Apr 17, 2026 at 10:40:39AM -0700, SATYANARAYANA NARLAPURAM wrote: > I started with that but tried to follow the existing code pattern. This > LGTM. > Please add a comment as well. Hmm. I was reading restore_tuple(), and could it make sense to expand a bit more the tests so as more types of varlena pointers could be checked in this routine? I am taking about MAIN, EXTENDED and EXTERNAL, so as we could check more patterns with in-line [non-]compressed, and external [non-]compressed, counting for the four different possible patterns that could lead to repacked data. See for example strings.sql for such tests, that could be used as base inspiration. -- Michael
Вложения
Michael Paquier <michael@paquier.xyz> wrote: > On Fri, Apr 17, 2026 at 10:40:39AM -0700, SATYANARAYANA NARLAPURAM wrote: > > I started with that but tried to follow the existing code pattern. This > > LGTM. > > Please add a comment as well. > > Hmm. I was reading restore_tuple(), and could it make sense to expand > a bit more the tests so as more types of varlena pointers could be > checked in this routine? I am taking about MAIN, EXTENDED and > EXTERNAL, so as we could check more patterns with in-line > [non-]compressed, and external [non-]compressed, counting for the four > different possible patterns that could lead to repacked data. See for > example strings.sql for such tests, that could be used as base > inspiration. ok, this is a patch to enhance the tests. It also simplifies gen_compressible() a bit and adjusts it so it is (hopefully) more reliable in generating compressible values. Now it can be used to reproduce the fix [1]. [1] https://www.postgresql.org/message-id/52301.1776440752%40localhost -- Antonin Houska Web: https://www.cybertec-postgresql.com
Вложения
Hi Antonin, On 2026-04-20, Antonin Houska wrote: > ok, this is a patch to enhance the tests. It also simplifies > gen_compressible() a bit and adjusts it so it is (hopefully) more reliable in > generating compressible values. Now it can be used to reproduce the fix [1]. > > [1] https://www.postgresql.org/message-id/52301.1776440752%40localhost Thanks, I think it looks good, but unfortunately I don't see any problems when running this test without your fix (I wasassuming that the test would fail). I didn't immediately understand why. Do you see any failures? Regards, -- Álvaro Herrera
Álvaro Herrera <alvherre@kurilemu.de> wrote: > > ok, this is a patch to enhance the tests. It also simplifies > > gen_compressible() a bit and adjusts it so it is (hopefully) more reliable in > > generating compressible values. Now it can be used to reproduce the fix [1]. > > > > [1] https://www.postgresql.org/message-id/52301.1776440752%40localhost > > Thanks, I think it looks good, but unfortunately I don't see any problems > when running this test without your fix (I was assuming that the test would > fail). I didn't immediately understand why. Do you see any failures? The enhanced tests should reproduce it (please let me know if they dont): https://www.postgresql.org/message-id/44015.1776685220%40localhost -- Antonin Houska Web: https://www.cybertec-postgresql.com
Antonin Houska <ah@cybertec.at> wrote: > Álvaro Herrera <alvherre@kurilemu.de> wrote: > > > > ok, this is a patch to enhance the tests. It also simplifies > > > gen_compressible() a bit and adjusts it so it is (hopefully) more reliable in > > > generating compressible values. Now it can be used to reproduce the fix [1]. > > > > > > [1] https://www.postgresql.org/message-id/52301.1776440752%40localhost > > > > Thanks, I think it looks good, but unfortunately I don't see any problems > > when running this test without your fix (I was assuming that the test would > > fail). I didn't immediately understand why. Do you see any failures? > > The enhanced tests should reproduce it (please let me know if they dont): > > https://www.postgresql.org/message-id/44015.1776685220%40localhost I see you actually refer to the correct tests. I see no failure now as well. I'll try to make the tests more stable. Sorry for the confusion. -- Antonin Houska Web: https://www.cybertec-postgresql.com