PostgreSQL Source Code  git master
xlog_internal.h File Reference
#include "access/xlogdefs.h"
#include "access/xlogreader.h"
#include "datatype/timestamp.h"
#include "lib/stringinfo.h"
#include "pgtime.h"
#include "storage/block.h"
#include "storage/relfilelocator.h"
Include dependency graph for xlog_internal.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  XLogPageHeaderData
 
struct  XLogLongPageHeaderData
 
struct  xl_parameter_change
 
struct  xl_restore_point
 
struct  xl_overwrite_contrecord
 
struct  xl_end_of_recovery
 
struct  XLogRecData
 
struct  RmgrData
 

Macros

#define XLOG_PAGE_MAGIC   0xD114 /* can be used as WAL version indicator */
 
#define SizeOfXLogShortPHD   MAXALIGN(sizeof(XLogPageHeaderData))
 
#define SizeOfXLogLongPHD   MAXALIGN(sizeof(XLogLongPageHeaderData))
 
#define XLP_FIRST_IS_CONTRECORD   0x0001
 
#define XLP_LONG_HEADER   0x0002
 
#define XLP_BKP_REMOVABLE   0x0004
 
#define XLP_FIRST_IS_OVERWRITE_CONTRECORD   0x0008
 
#define XLP_ALL_FLAGS   0x000F
 
#define XLogPageHeaderSize(hdr)    (((hdr)->xlp_info & XLP_LONG_HEADER) ? SizeOfXLogLongPHD : SizeOfXLogShortPHD)
 
#define WalSegMinSize   1024 * 1024
 
#define WalSegMaxSize   1024 * 1024 * 1024
 
#define DEFAULT_MIN_WAL_SEGS   5
 
#define DEFAULT_MAX_WAL_SEGS   64
 
#define IsPowerOf2(x)   (x > 0 && ((x) & ((x)-1)) == 0)
 
#define IsValidWalSegSize(size)
 
#define XLogSegmentsPerXLogId(wal_segsz_bytes)    (UINT64CONST(0x100000000) / (wal_segsz_bytes))
 
#define XLogSegNoOffsetToRecPtr(segno, offset, wal_segsz_bytes, dest)    (dest) = (segno) * (wal_segsz_bytes) + (offset)
 
#define XLogSegmentOffset(xlogptr, wal_segsz_bytes)    ((xlogptr) & ((wal_segsz_bytes) - 1))
 
#define XLByteToSeg(xlrp, logSegNo, wal_segsz_bytes)    logSegNo = (xlrp) / (wal_segsz_bytes)
 
#define XLByteToPrevSeg(xlrp, logSegNo, wal_segsz_bytes)    logSegNo = ((xlrp) - 1) / (wal_segsz_bytes)
 
#define XLogMBVarToSegs(mbvar, wal_segsz_bytes)    ((mbvar) / ((wal_segsz_bytes) / (1024 * 1024)))
 
#define XLByteInSeg(xlrp, logSegNo, wal_segsz_bytes)    (((xlrp) / (wal_segsz_bytes)) == (logSegNo))
 
#define XLByteInPrevSeg(xlrp, logSegNo, wal_segsz_bytes)    ((((xlrp) - 1) / (wal_segsz_bytes)) == (logSegNo))
 
#define XRecOffIsValid(xlrp)    ((xlrp) % XLOG_BLCKSZ >= SizeOfXLogShortPHD)
 
#define XLOGDIR   "pg_wal"
 
#define XLOG_CONTROL_FILE   "global/pg_control"
 
#define MAXFNAMELEN   64
 
#define XLOG_FNAME_LEN   24
 

Typedefs

typedef struct XLogPageHeaderData XLogPageHeaderData
 
typedef XLogPageHeaderDataXLogPageHeader
 
typedef struct XLogLongPageHeaderData XLogLongPageHeaderData
 
typedef XLogLongPageHeaderDataXLogLongPageHeader
 
typedef struct xl_parameter_change xl_parameter_change
 
typedef struct xl_restore_point xl_restore_point
 
typedef struct xl_overwrite_contrecord xl_overwrite_contrecord
 
typedef struct xl_end_of_recovery xl_end_of_recovery
 
typedef struct XLogRecData XLogRecData
 
typedef struct RmgrData RmgrData
 

Enumerations

enum  RecoveryTargetAction { RECOVERY_TARGET_ACTION_PAUSE , RECOVERY_TARGET_ACTION_PROMOTE , RECOVERY_TARGET_ACTION_SHUTDOWN }
 

Functions

static void XLogFileName (char *fname, TimeLineID tli, XLogSegNo logSegNo, int wal_segsz_bytes)
 
static void XLogFileNameById (char *fname, TimeLineID tli, uint32 log, uint32 seg)
 
static bool IsXLogFileName (const char *fname)
 
static bool IsPartialXLogFileName (const char *fname)
 
static void XLogFromFileName (const char *fname, TimeLineID *tli, XLogSegNo *logSegNo, int wal_segsz_bytes)
 
static void XLogFilePath (char *path, TimeLineID tli, XLogSegNo logSegNo, int wal_segsz_bytes)
 
static void TLHistoryFileName (char *fname, TimeLineID tli)
 
static bool IsTLHistoryFileName (const char *fname)
 
static void TLHistoryFilePath (char *path, TimeLineID tli)
 
static void StatusFilePath (char *path, const char *xlog, const char *suffix)
 
static void BackupHistoryFileName (char *fname, TimeLineID tli, XLogSegNo logSegNo, XLogRecPtr startpoint, int wal_segsz_bytes)
 
static bool IsBackupHistoryFileName (const char *fname)
 
static void BackupHistoryFilePath (char *path, TimeLineID tli, XLogSegNo logSegNo, XLogRecPtr startpoint, int wal_segsz_bytes)
 
void RmgrStartup (void)
 
void RmgrCleanup (void)
 
void RmgrNotFound (RmgrId rmid)
 
void RegisterCustomRmgr (RmgrId rmid, const RmgrData *rmgr)
 
static bool RmgrIdExists (RmgrId rmid)
 
static RmgrData GetRmgr (RmgrId rmid)
 
pg_time_t GetLastSegSwitchData (XLogRecPtr *lastSwitchLSN)
 
XLogRecPtr RequestXLogSwitch (bool mark_unimportant)
 
void GetOldestRestartPoint (XLogRecPtr *oldrecptr, TimeLineID *oldtli)
 
void XLogRecGetBlockRefInfo (XLogReaderState *record, bool pretty, bool detailed_format, StringInfo buf, uint32 *fpi_len)
 

Variables

PGDLLIMPORT RmgrData RmgrTable []
 
PGDLLIMPORT bool ArchiveRecoveryRequested
 
PGDLLIMPORT bool InArchiveRecovery
 
PGDLLIMPORT bool StandbyMode
 
PGDLLIMPORT char * recoveryRestoreCommand
 

Macro Definition Documentation

◆ DEFAULT_MAX_WAL_SEGS

#define DEFAULT_MAX_WAL_SEGS   64

Definition at line 92 of file xlog_internal.h.

◆ DEFAULT_MIN_WAL_SEGS

#define DEFAULT_MIN_WAL_SEGS   5

Definition at line 91 of file xlog_internal.h.

◆ IsPowerOf2

#define IsPowerOf2 (   x)    (x > 0 && ((x) & ((x)-1)) == 0)

Definition at line 95 of file xlog_internal.h.

◆ IsValidWalSegSize

#define IsValidWalSegSize (   size)
Value:
static pg_noinline void Size size
Definition: slab.c:607
#define IsPowerOf2(x)
Definition: xlog_internal.h:95
#define WalSegMinSize
Definition: xlog_internal.h:88
#define WalSegMaxSize
Definition: xlog_internal.h:89

Definition at line 96 of file xlog_internal.h.

◆ MAXFNAMELEN

#define MAXFNAMELEN   64

Definition at line 156 of file xlog_internal.h.

◆ SizeOfXLogLongPHD

#define SizeOfXLogLongPHD   MAXALIGN(sizeof(XLogLongPageHeaderData))

Definition at line 69 of file xlog_internal.h.

◆ SizeOfXLogShortPHD

#define SizeOfXLogShortPHD   MAXALIGN(sizeof(XLogPageHeaderData))

Definition at line 52 of file xlog_internal.h.

◆ WalSegMaxSize

#define WalSegMaxSize   1024 * 1024 * 1024

Definition at line 89 of file xlog_internal.h.

◆ WalSegMinSize

#define WalSegMinSize   1024 * 1024

Definition at line 88 of file xlog_internal.h.

◆ XLByteInPrevSeg

#define XLByteInPrevSeg (   xlrp,
  logSegNo,
  wal_segsz_bytes 
)     ((((xlrp) - 1) / (wal_segsz_bytes)) == (logSegNo))

Definition at line 139 of file xlog_internal.h.

◆ XLByteInSeg

#define XLByteInSeg (   xlrp,
  logSegNo,
  wal_segsz_bytes 
)     (((xlrp) / (wal_segsz_bytes)) == (logSegNo))

Definition at line 136 of file xlog_internal.h.

◆ XLByteToPrevSeg

#define XLByteToPrevSeg (   xlrp,
  logSegNo,
  wal_segsz_bytes 
)     logSegNo = ((xlrp) - 1) / (wal_segsz_bytes)

Definition at line 120 of file xlog_internal.h.

◆ XLByteToSeg

#define XLByteToSeg (   xlrp,
  logSegNo,
  wal_segsz_bytes 
)     logSegNo = (xlrp) / (wal_segsz_bytes)

Definition at line 117 of file xlog_internal.h.

◆ XLOG_CONTROL_FILE

#define XLOG_CONTROL_FILE   "global/pg_control"

Definition at line 150 of file xlog_internal.h.

◆ XLOG_FNAME_LEN

#define XLOG_FNAME_LEN   24

Definition at line 159 of file xlog_internal.h.

◆ XLOG_PAGE_MAGIC

#define XLOG_PAGE_MAGIC   0xD114 /* can be used as WAL version indicator */

Definition at line 34 of file xlog_internal.h.

◆ XLOGDIR

#define XLOGDIR   "pg_wal"

Definition at line 149 of file xlog_internal.h.

◆ XLogMBVarToSegs

#define XLogMBVarToSegs (   mbvar,
  wal_segsz_bytes 
)     ((mbvar) / ((wal_segsz_bytes) / (1024 * 1024)))

Definition at line 127 of file xlog_internal.h.

◆ XLogPageHeaderSize

#define XLogPageHeaderSize (   hdr)     (((hdr)->xlp_info & XLP_LONG_HEADER) ? SizeOfXLogLongPHD : SizeOfXLogShortPHD)

Definition at line 84 of file xlog_internal.h.

◆ XLogSegmentOffset

#define XLogSegmentOffset (   xlogptr,
  wal_segsz_bytes 
)     ((xlogptr) & ((wal_segsz_bytes) - 1))

Definition at line 106 of file xlog_internal.h.

◆ XLogSegmentsPerXLogId

#define XLogSegmentsPerXLogId (   wal_segsz_bytes)     (UINT64CONST(0x100000000) / (wal_segsz_bytes))

Definition at line 100 of file xlog_internal.h.

◆ XLogSegNoOffsetToRecPtr

#define XLogSegNoOffsetToRecPtr (   segno,
  offset,
  wal_segsz_bytes,
  dest 
)     (dest) = (segno) * (wal_segsz_bytes) + (offset)

Definition at line 103 of file xlog_internal.h.

◆ XLP_ALL_FLAGS

#define XLP_ALL_FLAGS   0x000F

Definition at line 82 of file xlog_internal.h.

◆ XLP_BKP_REMOVABLE

#define XLP_BKP_REMOVABLE   0x0004

Definition at line 78 of file xlog_internal.h.

◆ XLP_FIRST_IS_CONTRECORD

#define XLP_FIRST_IS_CONTRECORD   0x0001

Definition at line 74 of file xlog_internal.h.

◆ XLP_FIRST_IS_OVERWRITE_CONTRECORD

#define XLP_FIRST_IS_OVERWRITE_CONTRECORD   0x0008

Definition at line 80 of file xlog_internal.h.

◆ XLP_LONG_HEADER

#define XLP_LONG_HEADER   0x0002

Definition at line 76 of file xlog_internal.h.

◆ XRecOffIsValid

#define XRecOffIsValid (   xlrp)     ((xlrp) % XLOG_BLCKSZ >= SizeOfXLogShortPHD)

Definition at line 143 of file xlog_internal.h.

Typedef Documentation

◆ RmgrData

typedef struct RmgrData RmgrData

◆ xl_end_of_recovery

◆ xl_overwrite_contrecord

◆ xl_parameter_change

◆ xl_restore_point

◆ XLogLongPageHeader

Definition at line 71 of file xlog_internal.h.

◆ XLogLongPageHeaderData

◆ XLogPageHeader

Definition at line 54 of file xlog_internal.h.

◆ XLogPageHeaderData

◆ XLogRecData

typedef struct XLogRecData XLogRecData

Enumeration Type Documentation

◆ RecoveryTargetAction

Enumerator
RECOVERY_TARGET_ACTION_PAUSE 
RECOVERY_TARGET_ACTION_PROMOTE 
RECOVERY_TARGET_ACTION_SHUTDOWN 

Definition at line 321 of file xlog_internal.h.

322 {
RecoveryTargetAction
@ RECOVERY_TARGET_ACTION_PAUSE
@ RECOVERY_TARGET_ACTION_PROMOTE
@ RECOVERY_TARGET_ACTION_SHUTDOWN

Function Documentation

◆ BackupHistoryFileName()

static void BackupHistoryFileName ( char *  fname,
TimeLineID  tli,
XLogSegNo  logSegNo,
XLogRecPtr  startpoint,
int  wal_segsz_bytes 
)
inlinestatic

Definition at line 244 of file xlog_internal.h.

245 {
246  snprintf(fname, MAXFNAMELEN, "%08X%08X%08X.%08X.backup", tli,
247  (uint32) (logSegNo / XLogSegmentsPerXLogId(wal_segsz_bytes)),
248  (uint32) (logSegNo % XLogSegmentsPerXLogId(wal_segsz_bytes)),
249  (uint32) (XLogSegmentOffset(startpoint, wal_segsz_bytes)));
250 }
unsigned int uint32
Definition: c.h:493
#define snprintf
Definition: port.h:238
#define XLogSegmentOffset(xlogptr, wal_segsz_bytes)
#define MAXFNAMELEN
#define XLogSegmentsPerXLogId(wal_segsz_bytes)

References MAXFNAMELEN, snprintf, XLogSegmentOffset, and XLogSegmentsPerXLogId.

Referenced by do_pg_backup_stop().

◆ BackupHistoryFilePath()

static void BackupHistoryFilePath ( char *  path,
TimeLineID  tli,
XLogSegNo  logSegNo,
XLogRecPtr  startpoint,
int  wal_segsz_bytes 
)
inlinestatic

Definition at line 261 of file xlog_internal.h.

262 {
263  snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X.%08X.backup", tli,
264  (uint32) (logSegNo / XLogSegmentsPerXLogId(wal_segsz_bytes)),
265  (uint32) (logSegNo % XLogSegmentsPerXLogId(wal_segsz_bytes)),
266  (uint32) (XLogSegmentOffset((startpoint), wal_segsz_bytes)));
267 }
#define MAXPGPATH
#define XLOGDIR

References MAXPGPATH, snprintf, XLOGDIR, XLogSegmentOffset, and XLogSegmentsPerXLogId.

Referenced by do_pg_backup_stop().

◆ GetLastSegSwitchData()

pg_time_t GetLastSegSwitchData ( XLogRecPtr lastSwitchLSN)

Definition at line 6435 of file xlog.c.

6436 {
6437  pg_time_t result;
6438 
6439  /* Need WALWriteLock, but shared lock is sufficient */
6440  LWLockAcquire(WALWriteLock, LW_SHARED);
6441  result = XLogCtl->lastSegSwitchTime;
6442  *lastSwitchLSN = XLogCtl->lastSegSwitchLSN;
6443  LWLockRelease(WALWriteLock);
6444 
6445  return result;
6446 }
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1172
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1785
@ LW_SHARED
Definition: lwlock.h:117
int64 pg_time_t
Definition: pgtime.h:23
pg_time_t lastSegSwitchTime
Definition: xlog.c:473
XLogRecPtr lastSegSwitchLSN
Definition: xlog.c:474
static XLogCtlData * XLogCtl
Definition: xlog.c:568

References XLogCtlData::lastSegSwitchLSN, XLogCtlData::lastSegSwitchTime, LW_SHARED, LWLockAcquire(), LWLockRelease(), and XLogCtl.

Referenced by CheckArchiveTimeout().

◆ GetOldestRestartPoint()

void GetOldestRestartPoint ( XLogRecPtr oldrecptr,
TimeLineID oldtli 
)

Definition at line 9296 of file xlog.c.

9297 {
9298  LWLockAcquire(ControlFileLock, LW_SHARED);
9299  *oldrecptr = ControlFile->checkPointCopy.redo;
9301  LWLockRelease(ControlFileLock);
9302 }
TimeLineID ThisTimeLineID
Definition: pg_control.h:39
XLogRecPtr redo
Definition: pg_control.h:37
CheckPoint checkPointCopy
Definition: pg_control.h:134
static ControlFileData * ControlFile
Definition: xlog.c:576

References ControlFileData::checkPointCopy, ControlFile, LW_SHARED, LWLockAcquire(), LWLockRelease(), CheckPoint::redo, and CheckPoint::ThisTimeLineID.

Referenced by ExecuteRecoveryCommand(), and RestoreArchivedFile().

◆ GetRmgr()

static RmgrData GetRmgr ( RmgrId  rmid)
inlinestatic

Definition at line 375 of file xlog_internal.h.

376 {
377  if (unlikely(!RmgrIdExists(rmid)))
378  RmgrNotFound(rmid);
379  return RmgrTable[rmid];
380 }
#define unlikely(x)
Definition: c.h:298
void RmgrNotFound(RmgrId rmid)
Definition: rmgr.c:91
PGDLLIMPORT RmgrData RmgrTable[]
Definition: rmgr.c:50
static bool RmgrIdExists(RmgrId rmid)

References RmgrIdExists(), RmgrNotFound(), RmgrTable, and unlikely.

Referenced by ApplyWalRecord(), check_wal_consistency_checking(), GetWALBlockInfo(), GetWALRecordInfo(), GetXLogSummaryStats(), LogicalDecodingProcessRecord(), verifyBackupPageConsistency(), and xlog_outdesc().

◆ IsBackupHistoryFileName()

static bool IsBackupHistoryFileName ( const char *  fname)
inlinestatic

Definition at line 253 of file xlog_internal.h.

254 {
255  return (strlen(fname) > XLOG_FNAME_LEN &&
256  strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN &&
257  strcmp(fname + strlen(fname) - strlen(".backup"), ".backup") == 0);
258 }
#define XLOG_FNAME_LEN

References XLOG_FNAME_LEN.

Referenced by CleanupBackupHistory(), CleanupPriorWALFiles(), and SetWALFileNameForCleanup().

◆ IsPartialXLogFileName()

static bool IsPartialXLogFileName ( const char *  fname)
inlinestatic

Definition at line 192 of file xlog_internal.h.

193 {
194  return (strlen(fname) == XLOG_FNAME_LEN + strlen(".partial") &&
195  strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN &&
196  strcmp(fname + XLOG_FNAME_LEN, ".partial") == 0);
197 }

References XLOG_FNAME_LEN.

Referenced by CleanupPriorWALFiles(), FindEndOfXLOG(), KillExistingXLOG(), RemoveOldXlogFiles(), and SetWALFileNameForCleanup().

◆ IsTLHistoryFileName()

static bool IsTLHistoryFileName ( const char *  fname)
inlinestatic

Definition at line 224 of file xlog_internal.h.

225 {
226  return (strlen(fname) == 8 + strlen(".history") &&
227  strspn(fname, "0123456789ABCDEF") == 8 &&
228  strcmp(fname + 8, ".history") == 0);
229 }

Referenced by perform_base_backup(), ready_file_comparator(), and XLogArchiveNotify().

◆ IsXLogFileName()

static bool IsXLogFileName ( const char *  fname)
inlinestatic

◆ RegisterCustomRmgr()

void RegisterCustomRmgr ( RmgrId  rmid,
const RmgrData rmgr 
)

Definition at line 107 of file rmgr.c.

108 {
109  if (rmgr->rm_name == NULL || strlen(rmgr->rm_name) == 0)
110  ereport(ERROR, (errmsg("custom resource manager name is invalid"),
111  errhint("Provide a non-empty name for the custom resource manager.")));
112 
113  if (!RmgrIdIsCustom(rmid))
114  ereport(ERROR, (errmsg("custom resource manager ID %d is out of range", rmid),
115  errhint("Provide a custom resource manager ID between %d and %d.",
117 
119  ereport(ERROR,
120  (errmsg("failed to register custom resource manager \"%s\" with ID %d", rmgr->rm_name, rmid),
121  errdetail("Custom resource manager must be registered while initializing modules in shared_preload_libraries.")));
122 
123  if (RmgrTable[rmid].rm_name != NULL)
124  ereport(ERROR,
125  (errmsg("failed to register custom resource manager \"%s\" with ID %d", rmgr->rm_name, rmid),
126  errdetail("Custom resource manager \"%s\" already registered with the same ID.",
127  RmgrTable[rmid].rm_name)));
128 
129  /* check for existing rmgr with the same name */
130  for (int existing_rmid = 0; existing_rmid <= RM_MAX_ID; existing_rmid++)
131  {
132  if (!RmgrIdExists(existing_rmid))
133  continue;
134 
135  if (!pg_strcasecmp(RmgrTable[existing_rmid].rm_name, rmgr->rm_name))
136  ereport(ERROR,
137  (errmsg("failed to register custom resource manager \"%s\" with ID %d", rmgr->rm_name, rmid),
138  errdetail("Existing resource manager with ID %d has the same name.", existing_rmid)));
139  }
140 
141  /* register it */
142  RmgrTable[rmid] = *rmgr;
143  ereport(LOG,
144  (errmsg("registered custom resource manager \"%s\" with ID %d",
145  rmgr->rm_name, rmid)));
146 }
int errdetail(const char *fmt,...)
Definition: elog.c:1205
int errhint(const char *fmt,...)
Definition: elog.c:1319
int errmsg(const char *fmt,...)
Definition: elog.c:1072
#define LOG
Definition: elog.h:31
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
bool process_shared_preload_libraries_in_progress
Definition: miscinit.c:1778
int pg_strcasecmp(const char *s1, const char *s2)
Definition: pgstrcasecmp.c:36
RmgrData RmgrTable[RM_MAX_ID+1]
Definition: rmgr.c:50
static bool RmgrIdIsCustom(int rmid)
Definition: rmgr.h:48
#define RM_MAX_CUSTOM_ID
Definition: rmgr.h:36
#define RM_MAX_ID
Definition: rmgr.h:33
#define RM_MIN_CUSTOM_ID
Definition: rmgr.h:35
const char * rm_name

References ereport, errdetail(), errhint(), errmsg(), ERROR, LOG, pg_strcasecmp(), process_shared_preload_libraries_in_progress, RM_MAX_CUSTOM_ID, RM_MAX_ID, RM_MIN_CUSTOM_ID, RmgrData::rm_name, RmgrIdExists(), RmgrIdIsCustom(), and RmgrTable.

Referenced by _PG_init().

◆ RequestXLogSwitch()

XLogRecPtr RequestXLogSwitch ( bool  mark_unimportant)

Definition at line 7894 of file xlog.c.

7895 {
7896  XLogRecPtr RecPtr;
7897 
7898  /* XLOG SWITCH has no data */
7899  XLogBeginInsert();
7900 
7901  if (mark_unimportant)
7903  RecPtr = XLogInsert(RM_XLOG_ID, XLOG_SWITCH);
7904 
7905  return RecPtr;
7906 }
#define XLOG_SWITCH
Definition: pg_control.h:71
#define XLOG_MARK_UNIMPORTANT
Definition: xlog.h:153
uint64 XLogRecPtr
Definition: xlogdefs.h:21
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
Definition: xloginsert.c:474
void XLogSetRecordFlags(uint8 flags)
Definition: xloginsert.c:456
void XLogBeginInsert(void)
Definition: xloginsert.c:149

References XLOG_MARK_UNIMPORTANT, XLOG_SWITCH, XLogBeginInsert(), XLogInsert(), and XLogSetRecordFlags().

Referenced by CheckArchiveTimeout(), do_pg_backup_start(), do_pg_backup_stop(), pg_switch_wal(), and ShutdownXLOG().

◆ RmgrCleanup()

void RmgrCleanup ( void  )

Definition at line 74 of file rmgr.c.

75 {
76  for (int rmid = 0; rmid <= RM_MAX_ID; rmid++)
77  {
78  if (!RmgrIdExists(rmid))
79  continue;
80 
81  if (RmgrTable[rmid].rm_cleanup != NULL)
82  RmgrTable[rmid].rm_cleanup();
83  }
84 }
void(* rm_cleanup)(void)

References RmgrData::rm_cleanup, RM_MAX_ID, RmgrIdExists(), and RmgrTable.

Referenced by PerformWalRecovery().

◆ RmgrIdExists()

static bool RmgrIdExists ( RmgrId  rmid)
inlinestatic

Definition at line 369 of file xlog_internal.h.

370 {
371  return RmgrTable[rmid].rm_name != NULL;
372 }

References RmgrData::rm_name, and RmgrTable.

Referenced by check_wal_consistency_checking(), GetRmgr(), GetXLogSummaryStats(), RegisterCustomRmgr(), RmgrCleanup(), and RmgrStartup().

◆ RmgrNotFound()

void RmgrNotFound ( RmgrId  rmid)

Definition at line 91 of file rmgr.c.

92 {
93  ereport(ERROR, (errmsg("resource manager with ID %d not registered", rmid),
94  errhint("Include the extension module that implements this resource manager in shared_preload_libraries.")));
95 }

References ereport, errhint(), errmsg(), and ERROR.

Referenced by GetRmgr().

◆ RmgrStartup()

void RmgrStartup ( void  )

Definition at line 58 of file rmgr.c.

59 {
60  for (int rmid = 0; rmid <= RM_MAX_ID; rmid++)
61  {
62  if (!RmgrIdExists(rmid))
63  continue;
64 
65  if (RmgrTable[rmid].rm_startup != NULL)
66  RmgrTable[rmid].rm_startup();
67  }
68 }
void(* rm_startup)(void)

References RM_MAX_ID, RmgrData::rm_startup, RmgrIdExists(), and RmgrTable.

Referenced by PerformWalRecovery().

◆ StatusFilePath()

static void StatusFilePath ( char *  path,
const char *  xlog,
const char *  suffix 
)
inlinestatic

◆ TLHistoryFileName()

static void TLHistoryFileName ( char *  fname,
TimeLineID  tli 
)
inlinestatic

◆ TLHistoryFilePath()

static void TLHistoryFilePath ( char *  path,
TimeLineID  tli 
)
inlinestatic

Definition at line 232 of file xlog_internal.h.

233 {
234  snprintf(path, MAXPGPATH, XLOGDIR "/%08X.history", tli);
235 }

References MAXPGPATH, snprintf, and XLOGDIR.

Referenced by existsTimeLineHistory(), getTimelineHistory(), readTimeLineHistory(), SendTimeLineHistory(), writeTimeLineHistory(), and writeTimeLineHistoryFile().

◆ XLogFileName()

◆ XLogFileNameById()

static void XLogFileNameById ( char *  fname,
TimeLineID  tli,
uint32  log,
uint32  seg 
)
inlinestatic

Definition at line 174 of file xlog_internal.h.

175 {
176  snprintf(fname, MAXFNAMELEN, "%08X%08X%08X", tli, log, seg);
177 }

References MAXFNAMELEN, and snprintf.

Referenced by SetWALFileNameForCleanup().

◆ XLogFilePath()

static void XLogFilePath ( char *  path,
TimeLineID  tli,
XLogSegNo  logSegNo,
int  wal_segsz_bytes 
)
inlinestatic

Definition at line 210 of file xlog_internal.h.

211 {
212  snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X", tli,
213  (uint32) (logSegNo / XLogSegmentsPerXLogId(wal_segsz_bytes)),
214  (uint32) (logSegNo % XLogSegmentsPerXLogId(wal_segsz_bytes)));
215 }

References MAXPGPATH, snprintf, XLOGDIR, and XLogSegmentsPerXLogId.

Referenced by CleanupAfterArchiveRecovery(), InstallXLogFileSegment(), wal_segment_open(), WalSndSegmentOpen(), WriteEmptyXLOG(), XLogFileCopy(), XLogFileInitInternal(), XLogFileOpen(), XLogFileRead(), and XLogFileReadAnyTLI().

◆ XLogFromFileName()

static void XLogFromFileName ( const char *  fname,
TimeLineID tli,
XLogSegNo logSegNo,
int  wal_segsz_bytes 
)
inlinestatic

Definition at line 200 of file xlog_internal.h.

201 {
202  uint32 log;
203  uint32 seg;
204 
205  sscanf(fname, "%08X%08X%08X", tli, &log, &seg);
206  *logSegNo = (uint64) log * XLogSegmentsPerXLogId(wal_segsz_bytes) + seg;
207 }

References XLogSegmentsPerXLogId.

Referenced by FindEndOfXLOG(), FindStreamingStart(), main(), perform_base_backup(), pg_split_walfile_name(), UpdateLastRemovedPtr(), and XLogGetOldestSegno().

◆ XLogRecGetBlockRefInfo()

void XLogRecGetBlockRefInfo ( XLogReaderState record,
bool  pretty,
bool  detailed_format,
StringInfo  buf,
uint32 fpi_len 
)

Definition at line 216 of file xlogdesc.c.

219 {
220  int block_id;
221 
222  Assert(record != NULL);
223 
224  if (detailed_format && pretty)
225  appendStringInfoChar(buf, '\n');
226 
227  for (block_id = 0; block_id <= XLogRecMaxBlockId(record); block_id++)
228  {
229  RelFileLocator rlocator;
230  ForkNumber forknum;
231  BlockNumber blk;
232 
233  if (!XLogRecGetBlockTagExtended(record, block_id,
234  &rlocator, &forknum, &blk, NULL))
235  continue;
236 
237  if (detailed_format)
238  {
239  /* Get block references in detailed format. */
240 
241  if (pretty)
242  appendStringInfoChar(buf, '\t');
243  else if (block_id > 0)
245 
247  "blkref #%d: rel %u/%u/%u fork %s blk %u",
248  block_id,
249  rlocator.spcOid, rlocator.dbOid, rlocator.relNumber,
250  forkNames[forknum],
251  blk);
252 
253  if (XLogRecHasBlockImage(record, block_id))
254  {
255  uint8 bimg_info = XLogRecGetBlock(record, block_id)->bimg_info;
256 
257  /* Calculate the amount of FPI data in the record. */
258  if (fpi_len)
259  *fpi_len += XLogRecGetBlock(record, block_id)->bimg_len;
260 
261  if (BKPIMAGE_COMPRESSED(bimg_info))
262  {
263  const char *method;
264 
265  if ((bimg_info & BKPIMAGE_COMPRESS_PGLZ) != 0)
266  method = "pglz";
267  else if ((bimg_info & BKPIMAGE_COMPRESS_LZ4) != 0)
268  method = "lz4";
269  else if ((bimg_info & BKPIMAGE_COMPRESS_ZSTD) != 0)
270  method = "zstd";
271  else
272  method = "unknown";
273 
275  " (FPW%s); hole: offset: %u, length: %u, "
276  "compression saved: %u, method: %s",
277  XLogRecBlockImageApply(record, block_id) ?
278  "" : " for WAL verification",
279  XLogRecGetBlock(record, block_id)->hole_offset,
280  XLogRecGetBlock(record, block_id)->hole_length,
281  BLCKSZ -
282  XLogRecGetBlock(record, block_id)->hole_length -
283  XLogRecGetBlock(record, block_id)->bimg_len,
284  method);
285  }
286  else
287  {
289  " (FPW%s); hole: offset: %u, length: %u",
290  XLogRecBlockImageApply(record, block_id) ?
291  "" : " for WAL verification",
292  XLogRecGetBlock(record, block_id)->hole_offset,
293  XLogRecGetBlock(record, block_id)->hole_length);
294  }
295  }
296 
297  if (pretty)
298  appendStringInfoChar(buf, '\n');
299  }
300  else
301  {
302  /* Get block references in short format. */
303 
304  if (forknum != MAIN_FORKNUM)
305  {
307  ", blkref #%d: rel %u/%u/%u fork %s blk %u",
308  block_id,
309  rlocator.spcOid, rlocator.dbOid, rlocator.relNumber,
310  forkNames[forknum],
311  blk);
312  }
313  else
314  {
316  ", blkref #%d: rel %u/%u/%u blk %u",
317  block_id,
318  rlocator.spcOid, rlocator.dbOid, rlocator.relNumber,
319  blk);
320  }
321 
322  if (XLogRecHasBlockImage(record, block_id))
323  {
324  /* Calculate the amount of FPI data in the record. */
325  if (fpi_len)
326  *fpi_len += XLogRecGetBlock(record, block_id)->bimg_len;
327 
328  if (XLogRecBlockImageApply(record, block_id))
329  appendStringInfoString(buf, " FPW");
330  else
331  appendStringInfoString(buf, " FPW for WAL verification");
332  }
333  }
334  }
335 
336  if (!detailed_format && pretty)
337  appendStringInfoChar(buf, '\n');
338 }
uint32 BlockNumber
Definition: block.h:31
unsigned char uint8
Definition: c.h:491
Assert(fmt[strlen(fmt) - 1] !='\n')
static char * buf
Definition: pg_test_fsync.c:73
const char *const forkNames[]
Definition: relpath.c:33
ForkNumber
Definition: relpath.h:48
@ MAIN_FORKNUM
Definition: relpath.h:50
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition: stringinfo.c:97
void appendStringInfoString(StringInfo str, const char *s)
Definition: stringinfo.c:182
void appendStringInfoChar(StringInfo str, char ch)
Definition: stringinfo.c:194
RelFileNumber relNumber
bool XLogRecGetBlockTagExtended(XLogReaderState *record, uint8 block_id, RelFileLocator *rlocator, ForkNumber *forknum, BlockNumber *blknum, Buffer *prefetch_buffer)
Definition: xlogreader.c:1997
#define XLogRecBlockImageApply(decoder, block_id)
Definition: xlogreader.h:425
#define XLogRecGetBlock(decoder, i)
Definition: xlogreader.h:419
#define XLogRecMaxBlockId(decoder)
Definition: xlogreader.h:418
#define XLogRecHasBlockImage(decoder, block_id)
Definition: xlogreader.h:423
#define BKPIMAGE_COMPRESS_ZSTD
Definition: xlogrecord.h:162
#define BKPIMAGE_COMPRESS_LZ4
Definition: xlogrecord.h:161
#define BKPIMAGE_COMPRESSED(info)
Definition: xlogrecord.h:164
#define BKPIMAGE_COMPRESS_PGLZ
Definition: xlogrecord.h:160

References appendStringInfo(), appendStringInfoChar(), appendStringInfoString(), Assert(), BKPIMAGE_COMPRESS_LZ4, BKPIMAGE_COMPRESS_PGLZ, BKPIMAGE_COMPRESS_ZSTD, BKPIMAGE_COMPRESSED, buf, RelFileLocator::dbOid, forkNames, MAIN_FORKNUM, RelFileLocator::relNumber, RelFileLocator::spcOid, XLogRecBlockImageApply, XLogRecGetBlock, XLogRecGetBlockTagExtended(), XLogRecHasBlockImage, and XLogRecMaxBlockId.

Referenced by GetWALRecordInfo(), and XLogDumpDisplayRecord().

Variable Documentation

◆ ArchiveRecoveryRequested

◆ InArchiveRecovery

◆ recoveryRestoreCommand

PGDLLIMPORT char* recoveryRestoreCommand
extern

Definition at line 82 of file xlogrecovery.c.

◆ RmgrTable

PGDLLIMPORT RmgrData RmgrTable[]
extern

Definition at line 50 of file rmgr.c.

Referenced by GetRmgr(), RegisterCustomRmgr(), RmgrCleanup(), RmgrIdExists(), and RmgrStartup().

◆ StandbyMode

PGDLLIMPORT bool StandbyMode
extern

Definition at line 147 of file xlogrecovery.c.