PostgreSQL Source Code  git master
verify_nbtree.c File Reference
#include "postgres.h"
#include "access/heaptoast.h"
#include "access/htup_details.h"
#include "access/nbtree.h"
#include "access/table.h"
#include "access/tableam.h"
#include "access/transam.h"
#include "access/xact.h"
#include "catalog/index.h"
#include "catalog/pg_am.h"
#include "catalog/pg_opfamily_d.h"
#include "commands/tablecmds.h"
#include "common/pg_prng.h"
#include "lib/bloomfilter.h"
#include "miscadmin.h"
#include "storage/lmgr.h"
#include "storage/smgr.h"
#include "utils/guc.h"
#include "utils/memutils.h"
#include "utils/snapmgr.h"
Include dependency graph for verify_nbtree.c:

Go to the source code of this file.

Data Structures

struct  BtreeCheckState
 
struct  BtreeLevel
 
struct  BtreeLastVisibleEntry
 

Macros

#define InvalidBtreeLevel   ((uint32) InvalidBlockNumber)
 
#define BTreeTupleGetNKeyAtts(itup, rel)    Min(IndexRelationGetNumberOfKeyAttributes(rel), BTreeTupleGetNAtts(itup, rel))
 

Typedefs

typedef struct BtreeCheckState BtreeCheckState
 
typedef struct BtreeLevel BtreeLevel
 
typedef struct BtreeLastVisibleEntry BtreeLastVisibleEntry
 

Functions

 PG_FUNCTION_INFO_V1 (bt_index_check)
 
 PG_FUNCTION_INFO_V1 (bt_index_parent_check)
 
static void bt_index_check_internal (Oid indrelid, bool parentcheck, bool heapallindexed, bool rootdescend, bool checkunique)
 
static void btree_index_checkable (Relation rel)
 
static bool btree_index_mainfork_expected (Relation rel)
 
static void bt_check_every_level (Relation rel, Relation heaprel, bool heapkeyspace, bool readonly, bool heapallindexed, bool rootdescend, bool checkunique)
 
static BtreeLevel bt_check_level_from_leftmost (BtreeCheckState *state, BtreeLevel level)
 
static bool bt_leftmost_ignoring_half_dead (BtreeCheckState *state, BlockNumber start, BTPageOpaque start_opaque)
 
static void bt_recheck_sibling_links (BtreeCheckState *state, BlockNumber btpo_prev_from_target, BlockNumber leftcurrent)
 
static bool heap_entry_is_visible (BtreeCheckState *state, ItemPointer tid)
 
static void bt_report_duplicate (BtreeCheckState *state, BtreeLastVisibleEntry *lVis, ItemPointer nexttid, BlockNumber nblock, OffsetNumber noffset, int nposting)
 
static void bt_entry_unique_check (BtreeCheckState *state, IndexTuple itup, BlockNumber targetblock, OffsetNumber offset, BtreeLastVisibleEntry *lVis)
 
static void bt_target_page_check (BtreeCheckState *state)
 
static BTScanInsert bt_right_page_check_scankey (BtreeCheckState *state, OffsetNumber *rightfirstoffset)
 
static void bt_child_check (BtreeCheckState *state, BTScanInsert targetkey, OffsetNumber downlinkoffnum)
 
static void bt_child_highkey_check (BtreeCheckState *state, OffsetNumber target_downlinkoffnum, Page loaded_child, uint32 target_level)
 
static void bt_downlink_missing_check (BtreeCheckState *state, bool rightsplit, BlockNumber blkno, Page page)
 
static void bt_tuple_present_callback (Relation index, ItemPointer tid, Datum *values, bool *isnull, bool tupleIsAlive, void *checkstate)
 
static IndexTuple bt_normalize_tuple (BtreeCheckState *state, IndexTuple itup)
 
static IndexTuple bt_posting_plain_tuple (IndexTuple itup, int n)
 
static bool bt_rootdescend (BtreeCheckState *state, IndexTuple itup)
 
static bool offset_is_negative_infinity (BTPageOpaque opaque, OffsetNumber offset)
 
static bool invariant_l_offset (BtreeCheckState *state, BTScanInsert key, OffsetNumber upperbound)
 
static bool invariant_leq_offset (BtreeCheckState *state, BTScanInsert key, OffsetNumber upperbound)
 
static bool invariant_g_offset (BtreeCheckState *state, BTScanInsert key, OffsetNumber lowerbound)
 
static bool invariant_l_nontarget_offset (BtreeCheckState *state, BTScanInsert key, BlockNumber nontargetblock, Page nontarget, OffsetNumber upperbound)
 
static Page palloc_btree_page (BtreeCheckState *state, BlockNumber blocknum)
 
static BTScanInsert bt_mkscankey_pivotsearch (Relation rel, IndexTuple itup)
 
static ItemId PageGetItemIdCareful (BtreeCheckState *state, BlockNumber block, Page page, OffsetNumber offset)
 
static ItemPointer BTreeTupleGetHeapTIDCareful (BtreeCheckState *state, IndexTuple itup, bool nonpivot)
 
static ItemPointer BTreeTupleGetPointsToTID (IndexTuple itup)
 
Datum bt_index_check (PG_FUNCTION_ARGS)
 
Datum bt_index_parent_check (PG_FUNCTION_ARGS)
 
static bool bt_pivot_tuple_identical (bool heapkeyspace, IndexTuple itup1, IndexTuple itup2)
 

Variables

 PG_MODULE_MAGIC
 

Macro Definition Documentation

◆ BTreeTupleGetNKeyAtts

#define BTreeTupleGetNKeyAtts (   itup,
  rel 
)     Min(IndexRelationGetNumberOfKeyAttributes(rel), BTreeTupleGetNAtts(itup, rel))

Definition at line 54 of file verify_nbtree.c.

◆ InvalidBtreeLevel

#define InvalidBtreeLevel   ((uint32) InvalidBlockNumber)

Definition at line 53 of file verify_nbtree.c.

Typedef Documentation

◆ BtreeCheckState

◆ BtreeLastVisibleEntry

◆ BtreeLevel

typedef struct BtreeLevel BtreeLevel

Function Documentation

◆ bt_check_every_level()

static void bt_check_every_level ( Relation  rel,
Relation  heaprel,
bool  heapkeyspace,
bool  readonly,
bool  heapallindexed,
bool  rootdescend,
bool  checkunique 
)
static

Definition at line 502 of file verify_nbtree.c.

505 {
507  Page metapage;
508  BTMetaPageData *metad;
509  uint32 previouslevel;
510  BtreeLevel current;
511  Snapshot snapshot = SnapshotAny;
512 
513  if (!readonly)
514  elog(DEBUG1, "verifying consistency of tree structure for index \"%s\"",
516  else
517  elog(DEBUG1, "verifying consistency of tree structure for index \"%s\" with cross-level checks",
519 
520  /*
521  * This assertion matches the one in index_getnext_tid(). See page
522  * recycling/"visible to everyone" notes in nbtree README.
523  */
525 
526  /*
527  * Initialize state for entire verification operation
528  */
529  state = palloc0(sizeof(BtreeCheckState));
530  state->rel = rel;
531  state->heaprel = heaprel;
532  state->heapkeyspace = heapkeyspace;
533  state->readonly = readonly;
534  state->heapallindexed = heapallindexed;
535  state->rootdescend = rootdescend;
536  state->checkunique = checkunique;
537  state->snapshot = InvalidSnapshot;
538 
539  if (state->heapallindexed)
540  {
541  int64 total_pages;
542  int64 total_elems;
543  uint64 seed;
544 
545  /*
546  * Size Bloom filter based on estimated number of tuples in index,
547  * while conservatively assuming that each block must contain at least
548  * MaxTIDsPerBTreePage / 3 "plain" tuples -- see
549  * bt_posting_plain_tuple() for definition, and details of how posting
550  * list tuples are handled.
551  */
552  total_pages = RelationGetNumberOfBlocks(rel);
553  total_elems = Max(total_pages * (MaxTIDsPerBTreePage / 3),
554  (int64) state->rel->rd_rel->reltuples);
555  /* Generate a random seed to avoid repetition */
557  /* Create Bloom filter to fingerprint index */
558  state->filter = bloom_create(total_elems, maintenance_work_mem, seed);
559  state->heaptuplespresent = 0;
560 
561  /*
562  * Register our own snapshot in !readonly case, rather than asking
563  * table_index_build_scan() to do this for us later. This needs to
564  * happen before index fingerprinting begins, so we can later be
565  * certain that index fingerprinting should have reached all tuples
566  * returned by table_index_build_scan().
567  */
568  if (!state->readonly)
569  {
571 
572  /*
573  * GetTransactionSnapshot() always acquires a new MVCC snapshot in
574  * READ COMMITTED mode. A new snapshot is guaranteed to have all
575  * the entries it requires in the index.
576  *
577  * We must defend against the possibility that an old xact
578  * snapshot was returned at higher isolation levels when that
579  * snapshot is not safe for index scans of the target index. This
580  * is possible when the snapshot sees tuples that are before the
581  * index's indcheckxmin horizon. Throwing an error here should be
582  * very rare. It doesn't seem worth using a secondary snapshot to
583  * avoid this.
584  */
585  if (IsolationUsesXactSnapshot() && rel->rd_index->indcheckxmin &&
587  snapshot->xmin))
588  ereport(ERROR,
590  errmsg("index \"%s\" cannot be verified using transaction snapshot",
591  RelationGetRelationName(rel))));
592  }
593  }
594 
595  /*
596  * We need a snapshot to check the uniqueness of the index. For better
597  * performance take it once per index check. If snapshot already taken
598  * reuse it.
599  */
600  if (state->checkunique)
601  {
602  state->indexinfo = BuildIndexInfo(state->rel);
603  if (state->indexinfo->ii_Unique)
604  {
605  if (snapshot != SnapshotAny)
606  state->snapshot = snapshot;
607  else
609  }
610  }
611 
612  Assert(!state->rootdescend || state->readonly);
613  if (state->rootdescend && !state->heapkeyspace)
614  ereport(ERROR,
615  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
616  errmsg("cannot verify that tuples from index \"%s\" can each be found by an independent index search",
618  errhint("Only B-Tree version 4 indexes support rootdescend verification.")));
619 
620  /* Create context for page */
622  "amcheck context",
624  state->checkstrategy = GetAccessStrategy(BAS_BULKREAD);
625 
626  /* Get true root block from meta-page */
628  metad = BTPageGetMeta(metapage);
629 
630  /*
631  * Certain deletion patterns can result in "skinny" B-Tree indexes, where
632  * the fast root and true root differ.
633  *
634  * Start from the true root, not the fast root, unlike conventional index
635  * scans. This approach is more thorough, and removes the risk of
636  * following a stale fast root from the meta page.
637  */
638  if (metad->btm_fastroot != metad->btm_root)
639  ereport(DEBUG1,
640  (errcode(ERRCODE_NO_DATA),
641  errmsg_internal("harmless fast root mismatch in index \"%s\"",
643  errdetail_internal("Fast root block %u (level %u) differs from true root block %u (level %u).",
644  metad->btm_fastroot, metad->btm_fastlevel,
645  metad->btm_root, metad->btm_level)));
646 
647  /*
648  * Starting at the root, verify every level. Move left to right, top to
649  * bottom. Note that there may be no pages other than the meta page (meta
650  * page can indicate that root is P_NONE when the index is totally empty).
651  */
652  previouslevel = InvalidBtreeLevel;
653  current.level = metad->btm_level;
654  current.leftmost = metad->btm_root;
655  current.istruerootlevel = true;
656  while (current.leftmost != P_NONE)
657  {
658  /*
659  * Verify this level, and get left most page for next level down, if
660  * not at leaf level
661  */
662  current = bt_check_level_from_leftmost(state, current);
663 
664  if (current.leftmost == InvalidBlockNumber)
665  ereport(ERROR,
666  (errcode(ERRCODE_INDEX_CORRUPTED),
667  errmsg("index \"%s\" has no valid pages on level below %u or first level",
668  RelationGetRelationName(rel), previouslevel)));
669 
670  previouslevel = current.level;
671  }
672 
673  /*
674  * * Check whether heap contains unindexed/malformed tuples *
675  */
676  if (state->heapallindexed)
677  {
678  IndexInfo *indexinfo = BuildIndexInfo(state->rel);
679  TableScanDesc scan;
680 
681  /*
682  * Create our own scan for table_index_build_scan(), rather than
683  * getting it to do so for us. This is required so that we can
684  * actually use the MVCC snapshot registered earlier in !readonly
685  * case.
686  *
687  * Note that table_index_build_scan() calls heap_endscan() for us.
688  */
689  scan = table_beginscan_strat(state->heaprel, /* relation */
690  snapshot, /* snapshot */
691  0, /* number of keys */
692  NULL, /* scan key */
693  true, /* buffer access strategy OK */
694  true); /* syncscan OK? */
695 
696  /*
697  * Scan will behave as the first scan of a CREATE INDEX CONCURRENTLY
698  * behaves in !readonly case.
699  *
700  * It's okay that we don't actually use the same lock strength for the
701  * heap relation as any other ii_Concurrent caller would in !readonly
702  * case. We have no reason to care about a concurrent VACUUM
703  * operation, since there isn't going to be a second scan of the heap
704  * that needs to be sure that there was no concurrent recycling of
705  * TIDs.
706  */
707  indexinfo->ii_Concurrent = !state->readonly;
708 
709  /*
710  * Don't wait for uncommitted tuple xact commit/abort when index is a
711  * unique index on a catalog (or an index used by an exclusion
712  * constraint). This could otherwise happen in the readonly case.
713  */
714  indexinfo->ii_Unique = false;
715  indexinfo->ii_ExclusionOps = NULL;
716  indexinfo->ii_ExclusionProcs = NULL;
717  indexinfo->ii_ExclusionStrats = NULL;
718 
719  elog(DEBUG1, "verifying that tuples from index \"%s\" are present in \"%s\"",
721  RelationGetRelationName(state->heaprel));
722 
723  table_index_build_scan(state->heaprel, state->rel, indexinfo, true, false,
724  bt_tuple_present_callback, (void *) state, scan);
725 
726  ereport(DEBUG1,
727  (errmsg_internal("finished verifying presence of " INT64_FORMAT " tuples from table \"%s\" with bitset %.2f%% set",
728  state->heaptuplespresent, RelationGetRelationName(heaprel),
729  100.0 * bloom_prop_bits_set(state->filter))));
730 
731  if (snapshot != SnapshotAny)
732  UnregisterSnapshot(snapshot);
733 
734  bloom_free(state->filter);
735  }
736 
737  /* Be tidy: */
738  if (snapshot == SnapshotAny && state->snapshot != InvalidSnapshot)
739  UnregisterSnapshot(state->snapshot);
740  MemoryContextDelete(state->targetcontext);
741 }
#define InvalidBlockNumber
Definition: block.h:33
void bloom_free(bloom_filter *filter)
Definition: bloomfilter.c:126
bloom_filter * bloom_create(int64 total_elems, int bloom_work_mem, uint64 seed)
Definition: bloomfilter.c:87
double bloom_prop_bits_set(bloom_filter *filter)
Definition: bloomfilter.c:187
@ BAS_BULKREAD
Definition: bufmgr.h:36
#define RelationGetNumberOfBlocks(reln)
Definition: bufmgr.h:273
Pointer Page
Definition: bufpage.h:81
unsigned int uint32
Definition: c.h:506
#define Max(x, y)
Definition: c.h:989
#define INT64_FORMAT
Definition: c.h:539
#define Assert(condition)
Definition: c.h:849
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1157
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1230
int errhint(const char *fmt,...)
Definition: elog.c:1317
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define DEBUG1
Definition: elog.h:30
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:225
#define ereport(elevel,...)
Definition: elog.h:149
BufferAccessStrategy GetAccessStrategy(BufferAccessStrategyType btype)
Definition: freelist.c:541
int maintenance_work_mem
Definition: globals.c:132
#define HeapTupleHeaderGetXmin(tup)
Definition: htup_details.h:309
IndexInfo * BuildIndexInfo(Relation index)
Definition: index.c:2430
void * palloc0(Size size)
Definition: mcxt.c:1347
MemoryContext CurrentMemoryContext
Definition: mcxt.c:143
void MemoryContextDelete(MemoryContext context)
Definition: mcxt.c:454
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
#define BTPageGetMeta(p)
Definition: nbtree.h:121
#define MaxTIDsPerBTreePage
Definition: nbtree.h:185
#define P_NONE
Definition: nbtree.h:212
#define BTREE_METAPAGE
Definition: nbtree.h:148
uint64 pg_prng_uint64(pg_prng_state *state)
Definition: pg_prng.c:134
pg_prng_state pg_global_prng_state
Definition: pg_prng.c:34
#define ERRCODE_T_R_SERIALIZATION_FAILURE
Definition: pgbench.c:76
#define RelationGetRelationName(relation)
Definition: rel.h:539
TransactionId RecentXmin
Definition: snapmgr.c:99
Snapshot GetTransactionSnapshot(void)
Definition: snapmgr.c:216
void UnregisterSnapshot(Snapshot snapshot)
Definition: snapmgr.c:836
Snapshot RegisterSnapshot(Snapshot snapshot)
Definition: snapmgr.c:794
#define SnapshotAny
Definition: snapmgr.h:33
#define InvalidSnapshot
Definition: snapshot.h:123
uint32 btm_level
Definition: nbtree.h:108
BlockNumber btm_fastroot
Definition: nbtree.h:109
BlockNumber btm_root
Definition: nbtree.h:107
uint32 btm_fastlevel
Definition: nbtree.h:110
bool istruerootlevel
uint32 level
BlockNumber leftmost
HeapTupleHeader t_data
Definition: htup.h:68
bool ii_Unique
Definition: execnodes.h:199
uint16 * ii_ExclusionStrats
Definition: execnodes.h:195
Oid * ii_ExclusionOps
Definition: execnodes.h:193
bool ii_Concurrent
Definition: execnodes.h:204
Oid * ii_ExclusionProcs
Definition: execnodes.h:194
struct HeapTupleData * rd_indextuple
Definition: rel.h:194
Form_pg_index rd_index
Definition: rel.h:192
TransactionId xmin
Definition: snapshot.h:157
Definition: regguts.h:323
static TableScanDesc table_beginscan_strat(Relation rel, Snapshot snapshot, int nkeys, struct ScanKeyData *key, bool allow_strat, bool allow_sync)
Definition: tableam.h:932
static double table_index_build_scan(Relation table_rel, Relation index_rel, struct IndexInfo *index_info, bool allow_sync, bool progress, IndexBuildCallback callback, void *callback_state, TableScanDesc scan)
Definition: tableam.h:1775
bool TransactionIdPrecedes(TransactionId id1, TransactionId id2)
Definition: transam.c:280
#define TransactionIdIsValid(xid)
Definition: transam.h:41
static BtreeLevel bt_check_level_from_leftmost(BtreeCheckState *state, BtreeLevel level)
static void bt_tuple_present_callback(Relation index, ItemPointer tid, Datum *values, bool *isnull, bool tupleIsAlive, void *checkstate)
#define InvalidBtreeLevel
Definition: verify_nbtree.c:53
static Page palloc_btree_page(BtreeCheckState *state, BlockNumber blocknum)
#define IsolationUsesXactSnapshot()
Definition: xact.h:51

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, Assert, BAS_BULKREAD, bloom_create(), bloom_free(), bloom_prop_bits_set(), bt_check_level_from_leftmost(), bt_tuple_present_callback(), BTMetaPageData::btm_fastlevel, BTMetaPageData::btm_fastroot, BTMetaPageData::btm_level, BTMetaPageData::btm_root, BTPageGetMeta, BTREE_METAPAGE, BuildIndexInfo(), CurrentMemoryContext, DEBUG1, elog, ereport, errcode(), ERRCODE_T_R_SERIALIZATION_FAILURE, errdetail_internal(), errhint(), errmsg(), errmsg_internal(), ERROR, GetAccessStrategy(), GetTransactionSnapshot(), HeapTupleHeaderGetXmin, IndexInfo::ii_Concurrent, IndexInfo::ii_ExclusionOps, IndexInfo::ii_ExclusionProcs, IndexInfo::ii_ExclusionStrats, IndexInfo::ii_Unique, INT64_FORMAT, InvalidBlockNumber, InvalidBtreeLevel, InvalidSnapshot, IsolationUsesXactSnapshot, BtreeLevel::istruerootlevel, BtreeLevel::leftmost, BtreeLevel::level, maintenance_work_mem, Max, MaxTIDsPerBTreePage, MemoryContextDelete(), P_NONE, palloc0(), palloc_btree_page(), pg_global_prng_state, pg_prng_uint64(), RelationData::rd_index, RelationData::rd_indextuple, RecentXmin, RegisterSnapshot(), RelationGetNumberOfBlocks, RelationGetRelationName, SnapshotAny, HeapTupleData::t_data, table_beginscan_strat(), table_index_build_scan(), TransactionIdIsValid, TransactionIdPrecedes(), UnregisterSnapshot(), and SnapshotData::xmin.

Referenced by bt_index_check_internal().

◆ bt_check_level_from_leftmost()

static BtreeLevel bt_check_level_from_leftmost ( BtreeCheckState state,
BtreeLevel  level 
)
static

Definition at line 762 of file verify_nbtree.c.

763 {
764  /* State to establish early, concerning entire level */
765  BTPageOpaque opaque;
766  MemoryContext oldcontext;
767  BtreeLevel nextleveldown;
768 
769  /* Variables for iterating across level using right links */
770  BlockNumber leftcurrent = P_NONE;
771  BlockNumber current = level.leftmost;
772 
773  /* Initialize return state */
774  nextleveldown.leftmost = InvalidBlockNumber;
775  nextleveldown.level = InvalidBtreeLevel;
776  nextleveldown.istruerootlevel = false;
777 
778  /* Use page-level context for duration of this call */
779  oldcontext = MemoryContextSwitchTo(state->targetcontext);
780 
781  elog(DEBUG1, "verifying level %u%s", level.level,
782  level.istruerootlevel ?
783  " (true root level)" : level.level == 0 ? " (leaf level)" : "");
784 
785  state->prevrightlink = InvalidBlockNumber;
786  state->previncompletesplit = false;
787 
788  do
789  {
790  /* Don't rely on CHECK_FOR_INTERRUPTS() calls at lower level */
792 
793  /* Initialize state for this iteration */
794  state->targetblock = current;
795  state->target = palloc_btree_page(state, state->targetblock);
796  state->targetlsn = PageGetLSN(state->target);
797 
798  opaque = BTPageGetOpaque(state->target);
799 
800  if (P_IGNORE(opaque))
801  {
802  /*
803  * Since there cannot be a concurrent VACUUM operation in readonly
804  * mode, and since a page has no links within other pages
805  * (siblings and parent) once it is marked fully deleted, it
806  * should be impossible to land on a fully deleted page in
807  * readonly mode. See bt_child_check() for further details.
808  *
809  * The bt_child_check() P_ISDELETED() check is repeated here so
810  * that pages that are only reachable through sibling links get
811  * checked.
812  */
813  if (state->readonly && P_ISDELETED(opaque))
814  ereport(ERROR,
815  (errcode(ERRCODE_INDEX_CORRUPTED),
816  errmsg("downlink or sibling link points to deleted block in index \"%s\"",
818  errdetail_internal("Block=%u left block=%u left link from block=%u.",
819  current, leftcurrent, opaque->btpo_prev)));
820 
821  if (P_RIGHTMOST(opaque))
822  ereport(ERROR,
823  (errcode(ERRCODE_INDEX_CORRUPTED),
824  errmsg("block %u fell off the end of index \"%s\"",
825  current, RelationGetRelationName(state->rel))));
826  else
827  ereport(DEBUG1,
828  (errcode(ERRCODE_NO_DATA),
829  errmsg_internal("block %u of index \"%s\" concurrently deleted",
830  current, RelationGetRelationName(state->rel))));
831  goto nextpage;
832  }
833  else if (nextleveldown.leftmost == InvalidBlockNumber)
834  {
835  /*
836  * A concurrent page split could make the caller supplied leftmost
837  * block no longer contain the leftmost page, or no longer be the
838  * true root, but where that isn't possible due to heavyweight
839  * locking, check that the first valid page meets caller's
840  * expectations.
841  */
842  if (state->readonly)
843  {
844  if (!bt_leftmost_ignoring_half_dead(state, current, opaque))
845  ereport(ERROR,
846  (errcode(ERRCODE_INDEX_CORRUPTED),
847  errmsg("block %u is not leftmost in index \"%s\"",
848  current, RelationGetRelationName(state->rel))));
849 
850  if (level.istruerootlevel && !P_ISROOT(opaque))
851  ereport(ERROR,
852  (errcode(ERRCODE_INDEX_CORRUPTED),
853  errmsg("block %u is not true root in index \"%s\"",
854  current, RelationGetRelationName(state->rel))));
855  }
856 
857  /*
858  * Before beginning any non-trivial examination of level, prepare
859  * state for next bt_check_level_from_leftmost() invocation for
860  * the next level for the next level down (if any).
861  *
862  * There should be at least one non-ignorable page per level,
863  * unless this is the leaf level, which is assumed by caller to be
864  * final level.
865  */
866  if (!P_ISLEAF(opaque))
867  {
868  IndexTuple itup;
869  ItemId itemid;
870 
871  /* Internal page -- downlink gets leftmost on next level */
872  itemid = PageGetItemIdCareful(state, state->targetblock,
873  state->target,
874  P_FIRSTDATAKEY(opaque));
875  itup = (IndexTuple) PageGetItem(state->target, itemid);
876  nextleveldown.leftmost = BTreeTupleGetDownLink(itup);
877  nextleveldown.level = opaque->btpo_level - 1;
878  }
879  else
880  {
881  /*
882  * Leaf page -- final level caller must process.
883  *
884  * Note that this could also be the root page, if there has
885  * been no root page split yet.
886  */
887  nextleveldown.leftmost = P_NONE;
888  nextleveldown.level = InvalidBtreeLevel;
889  }
890 
891  /*
892  * Finished setting up state for this call/level. Control will
893  * never end up back here in any future loop iteration for this
894  * level.
895  */
896  }
897 
898  /*
899  * Sibling links should be in mutual agreement. There arises
900  * leftcurrent == P_NONE && btpo_prev != P_NONE when the left sibling
901  * of the parent's low-key downlink is half-dead. (A half-dead page
902  * has no downlink from its parent.) Under heavyweight locking, the
903  * last bt_leftmost_ignoring_half_dead() validated this btpo_prev.
904  * Without heavyweight locking, validation of the P_NONE case remains
905  * unimplemented.
906  */
907  if (opaque->btpo_prev != leftcurrent && leftcurrent != P_NONE)
908  bt_recheck_sibling_links(state, opaque->btpo_prev, leftcurrent);
909 
910  /* Check level */
911  if (level.level != opaque->btpo_level)
912  ereport(ERROR,
913  (errcode(ERRCODE_INDEX_CORRUPTED),
914  errmsg("leftmost down link for level points to block in index \"%s\" whose level is not one level down",
916  errdetail_internal("Block pointed to=%u expected level=%u level in pointed to block=%u.",
917  current, level.level, opaque->btpo_level)));
918 
919  /* Verify invariants for page */
921 
922 nextpage:
923 
924  /* Try to detect circular links */
925  if (current == leftcurrent || current == opaque->btpo_prev)
926  ereport(ERROR,
927  (errcode(ERRCODE_INDEX_CORRUPTED),
928  errmsg("circular link chain found in block %u of index \"%s\"",
929  current, RelationGetRelationName(state->rel))));
930 
931  leftcurrent = current;
932  current = opaque->btpo_next;
933 
934  if (state->lowkey)
935  {
936  Assert(state->readonly);
937  pfree(state->lowkey);
938  state->lowkey = NULL;
939  }
940 
941  /*
942  * Copy current target high key as the low key of right sibling.
943  * Allocate memory in upper level context, so it would be cleared
944  * after reset of target context.
945  *
946  * We only need the low key in corner cases of checking child high
947  * keys. We use high key only when incomplete split on the child level
948  * falls to the boundary of pages on the target level. See
949  * bt_child_highkey_check() for details. So, typically we won't end
950  * up doing anything with low key, but it's simpler for general case
951  * high key verification to always have it available.
952  *
953  * The correctness of managing low key in the case of concurrent
954  * splits wasn't investigated yet. Thankfully we only need low key
955  * for readonly verification and concurrent splits won't happen.
956  */
957  if (state->readonly && !P_RIGHTMOST(opaque))
958  {
959  IndexTuple itup;
960  ItemId itemid;
961 
962  itemid = PageGetItemIdCareful(state, state->targetblock,
963  state->target, P_HIKEY);
964  itup = (IndexTuple) PageGetItem(state->target, itemid);
965 
966  state->lowkey = MemoryContextAlloc(oldcontext, IndexTupleSize(itup));
967  memcpy(state->lowkey, itup, IndexTupleSize(itup));
968  }
969 
970  /* Free page and associated memory for this iteration */
971  MemoryContextReset(state->targetcontext);
972  }
973  while (current != P_NONE);
974 
975  if (state->lowkey)
976  {
977  Assert(state->readonly);
978  pfree(state->lowkey);
979  state->lowkey = NULL;
980  }
981 
982  /* Don't change context for caller */
983  MemoryContextSwitchTo(oldcontext);
984 
985  return nextleveldown;
986 }
uint32 BlockNumber
Definition: block.h:31
static Item PageGetItem(Page page, ItemId itemId)
Definition: bufpage.h:354
static XLogRecPtr PageGetLSN(const char *page)
Definition: bufpage.h:386
IndexTupleData * IndexTuple
Definition: itup.h:53
#define IndexTupleSize(itup)
Definition: itup.h:70
void MemoryContextReset(MemoryContext context)
Definition: mcxt.c:383
void pfree(void *pointer)
Definition: mcxt.c:1521
void * MemoryContextAlloc(MemoryContext context, Size size)
Definition: mcxt.c:1181
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:122
#define P_ISLEAF(opaque)
Definition: nbtree.h:220
#define P_HIKEY
Definition: nbtree.h:367
#define BTPageGetOpaque(page)
Definition: nbtree.h:73
#define P_ISDELETED(opaque)
Definition: nbtree.h:222
#define P_FIRSTDATAKEY(opaque)
Definition: nbtree.h:369
#define P_ISROOT(opaque)
Definition: nbtree.h:221
#define P_RIGHTMOST(opaque)
Definition: nbtree.h:219
static BlockNumber BTreeTupleGetDownLink(IndexTuple pivot)
Definition: nbtree.h:556
#define P_IGNORE(opaque)
Definition: nbtree.h:225
MemoryContextSwitchTo(old_ctx)
BlockNumber btpo_next
Definition: nbtree.h:65
BlockNumber btpo_prev
Definition: nbtree.h:64
uint32 btpo_level
Definition: nbtree.h:66
static bool bt_leftmost_ignoring_half_dead(BtreeCheckState *state, BlockNumber start, BTPageOpaque start_opaque)
static void bt_target_page_check(BtreeCheckState *state)
static ItemId PageGetItemIdCareful(BtreeCheckState *state, BlockNumber block, Page page, OffsetNumber offset)
static void bt_recheck_sibling_links(BtreeCheckState *state, BlockNumber btpo_prev_from_target, BlockNumber leftcurrent)

References Assert, bt_leftmost_ignoring_half_dead(), bt_recheck_sibling_links(), bt_target_page_check(), BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTPageOpaqueData::btpo_next, BTPageOpaqueData::btpo_prev, BTreeTupleGetDownLink(), CHECK_FOR_INTERRUPTS, DEBUG1, elog, ereport, errcode(), errdetail_internal(), errmsg(), errmsg_internal(), ERROR, IndexTupleSize, InvalidBlockNumber, InvalidBtreeLevel, BtreeLevel::istruerootlevel, BtreeLevel::leftmost, BtreeLevel::level, MemoryContextAlloc(), MemoryContextReset(), MemoryContextSwitchTo(), P_FIRSTDATAKEY, P_HIKEY, P_IGNORE, P_ISDELETED, P_ISLEAF, P_ISROOT, P_NONE, P_RIGHTMOST, PageGetItem(), PageGetItemIdCareful(), PageGetLSN(), palloc_btree_page(), pfree(), and RelationGetRelationName.

Referenced by bt_check_every_level().

◆ bt_child_check()

static void bt_child_check ( BtreeCheckState state,
BTScanInsert  targetkey,
OffsetNumber  downlinkoffnum 
)
static

Definition at line 2533 of file verify_nbtree.c.

2535 {
2536  ItemId itemid;
2537  IndexTuple itup;
2538  BlockNumber childblock;
2539  OffsetNumber offset;
2540  OffsetNumber maxoffset;
2541  Page child;
2542  BTPageOpaque copaque;
2543  BTPageOpaque topaque;
2544 
2545  itemid = PageGetItemIdCareful(state, state->targetblock,
2546  state->target, downlinkoffnum);
2547  itup = (IndexTuple) PageGetItem(state->target, itemid);
2548  childblock = BTreeTupleGetDownLink(itup);
2549 
2550  /*
2551  * Caller must have ShareLock on target relation, because of
2552  * considerations around page deletion by VACUUM.
2553  *
2554  * NB: In general, page deletion deletes the right sibling's downlink, not
2555  * the downlink of the page being deleted; the deleted page's downlink is
2556  * reused for its sibling. The key space is thereby consolidated between
2557  * the deleted page and its right sibling. (We cannot delete a parent
2558  * page's rightmost child unless it is the last child page, and we intend
2559  * to also delete the parent itself.)
2560  *
2561  * If this verification happened without a ShareLock, the following race
2562  * condition could cause false positives:
2563  *
2564  * In general, concurrent page deletion might occur, including deletion of
2565  * the left sibling of the child page that is examined here. If such a
2566  * page deletion were to occur, closely followed by an insertion into the
2567  * newly expanded key space of the child, a window for the false positive
2568  * opens up: the stale parent/target downlink originally followed to get
2569  * to the child legitimately ceases to be a lower bound on all items in
2570  * the page, since the key space was concurrently expanded "left".
2571  * (Insertion followed the "new" downlink for the child, not our now-stale
2572  * downlink, which was concurrently physically removed in target/parent as
2573  * part of deletion's first phase.)
2574  *
2575  * While we use various techniques elsewhere to perform cross-page
2576  * verification for !readonly callers, a similar trick seems difficult
2577  * here. The tricks used by bt_recheck_sibling_links and by
2578  * bt_right_page_check_scankey both involve verification of a same-level,
2579  * cross-sibling invariant. Cross-level invariants are far more squishy,
2580  * though. The nbtree REDO routines do not actually couple buffer locks
2581  * across levels during page splits, so making any cross-level check work
2582  * reliably in !readonly mode may be impossible.
2583  */
2584  Assert(state->readonly);
2585 
2586  /*
2587  * Verify child page has the downlink key from target page (its parent) as
2588  * a lower bound; downlink must be strictly less than all keys on the
2589  * page.
2590  *
2591  * Check all items, rather than checking just the first and trusting that
2592  * the operator class obeys the transitive law.
2593  */
2594  topaque = BTPageGetOpaque(state->target);
2595  child = palloc_btree_page(state, childblock);
2596  copaque = BTPageGetOpaque(child);
2597  maxoffset = PageGetMaxOffsetNumber(child);
2598 
2599  /*
2600  * Since we've already loaded the child block, combine this check with
2601  * check for downlink connectivity.
2602  */
2603  bt_child_highkey_check(state, downlinkoffnum,
2604  child, topaque->btpo_level);
2605 
2606  /*
2607  * Since there cannot be a concurrent VACUUM operation in readonly mode,
2608  * and since a page has no links within other pages (siblings and parent)
2609  * once it is marked fully deleted, it should be impossible to land on a
2610  * fully deleted page.
2611  *
2612  * It does not quite make sense to enforce that the page cannot even be
2613  * half-dead, despite the fact the downlink is modified at the same stage
2614  * that the child leaf page is marked half-dead. That's incorrect because
2615  * there may occasionally be multiple downlinks from a chain of pages
2616  * undergoing deletion, where multiple successive calls are made to
2617  * _bt_unlink_halfdead_page() by VACUUM before it can finally safely mark
2618  * the leaf page as fully dead. While _bt_mark_page_halfdead() usually
2619  * removes the downlink to the leaf page that is marked half-dead, that's
2620  * not guaranteed, so it's possible we'll land on a half-dead page with a
2621  * downlink due to an interrupted multi-level page deletion.
2622  *
2623  * We go ahead with our checks if the child page is half-dead. It's safe
2624  * to do so because we do not test the child's high key, so it does not
2625  * matter that the original high key will have been replaced by a dummy
2626  * truncated high key within _bt_mark_page_halfdead(). All other page
2627  * items are left intact on a half-dead page, so there is still something
2628  * to test.
2629  */
2630  if (P_ISDELETED(copaque))
2631  ereport(ERROR,
2632  (errcode(ERRCODE_INDEX_CORRUPTED),
2633  errmsg("downlink to deleted page found in index \"%s\"",
2635  errdetail_internal("Parent block=%u child block=%u parent page lsn=%X/%X.",
2636  state->targetblock, childblock,
2637  LSN_FORMAT_ARGS(state->targetlsn))));
2638 
2639  for (offset = P_FIRSTDATAKEY(copaque);
2640  offset <= maxoffset;
2641  offset = OffsetNumberNext(offset))
2642  {
2643  /*
2644  * Skip comparison of target page key against "negative infinity"
2645  * item, if any. Checking it would indicate that it's not a strict
2646  * lower bound, but that's only because of the hard-coding for
2647  * negative infinity items within _bt_compare().
2648  *
2649  * If nbtree didn't truncate negative infinity tuples during internal
2650  * page splits then we'd expect child's negative infinity key to be
2651  * equal to the scankey/downlink from target/parent (it would be a
2652  * "low key" in this hypothetical scenario, and so it would still need
2653  * to be treated as a special case here).
2654  *
2655  * Negative infinity items can be thought of as a strict lower bound
2656  * that works transitively, with the last non-negative-infinity pivot
2657  * followed during a descent from the root as its "true" strict lower
2658  * bound. Only a small number of negative infinity items are truly
2659  * negative infinity; those that are the first items of leftmost
2660  * internal pages. In more general terms, a negative infinity item is
2661  * only negative infinity with respect to the subtree that the page is
2662  * at the root of.
2663  *
2664  * See also: bt_rootdescend(), which can even detect transitive
2665  * inconsistencies on cousin leaf pages.
2666  */
2667  if (offset_is_negative_infinity(copaque, offset))
2668  continue;
2669 
2670  if (!invariant_l_nontarget_offset(state, targetkey, childblock, child,
2671  offset))
2672  ereport(ERROR,
2673  (errcode(ERRCODE_INDEX_CORRUPTED),
2674  errmsg("down-link lower bound invariant violated for index \"%s\"",
2676  errdetail_internal("Parent block=%u child index tid=(%u,%u) parent page lsn=%X/%X.",
2677  state->targetblock, childblock, offset,
2678  LSN_FORMAT_ARGS(state->targetlsn))));
2679  }
2680 
2681  pfree(child);
2682 }
static OffsetNumber PageGetMaxOffsetNumber(Page page)
Definition: bufpage.h:372
#define OffsetNumberNext(offsetNumber)
Definition: off.h:52
uint16 OffsetNumber
Definition: off.h:24
static bool offset_is_negative_infinity(BTPageOpaque opaque, OffsetNumber offset)
static void bt_child_highkey_check(BtreeCheckState *state, OffsetNumber target_downlinkoffnum, Page loaded_child, uint32 target_level)
static bool invariant_l_nontarget_offset(BtreeCheckState *state, BTScanInsert key, BlockNumber nontargetblock, Page nontarget, OffsetNumber upperbound)
#define LSN_FORMAT_ARGS(lsn)
Definition: xlogdefs.h:43

References Assert, bt_child_highkey_check(), BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTreeTupleGetDownLink(), ereport, errcode(), errdetail_internal(), errmsg(), ERROR, invariant_l_nontarget_offset(), LSN_FORMAT_ARGS, offset_is_negative_infinity(), OffsetNumberNext, P_FIRSTDATAKEY, P_ISDELETED, PageGetItem(), PageGetItemIdCareful(), PageGetMaxOffsetNumber(), palloc_btree_page(), pfree(), and RelationGetRelationName.

Referenced by bt_target_page_check().

◆ bt_child_highkey_check()

static void bt_child_highkey_check ( BtreeCheckState state,
OffsetNumber  target_downlinkoffnum,
Page  loaded_child,
uint32  target_level 
)
static

Definition at line 2286 of file verify_nbtree.c.

2290 {
2291  BlockNumber blkno = state->prevrightlink;
2292  Page page;
2293  BTPageOpaque opaque;
2294  bool rightsplit = state->previncompletesplit;
2295  bool first = true;
2296  ItemId itemid;
2297  IndexTuple itup;
2298  BlockNumber downlink;
2299 
2300  if (OffsetNumberIsValid(target_downlinkoffnum))
2301  {
2302  itemid = PageGetItemIdCareful(state, state->targetblock,
2303  state->target, target_downlinkoffnum);
2304  itup = (IndexTuple) PageGetItem(state->target, itemid);
2305  downlink = BTreeTupleGetDownLink(itup);
2306  }
2307  else
2308  {
2309  downlink = P_NONE;
2310  }
2311 
2312  /*
2313  * If no previous rightlink is memorized for current level just below
2314  * target page's level, we are about to start from the leftmost page. We
2315  * can't follow rightlinks from previous page, because there is no
2316  * previous page. But we still can match high key.
2317  *
2318  * So we initialize variables for the loop above like there is previous
2319  * page referencing current child. Also we imply previous page to not
2320  * have incomplete split flag, that would make us require downlink for
2321  * current child. That's correct, because leftmost page on the level
2322  * should always have parent downlink.
2323  */
2324  if (!BlockNumberIsValid(blkno))
2325  {
2326  blkno = downlink;
2327  rightsplit = false;
2328  }
2329 
2330  /* Move to the right on the child level */
2331  while (true)
2332  {
2333  /*
2334  * Did we traverse the whole tree level and this is check for pages to
2335  * the right of rightmost downlink?
2336  */
2337  if (blkno == P_NONE && downlink == P_NONE)
2338  {
2339  state->prevrightlink = InvalidBlockNumber;
2340  state->previncompletesplit = false;
2341  return;
2342  }
2343 
2344  /* Did we traverse the whole tree level and don't find next downlink? */
2345  if (blkno == P_NONE)
2346  ereport(ERROR,
2347  (errcode(ERRCODE_INDEX_CORRUPTED),
2348  errmsg("can't traverse from downlink %u to downlink %u of index \"%s\"",
2349  state->prevrightlink, downlink,
2350  RelationGetRelationName(state->rel))));
2351 
2352  /* Load page contents */
2353  if (blkno == downlink && loaded_child)
2354  page = loaded_child;
2355  else
2356  page = palloc_btree_page(state, blkno);
2357 
2358  opaque = BTPageGetOpaque(page);
2359 
2360  /* The first page we visit at the level should be leftmost */
2361  if (first && !BlockNumberIsValid(state->prevrightlink) &&
2362  !bt_leftmost_ignoring_half_dead(state, blkno, opaque))
2363  ereport(ERROR,
2364  (errcode(ERRCODE_INDEX_CORRUPTED),
2365  errmsg("the first child of leftmost target page is not leftmost of its level in index \"%s\"",
2367  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2368  state->targetblock, blkno,
2369  LSN_FORMAT_ARGS(state->targetlsn))));
2370 
2371  /* Do level sanity check */
2372  if ((!P_ISDELETED(opaque) || P_HAS_FULLXID(opaque)) &&
2373  opaque->btpo_level != target_level - 1)
2374  ereport(ERROR,
2375  (errcode(ERRCODE_INDEX_CORRUPTED),
2376  errmsg("block found while following rightlinks from child of index \"%s\" has invalid level",
2378  errdetail_internal("Block pointed to=%u expected level=%u level in pointed to block=%u.",
2379  blkno, target_level - 1, opaque->btpo_level)));
2380 
2381  /* Try to detect circular links */
2382  if ((!first && blkno == state->prevrightlink) || blkno == opaque->btpo_prev)
2383  ereport(ERROR,
2384  (errcode(ERRCODE_INDEX_CORRUPTED),
2385  errmsg("circular link chain found in block %u of index \"%s\"",
2386  blkno, RelationGetRelationName(state->rel))));
2387 
2388  if (blkno != downlink && !P_IGNORE(opaque))
2389  {
2390  /* blkno probably has missing parent downlink */
2391  bt_downlink_missing_check(state, rightsplit, blkno, page);
2392  }
2393 
2394  rightsplit = P_INCOMPLETE_SPLIT(opaque);
2395 
2396  /*
2397  * If we visit page with high key, check that it is equal to the
2398  * target key next to corresponding downlink.
2399  */
2400  if (!rightsplit && !P_RIGHTMOST(opaque))
2401  {
2402  BTPageOpaque topaque;
2403  IndexTuple highkey;
2404  OffsetNumber pivotkey_offset;
2405 
2406  /* Get high key */
2407  itemid = PageGetItemIdCareful(state, blkno, page, P_HIKEY);
2408  highkey = (IndexTuple) PageGetItem(page, itemid);
2409 
2410  /*
2411  * There might be two situations when we examine high key. If
2412  * current child page is referenced by given target downlink, we
2413  * should look to the next offset number for matching key from
2414  * target page.
2415  *
2416  * Alternatively, we're following rightlinks somewhere in the
2417  * middle between page referenced by previous target's downlink
2418  * and the page referenced by current target's downlink. If
2419  * current child page hasn't incomplete split flag set, then its
2420  * high key should match to the target's key of current offset
2421  * number. This happens when a previous call here (to
2422  * bt_child_highkey_check()) found an incomplete split, and we
2423  * reach a right sibling page without a downlink -- the right
2424  * sibling page's high key still needs to be matched to a
2425  * separator key on the parent/target level.
2426  *
2427  * Don't apply OffsetNumberNext() to target_downlinkoffnum when we
2428  * already had to step right on the child level. Our traversal of
2429  * the child level must try to move in perfect lockstep behind (to
2430  * the left of) the target/parent level traversal.
2431  */
2432  if (blkno == downlink)
2433  pivotkey_offset = OffsetNumberNext(target_downlinkoffnum);
2434  else
2435  pivotkey_offset = target_downlinkoffnum;
2436 
2437  topaque = BTPageGetOpaque(state->target);
2438 
2439  if (!offset_is_negative_infinity(topaque, pivotkey_offset))
2440  {
2441  /*
2442  * If we're looking for the next pivot tuple in target page,
2443  * but there is no more pivot tuples, then we should match to
2444  * high key instead.
2445  */
2446  if (pivotkey_offset > PageGetMaxOffsetNumber(state->target))
2447  {
2448  if (P_RIGHTMOST(topaque))
2449  ereport(ERROR,
2450  (errcode(ERRCODE_INDEX_CORRUPTED),
2451  errmsg("child high key is greater than rightmost pivot key on target level in index \"%s\"",
2453  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2454  state->targetblock, blkno,
2455  LSN_FORMAT_ARGS(state->targetlsn))));
2456  pivotkey_offset = P_HIKEY;
2457  }
2458  itemid = PageGetItemIdCareful(state, state->targetblock,
2459  state->target, pivotkey_offset);
2460  itup = (IndexTuple) PageGetItem(state->target, itemid);
2461  }
2462  else
2463  {
2464  /*
2465  * We cannot try to match child's high key to a negative
2466  * infinity key in target, since there is nothing to compare.
2467  * However, it's still possible to match child's high key
2468  * outside of target page. The reason why we're are is that
2469  * bt_child_highkey_check() was previously called for the
2470  * cousin page of 'loaded_child', which is incomplete split.
2471  * So, now we traverse to the right of that cousin page and
2472  * current child level page under consideration still belongs
2473  * to the subtree of target's left sibling. Thus, we need to
2474  * match child's high key to it's left uncle page high key.
2475  * Thankfully we saved it, it's called a "low key" of target
2476  * page.
2477  */
2478  if (!state->lowkey)
2479  ereport(ERROR,
2480  (errcode(ERRCODE_INDEX_CORRUPTED),
2481  errmsg("can't find left sibling high key in index \"%s\"",
2483  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2484  state->targetblock, blkno,
2485  LSN_FORMAT_ARGS(state->targetlsn))));
2486  itup = state->lowkey;
2487  }
2488 
2489  if (!bt_pivot_tuple_identical(state->heapkeyspace, highkey, itup))
2490  {
2491  ereport(ERROR,
2492  (errcode(ERRCODE_INDEX_CORRUPTED),
2493  errmsg("mismatch between parent key and child high key in index \"%s\"",
2495  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2496  state->targetblock, blkno,
2497  LSN_FORMAT_ARGS(state->targetlsn))));
2498  }
2499  }
2500 
2501  /* Exit if we already found next downlink */
2502  if (blkno == downlink)
2503  {
2504  state->prevrightlink = opaque->btpo_next;
2505  state->previncompletesplit = rightsplit;
2506  return;
2507  }
2508 
2509  /* Traverse to the next page using rightlink */
2510  blkno = opaque->btpo_next;
2511 
2512  /* Free page contents if it's allocated by us */
2513  if (page != loaded_child)
2514  pfree(page);
2515  first = false;
2516  }
2517 }
static bool BlockNumberIsValid(BlockNumber blockNumber)
Definition: block.h:71
#define P_HAS_FULLXID(opaque)
Definition: nbtree.h:228
#define P_INCOMPLETE_SPLIT(opaque)
Definition: nbtree.h:227
#define OffsetNumberIsValid(offsetNumber)
Definition: off.h:39
static bool bt_pivot_tuple_identical(bool heapkeyspace, IndexTuple itup1, IndexTuple itup2)
static void bt_downlink_missing_check(BtreeCheckState *state, bool rightsplit, BlockNumber blkno, Page page)

References BlockNumberIsValid(), bt_downlink_missing_check(), bt_leftmost_ignoring_half_dead(), bt_pivot_tuple_identical(), BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTPageOpaqueData::btpo_next, BTPageOpaqueData::btpo_prev, BTreeTupleGetDownLink(), ereport, errcode(), errdetail_internal(), errmsg(), ERROR, InvalidBlockNumber, LSN_FORMAT_ARGS, offset_is_negative_infinity(), OffsetNumberIsValid, OffsetNumberNext, P_HAS_FULLXID, P_HIKEY, P_IGNORE, P_INCOMPLETE_SPLIT, P_ISDELETED, P_NONE, P_RIGHTMOST, PageGetItem(), PageGetItemIdCareful(), PageGetMaxOffsetNumber(), palloc_btree_page(), pfree(), and RelationGetRelationName.

Referenced by bt_child_check(), and bt_target_page_check().

◆ bt_downlink_missing_check()

static void bt_downlink_missing_check ( BtreeCheckState state,
bool  rightsplit,
BlockNumber  blkno,
Page  page 
)
static

Definition at line 2698 of file verify_nbtree.c.

2700 {
2701  BTPageOpaque opaque = BTPageGetOpaque(page);
2702  ItemId itemid;
2703  IndexTuple itup;
2704  Page child;
2705  BTPageOpaque copaque;
2706  uint32 level;
2707  BlockNumber childblk;
2708  XLogRecPtr pagelsn;
2709 
2710  Assert(state->readonly);
2711  Assert(!P_IGNORE(opaque));
2712 
2713  /* No next level up with downlinks to fingerprint from the true root */
2714  if (P_ISROOT(opaque))
2715  return;
2716 
2717  pagelsn = PageGetLSN(page);
2718 
2719  /*
2720  * Incomplete (interrupted) page splits can account for the lack of a
2721  * downlink. Some inserting transaction should eventually complete the
2722  * page split in passing, when it notices that the left sibling page is
2723  * P_INCOMPLETE_SPLIT().
2724  *
2725  * In general, VACUUM is not prepared for there to be no downlink to a
2726  * page that it deletes. This is the main reason why the lack of a
2727  * downlink can be reported as corruption here. It's not obvious that an
2728  * invalid missing downlink can result in wrong answers to queries,
2729  * though, since index scans that land on the child may end up
2730  * consistently moving right. The handling of concurrent page splits (and
2731  * page deletions) within _bt_moveright() cannot distinguish
2732  * inconsistencies that last for a moment from inconsistencies that are
2733  * permanent and irrecoverable.
2734  *
2735  * VACUUM isn't even prepared to delete pages that have no downlink due to
2736  * an incomplete page split, but it can detect and reason about that case
2737  * by design, so it shouldn't be taken to indicate corruption. See
2738  * _bt_pagedel() for full details.
2739  */
2740  if (rightsplit)
2741  {
2742  ereport(DEBUG1,
2743  (errcode(ERRCODE_NO_DATA),
2744  errmsg_internal("harmless interrupted page split detected in index \"%s\"",
2746  errdetail_internal("Block=%u level=%u left sibling=%u page lsn=%X/%X.",
2747  blkno, opaque->btpo_level,
2748  opaque->btpo_prev,
2749  LSN_FORMAT_ARGS(pagelsn))));
2750  return;
2751  }
2752 
2753  /*
2754  * Page under check is probably the "top parent" of a multi-level page
2755  * deletion. We'll need to descend the subtree to make sure that
2756  * descendant pages are consistent with that, though.
2757  *
2758  * If the page (which must be non-ignorable) is a leaf page, then clearly
2759  * it can't be the top parent. The lack of a downlink is probably a
2760  * symptom of a broad problem that could just as easily cause
2761  * inconsistencies anywhere else.
2762  */
2763  if (P_ISLEAF(opaque))
2764  ereport(ERROR,
2765  (errcode(ERRCODE_INDEX_CORRUPTED),
2766  errmsg("leaf index block lacks downlink in index \"%s\"",
2768  errdetail_internal("Block=%u page lsn=%X/%X.",
2769  blkno,
2770  LSN_FORMAT_ARGS(pagelsn))));
2771 
2772  /* Descend from the given page, which is an internal page */
2773  elog(DEBUG1, "checking for interrupted multi-level deletion due to missing downlink in index \"%s\"",
2775 
2776  level = opaque->btpo_level;
2777  itemid = PageGetItemIdCareful(state, blkno, page, P_FIRSTDATAKEY(opaque));
2778  itup = (IndexTuple) PageGetItem(page, itemid);
2779  childblk = BTreeTupleGetDownLink(itup);
2780  for (;;)
2781  {
2783 
2784  child = palloc_btree_page(state, childblk);
2785  copaque = BTPageGetOpaque(child);
2786 
2787  if (P_ISLEAF(copaque))
2788  break;
2789 
2790  /* Do an extra sanity check in passing on internal pages */
2791  if (copaque->btpo_level != level - 1)
2792  ereport(ERROR,
2793  (errcode(ERRCODE_INDEX_CORRUPTED),
2794  errmsg_internal("downlink points to block in index \"%s\" whose level is not one level down",
2796  errdetail_internal("Top parent/under check block=%u block pointed to=%u expected level=%u level in pointed to block=%u.",
2797  blkno, childblk,
2798  level - 1, copaque->btpo_level)));
2799 
2800  level = copaque->btpo_level;
2801  itemid = PageGetItemIdCareful(state, childblk, child,
2802  P_FIRSTDATAKEY(copaque));
2803  itup = (IndexTuple) PageGetItem(child, itemid);
2804  childblk = BTreeTupleGetDownLink(itup);
2805  /* Be slightly more pro-active in freeing this memory, just in case */
2806  pfree(child);
2807  }
2808 
2809  /*
2810  * Since there cannot be a concurrent VACUUM operation in readonly mode,
2811  * and since a page has no links within other pages (siblings and parent)
2812  * once it is marked fully deleted, it should be impossible to land on a
2813  * fully deleted page. See bt_child_check() for further details.
2814  *
2815  * The bt_child_check() P_ISDELETED() check is repeated here because
2816  * bt_child_check() does not visit pages reachable through negative
2817  * infinity items. Besides, bt_child_check() is unwilling to descend
2818  * multiple levels. (The similar bt_child_check() P_ISDELETED() check
2819  * within bt_check_level_from_leftmost() won't reach the page either,
2820  * since the leaf's live siblings should have their sibling links updated
2821  * to bypass the deletion target page when it is marked fully dead.)
2822  *
2823  * If this error is raised, it might be due to a previous multi-level page
2824  * deletion that failed to realize that it wasn't yet safe to mark the
2825  * leaf page as fully dead. A "dangling downlink" will still remain when
2826  * this happens. The fact that the dangling downlink's page (the leaf's
2827  * parent/ancestor page) lacked a downlink is incidental.
2828  */
2829  if (P_ISDELETED(copaque))
2830  ereport(ERROR,
2831  (errcode(ERRCODE_INDEX_CORRUPTED),
2832  errmsg_internal("downlink to deleted leaf page found in index \"%s\"",
2834  errdetail_internal("Top parent/target block=%u leaf block=%u top parent/under check lsn=%X/%X.",
2835  blkno, childblk,
2836  LSN_FORMAT_ARGS(pagelsn))));
2837 
2838  /*
2839  * Iff leaf page is half-dead, its high key top parent link should point
2840  * to what VACUUM considered to be the top parent page at the instant it
2841  * was interrupted. Provided the high key link actually points to the
2842  * page under check, the missing downlink we detected is consistent with
2843  * there having been an interrupted multi-level page deletion. This means
2844  * that the subtree with the page under check at its root (a page deletion
2845  * chain) is in a consistent state, enabling VACUUM to resume deleting the
2846  * entire chain the next time it encounters the half-dead leaf page.
2847  */
2848  if (P_ISHALFDEAD(copaque) && !P_RIGHTMOST(copaque))
2849  {
2850  itemid = PageGetItemIdCareful(state, childblk, child, P_HIKEY);
2851  itup = (IndexTuple) PageGetItem(child, itemid);
2852  if (BTreeTupleGetTopParent(itup) == blkno)
2853  return;
2854  }
2855 
2856  ereport(ERROR,
2857  (errcode(ERRCODE_INDEX_CORRUPTED),
2858  errmsg("internal index block lacks downlink in index \"%s\"",
2860  errdetail_internal("Block=%u level=%u page lsn=%X/%X.",
2861  blkno, opaque->btpo_level,
2862  LSN_FORMAT_ARGS(pagelsn))));
2863 }
#define P_ISHALFDEAD(opaque)
Definition: nbtree.h:224
static BlockNumber BTreeTupleGetTopParent(IndexTuple leafhikey)
Definition: nbtree.h:620
uint64 XLogRecPtr
Definition: xlogdefs.h:21

References Assert, BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTPageOpaqueData::btpo_prev, BTreeTupleGetDownLink(), BTreeTupleGetTopParent(), CHECK_FOR_INTERRUPTS, DEBUG1, elog, ereport, errcode(), errdetail_internal(), errmsg(), errmsg_internal(), ERROR, LSN_FORMAT_ARGS, P_FIRSTDATAKEY, P_HIKEY, P_IGNORE, P_ISDELETED, P_ISHALFDEAD, P_ISLEAF, P_ISROOT, P_RIGHTMOST, PageGetItem(), PageGetItemIdCareful(), PageGetLSN(), palloc_btree_page(), pfree(), and RelationGetRelationName.

Referenced by bt_child_highkey_check().

◆ bt_entry_unique_check()

static void bt_entry_unique_check ( BtreeCheckState state,
IndexTuple  itup,
BlockNumber  targetblock,
OffsetNumber  offset,
BtreeLastVisibleEntry lVis 
)
static

Definition at line 1049 of file verify_nbtree.c.

1052 {
1053  ItemPointer tid;
1054  bool has_visible_entry = false;
1055 
1056  Assert(targetblock != P_NONE);
1057 
1058  /*
1059  * Current tuple has posting list. Report duplicate if TID of any posting
1060  * list entry is visible and lVis->tid is valid.
1061  */
1062  if (BTreeTupleIsPosting(itup))
1063  {
1064  for (int i = 0; i < BTreeTupleGetNPosting(itup); i++)
1065  {
1066  tid = BTreeTupleGetPostingN(itup, i);
1067  if (heap_entry_is_visible(state, tid))
1068  {
1069  has_visible_entry = true;
1070  if (ItemPointerIsValid(lVis->tid))
1071  {
1073  lVis,
1074  tid, targetblock,
1075  offset, i);
1076  }
1077 
1078  /*
1079  * Prevent double reporting unique constraint violation
1080  * between the posting list entries of the first tuple on the
1081  * page after cross-page check.
1082  */
1083  if (lVis->blkno != targetblock && ItemPointerIsValid(lVis->tid))
1084  return;
1085 
1086  lVis->blkno = targetblock;
1087  lVis->offset = offset;
1088  lVis->postingIndex = i;
1089  lVis->tid = tid;
1090  }
1091  }
1092  }
1093 
1094  /*
1095  * Current tuple has no posting list. If TID is visible save info about it
1096  * for the next comparisons in the loop in bt_target_page_check(). Report
1097  * duplicate if lVis->tid is already valid.
1098  */
1099  else
1100  {
1101  tid = BTreeTupleGetHeapTID(itup);
1102  if (heap_entry_is_visible(state, tid))
1103  {
1104  has_visible_entry = true;
1105  if (ItemPointerIsValid(lVis->tid))
1106  {
1108  lVis,
1109  tid, targetblock,
1110  offset, -1);
1111  }
1112 
1113  lVis->blkno = targetblock;
1114  lVis->offset = offset;
1115  lVis->tid = tid;
1116  lVis->postingIndex = -1;
1117  }
1118  }
1119 
1120  if (!has_visible_entry &&
1121  lVis->blkno != InvalidBlockNumber &&
1122  lVis->blkno != targetblock)
1123  {
1124  char *posting = "";
1125 
1126  if (lVis->postingIndex >= 0)
1127  posting = psprintf(" posting %u", lVis->postingIndex);
1128  ereport(DEBUG1,
1129  (errcode(ERRCODE_NO_DATA),
1130  errmsg("index uniqueness can not be checked for index tid=(%u,%u) in index \"%s\"",
1131  targetblock, offset,
1133  errdetail("It doesn't have visible heap tids and key is equal to the tid=(%u,%u)%s (points to heap tid=(%u,%u)).",
1134  lVis->blkno, lVis->offset, posting,
1137  errhint("VACUUM the table and repeat the check.")));
1138  }
1139 }
int errdetail(const char *fmt,...)
Definition: elog.c:1203
int i
Definition: isn.c:73
static OffsetNumber ItemPointerGetOffsetNumberNoCheck(const ItemPointerData *pointer)
Definition: itemptr.h:114
static BlockNumber ItemPointerGetBlockNumberNoCheck(const ItemPointerData *pointer)
Definition: itemptr.h:93
static bool ItemPointerIsValid(const ItemPointerData *pointer)
Definition: itemptr.h:83
static uint16 BTreeTupleGetNPosting(IndexTuple posting)
Definition: nbtree.h:518
static ItemPointer BTreeTupleGetPostingN(IndexTuple posting, int n)
Definition: nbtree.h:544
static bool BTreeTupleIsPosting(IndexTuple itup)
Definition: nbtree.h:492
static ItemPointer BTreeTupleGetHeapTID(IndexTuple itup)
Definition: nbtree.h:638
char * psprintf(const char *fmt,...)
Definition: psprintf.c:46
static void bt_report_duplicate(BtreeCheckState *state, BtreeLastVisibleEntry *lVis, ItemPointer nexttid, BlockNumber nblock, OffsetNumber noffset, int nposting)
static bool heap_entry_is_visible(BtreeCheckState *state, ItemPointer tid)

References Assert, BtreeLastVisibleEntry::blkno, bt_report_duplicate(), BTreeTupleGetHeapTID(), BTreeTupleGetNPosting(), BTreeTupleGetPostingN(), BTreeTupleIsPosting(), DEBUG1, ereport, errcode(), errdetail(), errhint(), errmsg(), heap_entry_is_visible(), i, InvalidBlockNumber, ItemPointerGetBlockNumberNoCheck(), ItemPointerGetOffsetNumberNoCheck(), ItemPointerIsValid(), BtreeLastVisibleEntry::offset, P_NONE, BtreeLastVisibleEntry::postingIndex, psprintf(), RelationGetRelationName, and BtreeLastVisibleEntry::tid.

Referenced by bt_target_page_check().

◆ bt_index_check()

Datum bt_index_check ( PG_FUNCTION_ARGS  )

Definition at line 240 of file verify_nbtree.c.

241 {
242  Oid indrelid = PG_GETARG_OID(0);
243  bool heapallindexed = false;
244  bool checkunique = false;
245 
246  if (PG_NARGS() >= 2)
247  heapallindexed = PG_GETARG_BOOL(1);
248  if (PG_NARGS() == 3)
249  checkunique = PG_GETARG_BOOL(2);
250 
251  bt_index_check_internal(indrelid, false, heapallindexed, false, checkunique);
252 
253  PG_RETURN_VOID();
254 }
#define PG_RETURN_VOID()
Definition: fmgr.h:349
#define PG_GETARG_OID(n)
Definition: fmgr.h:275
#define PG_NARGS()
Definition: fmgr.h:203
#define PG_GETARG_BOOL(n)
Definition: fmgr.h:274
unsigned int Oid
Definition: postgres_ext.h:31
static void bt_index_check_internal(Oid indrelid, bool parentcheck, bool heapallindexed, bool rootdescend, bool checkunique)

References bt_index_check_internal(), PG_GETARG_BOOL, PG_GETARG_OID, PG_NARGS, and PG_RETURN_VOID.

◆ bt_index_check_internal()

static void bt_index_check_internal ( Oid  indrelid,
bool  parentcheck,
bool  heapallindexed,
bool  rootdescend,
bool  checkunique 
)
static

Definition at line 289 of file verify_nbtree.c.

291 {
292  Oid heapid;
293  Relation indrel;
294  Relation heaprel;
295  LOCKMODE lockmode;
296  Oid save_userid;
297  int save_sec_context;
298  int save_nestlevel;
299 
300  if (parentcheck)
301  lockmode = ShareLock;
302  else
303  lockmode = AccessShareLock;
304 
305  /*
306  * We must lock table before index to avoid deadlocks. However, if the
307  * passed indrelid isn't an index then IndexGetRelation() will fail.
308  * Rather than emitting a not-very-helpful error message, postpone
309  * complaining, expecting that the is-it-an-index test below will fail.
310  *
311  * In hot standby mode this will raise an error when parentcheck is true.
312  */
313  heapid = IndexGetRelation(indrelid, true);
314  if (OidIsValid(heapid))
315  {
316  heaprel = table_open(heapid, lockmode);
317 
318  /*
319  * Switch to the table owner's userid, so that any index functions are
320  * run as that user. Also lock down security-restricted operations
321  * and arrange to make GUC variable changes local to this command.
322  */
323  GetUserIdAndSecContext(&save_userid, &save_sec_context);
324  SetUserIdAndSecContext(heaprel->rd_rel->relowner,
325  save_sec_context | SECURITY_RESTRICTED_OPERATION);
326  save_nestlevel = NewGUCNestLevel();
328  }
329  else
330  {
331  heaprel = NULL;
332  /* Set these just to suppress "uninitialized variable" warnings */
333  save_userid = InvalidOid;
334  save_sec_context = -1;
335  save_nestlevel = -1;
336  }
337 
338  /*
339  * Open the target index relations separately (like relation_openrv(), but
340  * with heap relation locked first to prevent deadlocking). In hot
341  * standby mode this will raise an error when parentcheck is true.
342  *
343  * There is no need for the usual indcheckxmin usability horizon test
344  * here, even in the heapallindexed case, because index undergoing
345  * verification only needs to have entries for a new transaction snapshot.
346  * (If this is a parentcheck verification, there is no question about
347  * committed or recently dead heap tuples lacking index entries due to
348  * concurrent activity.)
349  */
350  indrel = index_open(indrelid, lockmode);
351 
352  /*
353  * Since we did the IndexGetRelation call above without any lock, it's
354  * barely possible that a race against an index drop/recreation could have
355  * netted us the wrong table.
356  */
357  if (heaprel == NULL || heapid != IndexGetRelation(indrelid, false))
358  ereport(ERROR,
360  errmsg("could not open parent table of index \"%s\"",
361  RelationGetRelationName(indrel))));
362 
363  /* Relation suitable for checking as B-Tree? */
364  btree_index_checkable(indrel);
365 
366  if (btree_index_mainfork_expected(indrel))
367  {
368  bool heapkeyspace,
369  allequalimage;
370 
371  if (!smgrexists(RelationGetSmgr(indrel), MAIN_FORKNUM))
372  ereport(ERROR,
373  (errcode(ERRCODE_INDEX_CORRUPTED),
374  errmsg("index \"%s\" lacks a main relation fork",
375  RelationGetRelationName(indrel))));
376 
377  /* Extract metadata from metapage, and sanitize it in passing */
378  _bt_metaversion(indrel, &heapkeyspace, &allequalimage);
379  if (allequalimage && !heapkeyspace)
380  ereport(ERROR,
381  (errcode(ERRCODE_INDEX_CORRUPTED),
382  errmsg("index \"%s\" metapage has equalimage field set on unsupported nbtree version",
383  RelationGetRelationName(indrel))));
384  if (allequalimage && !_bt_allequalimage(indrel, false))
385  {
386  bool has_interval_ops = false;
387 
388  for (int i = 0; i < IndexRelationGetNumberOfKeyAttributes(indrel); i++)
389  if (indrel->rd_opfamily[i] == INTERVAL_BTREE_FAM_OID)
390  has_interval_ops = true;
391  ereport(ERROR,
392  (errcode(ERRCODE_INDEX_CORRUPTED),
393  errmsg("index \"%s\" metapage incorrectly indicates that deduplication is safe",
394  RelationGetRelationName(indrel)),
395  has_interval_ops
396  ? errhint("This is known of \"interval\" indexes last built on a version predating 2023-11.")
397  : 0));
398  }
399 
400  /* Check index, possibly against table it is an index on */
401  bt_check_every_level(indrel, heaprel, heapkeyspace, parentcheck,
402  heapallindexed, rootdescend, checkunique);
403  }
404 
405  /* Roll back any GUC changes executed by index functions */
406  AtEOXact_GUC(false, save_nestlevel);
407 
408  /* Restore userid and security context */
409  SetUserIdAndSecContext(save_userid, save_sec_context);
410 
411  /*
412  * Release locks early. That's ok here because nothing in the called
413  * routines will trigger shared cache invalidations to be sent, so we can
414  * relax the usual pattern of only releasing locks after commit.
415  */
416  index_close(indrel, lockmode);
417  if (heaprel)
418  table_close(heaprel, lockmode);
419 }
#define OidIsValid(objectId)
Definition: c.h:766
int NewGUCNestLevel(void)
Definition: guc.c:2234
void RestrictSearchPath(void)
Definition: guc.c:2245
void AtEOXact_GUC(bool isCommit, int nestLevel)
Definition: guc.c:2261
Oid IndexGetRelation(Oid indexId, bool missing_ok)
Definition: index.c:3534
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:177
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:133
int LOCKMODE
Definition: lockdefs.h:26
#define AccessShareLock
Definition: lockdefs.h:36
#define ShareLock
Definition: lockdefs.h:40
#define SECURITY_RESTRICTED_OPERATION
Definition: miscadmin.h:312
void GetUserIdAndSecContext(Oid *userid, int *sec_context)
Definition: miscinit.c:635
void SetUserIdAndSecContext(Oid userid, int sec_context)
Definition: miscinit.c:642
void _bt_metaversion(Relation rel, bool *heapkeyspace, bool *allequalimage)
Definition: nbtpage.c:739
bool _bt_allequalimage(Relation rel, bool debugmessage)
Definition: nbtutils.c:5125
#define ERRCODE_UNDEFINED_TABLE
Definition: pgbench.c:78
#define InvalidOid
Definition: postgres_ext.h:36
static SMgrRelation RelationGetSmgr(Relation rel)
Definition: rel.h:567
#define IndexRelationGetNumberOfKeyAttributes(relation)
Definition: rel.h:524
@ MAIN_FORKNUM
Definition: relpath.h:58
bool smgrexists(SMgrRelation reln, ForkNumber forknum)
Definition: smgr.c:401
Oid * rd_opfamily
Definition: rel.h:207
Form_pg_class rd_rel
Definition: rel.h:111
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
static void bt_check_every_level(Relation rel, Relation heaprel, bool heapkeyspace, bool readonly, bool heapallindexed, bool rootdescend, bool checkunique)
static bool btree_index_mainfork_expected(Relation rel)
static void btree_index_checkable(Relation rel)

References _bt_allequalimage(), _bt_metaversion(), AccessShareLock, AtEOXact_GUC(), bt_check_every_level(), btree_index_checkable(), btree_index_mainfork_expected(), ereport, errcode(), ERRCODE_UNDEFINED_TABLE, errhint(), errmsg(), ERROR, GetUserIdAndSecContext(), i, index_close(), index_open(), IndexGetRelation(), IndexRelationGetNumberOfKeyAttributes, InvalidOid, MAIN_FORKNUM, NewGUCNestLevel(), OidIsValid, RelationData::rd_opfamily, RelationData::rd_rel, RelationGetRelationName, RelationGetSmgr(), RestrictSearchPath(), SECURITY_RESTRICTED_OPERATION, SetUserIdAndSecContext(), ShareLock, smgrexists(), table_close(), and table_open().

Referenced by bt_index_check(), and bt_index_parent_check().

◆ bt_index_parent_check()

Datum bt_index_parent_check ( PG_FUNCTION_ARGS  )

Definition at line 266 of file verify_nbtree.c.

267 {
268  Oid indrelid = PG_GETARG_OID(0);
269  bool heapallindexed = false;
270  bool rootdescend = false;
271  bool checkunique = false;
272 
273  if (PG_NARGS() >= 2)
274  heapallindexed = PG_GETARG_BOOL(1);
275  if (PG_NARGS() >= 3)
276  rootdescend = PG_GETARG_BOOL(2);
277  if (PG_NARGS() == 4)
278  checkunique = PG_GETARG_BOOL(3);
279 
280  bt_index_check_internal(indrelid, true, heapallindexed, rootdescend, checkunique);
281 
282  PG_RETURN_VOID();
283 }

References bt_index_check_internal(), PG_GETARG_BOOL, PG_GETARG_OID, PG_NARGS, and PG_RETURN_VOID.

◆ bt_leftmost_ignoring_half_dead()

static bool bt_leftmost_ignoring_half_dead ( BtreeCheckState state,
BlockNumber  start,
BTPageOpaque  start_opaque 
)
static

Definition at line 1148 of file verify_nbtree.c.

1151 {
1152  BlockNumber reached = start_opaque->btpo_prev,
1153  reached_from = start;
1154  bool all_half_dead = true;
1155 
1156  /*
1157  * To handle the !readonly case, we'd need to accept BTP_DELETED pages and
1158  * potentially observe nbtree/README "Page deletion and backwards scans".
1159  */
1160  Assert(state->readonly);
1161 
1162  while (reached != P_NONE && all_half_dead)
1163  {
1164  Page page = palloc_btree_page(state, reached);
1165  BTPageOpaque reached_opaque = BTPageGetOpaque(page);
1166 
1168 
1169  /*
1170  * Try to detect btpo_prev circular links. _bt_unlink_halfdead_page()
1171  * writes that side-links will continue to point to the siblings.
1172  * Check btpo_next for that property.
1173  */
1174  all_half_dead = P_ISHALFDEAD(reached_opaque) &&
1175  reached != start &&
1176  reached != reached_from &&
1177  reached_opaque->btpo_next == reached_from;
1178  if (all_half_dead)
1179  {
1180  XLogRecPtr pagelsn = PageGetLSN(page);
1181 
1182  /* pagelsn should point to an XLOG_BTREE_MARK_PAGE_HALFDEAD */
1183  ereport(DEBUG1,
1184  (errcode(ERRCODE_NO_DATA),
1185  errmsg_internal("harmless interrupted page deletion detected in index \"%s\"",
1187  errdetail_internal("Block=%u right block=%u page lsn=%X/%X.",
1188  reached, reached_from,
1189  LSN_FORMAT_ARGS(pagelsn))));
1190 
1191  reached_from = reached;
1192  reached = reached_opaque->btpo_prev;
1193  }
1194 
1195  pfree(page);
1196  }
1197 
1198  return all_half_dead;
1199 }
return str start

References Assert, BTPageGetOpaque, BTPageOpaqueData::btpo_next, BTPageOpaqueData::btpo_prev, CHECK_FOR_INTERRUPTS, DEBUG1, ereport, errcode(), errdetail_internal(), errmsg_internal(), LSN_FORMAT_ARGS, P_ISHALFDEAD, P_NONE, PageGetLSN(), palloc_btree_page(), pfree(), RelationGetRelationName, and start.

Referenced by bt_check_level_from_leftmost(), and bt_child_highkey_check().

◆ bt_mkscankey_pivotsearch()

static BTScanInsert bt_mkscankey_pivotsearch ( Relation  rel,
IndexTuple  itup 
)
inlinestatic

Definition at line 3609 of file verify_nbtree.c.

3610 {
3611  BTScanInsert skey;
3612 
3613  skey = _bt_mkscankey(rel, itup);
3614  skey->backward = true;
3615 
3616  return skey;
3617 }
BTScanInsert _bt_mkscankey(Relation rel, IndexTuple itup)
Definition: nbtutils.c:129

References _bt_mkscankey(), and BTScanInsertData::backward.

Referenced by bt_right_page_check_scankey(), and bt_target_page_check().

◆ bt_normalize_tuple()

static IndexTuple bt_normalize_tuple ( BtreeCheckState state,
IndexTuple  itup 
)
static

Definition at line 2989 of file verify_nbtree.c.

2990 {
2991  TupleDesc tupleDescriptor = RelationGetDescr(state->rel);
2992  Datum normalized[INDEX_MAX_KEYS];
2993  bool isnull[INDEX_MAX_KEYS];
2994  bool need_free[INDEX_MAX_KEYS];
2995  bool formnewtup = false;
2996  IndexTuple reformed;
2997  int i;
2998 
2999  /* Caller should only pass "logical" non-pivot tuples here */
3000  Assert(!BTreeTupleIsPosting(itup) && !BTreeTupleIsPivot(itup));
3001 
3002  /* Easy case: It's immediately clear that tuple has no varlena datums */
3003  if (!IndexTupleHasVarwidths(itup))
3004  return itup;
3005 
3006  for (i = 0; i < tupleDescriptor->natts; i++)
3007  {
3008  Form_pg_attribute att;
3009 
3010  att = TupleDescAttr(tupleDescriptor, i);
3011 
3012  /* Assume untoasted/already normalized datum initially */
3013  need_free[i] = false;
3014  normalized[i] = index_getattr(itup, att->attnum,
3015  tupleDescriptor,
3016  &isnull[i]);
3017  if (att->attbyval || att->attlen != -1 || isnull[i])
3018  continue;
3019 
3020  /*
3021  * Callers always pass a tuple that could safely be inserted into the
3022  * index without further processing, so an external varlena header
3023  * should never be encountered here
3024  */
3025  if (VARATT_IS_EXTERNAL(DatumGetPointer(normalized[i])))
3026  ereport(ERROR,
3027  (errcode(ERRCODE_INDEX_CORRUPTED),
3028  errmsg("external varlena datum in tuple that references heap row (%u,%u) in index \"%s\"",
3029  ItemPointerGetBlockNumber(&(itup->t_tid)),
3031  RelationGetRelationName(state->rel))));
3032  else if (!VARATT_IS_COMPRESSED(DatumGetPointer(normalized[i])) &&
3033  VARSIZE(DatumGetPointer(normalized[i])) > TOAST_INDEX_TARGET &&
3034  (att->attstorage == TYPSTORAGE_EXTENDED ||
3035  att->attstorage == TYPSTORAGE_MAIN))
3036  {
3037  /*
3038  * This value will be compressed by index_form_tuple() with the
3039  * current storage settings. We may be here because this tuple
3040  * was formed with different storage settings. So, force forming.
3041  */
3042  formnewtup = true;
3043  }
3044  else if (VARATT_IS_COMPRESSED(DatumGetPointer(normalized[i])))
3045  {
3046  formnewtup = true;
3047  normalized[i] = PointerGetDatum(PG_DETOAST_DATUM(normalized[i]));
3048  need_free[i] = true;
3049  }
3050 
3051  /*
3052  * Short tuples may have 1B or 4B header. Convert 4B header of short
3053  * tuples to 1B
3054  */
3055  else if (VARATT_CAN_MAKE_SHORT(DatumGetPointer(normalized[i])))
3056  {
3057  /* convert to short varlena */
3059  char *data = palloc(len);
3060 
3062  memcpy(data + 1, VARDATA(DatumGetPointer(normalized[i])), len - 1);
3063 
3064  formnewtup = true;
3065  normalized[i] = PointerGetDatum(data);
3066  need_free[i] = true;
3067  }
3068  }
3069 
3070  /*
3071  * Easier case: Tuple has varlena datums, none of which are compressed or
3072  * short with 4B header
3073  */
3074  if (!formnewtup)
3075  return itup;
3076 
3077  /*
3078  * Hard case: Tuple had compressed varlena datums that necessitate
3079  * creating normalized version of the tuple from uncompressed input datums
3080  * (normalized input datums). This is rather naive, but shouldn't be
3081  * necessary too often.
3082  *
3083  * In the heap, tuples may contain short varlena datums with both 1B
3084  * header and 4B headers. But the corresponding index tuple should always
3085  * have such varlena's with 1B headers. So, if there is a short varlena
3086  * with 4B header, we need to convert it for fingerprinting.
3087  *
3088  * Note that we rely on deterministic index_form_tuple() TOAST compression
3089  * of normalized input.
3090  */
3091  reformed = index_form_tuple(tupleDescriptor, normalized, isnull);
3092  reformed->t_tid = itup->t_tid;
3093 
3094  /* Cannot leak memory here */
3095  for (i = 0; i < tupleDescriptor->natts; i++)
3096  if (need_free[i])
3097  pfree(DatumGetPointer(normalized[i]));
3098 
3099  return reformed;
3100 }
size_t Size
Definition: c.h:596
#define PG_DETOAST_DATUM(datum)
Definition: fmgr.h:240
#define TOAST_INDEX_TARGET
Definition: heaptoast.h:68
IndexTuple index_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition: indextuple.c:44
static OffsetNumber ItemPointerGetOffsetNumber(const ItemPointerData *pointer)
Definition: itemptr.h:124
static BlockNumber ItemPointerGetBlockNumber(const ItemPointerData *pointer)
Definition: itemptr.h:103
#define IndexTupleHasVarwidths(itup)
Definition: itup.h:72
static Datum index_getattr(IndexTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
Definition: itup.h:117
void * palloc(Size size)
Definition: mcxt.c:1317
static bool BTreeTupleIsPivot(IndexTuple itup)
Definition: nbtree.h:480
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
#define INDEX_MAX_KEYS
const void size_t len
const void * data
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
uintptr_t Datum
Definition: postgres.h:64
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
#define RelationGetDescr(relation)
Definition: rel.h:531
ItemPointerData t_tid
Definition: itup.h:37
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92
#define SET_VARSIZE_SHORT(PTR, len)
Definition: varatt.h:306
#define VARATT_CAN_MAKE_SHORT(PTR)
Definition: varatt.h:258
#define VARDATA(PTR)
Definition: varatt.h:278
#define VARATT_IS_COMPRESSED(PTR)
Definition: varatt.h:288
#define VARSIZE(PTR)
Definition: varatt.h:279
#define VARATT_CONVERTED_SHORT_SIZE(PTR)
Definition: varatt.h:261
#define VARATT_IS_EXTERNAL(PTR)
Definition: varatt.h:289

References Assert, BTreeTupleIsPivot(), BTreeTupleIsPosting(), data, DatumGetPointer(), ereport, errcode(), errmsg(), ERROR, i, index_form_tuple(), index_getattr(), INDEX_MAX_KEYS, IndexTupleHasVarwidths, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), len, TupleDescData::natts, palloc(), pfree(), PG_DETOAST_DATUM, PointerGetDatum(), RelationGetDescr, RelationGetRelationName, SET_VARSIZE_SHORT, IndexTupleData::t_tid, TOAST_INDEX_TARGET, TupleDescAttr, VARATT_CAN_MAKE_SHORT, VARATT_CONVERTED_SHORT_SIZE, VARATT_IS_COMPRESSED, VARATT_IS_EXTERNAL, VARDATA, and VARSIZE.

Referenced by bt_target_page_check(), and bt_tuple_present_callback().

◆ bt_pivot_tuple_identical()

static bool bt_pivot_tuple_identical ( bool  heapkeyspace,
IndexTuple  itup1,
IndexTuple  itup2 
)
static

Definition at line 2213 of file verify_nbtree.c.

2214 {
2215  if (IndexTupleSize(itup1) != IndexTupleSize(itup2))
2216  return false;
2217 
2218  if (heapkeyspace)
2219  {
2220  /*
2221  * Offset number will contain important information in heapkeyspace
2222  * indexes: the number of attributes left in the pivot tuple following
2223  * suffix truncation. Don't skip over it (compare it too).
2224  */
2225  if (memcmp(&itup1->t_tid.ip_posid, &itup2->t_tid.ip_posid,
2226  IndexTupleSize(itup1) -
2227  offsetof(ItemPointerData, ip_posid)) != 0)
2228  return false;
2229  }
2230  else
2231  {
2232  /*
2233  * Cannot rely on offset number field having consistent value across
2234  * levels on pg_upgrade'd !heapkeyspace indexes. Compare contents of
2235  * tuple starting from just after item pointer (i.e. after block
2236  * number and offset number).
2237  */
2238  if (memcmp(&itup1->t_info, &itup2->t_info,
2239  IndexTupleSize(itup1) -
2240  offsetof(IndexTupleData, t_info)) != 0)
2241  return false;
2242  }
2243 
2244  return true;
2245 }
unsigned short t_info
Definition: itup.h:49
OffsetNumber ip_posid
Definition: itemptr.h:39

References IndexTupleSize, ItemPointerData::ip_posid, IndexTupleData::t_info, and IndexTupleData::t_tid.

Referenced by bt_child_highkey_check().

◆ bt_posting_plain_tuple()

static IndexTuple bt_posting_plain_tuple ( IndexTuple  itup,
int  n 
)
inlinestatic

Definition at line 3117 of file verify_nbtree.c.

3118 {
3119  Assert(BTreeTupleIsPosting(itup));
3120 
3121  /* Returns non-posting-list tuple */
3122  return _bt_form_posting(itup, BTreeTupleGetPostingN(itup, n), 1);
3123 }
IndexTuple _bt_form_posting(IndexTuple base, ItemPointer htids, int nhtids)
Definition: nbtdedup.c:864

References _bt_form_posting(), Assert, BTreeTupleGetPostingN(), and BTreeTupleIsPosting().

Referenced by bt_target_page_check().

◆ bt_recheck_sibling_links()

static void bt_recheck_sibling_links ( BtreeCheckState state,
BlockNumber  btpo_prev_from_target,
BlockNumber  leftcurrent 
)
static

Definition at line 1237 of file verify_nbtree.c.

1240 {
1241  /* passing metapage to BTPageGetOpaque() would give irrelevant findings */
1242  Assert(leftcurrent != P_NONE);
1243 
1244  if (!state->readonly)
1245  {
1246  Buffer lbuf;
1247  Buffer newtargetbuf;
1248  Page page;
1249  BTPageOpaque opaque;
1250  BlockNumber newtargetblock;
1251 
1252  /* Couple locks in the usual order for nbtree: Left to right */
1253  lbuf = ReadBufferExtended(state->rel, MAIN_FORKNUM, leftcurrent,
1254  RBM_NORMAL, state->checkstrategy);
1255  LockBuffer(lbuf, BT_READ);
1256  _bt_checkpage(state->rel, lbuf);
1257  page = BufferGetPage(lbuf);
1258  opaque = BTPageGetOpaque(page);
1259  if (P_ISDELETED(opaque))
1260  {
1261  /*
1262  * Cannot reason about concurrently deleted page -- the left link
1263  * in the page to the right is expected to point to some other
1264  * page to the left (not leftcurrent page).
1265  *
1266  * Note that we deliberately don't give up with a half-dead page.
1267  */
1268  UnlockReleaseBuffer(lbuf);
1269  return;
1270  }
1271 
1272  newtargetblock = opaque->btpo_next;
1273  /* Avoid self-deadlock when newtargetblock == leftcurrent */
1274  if (newtargetblock != leftcurrent)
1275  {
1276  newtargetbuf = ReadBufferExtended(state->rel, MAIN_FORKNUM,
1277  newtargetblock, RBM_NORMAL,
1278  state->checkstrategy);
1279  LockBuffer(newtargetbuf, BT_READ);
1280  _bt_checkpage(state->rel, newtargetbuf);
1281  page = BufferGetPage(newtargetbuf);
1282  opaque = BTPageGetOpaque(page);
1283  /* btpo_prev_from_target may have changed; update it */
1284  btpo_prev_from_target = opaque->btpo_prev;
1285  }
1286  else
1287  {
1288  /*
1289  * leftcurrent right sibling points back to leftcurrent block.
1290  * Index is corrupt. Easiest way to handle this is to pretend
1291  * that we actually read from a distinct page that has an invalid
1292  * block number in its btpo_prev.
1293  */
1294  newtargetbuf = InvalidBuffer;
1295  btpo_prev_from_target = InvalidBlockNumber;
1296  }
1297 
1298  /*
1299  * No need to check P_ISDELETED here, since new target block cannot be
1300  * marked deleted as long as we hold a lock on lbuf
1301  */
1302  if (BufferIsValid(newtargetbuf))
1303  UnlockReleaseBuffer(newtargetbuf);
1304  UnlockReleaseBuffer(lbuf);
1305 
1306  if (btpo_prev_from_target == leftcurrent)
1307  {
1308  /* Report split in left sibling, not target (or new target) */
1309  ereport(DEBUG1,
1310  (errcode(ERRCODE_INTERNAL_ERROR),
1311  errmsg_internal("harmless concurrent page split detected in index \"%s\"",
1313  errdetail_internal("Block=%u new right sibling=%u original right sibling=%u.",
1314  leftcurrent, newtargetblock,
1315  state->targetblock)));
1316  return;
1317  }
1318 
1319  /*
1320  * Index is corrupt. Make sure that we report correct target page.
1321  *
1322  * This could have changed in cases where there was a concurrent page
1323  * split, as well as index corruption (at least in theory). Note that
1324  * btpo_prev_from_target was already updated above.
1325  */
1326  state->targetblock = newtargetblock;
1327  }
1328 
1329  ereport(ERROR,
1330  (errcode(ERRCODE_INDEX_CORRUPTED),
1331  errmsg("left link/right link pair in index \"%s\" not in agreement",
1333  errdetail_internal("Block=%u left block=%u left link from block=%u.",
1334  state->targetblock, leftcurrent,
1335  btpo_prev_from_target)));
1336 }
int Buffer
Definition: buf.h:23
#define InvalidBuffer
Definition: buf.h:25
void UnlockReleaseBuffer(Buffer buffer)
Definition: bufmgr.c:4941
void LockBuffer(Buffer buffer, int mode)
Definition: bufmgr.c:5158
Buffer ReadBufferExtended(Relation reln, ForkNumber forkNum, BlockNumber blockNum, ReadBufferMode mode, BufferAccessStrategy strategy)
Definition: bufmgr.c:793
static Page BufferGetPage(Buffer buffer)
Definition: bufmgr.h:400
@ RBM_NORMAL
Definition: bufmgr.h:45
static bool BufferIsValid(Buffer bufnum)
Definition: bufmgr.h:351
void _bt_checkpage(Relation rel, Buffer buf)
Definition: nbtpage.c:797
#define BT_READ
Definition: nbtree.h:719

References _bt_checkpage(), Assert, BT_READ, BTPageGetOpaque, BTPageOpaqueData::btpo_next, BTPageOpaqueData::btpo_prev, BufferGetPage(), BufferIsValid(), DEBUG1, ereport, errcode(), errdetail_internal(), errmsg(), errmsg_internal(), ERROR, InvalidBlockNumber, InvalidBuffer, LockBuffer(), MAIN_FORKNUM, P_ISDELETED, P_NONE, RBM_NORMAL, ReadBufferExtended(), RelationGetRelationName, and UnlockReleaseBuffer().

Referenced by bt_check_level_from_leftmost().

◆ bt_report_duplicate()

static void bt_report_duplicate ( BtreeCheckState state,
BtreeLastVisibleEntry lVis,
ItemPointer  nexttid,
BlockNumber  nblock,
OffsetNumber  noffset,
int  nposting 
)
static

Definition at line 1009 of file verify_nbtree.c.

1013 {
1014  char *htid,
1015  *nhtid,
1016  *itid,
1017  *nitid = "",
1018  *pposting = "",
1019  *pnposting = "";
1020 
1021  htid = psprintf("tid=(%u,%u)",
1024  nhtid = psprintf("tid=(%u,%u)",
1027  itid = psprintf("tid=(%u,%u)", lVis->blkno, lVis->offset);
1028 
1029  if (nblock != lVis->blkno || noffset != lVis->offset)
1030  nitid = psprintf(" tid=(%u,%u)", nblock, noffset);
1031 
1032  if (lVis->postingIndex >= 0)
1033  pposting = psprintf(" posting %u", lVis->postingIndex);
1034 
1035  if (nposting >= 0)
1036  pnposting = psprintf(" posting %u", nposting);
1037 
1038  ereport(ERROR,
1039  (errcode(ERRCODE_INDEX_CORRUPTED),
1040  errmsg("index uniqueness is violated for index \"%s\"",
1042  errdetail("Index %s%s and%s%s (point to heap %s and %s) page lsn=%X/%X.",
1043  itid, pposting, nitid, pnposting, htid, nhtid,
1044  LSN_FORMAT_ARGS(state->targetlsn))));
1045 }

References BtreeLastVisibleEntry::blkno, ereport, errcode(), errdetail(), errmsg(), ERROR, ItemPointerGetBlockNumberNoCheck(), ItemPointerGetOffsetNumberNoCheck(), LSN_FORMAT_ARGS, BtreeLastVisibleEntry::offset, BtreeLastVisibleEntry::postingIndex, psprintf(), RelationGetRelationName, and BtreeLastVisibleEntry::tid.

Referenced by bt_entry_unique_check().

◆ bt_right_page_check_scankey()

static BTScanInsert bt_right_page_check_scankey ( BtreeCheckState state,
OffsetNumber rightfirstoffset 
)
static

Definition at line 2006 of file verify_nbtree.c.

2007 {
2008  BTPageOpaque opaque;
2009  ItemId rightitem;
2010  IndexTuple firstitup;
2011  BlockNumber targetnext;
2012  Page rightpage;
2013  OffsetNumber nline;
2014 
2015  /* Determine target's next block number */
2016  opaque = BTPageGetOpaque(state->target);
2017 
2018  /* If target is already rightmost, no right sibling; nothing to do here */
2019  if (P_RIGHTMOST(opaque))
2020  return NULL;
2021 
2022  /*
2023  * General notes on concurrent page splits and page deletion:
2024  *
2025  * Routines like _bt_search() don't require *any* page split interlock
2026  * when descending the tree, including something very light like a buffer
2027  * pin. That's why it's okay that we don't either. This avoidance of any
2028  * need to "couple" buffer locks is the raison d' etre of the Lehman & Yao
2029  * algorithm, in fact.
2030  *
2031  * That leaves deletion. A deleted page won't actually be recycled by
2032  * VACUUM early enough for us to fail to at least follow its right link
2033  * (or left link, or downlink) and find its sibling, because recycling
2034  * does not occur until no possible index scan could land on the page.
2035  * Index scans can follow links with nothing more than their snapshot as
2036  * an interlock and be sure of at least that much. (See page
2037  * recycling/"visible to everyone" notes in nbtree README.)
2038  *
2039  * Furthermore, it's okay if we follow a rightlink and find a half-dead or
2040  * dead (ignorable) page one or more times. There will either be a
2041  * further right link to follow that leads to a live page before too long
2042  * (before passing by parent's rightmost child), or we will find the end
2043  * of the entire level instead (possible when parent page is itself the
2044  * rightmost on its level).
2045  */
2046  targetnext = opaque->btpo_next;
2047  for (;;)
2048  {
2050 
2051  rightpage = palloc_btree_page(state, targetnext);
2052  opaque = BTPageGetOpaque(rightpage);
2053 
2054  if (!P_IGNORE(opaque) || P_RIGHTMOST(opaque))
2055  break;
2056 
2057  /*
2058  * We landed on a deleted or half-dead sibling page. Step right until
2059  * we locate a live sibling page.
2060  */
2061  ereport(DEBUG2,
2062  (errcode(ERRCODE_NO_DATA),
2063  errmsg_internal("level %u sibling page in block %u of index \"%s\" was found deleted or half dead",
2064  opaque->btpo_level, targetnext, RelationGetRelationName(state->rel)),
2065  errdetail_internal("Deleted page found when building scankey from right sibling.")));
2066 
2067  targetnext = opaque->btpo_next;
2068 
2069  /* Be slightly more pro-active in freeing this memory, just in case */
2070  pfree(rightpage);
2071  }
2072 
2073  /*
2074  * No ShareLock held case -- why it's safe to proceed.
2075  *
2076  * Problem:
2077  *
2078  * We must avoid false positive reports of corruption when caller treats
2079  * item returned here as an upper bound on target's last item. In
2080  * general, false positives are disallowed. Avoiding them here when
2081  * caller is !readonly is subtle.
2082  *
2083  * A concurrent page deletion by VACUUM of the target page can result in
2084  * the insertion of items on to this right sibling page that would
2085  * previously have been inserted on our target page. There might have
2086  * been insertions that followed the target's downlink after it was made
2087  * to point to right sibling instead of target by page deletion's first
2088  * phase. The inserters insert items that would belong on target page.
2089  * This race is very tight, but it's possible. This is our only problem.
2090  *
2091  * Non-problems:
2092  *
2093  * We are not hindered by a concurrent page split of the target; we'll
2094  * never land on the second half of the page anyway. A concurrent split
2095  * of the right page will also not matter, because the first data item
2096  * remains the same within the left half, which we'll reliably land on. If
2097  * we had to skip over ignorable/deleted pages, it cannot matter because
2098  * their key space has already been atomically merged with the first
2099  * non-ignorable page we eventually find (doesn't matter whether the page
2100  * we eventually find is a true sibling or a cousin of target, which we go
2101  * into below).
2102  *
2103  * Solution:
2104  *
2105  * Caller knows that it should reverify that target is not ignorable
2106  * (half-dead or deleted) when cross-page sibling item comparison appears
2107  * to indicate corruption (invariant fails). This detects the single race
2108  * condition that exists for caller. This is correct because the
2109  * continued existence of target block as non-ignorable (not half-dead or
2110  * deleted) implies that target page was not merged into from the right by
2111  * deletion; the key space at or after target never moved left. Target's
2112  * parent either has the same downlink to target as before, or a <
2113  * downlink due to deletion at the left of target. Target either has the
2114  * same highkey as before, or a highkey < before when there is a page
2115  * split. (The rightmost concurrently-split-from-target-page page will
2116  * still have the same highkey as target was originally found to have,
2117  * which for our purposes is equivalent to target's highkey itself never
2118  * changing, since we reliably skip over
2119  * concurrently-split-from-target-page pages.)
2120  *
2121  * In simpler terms, we allow that the key space of the target may expand
2122  * left (the key space can move left on the left side of target only), but
2123  * the target key space cannot expand right and get ahead of us without
2124  * our detecting it. The key space of the target cannot shrink, unless it
2125  * shrinks to zero due to the deletion of the original page, our canary
2126  * condition. (To be very precise, we're a bit stricter than that because
2127  * it might just have been that the target page split and only the
2128  * original target page was deleted. We can be more strict, just not more
2129  * lax.)
2130  *
2131  * Top level tree walk caller moves on to next page (makes it the new
2132  * target) following recovery from this race. (cf. The rationale for
2133  * child/downlink verification needing a ShareLock within
2134  * bt_child_check(), where page deletion is also the main source of
2135  * trouble.)
2136  *
2137  * Note that it doesn't matter if right sibling page here is actually a
2138  * cousin page, because in order for the key space to be readjusted in a
2139  * way that causes us issues in next level up (guiding problematic
2140  * concurrent insertions to the cousin from the grandparent rather than to
2141  * the sibling from the parent), there'd have to be page deletion of
2142  * target's parent page (affecting target's parent's downlink in target's
2143  * grandparent page). Internal page deletion only occurs when there are
2144  * no child pages (they were all fully deleted), and caller is checking
2145  * that the target's parent has at least one non-deleted (so
2146  * non-ignorable) child: the target page. (Note that the first phase of
2147  * deletion atomically marks the page to be deleted half-dead/ignorable at
2148  * the same time downlink in its parent is removed, so caller will
2149  * definitely not fail to detect that this happened.)
2150  *
2151  * This trick is inspired by the method backward scans use for dealing
2152  * with concurrent page splits; concurrent page deletion is a problem that
2153  * similarly receives special consideration sometimes (it's possible that
2154  * the backwards scan will re-read its "original" block after failing to
2155  * find a right-link to it, having already moved in the opposite direction
2156  * (right/"forwards") a few times to try to locate one). Just like us,
2157  * that happens only to determine if there was a concurrent page deletion
2158  * of a reference page, and just like us if there was a page deletion of
2159  * that reference page it means we can move on from caring about the
2160  * reference page. See the nbtree README for a full description of how
2161  * that works.
2162  */
2163  nline = PageGetMaxOffsetNumber(rightpage);
2164 
2165  /*
2166  * Get first data item, if any
2167  */
2168  if (P_ISLEAF(opaque) && nline >= P_FIRSTDATAKEY(opaque))
2169  {
2170  /* Return first data item (if any) */
2171  rightitem = PageGetItemIdCareful(state, targetnext, rightpage,
2172  P_FIRSTDATAKEY(opaque));
2173  *rightfirstoffset = P_FIRSTDATAKEY(opaque);
2174  }
2175  else if (!P_ISLEAF(opaque) &&
2176  nline >= OffsetNumberNext(P_FIRSTDATAKEY(opaque)))
2177  {
2178  /*
2179  * Return first item after the internal page's "negative infinity"
2180  * item
2181  */
2182  rightitem = PageGetItemIdCareful(state, targetnext, rightpage,
2183  OffsetNumberNext(P_FIRSTDATAKEY(opaque)));
2184  }
2185  else
2186  {
2187  /*
2188  * No first item. Page is probably empty leaf page, but it's also
2189  * possible that it's an internal page with only a negative infinity
2190  * item.
2191  */
2192  ereport(DEBUG2,
2193  (errcode(ERRCODE_NO_DATA),
2194  errmsg_internal("%s block %u of index \"%s\" has no first data item",
2195  P_ISLEAF(opaque) ? "leaf" : "internal", targetnext,
2196  RelationGetRelationName(state->rel))));
2197  return NULL;
2198  }
2199 
2200  /*
2201  * Return first real item scankey. Note that this relies on right page
2202  * memory remaining allocated.
2203  */
2204  firstitup = (IndexTuple) PageGetItem(rightpage, rightitem);
2205  return bt_mkscankey_pivotsearch(state->rel, firstitup);
2206 }
#define DEBUG2
Definition: elog.h:29
static BTScanInsert bt_mkscankey_pivotsearch(Relation rel, IndexTuple itup)

References bt_mkscankey_pivotsearch(), BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTPageOpaqueData::btpo_next, CHECK_FOR_INTERRUPTS, DEBUG2, ereport, errcode(), errdetail_internal(), errmsg_internal(), OffsetNumberNext, P_FIRSTDATAKEY, P_IGNORE, P_ISLEAF, P_RIGHTMOST, PageGetItem(), PageGetItemIdCareful(), PageGetMaxOffsetNumber(), palloc_btree_page(), pfree(), and RelationGetRelationName.

Referenced by bt_target_page_check().

◆ bt_rootdescend()

static bool bt_rootdescend ( BtreeCheckState state,
IndexTuple  itup 
)
static

Definition at line 3150 of file verify_nbtree.c.

3151 {
3152  BTScanInsert key;
3153  BTStack stack;
3154  Buffer lbuf;
3155  bool exists;
3156 
3157  key = _bt_mkscankey(state->rel, itup);
3158  Assert(key->heapkeyspace && key->scantid != NULL);
3159 
3160  /*
3161  * Search from root.
3162  *
3163  * Ideally, we would arrange to only move right within _bt_search() when
3164  * an interrupted page split is detected (i.e. when the incomplete split
3165  * bit is found to be set), but for now we accept the possibility that
3166  * that could conceal an inconsistency.
3167  */
3168  Assert(state->readonly && state->rootdescend);
3169  exists = false;
3170  stack = _bt_search(state->rel, NULL, key, &lbuf, BT_READ);
3171 
3172  if (BufferIsValid(lbuf))
3173  {
3174  BTInsertStateData insertstate;
3175  OffsetNumber offnum;
3176  Page page;
3177 
3178  insertstate.itup = itup;
3179  insertstate.itemsz = MAXALIGN(IndexTupleSize(itup));
3180  insertstate.itup_key = key;
3181  insertstate.postingoff = 0;
3182  insertstate.bounds_valid = false;
3183  insertstate.buf = lbuf;
3184 
3185  /* Get matching tuple on leaf page */
3186  offnum = _bt_binsrch_insert(state->rel, &insertstate);
3187  /* Compare first >= matching item on leaf page, if any */
3188  page = BufferGetPage(lbuf);
3189  /* Should match on first heap TID when tuple has a posting list */
3190  if (offnum <= PageGetMaxOffsetNumber(page) &&
3191  insertstate.postingoff <= 0 &&
3192  _bt_compare(state->rel, key, page, offnum) == 0)
3193  exists = true;
3194  _bt_relbuf(state->rel, lbuf);
3195  }
3196 
3197  _bt_freestack(stack);
3198  pfree(key);
3199 
3200  return exists;
3201 }
#define MAXALIGN(LEN)
Definition: c.h:802
void _bt_relbuf(Relation rel, Buffer buf)
Definition: nbtpage.c:1023
BTStack _bt_search(Relation rel, Relation heaprel, BTScanInsert key, Buffer *bufP, int access)
Definition: nbtsearch.c:100
OffsetNumber _bt_binsrch_insert(Relation rel, BTInsertState insertstate)
Definition: nbtsearch.c:472
int32 _bt_compare(Relation rel, BTScanInsert key, Page page, OffsetNumber offnum)
Definition: nbtsearch.c:686
void _bt_freestack(BTStack stack)
Definition: nbtutils.c:221
bool bounds_valid
Definition: nbtree.h:823
IndexTuple itup
Definition: nbtree.h:811
BTScanInsert itup_key
Definition: nbtree.h:813

References _bt_binsrch_insert(), _bt_compare(), _bt_freestack(), _bt_mkscankey(), _bt_relbuf(), _bt_search(), Assert, BTInsertStateData::bounds_valid, BT_READ, BTInsertStateData::buf, BufferGetPage(), BufferIsValid(), IndexTupleSize, BTInsertStateData::itemsz, BTInsertStateData::itup, BTInsertStateData::itup_key, sort-test::key, MAXALIGN, PageGetMaxOffsetNumber(), pfree(), and BTInsertStateData::postingoff.

Referenced by bt_target_page_check().

◆ bt_target_page_check()

static void bt_target_page_check ( BtreeCheckState state)
static

Definition at line 1377 of file verify_nbtree.c.

1378 {
1379  OffsetNumber offset;
1380  OffsetNumber max;
1381  BTPageOpaque topaque;
1382 
1383  /* Last visible entry info for checking indexes with unique constraint */
1385 
1386  topaque = BTPageGetOpaque(state->target);
1387  max = PageGetMaxOffsetNumber(state->target);
1388 
1389  elog(DEBUG2, "verifying %u items on %s block %u", max,
1390  P_ISLEAF(topaque) ? "leaf" : "internal", state->targetblock);
1391 
1392  /*
1393  * Check the number of attributes in high key. Note, rightmost page
1394  * doesn't contain a high key, so nothing to check
1395  */
1396  if (!P_RIGHTMOST(topaque))
1397  {
1398  ItemId itemid;
1399  IndexTuple itup;
1400 
1401  /* Verify line pointer before checking tuple */
1402  itemid = PageGetItemIdCareful(state, state->targetblock,
1403  state->target, P_HIKEY);
1404  if (!_bt_check_natts(state->rel, state->heapkeyspace, state->target,
1405  P_HIKEY))
1406  {
1407  itup = (IndexTuple) PageGetItem(state->target, itemid);
1408  ereport(ERROR,
1409  (errcode(ERRCODE_INDEX_CORRUPTED),
1410  errmsg("wrong number of high key index tuple attributes in index \"%s\"",
1412  errdetail_internal("Index block=%u natts=%u block type=%s page lsn=%X/%X.",
1413  state->targetblock,
1414  BTreeTupleGetNAtts(itup, state->rel),
1415  P_ISLEAF(topaque) ? "heap" : "index",
1416  LSN_FORMAT_ARGS(state->targetlsn))));
1417  }
1418  }
1419 
1420  /*
1421  * Loop over page items, starting from first non-highkey item, not high
1422  * key (if any). Most tests are not performed for the "negative infinity"
1423  * real item (if any).
1424  */
1425  for (offset = P_FIRSTDATAKEY(topaque);
1426  offset <= max;
1427  offset = OffsetNumberNext(offset))
1428  {
1429  ItemId itemid;
1430  IndexTuple itup;
1431  size_t tupsize;
1432  BTScanInsert skey;
1433  bool lowersizelimit;
1434  ItemPointer scantid;
1435 
1436  /*
1437  * True if we already called bt_entry_unique_check() for the current
1438  * item. This helps to avoid visiting the heap for keys, which are
1439  * anyway presented only once and can't comprise a unique violation.
1440  */
1441  bool unique_checked = false;
1442 
1444 
1445  itemid = PageGetItemIdCareful(state, state->targetblock,
1446  state->target, offset);
1447  itup = (IndexTuple) PageGetItem(state->target, itemid);
1448  tupsize = IndexTupleSize(itup);
1449 
1450  /*
1451  * lp_len should match the IndexTuple reported length exactly, since
1452  * lp_len is completely redundant in indexes, and both sources of
1453  * tuple length are MAXALIGN()'d. nbtree does not use lp_len all that
1454  * frequently, and is surprisingly tolerant of corrupt lp_len fields.
1455  */
1456  if (tupsize != ItemIdGetLength(itemid))
1457  ereport(ERROR,
1458  (errcode(ERRCODE_INDEX_CORRUPTED),
1459  errmsg("index tuple size does not equal lp_len in index \"%s\"",
1461  errdetail_internal("Index tid=(%u,%u) tuple size=%zu lp_len=%u page lsn=%X/%X.",
1462  state->targetblock, offset,
1463  tupsize, ItemIdGetLength(itemid),
1464  LSN_FORMAT_ARGS(state->targetlsn)),
1465  errhint("This could be a torn page problem.")));
1466 
1467  /* Check the number of index tuple attributes */
1468  if (!_bt_check_natts(state->rel, state->heapkeyspace, state->target,
1469  offset))
1470  {
1471  ItemPointer tid;
1472  char *itid,
1473  *htid;
1474 
1475  itid = psprintf("(%u,%u)", state->targetblock, offset);
1476  tid = BTreeTupleGetPointsToTID(itup);
1477  htid = psprintf("(%u,%u)",
1480 
1481  ereport(ERROR,
1482  (errcode(ERRCODE_INDEX_CORRUPTED),
1483  errmsg("wrong number of index tuple attributes in index \"%s\"",
1485  errdetail_internal("Index tid=%s natts=%u points to %s tid=%s page lsn=%X/%X.",
1486  itid,
1487  BTreeTupleGetNAtts(itup, state->rel),
1488  P_ISLEAF(topaque) ? "heap" : "index",
1489  htid,
1490  LSN_FORMAT_ARGS(state->targetlsn))));
1491  }
1492 
1493  /*
1494  * Don't try to generate scankey using "negative infinity" item on
1495  * internal pages. They are always truncated to zero attributes.
1496  */
1497  if (offset_is_negative_infinity(topaque, offset))
1498  {
1499  /*
1500  * We don't call bt_child_check() for "negative infinity" items.
1501  * But if we're performing downlink connectivity check, we do it
1502  * for every item including "negative infinity" one.
1503  */
1504  if (!P_ISLEAF(topaque) && state->readonly)
1505  {
1507  offset,
1508  NULL,
1509  topaque->btpo_level);
1510  }
1511  continue;
1512  }
1513 
1514  /*
1515  * Readonly callers may optionally verify that non-pivot tuples can
1516  * each be found by an independent search that starts from the root.
1517  * Note that we deliberately don't do individual searches for each
1518  * TID, since the posting list itself is validated by other checks.
1519  */
1520  if (state->rootdescend && P_ISLEAF(topaque) &&
1521  !bt_rootdescend(state, itup))
1522  {
1524  char *itid,
1525  *htid;
1526 
1527  itid = psprintf("(%u,%u)", state->targetblock, offset);
1528  htid = psprintf("(%u,%u)", ItemPointerGetBlockNumber(tid),
1530 
1531  ereport(ERROR,
1532  (errcode(ERRCODE_INDEX_CORRUPTED),
1533  errmsg("could not find tuple using search from root page in index \"%s\"",
1535  errdetail_internal("Index tid=%s points to heap tid=%s page lsn=%X/%X.",
1536  itid, htid,
1537  LSN_FORMAT_ARGS(state->targetlsn))));
1538  }
1539 
1540  /*
1541  * If tuple is a posting list tuple, make sure posting list TIDs are
1542  * in order
1543  */
1544  if (BTreeTupleIsPosting(itup))
1545  {
1546  ItemPointerData last;
1547  ItemPointer current;
1548 
1549  ItemPointerCopy(BTreeTupleGetHeapTID(itup), &last);
1550 
1551  for (int i = 1; i < BTreeTupleGetNPosting(itup); i++)
1552  {
1553 
1554  current = BTreeTupleGetPostingN(itup, i);
1555 
1556  if (ItemPointerCompare(current, &last) <= 0)
1557  {
1558  char *itid = psprintf("(%u,%u)", state->targetblock, offset);
1559 
1560  ereport(ERROR,
1561  (errcode(ERRCODE_INDEX_CORRUPTED),
1562  errmsg_internal("posting list contains misplaced TID in index \"%s\"",
1564  errdetail_internal("Index tid=%s posting list offset=%d page lsn=%X/%X.",
1565  itid, i,
1566  LSN_FORMAT_ARGS(state->targetlsn))));
1567  }
1568 
1569  ItemPointerCopy(current, &last);
1570  }
1571  }
1572 
1573  /* Build insertion scankey for current page offset */
1574  skey = bt_mkscankey_pivotsearch(state->rel, itup);
1575 
1576  /*
1577  * Make sure tuple size does not exceed the relevant BTREE_VERSION
1578  * specific limit.
1579  *
1580  * BTREE_VERSION 4 (which introduced heapkeyspace rules) requisitioned
1581  * a small amount of space from BTMaxItemSize() in order to ensure
1582  * that suffix truncation always has enough space to add an explicit
1583  * heap TID back to a tuple -- we pessimistically assume that every
1584  * newly inserted tuple will eventually need to have a heap TID
1585  * appended during a future leaf page split, when the tuple becomes
1586  * the basis of the new high key (pivot tuple) for the leaf page.
1587  *
1588  * Since the reclaimed space is reserved for that purpose, we must not
1589  * enforce the slightly lower limit when the extra space has been used
1590  * as intended. In other words, there is only a cross-version
1591  * difference in the limit on tuple size within leaf pages.
1592  *
1593  * Still, we're particular about the details within BTREE_VERSION 4
1594  * internal pages. Pivot tuples may only use the extra space for its
1595  * designated purpose. Enforce the lower limit for pivot tuples when
1596  * an explicit heap TID isn't actually present. (In all other cases
1597  * suffix truncation is guaranteed to generate a pivot tuple that's no
1598  * larger than the firstright tuple provided to it by its caller.)
1599  */
1600  lowersizelimit = skey->heapkeyspace &&
1601  (P_ISLEAF(topaque) || BTreeTupleGetHeapTID(itup) == NULL);
1602  if (tupsize > (lowersizelimit ? BTMaxItemSize(state->target) :
1603  BTMaxItemSizeNoHeapTid(state->target)))
1604  {
1606  char *itid,
1607  *htid;
1608 
1609  itid = psprintf("(%u,%u)", state->targetblock, offset);
1610  htid = psprintf("(%u,%u)",
1613 
1614  ereport(ERROR,
1615  (errcode(ERRCODE_INDEX_CORRUPTED),
1616  errmsg("index row size %zu exceeds maximum for index \"%s\"",
1617  tupsize, RelationGetRelationName(state->rel)),
1618  errdetail_internal("Index tid=%s points to %s tid=%s page lsn=%X/%X.",
1619  itid,
1620  P_ISLEAF(topaque) ? "heap" : "index",
1621  htid,
1622  LSN_FORMAT_ARGS(state->targetlsn))));
1623  }
1624 
1625  /* Fingerprint leaf page tuples (those that point to the heap) */
1626  if (state->heapallindexed && P_ISLEAF(topaque) && !ItemIdIsDead(itemid))
1627  {
1628  IndexTuple norm;
1629 
1630  if (BTreeTupleIsPosting(itup))
1631  {
1632  /* Fingerprint all elements as distinct "plain" tuples */
1633  for (int i = 0; i < BTreeTupleGetNPosting(itup); i++)
1634  {
1635  IndexTuple logtuple;
1636 
1637  logtuple = bt_posting_plain_tuple(itup, i);
1638  norm = bt_normalize_tuple(state, logtuple);
1639  bloom_add_element(state->filter, (unsigned char *) norm,
1640  IndexTupleSize(norm));
1641  /* Be tidy */
1642  if (norm != logtuple)
1643  pfree(norm);
1644  pfree(logtuple);
1645  }
1646  }
1647  else
1648  {
1649  norm = bt_normalize_tuple(state, itup);
1650  bloom_add_element(state->filter, (unsigned char *) norm,
1651  IndexTupleSize(norm));
1652  /* Be tidy */
1653  if (norm != itup)
1654  pfree(norm);
1655  }
1656  }
1657 
1658  /*
1659  * * High key check *
1660  *
1661  * If there is a high key (if this is not the rightmost page on its
1662  * entire level), check that high key actually is upper bound on all
1663  * page items. If this is a posting list tuple, we'll need to set
1664  * scantid to be highest TID in posting list.
1665  *
1666  * We prefer to check all items against high key rather than checking
1667  * just the last and trusting that the operator class obeys the
1668  * transitive law (which implies that all previous items also
1669  * respected the high key invariant if they pass the item order
1670  * check).
1671  *
1672  * Ideally, we'd compare every item in the index against every other
1673  * item in the index, and not trust opclass obedience of the
1674  * transitive law to bridge the gap between children and their
1675  * grandparents (as well as great-grandparents, and so on). We don't
1676  * go to those lengths because that would be prohibitively expensive,
1677  * and probably not markedly more effective in practice.
1678  *
1679  * On the leaf level, we check that the key is <= the highkey.
1680  * However, on non-leaf levels we check that the key is < the highkey,
1681  * because the high key is "just another separator" rather than a copy
1682  * of some existing key item; we expect it to be unique among all keys
1683  * on the same level. (Suffix truncation will sometimes produce a
1684  * leaf highkey that is an untruncated copy of the lastleft item, but
1685  * never any other item, which necessitates weakening the leaf level
1686  * check to <=.)
1687  *
1688  * Full explanation for why a highkey is never truly a copy of another
1689  * item from the same level on internal levels:
1690  *
1691  * While the new left page's high key is copied from the first offset
1692  * on the right page during an internal page split, that's not the
1693  * full story. In effect, internal pages are split in the middle of
1694  * the firstright tuple, not between the would-be lastleft and
1695  * firstright tuples: the firstright key ends up on the left side as
1696  * left's new highkey, and the firstright downlink ends up on the
1697  * right side as right's new "negative infinity" item. The negative
1698  * infinity tuple is truncated to zero attributes, so we're only left
1699  * with the downlink. In other words, the copying is just an
1700  * implementation detail of splitting in the middle of a (pivot)
1701  * tuple. (See also: "Notes About Data Representation" in the nbtree
1702  * README.)
1703  */
1704  scantid = skey->scantid;
1705  if (state->heapkeyspace && BTreeTupleIsPosting(itup))
1706  skey->scantid = BTreeTupleGetMaxHeapTID(itup);
1707 
1708  if (!P_RIGHTMOST(topaque) &&
1709  !(P_ISLEAF(topaque) ? invariant_leq_offset(state, skey, P_HIKEY) :
1710  invariant_l_offset(state, skey, P_HIKEY)))
1711  {
1713  char *itid,
1714  *htid;
1715 
1716  itid = psprintf("(%u,%u)", state->targetblock, offset);
1717  htid = psprintf("(%u,%u)",
1720 
1721  ereport(ERROR,
1722  (errcode(ERRCODE_INDEX_CORRUPTED),
1723  errmsg("high key invariant violated for index \"%s\"",
1725  errdetail_internal("Index tid=%s points to %s tid=%s page lsn=%X/%X.",
1726  itid,
1727  P_ISLEAF(topaque) ? "heap" : "index",
1728  htid,
1729  LSN_FORMAT_ARGS(state->targetlsn))));
1730  }
1731  /* Reset, in case scantid was set to (itup) posting tuple's max TID */
1732  skey->scantid = scantid;
1733 
1734  /*
1735  * * Item order check *
1736  *
1737  * Check that items are stored on page in logical order, by checking
1738  * current item is strictly less than next item (if any).
1739  */
1740  if (OffsetNumberNext(offset) <= max &&
1741  !invariant_l_offset(state, skey, OffsetNumberNext(offset)))
1742  {
1743  ItemPointer tid;
1744  char *itid,
1745  *htid,
1746  *nitid,
1747  *nhtid;
1748 
1749  itid = psprintf("(%u,%u)", state->targetblock, offset);
1750  tid = BTreeTupleGetPointsToTID(itup);
1751  htid = psprintf("(%u,%u)",
1754  nitid = psprintf("(%u,%u)", state->targetblock,
1755  OffsetNumberNext(offset));
1756 
1757  /* Reuse itup to get pointed-to heap location of second item */
1758  itemid = PageGetItemIdCareful(state, state->targetblock,
1759  state->target,
1760  OffsetNumberNext(offset));
1761  itup = (IndexTuple) PageGetItem(state->target, itemid);
1762  tid = BTreeTupleGetPointsToTID(itup);
1763  nhtid = psprintf("(%u,%u)",
1766 
1767  ereport(ERROR,
1768  (errcode(ERRCODE_INDEX_CORRUPTED),
1769  errmsg("item order invariant violated for index \"%s\"",
1771  errdetail_internal("Lower index tid=%s (points to %s tid=%s) "
1772  "higher index tid=%s (points to %s tid=%s) "
1773  "page lsn=%X/%X.",
1774  itid,
1775  P_ISLEAF(topaque) ? "heap" : "index",
1776  htid,
1777  nitid,
1778  P_ISLEAF(topaque) ? "heap" : "index",
1779  nhtid,
1780  LSN_FORMAT_ARGS(state->targetlsn))));
1781  }
1782 
1783  /*
1784  * If the index is unique verify entries uniqueness by checking the
1785  * heap tuples visibility. Immediately check posting tuples and
1786  * tuples with repeated keys. Postpone check for keys, which have the
1787  * first appearance.
1788  */
1789  if (state->checkunique && state->indexinfo->ii_Unique &&
1790  P_ISLEAF(topaque) && !skey->anynullkeys &&
1791  (BTreeTupleIsPosting(itup) || ItemPointerIsValid(lVis.tid)))
1792  {
1793  bt_entry_unique_check(state, itup, state->targetblock, offset,
1794  &lVis);
1795  unique_checked = true;
1796  }
1797 
1798  if (state->checkunique && state->indexinfo->ii_Unique &&
1799  P_ISLEAF(topaque) && OffsetNumberNext(offset) <= max)
1800  {
1801  /* Save current scankey tid */
1802  scantid = skey->scantid;
1803 
1804  /*
1805  * Invalidate scankey tid to make _bt_compare compare only keys in
1806  * the item to report equality even if heap TIDs are different
1807  */
1808  skey->scantid = NULL;
1809 
1810  /*
1811  * If next key tuple is different, invalidate last visible entry
1812  * data (whole index tuple or last posting in index tuple). Key
1813  * containing null value does not violate unique constraint and
1814  * treated as different to any other key.
1815  *
1816  * If the next key is the same as the previous one, do the
1817  * bt_entry_unique_check() call if it was postponed.
1818  */
1819  if (_bt_compare(state->rel, skey, state->target,
1820  OffsetNumberNext(offset)) != 0 || skey->anynullkeys)
1821  {
1822  lVis.blkno = InvalidBlockNumber;
1823  lVis.offset = InvalidOffsetNumber;
1824  lVis.postingIndex = -1;
1825  lVis.tid = NULL;
1826  }
1827  else if (!unique_checked)
1828  {
1829  bt_entry_unique_check(state, itup, state->targetblock, offset,
1830  &lVis);
1831  }
1832  skey->scantid = scantid; /* Restore saved scan key state */
1833  }
1834 
1835  /*
1836  * * Last item check *
1837  *
1838  * Check last item against next/right page's first data item's when
1839  * last item on page is reached. This additional check will detect
1840  * transposed pages iff the supposed right sibling page happens to
1841  * belong before target in the key space. (Otherwise, a subsequent
1842  * heap verification will probably detect the problem.)
1843  *
1844  * This check is similar to the item order check that will have
1845  * already been performed for every other "real" item on target page
1846  * when last item is checked. The difference is that the next item
1847  * (the item that is compared to target's last item) needs to come
1848  * from the next/sibling page. There may not be such an item
1849  * available from sibling for various reasons, though (e.g., target is
1850  * the rightmost page on level).
1851  */
1852  if (offset == max)
1853  {
1854  BTScanInsert rightkey;
1855 
1856  /* first offset on a right index page (log only) */
1857  OffsetNumber rightfirstoffset = InvalidOffsetNumber;
1858 
1859  /* Get item in next/right page */
1860  rightkey = bt_right_page_check_scankey(state, &rightfirstoffset);
1861 
1862  if (rightkey &&
1863  !invariant_g_offset(state, rightkey, max))
1864  {
1865  /*
1866  * As explained at length in bt_right_page_check_scankey(),
1867  * there is a known !readonly race that could account for
1868  * apparent violation of invariant, which we must check for
1869  * before actually proceeding with raising error. Our canary
1870  * condition is that target page was deleted.
1871  */
1872  if (!state->readonly)
1873  {
1874  /* Get fresh copy of target page */
1875  state->target = palloc_btree_page(state, state->targetblock);
1876  /* Note that we deliberately do not update target LSN */
1877  topaque = BTPageGetOpaque(state->target);
1878 
1879  /*
1880  * All !readonly checks now performed; just return
1881  */
1882  if (P_IGNORE(topaque))
1883  return;
1884  }
1885 
1886  ereport(ERROR,
1887  (errcode(ERRCODE_INDEX_CORRUPTED),
1888  errmsg("cross page item order invariant violated for index \"%s\"",
1890  errdetail_internal("Last item on page tid=(%u,%u) page lsn=%X/%X.",
1891  state->targetblock, offset,
1892  LSN_FORMAT_ARGS(state->targetlsn))));
1893  }
1894 
1895  /*
1896  * If index has unique constraint make sure that no more than one
1897  * found equal items is visible.
1898  */
1899  if (state->checkunique && state->indexinfo->ii_Unique &&
1900  rightkey && P_ISLEAF(topaque) && !P_RIGHTMOST(topaque))
1901  {
1902  BlockNumber rightblock_number = topaque->btpo_next;
1903 
1904  elog(DEBUG2, "check cross page unique condition");
1905 
1906  /*
1907  * Make _bt_compare compare only index keys without heap TIDs.
1908  * rightkey->scantid is modified destructively but it is ok
1909  * for it is not used later.
1910  */
1911  rightkey->scantid = NULL;
1912 
1913  /* The first key on the next page is the same */
1914  if (_bt_compare(state->rel, rightkey, state->target, max) == 0 &&
1915  !rightkey->anynullkeys)
1916  {
1917  Page rightpage;
1918 
1919  /*
1920  * Do the bt_entry_unique_check() call if it was
1921  * postponed.
1922  */
1923  if (!unique_checked)
1924  bt_entry_unique_check(state, itup, state->targetblock,
1925  offset, &lVis);
1926 
1927  elog(DEBUG2, "cross page equal keys");
1928  rightpage = palloc_btree_page(state,
1929  rightblock_number);
1930  topaque = BTPageGetOpaque(rightpage);
1931 
1932  if (P_IGNORE(topaque))
1933  {
1934  pfree(rightpage);
1935  break;
1936  }
1937 
1938  if (unlikely(!P_ISLEAF(topaque)))
1939  ereport(ERROR,
1940  (errcode(ERRCODE_INDEX_CORRUPTED),
1941  errmsg("right block of leaf block is non-leaf for index \"%s\"",
1943  errdetail_internal("Block=%u page lsn=%X/%X.",
1944  state->targetblock,
1945  LSN_FORMAT_ARGS(state->targetlsn))));
1946 
1947  itemid = PageGetItemIdCareful(state, rightblock_number,
1948  rightpage,
1949  rightfirstoffset);
1950  itup = (IndexTuple) PageGetItem(rightpage, itemid);
1951 
1952  bt_entry_unique_check(state, itup, rightblock_number, rightfirstoffset, &lVis);
1953 
1954  pfree(rightpage);
1955  }
1956  }
1957  }
1958 
1959  /*
1960  * * Downlink check *
1961  *
1962  * Additional check of child items iff this is an internal page and
1963  * caller holds a ShareLock. This happens for every downlink (item)
1964  * in target excluding the negative-infinity downlink (again, this is
1965  * because it has no useful value to compare).
1966  */
1967  if (!P_ISLEAF(topaque) && state->readonly)
1968  bt_child_check(state, skey, offset);
1969  }
1970 
1971  /*
1972  * Special case bt_child_highkey_check() call
1973  *
1974  * We don't pass a real downlink, but we've to finish the level
1975  * processing. If condition is satisfied, we've already processed all the
1976  * downlinks from the target level. But there still might be pages to the
1977  * right of the child page pointer to by our rightmost downlink. And they
1978  * might have missing downlinks. This final call checks for them.
1979  */
1980  if (!P_ISLEAF(topaque) && P_RIGHTMOST(topaque) && state->readonly)
1981  {
1983  NULL, topaque->btpo_level);
1984  }
1985 }
void bloom_add_element(bloom_filter *filter, unsigned char *elem, size_t len)
Definition: bloomfilter.c:135
#define unlikely(x)
Definition: c.h:314
#define ItemIdGetLength(itemId)
Definition: itemid.h:59
#define ItemIdIsDead(itemId)
Definition: itemid.h:113
int32 ItemPointerCompare(ItemPointer arg1, ItemPointer arg2)
Definition: itemptr.c:51
static void ItemPointerCopy(const ItemPointerData *fromPointer, ItemPointerData *toPointer)
Definition: itemptr.h:172
#define BTMaxItemSizeNoHeapTid(page)
Definition: nbtree.h:169
#define BTMaxItemSize(page)
Definition: nbtree.h:164
static ItemPointer BTreeTupleGetMaxHeapTID(IndexTuple itup)
Definition: nbtree.h:664
#define BTreeTupleGetNAtts(itup, rel)
Definition: nbtree.h:577
bool _bt_check_natts(Relation rel, bool heapkeyspace, Page page, OffsetNumber offnum)
Definition: nbtutils.c:4907
#define InvalidOffsetNumber
Definition: off.h:26
ItemPointer scantid
Definition: nbtree.h:791
bool heapkeyspace
Definition: nbtree.h:786
bool anynullkeys
Definition: nbtree.h:788
static bool invariant_l_offset(BtreeCheckState *state, BTScanInsert key, OffsetNumber upperbound)
static ItemPointer BTreeTupleGetPointsToTID(IndexTuple itup)
static IndexTuple bt_posting_plain_tuple(IndexTuple itup, int n)
static bool invariant_leq_offset(BtreeCheckState *state, BTScanInsert key, OffsetNumber upperbound)
static bool bt_rootdescend(BtreeCheckState *state, IndexTuple itup)
static BTScanInsert bt_right_page_check_scankey(BtreeCheckState *state, OffsetNumber *rightfirstoffset)
static bool invariant_g_offset(BtreeCheckState *state, BTScanInsert key, OffsetNumber lowerbound)
static IndexTuple bt_normalize_tuple(BtreeCheckState *state, IndexTuple itup)
static void bt_child_check(BtreeCheckState *state, BTScanInsert targetkey, OffsetNumber downlinkoffnum)
static void bt_entry_unique_check(BtreeCheckState *state, IndexTuple itup, BlockNumber targetblock, OffsetNumber offset, BtreeLastVisibleEntry *lVis)

References _bt_check_natts(), _bt_compare(), BTScanInsertData::anynullkeys, BtreeLastVisibleEntry::blkno, bloom_add_element(), bt_child_check(), bt_child_highkey_check(), bt_entry_unique_check(), bt_mkscankey_pivotsearch(), bt_normalize_tuple(), bt_posting_plain_tuple(), bt_right_page_check_scankey(), bt_rootdescend(), BTMaxItemSize, BTMaxItemSizeNoHeapTid, BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTPageOpaqueData::btpo_next, BTreeTupleGetHeapTID(), BTreeTupleGetMaxHeapTID(), BTreeTupleGetNAtts, BTreeTupleGetNPosting(), BTreeTupleGetPointsToTID(), BTreeTupleGetPostingN(), BTreeTupleIsPosting(), CHECK_FOR_INTERRUPTS, DEBUG2, elog, ereport, errcode(), errdetail_internal(), errhint(), errmsg(), errmsg_internal(), ERROR, BTScanInsertData::heapkeyspace, i, IndexTupleSize, InvalidBlockNumber, InvalidOffsetNumber, invariant_g_offset(), invariant_l_offset(), invariant_leq_offset(), ItemIdGetLength, ItemIdIsDead, ItemPointerCompare(), ItemPointerCopy(), ItemPointerGetBlockNumber(), ItemPointerGetBlockNumberNoCheck(), ItemPointerGetOffsetNumber(), ItemPointerGetOffsetNumberNoCheck(), ItemPointerIsValid(), LSN_FORMAT_ARGS, BtreeLastVisibleEntry::offset, offset_is_negative_infinity(), OffsetNumberNext, P_FIRSTDATAKEY, P_HIKEY, P_IGNORE, P_ISLEAF, P_RIGHTMOST, PageGetItem(), PageGetItemIdCareful(), PageGetMaxOffsetNumber(), palloc_btree_page(), pfree(), BtreeLastVisibleEntry::postingIndex, psprintf(), RelationGetRelationName, BTScanInsertData::scantid, BtreeLastVisibleEntry::tid, and unlikely.

Referenced by bt_check_level_from_leftmost().

◆ bt_tuple_present_callback()

static void bt_tuple_present_callback ( Relation  index,
ItemPointer  tid,
Datum values,
bool isnull,
bool  tupleIsAlive,
void *  checkstate 
)
static

Definition at line 2921 of file verify_nbtree.c.

2923 {
2924  BtreeCheckState *state = (BtreeCheckState *) checkstate;
2925  IndexTuple itup,
2926  norm;
2927 
2928  Assert(state->heapallindexed);
2929 
2930  /* Generate a normalized index tuple for fingerprinting */
2931  itup = index_form_tuple(RelationGetDescr(index), values, isnull);
2932  itup->t_tid = *tid;
2933  norm = bt_normalize_tuple(state, itup);
2934 
2935  /* Probe Bloom filter -- tuple should be present */
2936  if (bloom_lacks_element(state->filter, (unsigned char *) norm,
2937  IndexTupleSize(norm)))
2938  ereport(ERROR,
2940  errmsg("heap tuple (%u,%u) from table \"%s\" lacks matching index tuple within index \"%s\"",
2941  ItemPointerGetBlockNumber(&(itup->t_tid)),
2943  RelationGetRelationName(state->heaprel),
2945  !state->readonly
2946  ? errhint("Retrying verification using the function bt_index_parent_check() might provide a more specific error.")
2947  : 0));
2948 
2949  state->heaptuplespresent++;
2950  pfree(itup);
2951  /* Cannot leak memory here */
2952  if (norm != itup)
2953  pfree(norm);
2954 }
bool bloom_lacks_element(bloom_filter *filter, unsigned char *elem, size_t len)
Definition: bloomfilter.c:157
static Datum values[MAXATTR]
Definition: bootstrap.c:150
#define ERRCODE_DATA_CORRUPTED
Definition: pg_basebackup.c:41
Definition: type.h:95

References Assert, bloom_lacks_element(), bt_normalize_tuple(), ereport, errcode(), ERRCODE_DATA_CORRUPTED, errhint(), errmsg(), ERROR, index_form_tuple(), IndexTupleSize, ItemPointerGetBlockNumber(), ItemPointerGetOffsetNumber(), pfree(), RelationGetDescr, RelationGetRelationName, IndexTupleData::t_tid, and values.

Referenced by bt_check_every_level().

◆ btree_index_checkable()

static void btree_index_checkable ( Relation  rel)
inlinestatic

Definition at line 430 of file verify_nbtree.c.

431 {
432  if (rel->rd_rel->relkind != RELKIND_INDEX ||
433  rel->rd_rel->relam != BTREE_AM_OID)
434  ereport(ERROR,
435  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
436  errmsg("only B-Tree indexes are supported as targets for verification"),
437  errdetail("Relation \"%s\" is not a B-Tree index.",
438  RelationGetRelationName(rel))));
439 
440  if (RELATION_IS_OTHER_TEMP(rel))
441  ereport(ERROR,
442  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
443  errmsg("cannot access temporary tables of other sessions"),
444  errdetail("Index \"%s\" is associated with temporary relation.",
445  RelationGetRelationName(rel))));
446 
447  if (!rel->rd_index->indisvalid)
448  ereport(ERROR,
449  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
450  errmsg("cannot check index \"%s\"",
452  errdetail("Index is not valid.")));
453 }
#define RELATION_IS_OTHER_TEMP(relation)
Definition: rel.h:658

References ereport, errcode(), errdetail(), errmsg(), ERROR, RelationData::rd_index, RelationData::rd_rel, RELATION_IS_OTHER_TEMP, and RelationGetRelationName.

Referenced by bt_index_check_internal().

◆ btree_index_mainfork_expected()

static bool btree_index_mainfork_expected ( Relation  rel)
inlinestatic

Definition at line 464 of file verify_nbtree.c.

465 {
466  if (rel->rd_rel->relpersistence != RELPERSISTENCE_UNLOGGED ||
468  return true;
469 
470  ereport(DEBUG1,
471  (errcode(ERRCODE_READ_ONLY_SQL_TRANSACTION),
472  errmsg("cannot verify unlogged index \"%s\" during recovery, skipping",
473  RelationGetRelationName(rel))));
474 
475  return false;
476 }
bool RecoveryInProgress(void)
Definition: xlog.c:6333

References DEBUG1, ereport, errcode(), errmsg(), RelationData::rd_rel, RecoveryInProgress(), and RelationGetRelationName.

Referenced by bt_index_check_internal().

◆ BTreeTupleGetHeapTIDCareful()

static ItemPointer BTreeTupleGetHeapTIDCareful ( BtreeCheckState state,
IndexTuple  itup,
bool  nonpivot 
)
inlinestatic

Definition at line 3673 of file verify_nbtree.c.

3675 {
3676  ItemPointer htid;
3677 
3678  /*
3679  * Caller determines whether this is supposed to be a pivot or non-pivot
3680  * tuple using page type and item offset number. Verify that tuple
3681  * metadata agrees with this.
3682  */
3683  Assert(state->heapkeyspace);
3684  if (BTreeTupleIsPivot(itup) && nonpivot)
3685  ereport(ERROR,
3686  (errcode(ERRCODE_INDEX_CORRUPTED),
3687  errmsg_internal("block %u or its right sibling block or child block in index \"%s\" has unexpected pivot tuple",
3688  state->targetblock,
3689  RelationGetRelationName(state->rel))));
3690 
3691  if (!BTreeTupleIsPivot(itup) && !nonpivot)
3692  ereport(ERROR,
3693  (errcode(ERRCODE_INDEX_CORRUPTED),
3694  errmsg_internal("block %u or its right sibling block or child block in index \"%s\" has unexpected non-pivot tuple",
3695  state->targetblock,
3696  RelationGetRelationName(state->rel))));
3697 
3698  htid = BTreeTupleGetHeapTID(itup);
3699  if (!ItemPointerIsValid(htid) && nonpivot)
3700  ereport(ERROR,
3701  (errcode(ERRCODE_INDEX_CORRUPTED),
3702  errmsg("block %u or its right sibling block or child block in index \"%s\" contains non-pivot tuple that lacks a heap TID",
3703  state->targetblock,
3704  RelationGetRelationName(state->rel))));
3705 
3706  return htid;
3707 }

References Assert, BTreeTupleGetHeapTID(), BTreeTupleIsPivot(), ereport, errcode(), errmsg(), errmsg_internal(), ERROR, ItemPointerIsValid(), and RelationGetRelationName.

Referenced by invariant_l_nontarget_offset(), and invariant_l_offset().

◆ BTreeTupleGetPointsToTID()

static ItemPointer BTreeTupleGetPointsToTID ( IndexTuple  itup)
inlinestatic

Definition at line 3721 of file verify_nbtree.c.

3722 {
3723  /*
3724  * Rely on the assumption that !heapkeyspace internal page data items will
3725  * correctly return TID with downlink here -- BTreeTupleGetHeapTID() won't
3726  * recognize it as a pivot tuple, but everything still works out because
3727  * the t_tid field is still returned
3728  */
3729  if (!BTreeTupleIsPivot(itup))
3730  return BTreeTupleGetHeapTID(itup);
3731 
3732  /* Pivot tuple returns TID with downlink block (heapkeyspace variant) */
3733  return &itup->t_tid;
3734 }

References BTreeTupleGetHeapTID(), BTreeTupleIsPivot(), and IndexTupleData::t_tid.

Referenced by bt_target_page_check().

◆ heap_entry_is_visible()

static bool heap_entry_is_visible ( BtreeCheckState state,
ItemPointer  tid 
)
static

Definition at line 990 of file verify_nbtree.c.

991 {
992  bool tid_visible;
993 
994  TupleTableSlot *slot = table_slot_create(state->heaprel, NULL);
995 
996  tid_visible = table_tuple_fetch_row_version(state->heaprel,
997  tid, state->snapshot, slot);
998  if (slot != NULL)
1000 
1001  return tid_visible;
1002 }
void ExecDropSingleTupleTableSlot(TupleTableSlot *slot)
Definition: execTuples.c:1341
TupleTableSlot * table_slot_create(Relation relation, List **reglist)
Definition: tableam.c:91
static bool table_tuple_fetch_row_version(Relation rel, ItemPointer tid, Snapshot snapshot, TupleTableSlot *slot)
Definition: tableam.h:1288

References ExecDropSingleTupleTableSlot(), table_slot_create(), and table_tuple_fetch_row_version().

Referenced by bt_entry_unique_check().

◆ invariant_g_offset()

static bool invariant_g_offset ( BtreeCheckState state,
BTScanInsert  key,
OffsetNumber  lowerbound 
)
inlinestatic

Definition at line 3335 of file verify_nbtree.c.

3337 {
3338  int32 cmp;
3339 
3340  Assert(!key->nextkey && key->backward);
3341 
3342  cmp = _bt_compare(state->rel, key, state->target, lowerbound);
3343 
3344  /* pg_upgrade'd indexes may legally have equal sibling tuples */
3345  if (!key->heapkeyspace)
3346  return cmp >= 0;
3347 
3348  /*
3349  * No need to consider the possibility that scankey has attributes that we
3350  * need to force to be interpreted as negative infinity. _bt_compare() is
3351  * able to determine that scankey is greater than negative infinity. The
3352  * distinction between "==" and "<" isn't interesting here, since
3353  * corruption is indicated either way.
3354  */
3355  return cmp > 0;
3356 }
signed int int32
Definition: c.h:496
static int cmp(const chr *x, const chr *y, size_t len)
Definition: regc_locale.c:743

References _bt_compare(), Assert, cmp(), and sort-test::key.

Referenced by bt_target_page_check().

◆ invariant_l_nontarget_offset()

static bool invariant_l_nontarget_offset ( BtreeCheckState state,
BTScanInsert  key,
BlockNumber  nontargetblock,
Page  nontarget,
OffsetNumber  upperbound 
)
inlinestatic

Definition at line 3371 of file verify_nbtree.c.

3374 {
3375  ItemId itemid;
3376  int32 cmp;
3377 
3378  Assert(!key->nextkey && key->backward);
3379 
3380  /* Verify line pointer before checking tuple */
3381  itemid = PageGetItemIdCareful(state, nontargetblock, nontarget,
3382  upperbound);
3383  cmp = _bt_compare(state->rel, key, nontarget, upperbound);
3384 
3385  /* pg_upgrade'd indexes may legally have equal sibling tuples */
3386  if (!key->heapkeyspace)
3387  return cmp <= 0;
3388 
3389  /* See invariant_l_offset() for an explanation of this extra step */
3390  if (cmp == 0)
3391  {
3392  IndexTuple child;
3393  int uppnkeyatts;
3394  ItemPointer childheaptid;
3395  BTPageOpaque copaque;
3396  bool nonpivot;
3397 
3398  child = (IndexTuple) PageGetItem(nontarget, itemid);
3399  copaque = BTPageGetOpaque(nontarget);
3400  nonpivot = P_ISLEAF(copaque) && upperbound >= P_FIRSTDATAKEY(copaque);
3401 
3402  /* Get number of keys + heap TID for child/non-target item */
3403  uppnkeyatts = BTreeTupleGetNKeyAtts(child, state->rel);
3404  childheaptid = BTreeTupleGetHeapTIDCareful(state, child, nonpivot);
3405 
3406  /* Heap TID is tiebreaker key attribute */
3407  if (key->keysz == uppnkeyatts)
3408  return key->scantid == NULL && childheaptid != NULL;
3409 
3410  return key->keysz < uppnkeyatts;
3411  }
3412 
3413  return cmp < 0;
3414 }
static ItemPointer BTreeTupleGetHeapTIDCareful(BtreeCheckState *state, IndexTuple itup, bool nonpivot)
#define BTreeTupleGetNKeyAtts(itup, rel)
Definition: verify_nbtree.c:54

References _bt_compare(), Assert, BTPageGetOpaque, BTreeTupleGetHeapTIDCareful(), BTreeTupleGetNKeyAtts, cmp(), sort-test::key, P_FIRSTDATAKEY, P_ISLEAF, PageGetItem(), and PageGetItemIdCareful().

Referenced by bt_child_check().

◆ invariant_l_offset()

static bool invariant_l_offset ( BtreeCheckState state,
BTScanInsert  key,
OffsetNumber  upperbound 
)
inlinestatic

Definition at line 3249 of file verify_nbtree.c.

3251 {
3252  ItemId itemid;
3253  int32 cmp;
3254 
3255  Assert(!key->nextkey && key->backward);
3256 
3257  /* Verify line pointer before checking tuple */
3258  itemid = PageGetItemIdCareful(state, state->targetblock, state->target,
3259  upperbound);
3260  /* pg_upgrade'd indexes may legally have equal sibling tuples */
3261  if (!key->heapkeyspace)
3262  return invariant_leq_offset(state, key, upperbound);
3263 
3264  cmp = _bt_compare(state->rel, key, state->target, upperbound);
3265 
3266  /*
3267  * _bt_compare() is capable of determining that a scankey with a
3268  * filled-out attribute is greater than pivot tuples where the comparison
3269  * is resolved at a truncated attribute (value of attribute in pivot is
3270  * minus infinity). However, it is not capable of determining that a
3271  * scankey is _less than_ a tuple on the basis of a comparison resolved at
3272  * _scankey_ minus infinity attribute. Complete an extra step to simulate
3273  * having minus infinity values for omitted scankey attribute(s).
3274  */
3275  if (cmp == 0)
3276  {
3277  BTPageOpaque topaque;
3278  IndexTuple ritup;
3279  int uppnkeyatts;
3280  ItemPointer rheaptid;
3281  bool nonpivot;
3282 
3283  ritup = (IndexTuple) PageGetItem(state->target, itemid);
3284  topaque = BTPageGetOpaque(state->target);
3285  nonpivot = P_ISLEAF(topaque) && upperbound >= P_FIRSTDATAKEY(topaque);
3286 
3287  /* Get number of keys + heap TID for item to the right */
3288  uppnkeyatts = BTreeTupleGetNKeyAtts(ritup, state->rel);
3289  rheaptid = BTreeTupleGetHeapTIDCareful(state, ritup, nonpivot);
3290 
3291  /* Heap TID is tiebreaker key attribute */
3292  if (key->keysz == uppnkeyatts)
3293  return key->scantid == NULL && rheaptid != NULL;
3294 
3295  return key->keysz < uppnkeyatts;
3296  }
3297 
3298  return cmp < 0;
3299 }

References _bt_compare(), Assert, BTPageGetOpaque, BTreeTupleGetHeapTIDCareful(), BTreeTupleGetNKeyAtts, cmp(), invariant_leq_offset(), sort-test::key, P_FIRSTDATAKEY, P_ISLEAF, PageGetItem(), and PageGetItemIdCareful().

Referenced by bt_target_page_check().

◆ invariant_leq_offset()

static bool invariant_leq_offset ( BtreeCheckState state,
BTScanInsert  key,
OffsetNumber  upperbound 
)
inlinestatic

Definition at line 3312 of file verify_nbtree.c.

3314 {
3315  int32 cmp;
3316 
3317  Assert(!key->nextkey && key->backward);
3318 
3319  cmp = _bt_compare(state->rel, key, state->target, upperbound);
3320 
3321  return cmp <= 0;
3322 }

References _bt_compare(), Assert, cmp(), and sort-test::key.

Referenced by bt_target_page_check(), and invariant_l_offset().

◆ offset_is_negative_infinity()

static bool offset_is_negative_infinity ( BTPageOpaque  opaque,
OffsetNumber  offset 
)
inlinestatic

Definition at line 3214 of file verify_nbtree.c.

3215 {
3216  /*
3217  * For internal pages only, the first item after high key, if any, is
3218  * negative infinity item. Internal pages always have a negative infinity
3219  * item, whereas leaf pages never have one. This implies that negative
3220  * infinity item is either first or second line item, or there is none
3221  * within page.
3222  *
3223  * Negative infinity items are a special case among pivot tuples. They
3224  * always have zero attributes, while all other pivot tuples always have
3225  * nkeyatts attributes.
3226  *
3227  * Right-most pages don't have a high key, but could be said to
3228  * conceptually have a "positive infinity" high key. Thus, there is a
3229  * symmetry between down link items in parent pages, and high keys in
3230  * children. Together, they represent the part of the key space that
3231  * belongs to each page in the index. For example, all children of the
3232  * root page will have negative infinity as a lower bound from root
3233  * negative infinity downlink, and positive infinity as an upper bound
3234  * (implicitly, from "imaginary" positive infinity high key in root).
3235  */
3236  return !P_ISLEAF(opaque) && offset == P_FIRSTDATAKEY(opaque);
3237 }

References P_FIRSTDATAKEY, and P_ISLEAF.

Referenced by bt_child_check(), bt_child_highkey_check(), and bt_target_page_check().

◆ PageGetItemIdCareful()

static ItemId PageGetItemIdCareful ( BtreeCheckState state,
BlockNumber  block,
Page  page,
OffsetNumber  offset 
)
static

Definition at line 3633 of file verify_nbtree.c.

3635 {
3636  ItemId itemid = PageGetItemId(page, offset);
3637 
3638  if (ItemIdGetOffset(itemid) + ItemIdGetLength(itemid) >
3639  BLCKSZ - MAXALIGN(sizeof(BTPageOpaqueData)))
3640  ereport(ERROR,
3641  (errcode(ERRCODE_INDEX_CORRUPTED),
3642  errmsg("line pointer points past end of tuple space in index \"%s\"",
3644  errdetail_internal("Index tid=(%u,%u) lp_off=%u, lp_len=%u lp_flags=%u.",
3645  block, offset, ItemIdGetOffset(itemid),
3646  ItemIdGetLength(itemid),
3647  ItemIdGetFlags(itemid))));
3648 
3649  /*
3650  * Verify that line pointer isn't LP_REDIRECT or LP_UNUSED, since nbtree
3651  * never uses either. Verify that line pointer has storage, too, since
3652  * even LP_DEAD items should within nbtree.
3653  */
3654  if (ItemIdIsRedirected(itemid) || !ItemIdIsUsed(itemid) ||
3655  ItemIdGetLength(itemid) == 0)
3656  ereport(ERROR,
3657  (errcode(ERRCODE_INDEX_CORRUPTED),
3658  errmsg("invalid line pointer storage in index \"%s\"",
3660  errdetail_internal("Index tid=(%u,%u) lp_off=%u, lp_len=%u lp_flags=%u.",
3661  block, offset, ItemIdGetOffset(itemid),
3662  ItemIdGetLength(itemid),
3663  ItemIdGetFlags(itemid))));
3664 
3665  return itemid;
3666 }
static ItemId PageGetItemId(Page page, OffsetNumber offsetNumber)
Definition: bufpage.h:243
#define ItemIdGetOffset(itemId)
Definition: itemid.h:65
#define ItemIdIsUsed(itemId)
Definition: itemid.h:92
#define ItemIdIsRedirected(itemId)
Definition: itemid.h:106
#define ItemIdGetFlags(itemId)
Definition: itemid.h:71

References ereport, errcode(), errdetail_internal(), errmsg(), ERROR, ItemIdGetFlags, ItemIdGetLength, ItemIdGetOffset, ItemIdIsRedirected, ItemIdIsUsed, MAXALIGN, PageGetItemId(), and RelationGetRelationName.

Referenced by bt_check_level_from_leftmost(), bt_child_check(), bt_child_highkey_check(), bt_downlink_missing_check(), bt_right_page_check_scankey(), bt_target_page_check(), invariant_l_nontarget_offset(), and invariant_l_offset().

◆ palloc_btree_page()

static Page palloc_btree_page ( BtreeCheckState state,
BlockNumber  blocknum 
)
static

Definition at line 3431 of file verify_nbtree.c.

3432 {
3433  Buffer buffer;
3434  Page page;
3435  BTPageOpaque opaque;
3436  OffsetNumber maxoffset;
3437 
3438  page = palloc(BLCKSZ);
3439 
3440  /*
3441  * We copy the page into local storage to avoid holding pin on the buffer
3442  * longer than we must.
3443  */
3444  buffer = ReadBufferExtended(state->rel, MAIN_FORKNUM, blocknum, RBM_NORMAL,
3445  state->checkstrategy);
3446  LockBuffer(buffer, BT_READ);
3447 
3448  /*
3449  * Perform the same basic sanity checking that nbtree itself performs for
3450  * every page:
3451  */
3452  _bt_checkpage(state->rel, buffer);
3453 
3454  /* Only use copy of page in palloc()'d memory */
3455  memcpy(page, BufferGetPage(buffer), BLCKSZ);
3456  UnlockReleaseBuffer(buffer);
3457 
3458  opaque = BTPageGetOpaque(page);
3459 
3460  if (P_ISMETA(opaque) && blocknum != BTREE_METAPAGE)
3461  ereport(ERROR,
3462  (errcode(ERRCODE_INDEX_CORRUPTED),
3463  errmsg("invalid meta page found at block %u in index \"%s\"",
3464  blocknum, RelationGetRelationName(state->rel))));
3465 
3466  /* Check page from block that ought to be meta page */
3467  if (blocknum == BTREE_METAPAGE)
3468  {
3469  BTMetaPageData *metad = BTPageGetMeta(page);
3470 
3471  if (!P_ISMETA(opaque) ||
3472  metad->btm_magic != BTREE_MAGIC)
3473  ereport(ERROR,
3474  (errcode(ERRCODE_INDEX_CORRUPTED),
3475  errmsg("index \"%s\" meta page is corrupt",
3476  RelationGetRelationName(state->rel))));
3477 
3478  if (metad->btm_version < BTREE_MIN_VERSION ||
3479  metad->btm_version > BTREE_VERSION)
3480  ereport(ERROR,
3481  (errcode(ERRCODE_INDEX_CORRUPTED),
3482  errmsg("version mismatch in index \"%s\": file version %d, "
3483  "current version %d, minimum supported version %d",
3485  metad->btm_version, BTREE_VERSION,
3486  BTREE_MIN_VERSION)));
3487 
3488  /* Finished with metapage checks */
3489  return page;
3490  }
3491 
3492  /*
3493  * Deleted pages that still use the old 32-bit XID representation have no
3494  * sane "level" field because they type pun the field, but all other pages
3495  * (including pages deleted on Postgres 14+) have a valid value.
3496  */
3497  if (!P_ISDELETED(opaque) || P_HAS_FULLXID(opaque))
3498  {
3499  /* Okay, no reason not to trust btpo_level field from page */
3500 
3501  if (P_ISLEAF(opaque) && opaque->btpo_level != 0)
3502  ereport(ERROR,
3503  (errcode(ERRCODE_INDEX_CORRUPTED),
3504  errmsg_internal("invalid leaf page level %u for block %u in index \"%s\"",
3505  opaque->btpo_level, blocknum,
3506  RelationGetRelationName(state->rel))));
3507 
3508  if (!P_ISLEAF(opaque) && opaque->btpo_level == 0)
3509  ereport(ERROR,
3510  (errcode(ERRCODE_INDEX_CORRUPTED),
3511  errmsg_internal("invalid internal page level 0 for block %u in index \"%s\"",
3512  blocknum,
3513  RelationGetRelationName(state->rel))));
3514  }
3515 
3516  /*
3517  * Sanity checks for number of items on page.
3518  *
3519  * As noted at the beginning of _bt_binsrch(), an internal page must have
3520  * children, since there must always be a negative infinity downlink
3521  * (there may also be a highkey). In the case of non-rightmost leaf
3522  * pages, there must be at least a highkey. The exceptions are deleted
3523  * pages, which contain no items.
3524  *
3525  * This is correct when pages are half-dead, since internal pages are
3526  * never half-dead, and leaf pages must have a high key when half-dead
3527  * (the rightmost page can never be deleted). It's also correct with
3528  * fully deleted pages: _bt_unlink_halfdead_page() doesn't change anything
3529  * about the target page other than setting the page as fully dead, and
3530  * setting its xact field. In particular, it doesn't change the sibling
3531  * links in the deletion target itself, since they're required when index
3532  * scans land on the deletion target, and then need to move right (or need
3533  * to move left, in the case of backward index scans).
3534  */
3535  maxoffset = PageGetMaxOffsetNumber(page);
3536  if (maxoffset > MaxIndexTuplesPerPage)
3537  ereport(ERROR,
3538  (errcode(ERRCODE_INDEX_CORRUPTED),
3539  errmsg("Number of items on block %u of index \"%s\" exceeds MaxIndexTuplesPerPage (%u)",
3540  blocknum, RelationGetRelationName(state->rel),
3542 
3543  if (!P_ISLEAF(opaque) && !P_ISDELETED(opaque) && maxoffset < P_FIRSTDATAKEY(opaque))
3544  ereport(ERROR,
3545  (errcode(ERRCODE_INDEX_CORRUPTED),
3546  errmsg("internal block %u in index \"%s\" lacks high key and/or at least one downlink",
3547  blocknum, RelationGetRelationName(state->rel))));
3548 
3549  if (P_ISLEAF(opaque) && !P_ISDELETED(opaque) && !P_RIGHTMOST(opaque) && maxoffset < P_HIKEY)
3550  ereport(ERROR,
3551  (errcode(ERRCODE_INDEX_CORRUPTED),
3552  errmsg("non-rightmost leaf block %u in index \"%s\" lacks high key item",
3553  blocknum, RelationGetRelationName(state->rel))));
3554 
3555  /*
3556  * In general, internal pages are never marked half-dead, except on
3557  * versions of Postgres prior to 9.4, where it can be valid transient
3558  * state. This state is nonetheless treated as corruption by VACUUM on
3559  * from version 9.4 on, so do the same here. See _bt_pagedel() for full
3560  * details.
3561  */
3562  if (!P_ISLEAF(opaque) && P_ISHALFDEAD(opaque))
3563  ereport(ERROR,
3564  (errcode(ERRCODE_INDEX_CORRUPTED),
3565  errmsg("internal page block %u in index \"%s\" is half-dead",
3566  blocknum, RelationGetRelationName(state->rel)),
3567  errhint("This can be caused by an interrupted VACUUM in version 9.3 or older, before upgrade. Please REINDEX it.")));
3568 
3569  /*
3570  * Check that internal pages have no garbage items, and that no page has
3571  * an invalid combination of deletion-related page level flags
3572  */
3573  if (!P_ISLEAF(opaque) && P_HAS_GARBAGE(opaque))
3574  ereport(ERROR,
3575  (errcode(ERRCODE_INDEX_CORRUPTED),
3576  errmsg_internal("internal page block %u in index \"%s\" has garbage items",
3577  blocknum, RelationGetRelationName(state->rel))));
3578 
3579  if (P_HAS_FULLXID(opaque) && !P_ISDELETED(opaque))
3580  ereport(ERROR,
3581  (errcode(ERRCODE_INDEX_CORRUPTED),
3582  errmsg_internal("full transaction id page flag appears in non-deleted block %u in index \"%s\"",
3583  blocknum, RelationGetRelationName(state->rel))));
3584 
3585  if (P_ISDELETED(opaque) && P_ISHALFDEAD(opaque))
3586  ereport(ERROR,
3587  (errcode(ERRCODE_INDEX_CORRUPTED),
3588  errmsg_internal("deleted page block %u in index \"%s\" is half-dead",
3589  blocknum, RelationGetRelationName(state->rel))));
3590 
3591  return page;
3592 }
#define MaxIndexTuplesPerPage
Definition: itup.h:165
#define BTREE_MIN_VERSION
Definition: nbtree.h:151
#define P_HAS_GARBAGE(opaque)
Definition: nbtree.h:226
#define P_ISMETA(opaque)
Definition: nbtree.h:223
#define BTREE_MAGIC
Definition: nbtree.h:149
#define BTREE_VERSION
Definition: nbtree.h:150
uint32 btm_version
Definition: nbtree.h:106
uint32 btm_magic
Definition: nbtree.h:105

References _bt_checkpage(), BT_READ, BTMetaPageData::btm_magic, BTMetaPageData::btm_version, BTPageGetMeta, BTPageGetOpaque, BTPageOpaqueData::btpo_level, BTREE_MAGIC, BTREE_METAPAGE, BTREE_MIN_VERSION, BTREE_VERSION, BufferGetPage(), ereport, errcode(), errhint(), errmsg(), errmsg_internal(), ERROR, LockBuffer(), MAIN_FORKNUM, MaxIndexTuplesPerPage, P_FIRSTDATAKEY, P_HAS_FULLXID, P_HAS_GARBAGE, P_HIKEY, P_ISDELETED, P_ISHALFDEAD, P_ISLEAF, P_ISMETA, P_RIGHTMOST, PageGetMaxOffsetNumber(), palloc(), RBM_NORMAL, ReadBufferExtended(), RelationGetRelationName, and UnlockReleaseBuffer().

Referenced by bt_check_every_level(), bt_check_level_from_leftmost(), bt_child_check(), bt_child_highkey_check(), bt_downlink_missing_check(), bt_leftmost_ignoring_half_dead(), bt_right_page_check_scankey(), and bt_target_page_check().

◆ PG_FUNCTION_INFO_V1() [1/2]

PG_FUNCTION_INFO_V1 ( bt_index_check  )

◆ PG_FUNCTION_INFO_V1() [2/2]

PG_FUNCTION_INFO_V1 ( bt_index_parent_check  )

Variable Documentation

◆ PG_MODULE_MAGIC

PG_MODULE_MAGIC

Definition at line 47 of file verify_nbtree.c.