pgsql: pageinspect: Fix handling of all-zero pages - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: pageinspect: Fix handling of all-zero pages
Date
Msg-id E1neshC-000RPb-RM@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
pageinspect: Fix handling of all-zero pages

Getting from get_raw_page() an all-zero page is considered as a valid
case by the buffer manager and it can happen for example when finding a
corrupted page with zero_damaged_pages enabled (using zero_damaged_pages
to look at corrupted pages happens), or after a crash when a relation
file is extended before any WAL for its new data is generated (before a
vacuum or autovacuum job comes in to do some cleanup).

However, all the functions of pageinspect, as of the index AMs (except
hash that has its own idea of new pages), heap, the FSM or the page
header have never worked with all-zero pages, causing various crashes
when going through the page internals.

This commit changes all the pageinspect functions to be compliant with
all-zero pages, where the choice is made to return NULL or no rows for
SRFs when finding a new page.  get_raw_page() still works the same way,
returning a batch of zeros in the bytea of the page retrieved.  A hard
error could be used but NULL, while more invasive, is useful when
scanning relation files in full to get a batch of results for a single
relation in one query.  Tests are added for all the code paths
impacted.

Reported-by: Daria Lepikhova
Author: Michael Paquier
Discussion: https://postgr.es/m/561e187b-3549-c8d5-03f5-525c14e65bd0@postgrespro.ru
Backpatch-through: 10

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/2275d044d0849251c5e0fa10ee16c73124731f5c

Modified Files
--------------
contrib/pageinspect/brinfuncs.c        | 22 ++++++++++++++++++++++
contrib/pageinspect/btreefuncs.c       |  6 ++++++
contrib/pageinspect/expected/brin.out  | 25 +++++++++++++++++++++++++
contrib/pageinspect/expected/btree.out |  6 ++++++
contrib/pageinspect/expected/gin.out   | 14 ++++++++++++++
contrib/pageinspect/expected/hash.out  | 12 ++++++++++++
contrib/pageinspect/expected/page.out  | 20 ++++++++++++++++++++
contrib/pageinspect/fsmfuncs.c         |  4 ++++
contrib/pageinspect/ginfuncs.c         | 12 ++++++++++++
contrib/pageinspect/rawpage.c          |  3 +++
contrib/pageinspect/sql/brin.sql       |  7 +++++++
contrib/pageinspect/sql/btree.sql      |  4 ++++
contrib/pageinspect/sql/gin.sql        |  6 ++++++
contrib/pageinspect/sql/hash.sql       |  7 +++++++
contrib/pageinspect/sql/page.sql       |  6 ++++++
15 files changed, 154 insertions(+)


pgsql-committers by date:

Previous
From: David Rowley
Date:
Subject: pgsql: Add missing spaces after single-line comments
Next
From: Andrew Dunstan
Date:
Subject: pgsql: Fix transformJsonBehavior