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
 

Macros

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

Typedefs

typedef struct BtreeCheckState BtreeCheckState
 
typedef struct BtreeLevel BtreeLevel
 

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, ItemPointer tid, BlockNumber block, OffsetNumber offset, int posting, ItemPointer nexttid, BlockNumber nblock, OffsetNumber noffset, int nposting)
 
static void bt_entry_unique_check (BtreeCheckState *state, IndexTuple itup, BlockNumber targetblock, OffsetNumber offset, int *lVis_i, ItemPointer *lVis_tid, OffsetNumber *lVis_offset, BlockNumber *lVis_block)
 
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

◆ 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 492 of file verify_nbtree.c.

495 {
497  Page metapage;
498  BTMetaPageData *metad;
499  uint32 previouslevel;
500  BtreeLevel current;
501  Snapshot snapshot = SnapshotAny;
502 
503  if (!readonly)
504  elog(DEBUG1, "verifying consistency of tree structure for index \"%s\"",
506  else
507  elog(DEBUG1, "verifying consistency of tree structure for index \"%s\" with cross-level checks",
509 
510  /*
511  * This assertion matches the one in index_getnext_tid(). See page
512  * recycling/"visible to everyone" notes in nbtree README.
513  */
515 
516  /*
517  * Initialize state for entire verification operation
518  */
519  state = palloc0(sizeof(BtreeCheckState));
520  state->rel = rel;
521  state->heaprel = heaprel;
522  state->heapkeyspace = heapkeyspace;
523  state->readonly = readonly;
524  state->heapallindexed = heapallindexed;
525  state->rootdescend = rootdescend;
526  state->checkunique = checkunique;
527  state->snapshot = InvalidSnapshot;
528 
529  if (state->heapallindexed)
530  {
531  int64 total_pages;
532  int64 total_elems;
533  uint64 seed;
534 
535  /*
536  * Size Bloom filter based on estimated number of tuples in index,
537  * while conservatively assuming that each block must contain at least
538  * MaxTIDsPerBTreePage / 3 "plain" tuples -- see
539  * bt_posting_plain_tuple() for definition, and details of how posting
540  * list tuples are handled.
541  */
542  total_pages = RelationGetNumberOfBlocks(rel);
543  total_elems = Max(total_pages * (MaxTIDsPerBTreePage / 3),
544  (int64) state->rel->rd_rel->reltuples);
545  /* Generate a random seed to avoid repetition */
547  /* Create Bloom filter to fingerprint index */
548  state->filter = bloom_create(total_elems, maintenance_work_mem, seed);
549  state->heaptuplespresent = 0;
550 
551  /*
552  * Register our own snapshot in !readonly case, rather than asking
553  * table_index_build_scan() to do this for us later. This needs to
554  * happen before index fingerprinting begins, so we can later be
555  * certain that index fingerprinting should have reached all tuples
556  * returned by table_index_build_scan().
557  */
558  if (!state->readonly)
559  {
561 
562  /*
563  * GetTransactionSnapshot() always acquires a new MVCC snapshot in
564  * READ COMMITTED mode. A new snapshot is guaranteed to have all
565  * the entries it requires in the index.
566  *
567  * We must defend against the possibility that an old xact
568  * snapshot was returned at higher isolation levels when that
569  * snapshot is not safe for index scans of the target index. This
570  * is possible when the snapshot sees tuples that are before the
571  * index's indcheckxmin horizon. Throwing an error here should be
572  * very rare. It doesn't seem worth using a secondary snapshot to
573  * avoid this.
574  */
575  if (IsolationUsesXactSnapshot() && rel->rd_index->indcheckxmin &&
577  snapshot->xmin))
578  ereport(ERROR,
580  errmsg("index \"%s\" cannot be verified using transaction snapshot",
581  RelationGetRelationName(rel))));
582  }
583  }
584 
585  /*
586  * We need a snapshot to check the uniqueness of the index. For better
587  * performance take it once per index check. If snapshot already taken
588  * reuse it.
589  */
590  if (state->checkunique)
591  {
592  state->indexinfo = BuildIndexInfo(state->rel);
593  if (state->indexinfo->ii_Unique)
594  {
595  if (snapshot != SnapshotAny)
596  state->snapshot = snapshot;
597  else
599  }
600  }
601 
602  Assert(!state->rootdescend || state->readonly);
603  if (state->rootdescend && !state->heapkeyspace)
604  ereport(ERROR,
605  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
606  errmsg("cannot verify that tuples from index \"%s\" can each be found by an independent index search",
608  errhint("Only B-Tree version 4 indexes support rootdescend verification.")));
609 
610  /* Create context for page */
612  "amcheck context",
614  state->checkstrategy = GetAccessStrategy(BAS_BULKREAD);
615 
616  /* Get true root block from meta-page */
618  metad = BTPageGetMeta(metapage);
619 
620  /*
621  * Certain deletion patterns can result in "skinny" B-Tree indexes, where
622  * the fast root and true root differ.
623  *
624  * Start from the true root, not the fast root, unlike conventional index
625  * scans. This approach is more thorough, and removes the risk of
626  * following a stale fast root from the meta page.
627  */
628  if (metad->btm_fastroot != metad->btm_root)
629  ereport(DEBUG1,
630  (errcode(ERRCODE_NO_DATA),
631  errmsg_internal("harmless fast root mismatch in index \"%s\"",
633  errdetail_internal("Fast root block %u (level %u) differs from true root block %u (level %u).",
634  metad->btm_fastroot, metad->btm_fastlevel,
635  metad->btm_root, metad->btm_level)));
636 
637  /*
638  * Starting at the root, verify every level. Move left to right, top to
639  * bottom. Note that there may be no pages other than the meta page (meta
640  * page can indicate that root is P_NONE when the index is totally empty).
641  */
642  previouslevel = InvalidBtreeLevel;
643  current.level = metad->btm_level;
644  current.leftmost = metad->btm_root;
645  current.istruerootlevel = true;
646  while (current.leftmost != P_NONE)
647  {
648  /*
649  * Verify this level, and get left most page for next level down, if
650  * not at leaf level
651  */
652  current = bt_check_level_from_leftmost(state, current);
653 
654  if (current.leftmost == InvalidBlockNumber)
655  ereport(ERROR,
656  (errcode(ERRCODE_INDEX_CORRUPTED),
657  errmsg("index \"%s\" has no valid pages on level below %u or first level",
658  RelationGetRelationName(rel), previouslevel)));
659 
660  previouslevel = current.level;
661  }
662 
663  /*
664  * * Check whether heap contains unindexed/malformed tuples *
665  */
666  if (state->heapallindexed)
667  {
668  IndexInfo *indexinfo = BuildIndexInfo(state->rel);
669  TableScanDesc scan;
670 
671  /*
672  * Create our own scan for table_index_build_scan(), rather than
673  * getting it to do so for us. This is required so that we can
674  * actually use the MVCC snapshot registered earlier in !readonly
675  * case.
676  *
677  * Note that table_index_build_scan() calls heap_endscan() for us.
678  */
679  scan = table_beginscan_strat(state->heaprel, /* relation */
680  snapshot, /* snapshot */
681  0, /* number of keys */
682  NULL, /* scan key */
683  true, /* buffer access strategy OK */
684  true); /* syncscan OK? */
685 
686  /*
687  * Scan will behave as the first scan of a CREATE INDEX CONCURRENTLY
688  * behaves in !readonly case.
689  *
690  * It's okay that we don't actually use the same lock strength for the
691  * heap relation as any other ii_Concurrent caller would in !readonly
692  * case. We have no reason to care about a concurrent VACUUM
693  * operation, since there isn't going to be a second scan of the heap
694  * that needs to be sure that there was no concurrent recycling of
695  * TIDs.
696  */
697  indexinfo->ii_Concurrent = !state->readonly;
698 
699  /*
700  * Don't wait for uncommitted tuple xact commit/abort when index is a
701  * unique index on a catalog (or an index used by an exclusion
702  * constraint). This could otherwise happen in the readonly case.
703  */
704  indexinfo->ii_Unique = false;
705  indexinfo->ii_ExclusionOps = NULL;
706  indexinfo->ii_ExclusionProcs = NULL;
707  indexinfo->ii_ExclusionStrats = NULL;
708 
709  elog(DEBUG1, "verifying that tuples from index \"%s\" are present in \"%s\"",
711  RelationGetRelationName(state->heaprel));
712 
713  table_index_build_scan(state->heaprel, state->rel, indexinfo, true, false,
714  bt_tuple_present_callback, (void *) state, scan);
715 
716  ereport(DEBUG1,
717  (errmsg_internal("finished verifying presence of " INT64_FORMAT " tuples from table \"%s\" with bitset %.2f%% set",
718  state->heaptuplespresent, RelationGetRelationName(heaprel),
719  100.0 * bloom_prop_bits_set(state->filter))));
720 
721  if (snapshot != SnapshotAny)
722  UnregisterSnapshot(snapshot);
723 
724  bloom_free(state->filter);
725  }
726 
727  /* Be tidy: */
728  if (snapshot == SnapshotAny && state->snapshot != InvalidSnapshot)
729  UnregisterSnapshot(state->snapshot);
730  MemoryContextDelete(state->targetcontext);
731 }
#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:281
Pointer Page
Definition: bufpage.h:78
unsigned int uint32
Definition: c.h:506
#define Max(x, y)
Definition: c.h:998
#define INT64_FORMAT
Definition: c.h:548
#define Assert(condition)
Definition: c.h:858
int errmsg_internal(const char *fmt,...)
Definition: elog.c:1159
int errdetail_internal(const char *fmt,...)
Definition: elog.c:1232
int errhint(const char *fmt,...)
Definition: elog.c:1319
int errcode(int sqlerrcode)
Definition: elog.c:859
int errmsg(const char *fmt,...)
Definition: elog.c:1072
#define DEBUG1
Definition: elog.h:30
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
#define ereport(elevel,...)
Definition: elog.h:149
BufferAccessStrategy GetAccessStrategy(BufferAccessStrategyType btype)
Definition: freelist.c:541
int maintenance_work_mem
Definition: globals.c:130
#define HeapTupleHeaderGetXmin(tup)
Definition: htup_details.h:309
IndexInfo * BuildIndexInfo(Relation index)
Definition: index.c:2407
void * palloc0(Size size)
Definition: mcxt.c:1346
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:197
uint16 * ii_ExclusionStrats
Definition: execnodes.h:193
Oid * ii_ExclusionOps
Definition: execnodes.h:191
bool ii_Concurrent
Definition: execnodes.h:202
Oid * ii_ExclusionProcs
Definition: execnodes.h:192
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:942
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:1785
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 752 of file verify_nbtree.c.

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

2488 {
2489  ItemId itemid;
2490  IndexTuple itup;
2491  BlockNumber childblock;
2492  OffsetNumber offset;
2493  OffsetNumber maxoffset;
2494  Page child;
2495  BTPageOpaque copaque;
2496  BTPageOpaque topaque;
2497 
2498  itemid = PageGetItemIdCareful(state, state->targetblock,
2499  state->target, downlinkoffnum);
2500  itup = (IndexTuple) PageGetItem(state->target, itemid);
2501  childblock = BTreeTupleGetDownLink(itup);
2502 
2503  /*
2504  * Caller must have ShareLock on target relation, because of
2505  * considerations around page deletion by VACUUM.
2506  *
2507  * NB: In general, page deletion deletes the right sibling's downlink, not
2508  * the downlink of the page being deleted; the deleted page's downlink is
2509  * reused for its sibling. The key space is thereby consolidated between
2510  * the deleted page and its right sibling. (We cannot delete a parent
2511  * page's rightmost child unless it is the last child page, and we intend
2512  * to also delete the parent itself.)
2513  *
2514  * If this verification happened without a ShareLock, the following race
2515  * condition could cause false positives:
2516  *
2517  * In general, concurrent page deletion might occur, including deletion of
2518  * the left sibling of the child page that is examined here. If such a
2519  * page deletion were to occur, closely followed by an insertion into the
2520  * newly expanded key space of the child, a window for the false positive
2521  * opens up: the stale parent/target downlink originally followed to get
2522  * to the child legitimately ceases to be a lower bound on all items in
2523  * the page, since the key space was concurrently expanded "left".
2524  * (Insertion followed the "new" downlink for the child, not our now-stale
2525  * downlink, which was concurrently physically removed in target/parent as
2526  * part of deletion's first phase.)
2527  *
2528  * While we use various techniques elsewhere to perform cross-page
2529  * verification for !readonly callers, a similar trick seems difficult
2530  * here. The tricks used by bt_recheck_sibling_links and by
2531  * bt_right_page_check_scankey both involve verification of a same-level,
2532  * cross-sibling invariant. Cross-level invariants are far more squishy,
2533  * though. The nbtree REDO routines do not actually couple buffer locks
2534  * across levels during page splits, so making any cross-level check work
2535  * reliably in !readonly mode may be impossible.
2536  */
2537  Assert(state->readonly);
2538 
2539  /*
2540  * Verify child page has the downlink key from target page (its parent) as
2541  * a lower bound; downlink must be strictly less than all keys on the
2542  * page.
2543  *
2544  * Check all items, rather than checking just the first and trusting that
2545  * the operator class obeys the transitive law.
2546  */
2547  topaque = BTPageGetOpaque(state->target);
2548  child = palloc_btree_page(state, childblock);
2549  copaque = BTPageGetOpaque(child);
2550  maxoffset = PageGetMaxOffsetNumber(child);
2551 
2552  /*
2553  * Since we've already loaded the child block, combine this check with
2554  * check for downlink connectivity.
2555  */
2556  bt_child_highkey_check(state, downlinkoffnum,
2557  child, topaque->btpo_level);
2558 
2559  /*
2560  * Since there cannot be a concurrent VACUUM operation in readonly mode,
2561  * and since a page has no links within other pages (siblings and parent)
2562  * once it is marked fully deleted, it should be impossible to land on a
2563  * fully deleted page.
2564  *
2565  * It does not quite make sense to enforce that the page cannot even be
2566  * half-dead, despite the fact the downlink is modified at the same stage
2567  * that the child leaf page is marked half-dead. That's incorrect because
2568  * there may occasionally be multiple downlinks from a chain of pages
2569  * undergoing deletion, where multiple successive calls are made to
2570  * _bt_unlink_halfdead_page() by VACUUM before it can finally safely mark
2571  * the leaf page as fully dead. While _bt_mark_page_halfdead() usually
2572  * removes the downlink to the leaf page that is marked half-dead, that's
2573  * not guaranteed, so it's possible we'll land on a half-dead page with a
2574  * downlink due to an interrupted multi-level page deletion.
2575  *
2576  * We go ahead with our checks if the child page is half-dead. It's safe
2577  * to do so because we do not test the child's high key, so it does not
2578  * matter that the original high key will have been replaced by a dummy
2579  * truncated high key within _bt_mark_page_halfdead(). All other page
2580  * items are left intact on a half-dead page, so there is still something
2581  * to test.
2582  */
2583  if (P_ISDELETED(copaque))
2584  ereport(ERROR,
2585  (errcode(ERRCODE_INDEX_CORRUPTED),
2586  errmsg("downlink to deleted page found in index \"%s\"",
2588  errdetail_internal("Parent block=%u child block=%u parent page lsn=%X/%X.",
2589  state->targetblock, childblock,
2590  LSN_FORMAT_ARGS(state->targetlsn))));
2591 
2592  for (offset = P_FIRSTDATAKEY(copaque);
2593  offset <= maxoffset;
2594  offset = OffsetNumberNext(offset))
2595  {
2596  /*
2597  * Skip comparison of target page key against "negative infinity"
2598  * item, if any. Checking it would indicate that it's not a strict
2599  * lower bound, but that's only because of the hard-coding for
2600  * negative infinity items within _bt_compare().
2601  *
2602  * If nbtree didn't truncate negative infinity tuples during internal
2603  * page splits then we'd expect child's negative infinity key to be
2604  * equal to the scankey/downlink from target/parent (it would be a
2605  * "low key" in this hypothetical scenario, and so it would still need
2606  * to be treated as a special case here).
2607  *
2608  * Negative infinity items can be thought of as a strict lower bound
2609  * that works transitively, with the last non-negative-infinity pivot
2610  * followed during a descent from the root as its "true" strict lower
2611  * bound. Only a small number of negative infinity items are truly
2612  * negative infinity; those that are the first items of leftmost
2613  * internal pages. In more general terms, a negative infinity item is
2614  * only negative infinity with respect to the subtree that the page is
2615  * at the root of.
2616  *
2617  * See also: bt_rootdescend(), which can even detect transitive
2618  * inconsistencies on cousin leaf pages.
2619  */
2620  if (offset_is_negative_infinity(copaque, offset))
2621  continue;
2622 
2623  if (!invariant_l_nontarget_offset(state, targetkey, childblock, child,
2624  offset))
2625  ereport(ERROR,
2626  (errcode(ERRCODE_INDEX_CORRUPTED),
2627  errmsg("down-link lower bound invariant violated for index \"%s\"",
2629  errdetail_internal("Parent block=%u child index tid=(%u,%u) parent page lsn=%X/%X.",
2630  state->targetblock, childblock, offset,
2631  LSN_FORMAT_ARGS(state->targetlsn))));
2632  }
2633 
2634  pfree(child);
2635 }
static OffsetNumber PageGetMaxOffsetNumber(Page page)
Definition: bufpage.h:369
#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 2239 of file verify_nbtree.c.

2243 {
2244  BlockNumber blkno = state->prevrightlink;
2245  Page page;
2246  BTPageOpaque opaque;
2247  bool rightsplit = state->previncompletesplit;
2248  bool first = true;
2249  ItemId itemid;
2250  IndexTuple itup;
2251  BlockNumber downlink;
2252 
2253  if (OffsetNumberIsValid(target_downlinkoffnum))
2254  {
2255  itemid = PageGetItemIdCareful(state, state->targetblock,
2256  state->target, target_downlinkoffnum);
2257  itup = (IndexTuple) PageGetItem(state->target, itemid);
2258  downlink = BTreeTupleGetDownLink(itup);
2259  }
2260  else
2261  {
2262  downlink = P_NONE;
2263  }
2264 
2265  /*
2266  * If no previous rightlink is memorized for current level just below
2267  * target page's level, we are about to start from the leftmost page. We
2268  * can't follow rightlinks from previous page, because there is no
2269  * previous page. But we still can match high key.
2270  *
2271  * So we initialize variables for the loop above like there is previous
2272  * page referencing current child. Also we imply previous page to not
2273  * have incomplete split flag, that would make us require downlink for
2274  * current child. That's correct, because leftmost page on the level
2275  * should always have parent downlink.
2276  */
2277  if (!BlockNumberIsValid(blkno))
2278  {
2279  blkno = downlink;
2280  rightsplit = false;
2281  }
2282 
2283  /* Move to the right on the child level */
2284  while (true)
2285  {
2286  /*
2287  * Did we traverse the whole tree level and this is check for pages to
2288  * the right of rightmost downlink?
2289  */
2290  if (blkno == P_NONE && downlink == P_NONE)
2291  {
2292  state->prevrightlink = InvalidBlockNumber;
2293  state->previncompletesplit = false;
2294  return;
2295  }
2296 
2297  /* Did we traverse the whole tree level and don't find next downlink? */
2298  if (blkno == P_NONE)
2299  ereport(ERROR,
2300  (errcode(ERRCODE_INDEX_CORRUPTED),
2301  errmsg("can't traverse from downlink %u to downlink %u of index \"%s\"",
2302  state->prevrightlink, downlink,
2303  RelationGetRelationName(state->rel))));
2304 
2305  /* Load page contents */
2306  if (blkno == downlink && loaded_child)
2307  page = loaded_child;
2308  else
2309  page = palloc_btree_page(state, blkno);
2310 
2311  opaque = BTPageGetOpaque(page);
2312 
2313  /* The first page we visit at the level should be leftmost */
2314  if (first && !BlockNumberIsValid(state->prevrightlink) &&
2315  !bt_leftmost_ignoring_half_dead(state, blkno, opaque))
2316  ereport(ERROR,
2317  (errcode(ERRCODE_INDEX_CORRUPTED),
2318  errmsg("the first child of leftmost target page is not leftmost of its level in index \"%s\"",
2320  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2321  state->targetblock, blkno,
2322  LSN_FORMAT_ARGS(state->targetlsn))));
2323 
2324  /* Do level sanity check */
2325  if ((!P_ISDELETED(opaque) || P_HAS_FULLXID(opaque)) &&
2326  opaque->btpo_level != target_level - 1)
2327  ereport(ERROR,
2328  (errcode(ERRCODE_INDEX_CORRUPTED),
2329  errmsg("block found while following rightlinks from child of index \"%s\" has invalid level",
2331  errdetail_internal("Block pointed to=%u expected level=%u level in pointed to block=%u.",
2332  blkno, target_level - 1, opaque->btpo_level)));
2333 
2334  /* Try to detect circular links */
2335  if ((!first && blkno == state->prevrightlink) || blkno == opaque->btpo_prev)
2336  ereport(ERROR,
2337  (errcode(ERRCODE_INDEX_CORRUPTED),
2338  errmsg("circular link chain found in block %u of index \"%s\"",
2339  blkno, RelationGetRelationName(state->rel))));
2340 
2341  if (blkno != downlink && !P_IGNORE(opaque))
2342  {
2343  /* blkno probably has missing parent downlink */
2344  bt_downlink_missing_check(state, rightsplit, blkno, page);
2345  }
2346 
2347  rightsplit = P_INCOMPLETE_SPLIT(opaque);
2348 
2349  /*
2350  * If we visit page with high key, check that it is equal to the
2351  * target key next to corresponding downlink.
2352  */
2353  if (!rightsplit && !P_RIGHTMOST(opaque))
2354  {
2355  BTPageOpaque topaque;
2356  IndexTuple highkey;
2357  OffsetNumber pivotkey_offset;
2358 
2359  /* Get high key */
2360  itemid = PageGetItemIdCareful(state, blkno, page, P_HIKEY);
2361  highkey = (IndexTuple) PageGetItem(page, itemid);
2362 
2363  /*
2364  * There might be two situations when we examine high key. If
2365  * current child page is referenced by given target downlink, we
2366  * should look to the next offset number for matching key from
2367  * target page.
2368  *
2369  * Alternatively, we're following rightlinks somewhere in the
2370  * middle between page referenced by previous target's downlink
2371  * and the page referenced by current target's downlink. If
2372  * current child page hasn't incomplete split flag set, then its
2373  * high key should match to the target's key of current offset
2374  * number. This happens when a previous call here (to
2375  * bt_child_highkey_check()) found an incomplete split, and we
2376  * reach a right sibling page without a downlink -- the right
2377  * sibling page's high key still needs to be matched to a
2378  * separator key on the parent/target level.
2379  *
2380  * Don't apply OffsetNumberNext() to target_downlinkoffnum when we
2381  * already had to step right on the child level. Our traversal of
2382  * the child level must try to move in perfect lockstep behind (to
2383  * the left of) the target/parent level traversal.
2384  */
2385  if (blkno == downlink)
2386  pivotkey_offset = OffsetNumberNext(target_downlinkoffnum);
2387  else
2388  pivotkey_offset = target_downlinkoffnum;
2389 
2390  topaque = BTPageGetOpaque(state->target);
2391 
2392  if (!offset_is_negative_infinity(topaque, pivotkey_offset))
2393  {
2394  /*
2395  * If we're looking for the next pivot tuple in target page,
2396  * but there is no more pivot tuples, then we should match to
2397  * high key instead.
2398  */
2399  if (pivotkey_offset > PageGetMaxOffsetNumber(state->target))
2400  {
2401  if (P_RIGHTMOST(topaque))
2402  ereport(ERROR,
2403  (errcode(ERRCODE_INDEX_CORRUPTED),
2404  errmsg("child high key is greater than rightmost pivot key on target level in index \"%s\"",
2406  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2407  state->targetblock, blkno,
2408  LSN_FORMAT_ARGS(state->targetlsn))));
2409  pivotkey_offset = P_HIKEY;
2410  }
2411  itemid = PageGetItemIdCareful(state, state->targetblock,
2412  state->target, pivotkey_offset);
2413  itup = (IndexTuple) PageGetItem(state->target, itemid);
2414  }
2415  else
2416  {
2417  /*
2418  * We cannot try to match child's high key to a negative
2419  * infinity key in target, since there is nothing to compare.
2420  * However, it's still possible to match child's high key
2421  * outside of target page. The reason why we're are is that
2422  * bt_child_highkey_check() was previously called for the
2423  * cousin page of 'loaded_child', which is incomplete split.
2424  * So, now we traverse to the right of that cousin page and
2425  * current child level page under consideration still belongs
2426  * to the subtree of target's left sibling. Thus, we need to
2427  * match child's high key to it's left uncle page high key.
2428  * Thankfully we saved it, it's called a "low key" of target
2429  * page.
2430  */
2431  if (!state->lowkey)
2432  ereport(ERROR,
2433  (errcode(ERRCODE_INDEX_CORRUPTED),
2434  errmsg("can't find left sibling high key in index \"%s\"",
2436  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2437  state->targetblock, blkno,
2438  LSN_FORMAT_ARGS(state->targetlsn))));
2439  itup = state->lowkey;
2440  }
2441 
2442  if (!bt_pivot_tuple_identical(state->heapkeyspace, highkey, itup))
2443  {
2444  ereport(ERROR,
2445  (errcode(ERRCODE_INDEX_CORRUPTED),
2446  errmsg("mismatch between parent key and child high key in index \"%s\"",
2448  errdetail_internal("Target block=%u child block=%u target page lsn=%X/%X.",
2449  state->targetblock, blkno,
2450  LSN_FORMAT_ARGS(state->targetlsn))));
2451  }
2452  }
2453 
2454  /* Exit if we already found next downlink */
2455  if (blkno == downlink)
2456  {
2457  state->prevrightlink = opaque->btpo_next;
2458  state->previncompletesplit = rightsplit;
2459  return;
2460  }
2461 
2462  /* Traverse to the next page using rightlink */
2463  blkno = opaque->btpo_next;
2464 
2465  /* Free page contents if it's allocated by us */
2466  if (page != loaded_child)
2467  pfree(page);
2468  first = false;
2469  }
2470 }
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 2651 of file verify_nbtree.c.

2653 {
2654  BTPageOpaque opaque = BTPageGetOpaque(page);
2655  ItemId itemid;
2656  IndexTuple itup;
2657  Page child;
2658  BTPageOpaque copaque;
2659  uint32 level;
2660  BlockNumber childblk;
2661  XLogRecPtr pagelsn;
2662 
2663  Assert(state->readonly);
2664  Assert(!P_IGNORE(opaque));
2665 
2666  /* No next level up with downlinks to fingerprint from the true root */
2667  if (P_ISROOT(opaque))
2668  return;
2669 
2670  pagelsn = PageGetLSN(page);
2671 
2672  /*
2673  * Incomplete (interrupted) page splits can account for the lack of a
2674  * downlink. Some inserting transaction should eventually complete the
2675  * page split in passing, when it notices that the left sibling page is
2676  * P_INCOMPLETE_SPLIT().
2677  *
2678  * In general, VACUUM is not prepared for there to be no downlink to a
2679  * page that it deletes. This is the main reason why the lack of a
2680  * downlink can be reported as corruption here. It's not obvious that an
2681  * invalid missing downlink can result in wrong answers to queries,
2682  * though, since index scans that land on the child may end up
2683  * consistently moving right. The handling of concurrent page splits (and
2684  * page deletions) within _bt_moveright() cannot distinguish
2685  * inconsistencies that last for a moment from inconsistencies that are
2686  * permanent and irrecoverable.
2687  *
2688  * VACUUM isn't even prepared to delete pages that have no downlink due to
2689  * an incomplete page split, but it can detect and reason about that case
2690  * by design, so it shouldn't be taken to indicate corruption. See
2691  * _bt_pagedel() for full details.
2692  */
2693  if (rightsplit)
2694  {
2695  ereport(DEBUG1,
2696  (errcode(ERRCODE_NO_DATA),
2697  errmsg_internal("harmless interrupted page split detected in index \"%s\"",
2699  errdetail_internal("Block=%u level=%u left sibling=%u page lsn=%X/%X.",
2700  blkno, opaque->btpo_level,
2701  opaque->btpo_prev,
2702  LSN_FORMAT_ARGS(pagelsn))));
2703  return;
2704  }
2705 
2706  /*
2707  * Page under check is probably the "top parent" of a multi-level page
2708  * deletion. We'll need to descend the subtree to make sure that
2709  * descendant pages are consistent with that, though.
2710  *
2711  * If the page (which must be non-ignorable) is a leaf page, then clearly
2712  * it can't be the top parent. The lack of a downlink is probably a
2713  * symptom of a broad problem that could just as easily cause
2714  * inconsistencies anywhere else.
2715  */
2716  if (P_ISLEAF(opaque))
2717  ereport(ERROR,
2718  (errcode(ERRCODE_INDEX_CORRUPTED),
2719  errmsg("leaf index block lacks downlink in index \"%s\"",
2721  errdetail_internal("Block=%u page lsn=%X/%X.",
2722  blkno,
2723  LSN_FORMAT_ARGS(pagelsn))));
2724 
2725  /* Descend from the given page, which is an internal page */
2726  elog(DEBUG1, "checking for interrupted multi-level deletion due to missing downlink in index \"%s\"",
2728 
2729  level = opaque->btpo_level;
2730  itemid = PageGetItemIdCareful(state, blkno, page, P_FIRSTDATAKEY(opaque));
2731  itup = (IndexTuple) PageGetItem(page, itemid);
2732  childblk = BTreeTupleGetDownLink(itup);
2733  for (;;)
2734  {
2736 
2737  child = palloc_btree_page(state, childblk);
2738  copaque = BTPageGetOpaque(child);
2739 
2740  if (P_ISLEAF(copaque))
2741  break;
2742 
2743  /* Do an extra sanity check in passing on internal pages */
2744  if (copaque->btpo_level != level - 1)
2745  ereport(ERROR,
2746  (errcode(ERRCODE_INDEX_CORRUPTED),
2747  errmsg_internal("downlink points to block in index \"%s\" whose level is not one level down",
2749  errdetail_internal("Top parent/under check block=%u block pointed to=%u expected level=%u level in pointed to block=%u.",
2750  blkno, childblk,
2751  level - 1, copaque->btpo_level)));
2752 
2753  level = copaque->btpo_level;
2754  itemid = PageGetItemIdCareful(state, childblk, child,
2755  P_FIRSTDATAKEY(copaque));
2756  itup = (IndexTuple) PageGetItem(child, itemid);
2757  childblk = BTreeTupleGetDownLink(itup);
2758  /* Be slightly more pro-active in freeing this memory, just in case */
2759  pfree(child);
2760  }
2761 
2762  /*
2763  * Since there cannot be a concurrent VACUUM operation in readonly mode,
2764  * and since a page has no links within other pages (siblings and parent)
2765  * once it is marked fully deleted, it should be impossible to land on a
2766  * fully deleted page. See bt_child_check() for further details.
2767  *
2768  * The bt_child_check() P_ISDELETED() check is repeated here because
2769  * bt_child_check() does not visit pages reachable through negative
2770  * infinity items. Besides, bt_child_check() is unwilling to descend
2771  * multiple levels. (The similar bt_child_check() P_ISDELETED() check
2772  * within bt_check_level_from_leftmost() won't reach the page either,
2773  * since the leaf's live siblings should have their sibling links updated
2774  * to bypass the deletion target page when it is marked fully dead.)
2775  *
2776  * If this error is raised, it might be due to a previous multi-level page
2777  * deletion that failed to realize that it wasn't yet safe to mark the
2778  * leaf page as fully dead. A "dangling downlink" will still remain when
2779  * this happens. The fact that the dangling downlink's page (the leaf's
2780  * parent/ancestor page) lacked a downlink is incidental.
2781  */
2782  if (P_ISDELETED(copaque))
2783  ereport(ERROR,
2784  (errcode(ERRCODE_INDEX_CORRUPTED),
2785  errmsg_internal("downlink to deleted leaf page found in index \"%s\"",
2787  errdetail_internal("Top parent/target block=%u leaf block=%u top parent/under check lsn=%X/%X.",
2788  blkno, childblk,
2789  LSN_FORMAT_ARGS(pagelsn))));
2790 
2791  /*
2792  * Iff leaf page is half-dead, its high key top parent link should point
2793  * to what VACUUM considered to be the top parent page at the instant it
2794  * was interrupted. Provided the high key link actually points to the
2795  * page under check, the missing downlink we detected is consistent with
2796  * there having been an interrupted multi-level page deletion. This means
2797  * that the subtree with the page under check at its root (a page deletion
2798  * chain) is in a consistent state, enabling VACUUM to resume deleting the
2799  * entire chain the next time it encounters the half-dead leaf page.
2800  */
2801  if (P_ISHALFDEAD(copaque) && !P_RIGHTMOST(copaque))
2802  {
2803  itemid = PageGetItemIdCareful(state, childblk, child, P_HIKEY);
2804  itup = (IndexTuple) PageGetItem(child, itemid);
2805  if (BTreeTupleGetTopParent(itup) == blkno)
2806  return;
2807  }
2808 
2809  ereport(ERROR,
2810  (errcode(ERRCODE_INDEX_CORRUPTED),
2811  errmsg("internal index block lacks downlink in index \"%s\"",
2813  errdetail_internal("Block=%u level=%u page lsn=%X/%X.",
2814  blkno, opaque->btpo_level,
2815  LSN_FORMAT_ARGS(pagelsn))));
2816 }
#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,
int *  lVis_i,
ItemPointer lVis_tid,
OffsetNumber lVis_offset,
BlockNumber lVis_block 
)
static

Definition at line 1040 of file verify_nbtree.c.

1044 {
1045  ItemPointer tid;
1046  bool has_visible_entry = false;
1047 
1048  Assert(targetblock != P_NONE);
1049 
1050  /*
1051  * Current tuple has posting list. Report duplicate if TID of any posting
1052  * list entry is visible and lVis_tid is valid.
1053  */
1054  if (BTreeTupleIsPosting(itup))
1055  {
1056  for (int i = 0; i < BTreeTupleGetNPosting(itup); i++)
1057  {
1058  tid = BTreeTupleGetPostingN(itup, i);
1059  if (heap_entry_is_visible(state, tid))
1060  {
1061  has_visible_entry = true;
1062  if (ItemPointerIsValid(*lVis_tid))
1063  {
1065  *lVis_tid, *lVis_block,
1066  *lVis_offset, *lVis_i,
1067  tid, targetblock,
1068  offset, i);
1069  }
1070 
1071  /*
1072  * Prevent double reporting unique constraint violation
1073  * between the posting list entries of the first tuple on the
1074  * page after cross-page check.
1075  */
1076  if (*lVis_block != targetblock && ItemPointerIsValid(*lVis_tid))
1077  return;
1078 
1079  *lVis_i = i;
1080  *lVis_tid = tid;
1081  *lVis_offset = offset;
1082  *lVis_block = targetblock;
1083  }
1084  }
1085  }
1086 
1087  /*
1088  * Current tuple has no posting list. If TID is visible save info about it
1089  * for the next comparisons in the loop in bt_page_check(). Report
1090  * duplicate if lVis_tid is already valid.
1091  */
1092  else
1093  {
1094  tid = BTreeTupleGetHeapTID(itup);
1095  if (heap_entry_is_visible(state, tid))
1096  {
1097  has_visible_entry = true;
1098  if (ItemPointerIsValid(*lVis_tid))
1099  {
1101  *lVis_tid, *lVis_block,
1102  *lVis_offset, *lVis_i,
1103  tid, targetblock,
1104  offset, -1);
1105  }
1106  *lVis_i = -1;
1107  *lVis_tid = tid;
1108  *lVis_offset = offset;
1109  *lVis_block = targetblock;
1110  }
1111  }
1112 
1113  if (!has_visible_entry && *lVis_block != InvalidBlockNumber &&
1114  *lVis_block != targetblock)
1115  {
1116  char *posting = "";
1117 
1118  if (*lVis_i >= 0)
1119  posting = psprintf(" posting %u", *lVis_i);
1120  ereport(DEBUG1,
1121  (errcode(ERRCODE_NO_DATA),
1122  errmsg("index uniqueness can not be checked for index tid=(%u,%u) in index \"%s\"",
1123  targetblock, offset,
1125  errdetail("It doesn't have visible heap tids and key is equal to the tid=(%u,%u)%s (points to heap tid=(%u,%u)).",
1126  *lVis_block, *lVis_offset, posting,
1129  errhint("VACUUM the table and repeat the check.")));
1130  }
1131 }
int errdetail(const char *fmt,...)
Definition: elog.c:1205
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, ItemPointer tid, BlockNumber block, OffsetNumber offset, int posting, ItemPointer nexttid, BlockNumber nblock, OffsetNumber noffset, int nposting)
static bool heap_entry_is_visible(BtreeCheckState *state, ItemPointer tid)

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

Referenced by bt_target_page_check().

◆ bt_index_check()

Datum bt_index_check ( PG_FUNCTION_ARGS  )

Definition at line 230 of file verify_nbtree.c.

231 {
232  Oid indrelid = PG_GETARG_OID(0);
233  bool heapallindexed = false;
234  bool checkunique = false;
235 
236  if (PG_NARGS() >= 2)
237  heapallindexed = PG_GETARG_BOOL(1);
238  if (PG_NARGS() == 3)
239  checkunique = PG_GETARG_BOOL(2);
240 
241  bt_index_check_internal(indrelid, false, heapallindexed, false, checkunique);
242 
243  PG_RETURN_VOID();
244 }
#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 279 of file verify_nbtree.c.

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

257 {
258  Oid indrelid = PG_GETARG_OID(0);
259  bool heapallindexed = false;
260  bool rootdescend = false;
261  bool checkunique = false;
262 
263  if (PG_NARGS() >= 2)
264  heapallindexed = PG_GETARG_BOOL(1);
265  if (PG_NARGS() >= 3)
266  rootdescend = PG_GETARG_BOOL(2);
267  if (PG_NARGS() == 4)
268  checkunique = PG_GETARG_BOOL(3);
269 
270  bt_index_check_internal(indrelid, true, heapallindexed, rootdescend, checkunique);
271 
272  PG_RETURN_VOID();
273 }

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 1140 of file verify_nbtree.c.

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

3563 {
3564  BTScanInsert skey;
3565 
3566  skey = _bt_mkscankey(rel, itup);
3567  skey->backward = true;
3568 
3569  return skey;
3570 }
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 2942 of file verify_nbtree.c.

2943 {
2944  TupleDesc tupleDescriptor = RelationGetDescr(state->rel);
2945  Datum normalized[INDEX_MAX_KEYS];
2946  bool isnull[INDEX_MAX_KEYS];
2947  bool need_free[INDEX_MAX_KEYS];
2948  bool formnewtup = false;
2949  IndexTuple reformed;
2950  int i;
2951 
2952  /* Caller should only pass "logical" non-pivot tuples here */
2953  Assert(!BTreeTupleIsPosting(itup) && !BTreeTupleIsPivot(itup));
2954 
2955  /* Easy case: It's immediately clear that tuple has no varlena datums */
2956  if (!IndexTupleHasVarwidths(itup))
2957  return itup;
2958 
2959  for (i = 0; i < tupleDescriptor->natts; i++)
2960  {
2961  Form_pg_attribute att;
2962 
2963  att = TupleDescAttr(tupleDescriptor, i);
2964 
2965  /* Assume untoasted/already normalized datum initially */
2966  need_free[i] = false;
2967  normalized[i] = index_getattr(itup, att->attnum,
2968  tupleDescriptor,
2969  &isnull[i]);
2970  if (att->attbyval || att->attlen != -1 || isnull[i])
2971  continue;
2972 
2973  /*
2974  * Callers always pass a tuple that could safely be inserted into the
2975  * index without further processing, so an external varlena header
2976  * should never be encountered here
2977  */
2978  if (VARATT_IS_EXTERNAL(DatumGetPointer(normalized[i])))
2979  ereport(ERROR,
2980  (errcode(ERRCODE_INDEX_CORRUPTED),
2981  errmsg("external varlena datum in tuple that references heap row (%u,%u) in index \"%s\"",
2982  ItemPointerGetBlockNumber(&(itup->t_tid)),
2984  RelationGetRelationName(state->rel))));
2985  else if (!VARATT_IS_COMPRESSED(DatumGetPointer(normalized[i])) &&
2986  VARSIZE(DatumGetPointer(normalized[i])) > TOAST_INDEX_TARGET &&
2987  (att->attstorage == TYPSTORAGE_EXTENDED ||
2988  att->attstorage == TYPSTORAGE_MAIN))
2989  {
2990  /*
2991  * This value will be compressed by index_form_tuple() with the
2992  * current storage settings. We may be here because this tuple
2993  * was formed with different storage settings. So, force forming.
2994  */
2995  formnewtup = true;
2996  }
2997  else if (VARATT_IS_COMPRESSED(DatumGetPointer(normalized[i])))
2998  {
2999  formnewtup = true;
3000  normalized[i] = PointerGetDatum(PG_DETOAST_DATUM(normalized[i]));
3001  need_free[i] = true;
3002  }
3003 
3004  /*
3005  * Short tuples may have 1B or 4B header. Convert 4B header of short
3006  * tuples to 1B
3007  */
3008  else if (VARATT_CAN_MAKE_SHORT(DatumGetPointer(normalized[i])))
3009  {
3010  /* convert to short varlena */
3012  char *data = palloc(len);
3013 
3015  memcpy(data + 1, VARDATA(DatumGetPointer(normalized[i])), len - 1);
3016 
3017  formnewtup = true;
3018  normalized[i] = PointerGetDatum(data);
3019  need_free[i] = true;
3020  }
3021  }
3022 
3023  /*
3024  * Easier case: Tuple has varlena datums, none of which are compressed or
3025  * short with 4B header
3026  */
3027  if (!formnewtup)
3028  return itup;
3029 
3030  /*
3031  * Hard case: Tuple had compressed varlena datums that necessitate
3032  * creating normalized version of the tuple from uncompressed input datums
3033  * (normalized input datums). This is rather naive, but shouldn't be
3034  * necessary too often.
3035  *
3036  * In the heap, tuples may contain short varlena datums with both 1B
3037  * header and 4B headers. But the corresponding index tuple should always
3038  * have such varlena's with 1B headers. So, if there is a short varlena
3039  * with 4B header, we need to convert it for fingerprinting.
3040  *
3041  * Note that we rely on deterministic index_form_tuple() TOAST compression
3042  * of normalized input.
3043  */
3044  reformed = index_form_tuple(tupleDescriptor, normalized, isnull);
3045  reformed->t_tid = itup->t_tid;
3046 
3047  /* Cannot leak memory here */
3048  for (i = 0; i < tupleDescriptor->natts; i++)
3049  if (need_free[i])
3050  pfree(DatumGetPointer(normalized[i]));
3051 
3052  return reformed;
3053 }
size_t Size
Definition: c.h:605
#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:1316
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 2166 of file verify_nbtree.c.

2167 {
2168  if (IndexTupleSize(itup1) != IndexTupleSize(itup2))
2169  return false;
2170 
2171  if (heapkeyspace)
2172  {
2173  /*
2174  * Offset number will contain important information in heapkeyspace
2175  * indexes: the number of attributes left in the pivot tuple following
2176  * suffix truncation. Don't skip over it (compare it too).
2177  */
2178  if (memcmp(&itup1->t_tid.ip_posid, &itup2->t_tid.ip_posid,
2179  IndexTupleSize(itup1) -
2180  offsetof(ItemPointerData, ip_posid)) != 0)
2181  return false;
2182  }
2183  else
2184  {
2185  /*
2186  * Cannot rely on offset number field having consistent value across
2187  * levels on pg_upgrade'd !heapkeyspace indexes. Compare contents of
2188  * tuple starting from just after item pointer (i.e. after block
2189  * number and offset number).
2190  */
2191  if (memcmp(&itup1->t_info, &itup2->t_info,
2192  IndexTupleSize(itup1) -
2193  offsetof(IndexTupleData, t_info)) != 0)
2194  return false;
2195  }
2196 
2197  return true;
2198 }
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 3070 of file verify_nbtree.c.

3071 {
3072  Assert(BTreeTupleIsPosting(itup));
3073 
3074  /* Returns non-posting-list tuple */
3075  return _bt_form_posting(itup, BTreeTupleGetPostingN(itup, n), 1);
3076 }
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 1229 of file verify_nbtree.c.

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

Definition at line 999 of file verify_nbtree.c.

1004 {
1005  char *htid,
1006  *nhtid,
1007  *itid,
1008  *nitid = "",
1009  *pposting = "",
1010  *pnposting = "";
1011 
1012  htid = psprintf("tid=(%u,%u)",
1015  nhtid = psprintf("tid=(%u,%u)",
1018  itid = psprintf("tid=(%u,%u)", block, offset);
1019 
1020  if (nblock != block || noffset != offset)
1021  nitid = psprintf(" tid=(%u,%u)", nblock, noffset);
1022 
1023  if (posting >= 0)
1024  pposting = psprintf(" posting %u", posting);
1025 
1026  if (nposting >= 0)
1027  pnposting = psprintf(" posting %u", nposting);
1028 
1029  ereport(ERROR,
1030  (errcode(ERRCODE_INDEX_CORRUPTED),
1031  errmsg("index uniqueness is violated for index \"%s\"",
1033  errdetail("Index %s%s and%s%s (point to heap %s and %s) page lsn=%X/%X.",
1034  itid, pposting, nitid, pnposting, htid, nhtid,
1035  LSN_FORMAT_ARGS(state->targetlsn))));
1036 }

References ereport, errcode(), errdetail(), errmsg(), ERROR, ItemPointerGetBlockNumberNoCheck(), ItemPointerGetOffsetNumberNoCheck(), LSN_FORMAT_ARGS, psprintf(), and RelationGetRelationName.

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 1959 of file verify_nbtree.c.

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

3104 {
3105  BTScanInsert key;
3106  BTStack stack;
3107  Buffer lbuf;
3108  bool exists;
3109 
3110  key = _bt_mkscankey(state->rel, itup);
3111  Assert(key->heapkeyspace && key->scantid != NULL);
3112 
3113  /*
3114  * Search from root.
3115  *
3116  * Ideally, we would arrange to only move right within _bt_search() when
3117  * an interrupted page split is detected (i.e. when the incomplete split
3118  * bit is found to be set), but for now we accept the possibility that
3119  * that could conceal an inconsistency.
3120  */
3121  Assert(state->readonly && state->rootdescend);
3122  exists = false;
3123  stack = _bt_search(state->rel, NULL, key, &lbuf, BT_READ);
3124 
3125  if (BufferIsValid(lbuf))
3126  {
3127  BTInsertStateData insertstate;
3128  OffsetNumber offnum;
3129  Page page;
3130 
3131  insertstate.itup = itup;
3132  insertstate.itemsz = MAXALIGN(IndexTupleSize(itup));
3133  insertstate.itup_key = key;
3134  insertstate.postingoff = 0;
3135  insertstate.bounds_valid = false;
3136  insertstate.buf = lbuf;
3137 
3138  /* Get matching tuple on leaf page */
3139  offnum = _bt_binsrch_insert(state->rel, &insertstate);
3140  /* Compare first >= matching item on leaf page, if any */
3141  page = BufferGetPage(lbuf);
3142  /* Should match on first heap TID when tuple has a posting list */
3143  if (offnum <= PageGetMaxOffsetNumber(page) &&
3144  insertstate.postingoff <= 0 &&
3145  _bt_compare(state->rel, key, page, offnum) == 0)
3146  exists = true;
3147  _bt_relbuf(state->rel, lbuf);
3148  }
3149 
3150  _bt_freestack(stack);
3151  pfree(key);
3152 
3153  return exists;
3154 }
#define MAXALIGN(LEN)
Definition: c.h:811
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:96
OffsetNumber _bt_binsrch_insert(Relation rel, BTInsertState insertstate)
Definition: nbtsearch.c:468
int32 _bt_compare(Relation rel, BTScanInsert key, Page page, OffsetNumber offnum)
Definition: nbtsearch.c:682
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 1369 of file verify_nbtree.c.

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

References _bt_check_natts(), _bt_compare(), BTScanInsertData::anynullkeys, 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(), LSN_FORMAT_ARGS, offset_is_negative_infinity(), OffsetNumberNext, P_FIRSTDATAKEY, P_HIKEY, P_IGNORE, P_ISLEAF, P_NONE, P_RIGHTMOST, PageGetItem(), PageGetItemIdCareful(), PageGetMaxOffsetNumber(), palloc_btree_page(), pfree(), psprintf(), RelationGetRelationName, and BTScanInsertData::scantid.

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 2874 of file verify_nbtree.c.

2876 {
2877  BtreeCheckState *state = (BtreeCheckState *) checkstate;
2878  IndexTuple itup,
2879  norm;
2880 
2881  Assert(state->heapallindexed);
2882 
2883  /* Generate a normalized index tuple for fingerprinting */
2884  itup = index_form_tuple(RelationGetDescr(index), values, isnull);
2885  itup->t_tid = *tid;
2886  norm = bt_normalize_tuple(state, itup);
2887 
2888  /* Probe Bloom filter -- tuple should be present */
2889  if (bloom_lacks_element(state->filter, (unsigned char *) norm,
2890  IndexTupleSize(norm)))
2891  ereport(ERROR,
2893  errmsg("heap tuple (%u,%u) from table \"%s\" lacks matching index tuple within index \"%s\"",
2894  ItemPointerGetBlockNumber(&(itup->t_tid)),
2896  RelationGetRelationName(state->heaprel),
2898  !state->readonly
2899  ? errhint("Retrying verification using the function bt_index_parent_check() might provide a more specific error.")
2900  : 0));
2901 
2902  state->heaptuplespresent++;
2903  pfree(itup);
2904  /* Cannot leak memory here */
2905  if (norm != itup)
2906  pfree(norm);
2907 }
bool bloom_lacks_element(bloom_filter *filter, unsigned char *elem, size_t len)
Definition: bloomfilter.c:157
static Datum values[MAXATTR]
Definition: bootstrap.c:152
#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 420 of file verify_nbtree.c.

421 {
422  if (rel->rd_rel->relkind != RELKIND_INDEX ||
423  rel->rd_rel->relam != BTREE_AM_OID)
424  ereport(ERROR,
425  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
426  errmsg("only B-Tree indexes are supported as targets for verification"),
427  errdetail("Relation \"%s\" is not a B-Tree index.",
428  RelationGetRelationName(rel))));
429 
430  if (RELATION_IS_OTHER_TEMP(rel))
431  ereport(ERROR,
432  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
433  errmsg("cannot access temporary tables of other sessions"),
434  errdetail("Index \"%s\" is associated with temporary relation.",
435  RelationGetRelationName(rel))));
436 
437  if (!rel->rd_index->indisvalid)
438  ereport(ERROR,
439  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
440  errmsg("cannot check index \"%s\"",
442  errdetail("Index is not valid.")));
443 }
#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 454 of file verify_nbtree.c.

455 {
456  if (rel->rd_rel->relpersistence != RELPERSISTENCE_UNLOGGED ||
458  return true;
459 
460  ereport(DEBUG1,
461  (errcode(ERRCODE_READ_ONLY_SQL_TRANSACTION),
462  errmsg("cannot verify unlogged index \"%s\" during recovery, skipping",
463  RelationGetRelationName(rel))));
464 
465  return false;
466 }
bool RecoveryInProgress(void)
Definition: xlog.c:6290

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 3626 of file verify_nbtree.c.

3628 {
3629  ItemPointer htid;
3630 
3631  /*
3632  * Caller determines whether this is supposed to be a pivot or non-pivot
3633  * tuple using page type and item offset number. Verify that tuple
3634  * metadata agrees with this.
3635  */
3636  Assert(state->heapkeyspace);
3637  if (BTreeTupleIsPivot(itup) && nonpivot)
3638  ereport(ERROR,
3639  (errcode(ERRCODE_INDEX_CORRUPTED),
3640  errmsg_internal("block %u or its right sibling block or child block in index \"%s\" has unexpected pivot tuple",
3641  state->targetblock,
3642  RelationGetRelationName(state->rel))));
3643 
3644  if (!BTreeTupleIsPivot(itup) && !nonpivot)
3645  ereport(ERROR,
3646  (errcode(ERRCODE_INDEX_CORRUPTED),
3647  errmsg_internal("block %u or its right sibling block or child block in index \"%s\" has unexpected non-pivot tuple",
3648  state->targetblock,
3649  RelationGetRelationName(state->rel))));
3650 
3651  htid = BTreeTupleGetHeapTID(itup);
3652  if (!ItemPointerIsValid(htid) && nonpivot)
3653  ereport(ERROR,
3654  (errcode(ERRCODE_INDEX_CORRUPTED),
3655  errmsg("block %u or its right sibling block or child block in index \"%s\" contains non-pivot tuple that lacks a heap TID",
3656  state->targetblock,
3657  RelationGetRelationName(state->rel))));
3658 
3659  return htid;
3660 }

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 3674 of file verify_nbtree.c.

3675 {
3676  /*
3677  * Rely on the assumption that !heapkeyspace internal page data items will
3678  * correctly return TID with downlink here -- BTreeTupleGetHeapTID() won't
3679  * recognize it as a pivot tuple, but everything still works out because
3680  * the t_tid field is still returned
3681  */
3682  if (!BTreeTupleIsPivot(itup))
3683  return BTreeTupleGetHeapTID(itup);
3684 
3685  /* Pivot tuple returns TID with downlink block (heapkeyspace variant) */
3686  return &itup->t_tid;
3687 }

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 980 of file verify_nbtree.c.

981 {
982  bool tid_visible;
983 
984  TupleTableSlot *slot = table_slot_create(state->heaprel, NULL);
985 
986  tid_visible = table_tuple_fetch_row_version(state->heaprel,
987  tid, state->snapshot, slot);
988  if (slot != NULL)
990 
991  return tid_visible;
992 }
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:1298

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 3288 of file verify_nbtree.c.

3290 {
3291  int32 cmp;
3292 
3293  Assert(!key->nextkey && key->backward);
3294 
3295  cmp = _bt_compare(state->rel, key, state->target, lowerbound);
3296 
3297  /* pg_upgrade'd indexes may legally have equal sibling tuples */
3298  if (!key->heapkeyspace)
3299  return cmp >= 0;
3300 
3301  /*
3302  * No need to consider the possibility that scankey has attributes that we
3303  * need to force to be interpreted as negative infinity. _bt_compare() is
3304  * able to determine that scankey is greater than negative infinity. The
3305  * distinction between "==" and "<" isn't interesting here, since
3306  * corruption is indicated either way.
3307  */
3308  return cmp > 0;
3309 }
signed int int32
Definition: c.h:494
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 3324 of file verify_nbtree.c.

3327 {
3328  ItemId itemid;
3329  int32 cmp;
3330 
3331  Assert(!key->nextkey && key->backward);
3332 
3333  /* Verify line pointer before checking tuple */
3334  itemid = PageGetItemIdCareful(state, nontargetblock, nontarget,
3335  upperbound);
3336  cmp = _bt_compare(state->rel, key, nontarget, upperbound);
3337 
3338  /* pg_upgrade'd indexes may legally have equal sibling tuples */
3339  if (!key->heapkeyspace)
3340  return cmp <= 0;
3341 
3342  /* See invariant_l_offset() for an explanation of this extra step */
3343  if (cmp == 0)
3344  {
3345  IndexTuple child;
3346  int uppnkeyatts;
3347  ItemPointer childheaptid;
3348  BTPageOpaque copaque;
3349  bool nonpivot;
3350 
3351  child = (IndexTuple) PageGetItem(nontarget, itemid);
3352  copaque = BTPageGetOpaque(nontarget);
3353  nonpivot = P_ISLEAF(copaque) && upperbound >= P_FIRSTDATAKEY(copaque);
3354 
3355  /* Get number of keys + heap TID for child/non-target item */
3356  uppnkeyatts = BTreeTupleGetNKeyAtts(child, state->rel);
3357  childheaptid = BTreeTupleGetHeapTIDCareful(state, child, nonpivot);
3358 
3359  /* Heap TID is tiebreaker key attribute */
3360  if (key->keysz == uppnkeyatts)
3361  return key->scantid == NULL && childheaptid != NULL;
3362 
3363  return key->keysz < uppnkeyatts;
3364  }
3365 
3366  return cmp < 0;
3367 }
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 3202 of file verify_nbtree.c.

3204 {
3205  ItemId itemid;
3206  int32 cmp;
3207 
3208  Assert(!key->nextkey && key->backward);
3209 
3210  /* Verify line pointer before checking tuple */
3211  itemid = PageGetItemIdCareful(state, state->targetblock, state->target,
3212  upperbound);
3213  /* pg_upgrade'd indexes may legally have equal sibling tuples */
3214  if (!key->heapkeyspace)
3215  return invariant_leq_offset(state, key, upperbound);
3216 
3217  cmp = _bt_compare(state->rel, key, state->target, upperbound);
3218 
3219  /*
3220  * _bt_compare() is capable of determining that a scankey with a
3221  * filled-out attribute is greater than pivot tuples where the comparison
3222  * is resolved at a truncated attribute (value of attribute in pivot is
3223  * minus infinity). However, it is not capable of determining that a
3224  * scankey is _less than_ a tuple on the basis of a comparison resolved at
3225  * _scankey_ minus infinity attribute. Complete an extra step to simulate
3226  * having minus infinity values for omitted scankey attribute(s).
3227  */
3228  if (cmp == 0)
3229  {
3230  BTPageOpaque topaque;
3231  IndexTuple ritup;
3232  int uppnkeyatts;
3233  ItemPointer rheaptid;
3234  bool nonpivot;
3235 
3236  ritup = (IndexTuple) PageGetItem(state->target, itemid);
3237  topaque = BTPageGetOpaque(state->target);
3238  nonpivot = P_ISLEAF(topaque) && upperbound >= P_FIRSTDATAKEY(topaque);
3239 
3240  /* Get number of keys + heap TID for item to the right */
3241  uppnkeyatts = BTreeTupleGetNKeyAtts(ritup, state->rel);
3242  rheaptid = BTreeTupleGetHeapTIDCareful(state, ritup, nonpivot);
3243 
3244  /* Heap TID is tiebreaker key attribute */
3245  if (key->keysz == uppnkeyatts)
3246  return key->scantid == NULL && rheaptid != NULL;
3247 
3248  return key->keysz < uppnkeyatts;
3249  }
3250 
3251  return cmp < 0;
3252 }

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 3265 of file verify_nbtree.c.

3267 {
3268  int32 cmp;
3269 
3270  Assert(!key->nextkey && key->backward);
3271 
3272  cmp = _bt_compare(state->rel, key, state->target, upperbound);
3273 
3274  return cmp <= 0;
3275 }

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 3167 of file verify_nbtree.c.

3168 {
3169  /*
3170  * For internal pages only, the first item after high key, if any, is
3171  * negative infinity item. Internal pages always have a negative infinity
3172  * item, whereas leaf pages never have one. This implies that negative
3173  * infinity item is either first or second line item, or there is none
3174  * within page.
3175  *
3176  * Negative infinity items are a special case among pivot tuples. They
3177  * always have zero attributes, while all other pivot tuples always have
3178  * nkeyatts attributes.
3179  *
3180  * Right-most pages don't have a high key, but could be said to
3181  * conceptually have a "positive infinity" high key. Thus, there is a
3182  * symmetry between down link items in parent pages, and high keys in
3183  * children. Together, they represent the part of the key space that
3184  * belongs to each page in the index. For example, all children of the
3185  * root page will have negative infinity as a lower bound from root
3186  * negative infinity downlink, and positive infinity as an upper bound
3187  * (implicitly, from "imaginary" positive infinity high key in root).
3188  */
3189  return !P_ISLEAF(opaque) && offset == P_FIRSTDATAKEY(opaque);
3190 }

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 3586 of file verify_nbtree.c.

3588 {
3589  ItemId itemid = PageGetItemId(page, offset);
3590 
3591  if (ItemIdGetOffset(itemid) + ItemIdGetLength(itemid) >
3592  BLCKSZ - MAXALIGN(sizeof(BTPageOpaqueData)))
3593  ereport(ERROR,
3594  (errcode(ERRCODE_INDEX_CORRUPTED),
3595  errmsg("line pointer points past end of tuple space in index \"%s\"",
3597  errdetail_internal("Index tid=(%u,%u) lp_off=%u, lp_len=%u lp_flags=%u.",
3598  block, offset, ItemIdGetOffset(itemid),
3599  ItemIdGetLength(itemid),
3600  ItemIdGetFlags(itemid))));
3601 
3602  /*
3603  * Verify that line pointer isn't LP_REDIRECT or LP_UNUSED, since nbtree
3604  * never uses either. Verify that line pointer has storage, too, since
3605  * even LP_DEAD items should within nbtree.
3606  */
3607  if (ItemIdIsRedirected(itemid) || !ItemIdIsUsed(itemid) ||
3608  ItemIdGetLength(itemid) == 0)
3609  ereport(ERROR,
3610  (errcode(ERRCODE_INDEX_CORRUPTED),
3611  errmsg("invalid line pointer storage in index \"%s\"",
3613  errdetail_internal("Index tid=(%u,%u) lp_off=%u, lp_len=%u lp_flags=%u.",
3614  block, offset, ItemIdGetOffset(itemid),
3615  ItemIdGetLength(itemid),
3616  ItemIdGetFlags(itemid))));
3617 
3618  return itemid;
3619 }
static ItemId PageGetItemId(Page page, OffsetNumber offsetNumber)
Definition: bufpage.h:240
#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 3384 of file verify_nbtree.c.

3385 {
3386  Buffer buffer;
3387  Page page;
3388  BTPageOpaque opaque;
3389  OffsetNumber maxoffset;
3390 
3391  page = palloc(BLCKSZ);
3392 
3393  /*
3394  * We copy the page into local storage to avoid holding pin on the buffer
3395  * longer than we must.
3396  */
3397  buffer = ReadBufferExtended(state->rel, MAIN_FORKNUM, blocknum, RBM_NORMAL,
3398  state->checkstrategy);
3399  LockBuffer(buffer, BT_READ);
3400 
3401  /*
3402  * Perform the same basic sanity checking that nbtree itself performs for
3403  * every page:
3404  */
3405  _bt_checkpage(state->rel, buffer);
3406 
3407  /* Only use copy of page in palloc()'d memory */
3408  memcpy(page, BufferGetPage(buffer), BLCKSZ);
3409  UnlockReleaseBuffer(buffer);
3410 
3411  opaque = BTPageGetOpaque(page);
3412 
3413  if (P_ISMETA(opaque) && blocknum != BTREE_METAPAGE)
3414  ereport(ERROR,
3415  (errcode(ERRCODE_INDEX_CORRUPTED),
3416  errmsg("invalid meta page found at block %u in index \"%s\"",
3417  blocknum, RelationGetRelationName(state->rel))));
3418 
3419  /* Check page from block that ought to be meta page */
3420  if (blocknum == BTREE_METAPAGE)
3421  {
3422  BTMetaPageData *metad = BTPageGetMeta(page);
3423 
3424  if (!P_ISMETA(opaque) ||
3425  metad->btm_magic != BTREE_MAGIC)
3426  ereport(ERROR,
3427  (errcode(ERRCODE_INDEX_CORRUPTED),
3428  errmsg("index \"%s\" meta page is corrupt",
3429  RelationGetRelationName(state->rel))));
3430 
3431  if (metad->btm_version < BTREE_MIN_VERSION ||
3432  metad->btm_version > BTREE_VERSION)
3433  ereport(ERROR,
3434  (errcode(ERRCODE_INDEX_CORRUPTED),
3435  errmsg("version mismatch in index \"%s\": file version %d, "
3436  "current version %d, minimum supported version %d",
3438  metad->btm_version, BTREE_VERSION,
3439  BTREE_MIN_VERSION)));
3440 
3441  /* Finished with metapage checks */
3442  return page;
3443  }
3444 
3445  /*
3446  * Deleted pages that still use the old 32-bit XID representation have no
3447  * sane "level" field because they type pun the field, but all other pages
3448  * (including pages deleted on Postgres 14+) have a valid value.
3449  */
3450  if (!P_ISDELETED(opaque) || P_HAS_FULLXID(opaque))
3451  {
3452  /* Okay, no reason not to trust btpo_level field from page */
3453 
3454  if (P_ISLEAF(opaque) && opaque->btpo_level != 0)
3455  ereport(ERROR,
3456  (errcode(ERRCODE_INDEX_CORRUPTED),
3457  errmsg_internal("invalid leaf page level %u for block %u in index \"%s\"",
3458  opaque->btpo_level, blocknum,
3459  RelationGetRelationName(state->rel))));
3460 
3461  if (!P_ISLEAF(opaque) && opaque->btpo_level == 0)
3462  ereport(ERROR,
3463  (errcode(ERRCODE_INDEX_CORRUPTED),
3464  errmsg_internal("invalid internal page level 0 for block %u in index \"%s\"",
3465  blocknum,
3466  RelationGetRelationName(state->rel))));
3467  }
3468 
3469  /*
3470  * Sanity checks for number of items on page.
3471  *
3472  * As noted at the beginning of _bt_binsrch(), an internal page must have
3473  * children, since there must always be a negative infinity downlink
3474  * (there may also be a highkey). In the case of non-rightmost leaf
3475  * pages, there must be at least a highkey. The exceptions are deleted
3476  * pages, which contain no items.
3477  *
3478  * This is correct when pages are half-dead, since internal pages are
3479  * never half-dead, and leaf pages must have a high key when half-dead
3480  * (the rightmost page can never be deleted). It's also correct with
3481  * fully deleted pages: _bt_unlink_halfdead_page() doesn't change anything
3482  * about the target page other than setting the page as fully dead, and
3483  * setting its xact field. In particular, it doesn't change the sibling
3484  * links in the deletion target itself, since they're required when index
3485  * scans land on the deletion target, and then need to move right (or need
3486  * to move left, in the case of backward index scans).
3487  */
3488  maxoffset = PageGetMaxOffsetNumber(page);
3489  if (maxoffset > MaxIndexTuplesPerPage)
3490  ereport(ERROR,
3491  (errcode(ERRCODE_INDEX_CORRUPTED),
3492  errmsg("Number of items on block %u of index \"%s\" exceeds MaxIndexTuplesPerPage (%u)",
3493  blocknum, RelationGetRelationName(state->rel),
3495 
3496  if (!P_ISLEAF(opaque) && !P_ISDELETED(opaque) && maxoffset < P_FIRSTDATAKEY(opaque))
3497  ereport(ERROR,
3498  (errcode(ERRCODE_INDEX_CORRUPTED),
3499  errmsg("internal block %u in index \"%s\" lacks high key and/or at least one downlink",
3500  blocknum, RelationGetRelationName(state->rel))));
3501 
3502  if (P_ISLEAF(opaque) && !P_ISDELETED(opaque) && !P_RIGHTMOST(opaque) && maxoffset < P_HIKEY)
3503  ereport(ERROR,
3504  (errcode(ERRCODE_INDEX_CORRUPTED),
3505  errmsg("non-rightmost leaf block %u in index \"%s\" lacks high key item",
3506  blocknum, RelationGetRelationName(state->rel))));
3507 
3508  /*
3509  * In general, internal pages are never marked half-dead, except on
3510  * versions of Postgres prior to 9.4, where it can be valid transient
3511  * state. This state is nonetheless treated as corruption by VACUUM on
3512  * from version 9.4 on, so do the same here. See _bt_pagedel() for full
3513  * details.
3514  */
3515  if (!P_ISLEAF(opaque) && P_ISHALFDEAD(opaque))
3516  ereport(ERROR,
3517  (errcode(ERRCODE_INDEX_CORRUPTED),
3518  errmsg("internal page block %u in index \"%s\" is half-dead",
3519  blocknum, RelationGetRelationName(state->rel)),
3520  errhint("This can be caused by an interrupted VACUUM in version 9.3 or older, before upgrade. Please REINDEX it.")));
3521 
3522  /*
3523  * Check that internal pages have no garbage items, and that no page has
3524  * an invalid combination of deletion-related page level flags
3525  */
3526  if (!P_ISLEAF(opaque) && P_HAS_GARBAGE(opaque))
3527  ereport(ERROR,
3528  (errcode(ERRCODE_INDEX_CORRUPTED),
3529  errmsg_internal("internal page block %u in index \"%s\" has garbage items",
3530  blocknum, RelationGetRelationName(state->rel))));
3531 
3532  if (P_HAS_FULLXID(opaque) && !P_ISDELETED(opaque))
3533  ereport(ERROR,
3534  (errcode(ERRCODE_INDEX_CORRUPTED),
3535  errmsg_internal("full transaction id page flag appears in non-deleted block %u in index \"%s\"",
3536  blocknum, RelationGetRelationName(state->rel))));
3537 
3538  if (P_ISDELETED(opaque) && P_ISHALFDEAD(opaque))
3539  ereport(ERROR,
3540  (errcode(ERRCODE_INDEX_CORRUPTED),
3541  errmsg_internal("deleted page block %u in index \"%s\" is half-dead",
3542  blocknum, RelationGetRelationName(state->rel))));
3543 
3544  return page;
3545 }
#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.