Re: Fix for segfault in logical replication on master

From: Mark Dilger <mark(dot)dilger(at)enterprisedb(dot)com>
To: osumi(dot)takamichi(at)fujitsu(dot)com
Cc: "akapila(at)postgresql(dot)org" <akapila(at)postgresql(dot)org>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Fix for segfault in logical replication on master
Date: 2021-06-17 13:19:58
Message-ID: FCF0D585-0B9E-458E-82FC-11AAB0BFD1A0@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> On Jun 17, 2021, at 3:39 AM, osumi(dot)takamichi(at)fujitsu(dot)com wrote:
>
> For the 1st check, isn't it better to use RelationIsValid() ?

Yes, you are right.

> Additionally, In what kind of actual scenario, did you think that
> we come to the part to "log a complaint" ?

The way that RelationGetIndexList assigns rd_replidindex to the Relation seems to lack sufficient locking. After scanning pg_index to find indexes associated with the relation, pg_index is closed and the access share lock released. I couldn't prove to myself that by the time we use the rd_replidindex field thus computed that it was safe to assume that the Oid stored there still refers to an index. The most likely problem would be that the index has since been dropped in a concurrent transaction, but it also seems just barely possible that the Oid has been reused and refers to something else, a table perhaps. The check that I added is not completely bulletproof, because the new object reusing that Oid could be a different index, and we'd be none the wiser. Do you think we should do something about that? I felt the checks I put in place were very cheap and would work in almost all cases. In any event, they seemed better than no checks, which is what we have now.


Mark Dilger
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2021-06-17 13:34:09 Re: Add version macro to libpq-fe.h
Previous Message Dilip Kumar 2021-06-17 13:04:04 Re: [Proposal] Fully WAL logged CREATE DATABASE - No Checkpoints