Re: PANIC in heap_delete during ALTER TABLE

From: Jeff Davis <pgsql(at)j-davis(dot)com>
To: Robins Tharakan <tharakan(at)gmail(dot)com>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: PANIC in heap_delete during ALTER TABLE
Date: 2022-09-07 21:53:17
Message-ID: c0c149af17b358883e95a49984a30360b65f8118.camel@j-davis.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Mon, 2022-08-22 at 13:32 +0930, Robins Tharakan wrote:
> Hi,
>
> During ALTER TABLE, heap_delete() can PANIC with the error
> "PANIC:  wrong buffer passed to visibilitymap_clear".

Thank you for the detailed report!

> Given below are backtraces on master, REL_15_STABLE and
> REL_13_STABLE.
> There was a similar discussion last year [1], although that was about
> heap_update() and was soon fixed [2]; thus reporting this as a
> separate
> thread.

Yes, it looks like it's essentially the same issue.

heap_delete() does recheck after locking the buffer correctly at the
top, but there are other paths below which unlock/relock the buffer
without checking to see if the VM pin should be acquired.

Repro on master:

---------------------------------------
GDB attached to session 2:
break vacuumlazy.c:1243
continue

Session 1:
create table foo(i int) with (autovacuum_enabled=false);
create index foo_idx on foo (i);
insert into foo select generate_series(1,100);
delete from foo where i = 49;

Session 2:
vacuum foo; -- hits breakpoint

Session 3:
begin;
select i from foo where i = 50 for update;

Session 1:
delete from foo where i = 50;

GDB:
continue

Session 3:
commmit;

---------------------------------------

I attached a hasty patch that seems to fix it. I'll need to look more
closely later, and I'll also need some review because there have been
multiple bugs in this area.

Regards,
Jeff Davis

Attachment Content-Type Size
v1-0001-Fix-race-condition-where-heap_delete-fails-to-pin-VM.patch text/x-patch 3.0 KB

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Peter Geoghegan 2022-09-07 22:44:41 Re: PANIC in heap_delete during ALTER TABLE
Previous Message Константин Малашин 2022-09-07 10:38:24 Re: BUG #17603: Problem running the post-install step. Installation may not complete correctly.