PostgreSQL Source Code git master
Loading...
Searching...
No Matches
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   0xD11B /* 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
 

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 charrecoveryRestoreCommand
 

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:
(IsPowerOf2(size) && \
((size) >= WalSegMinSize && (size) <= WalSegMaxSize))
#define IsPowerOf2(x)
#define WalSegMinSize
#define WalSegMaxSize

Definition at line 96 of file xlog_internal.h.

166{
167 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X", tli,
170}
171
172static inline void
173XLogFileNameById(char *fname, TimeLineID tli, uint32 log, uint32 seg)
174{
175 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X", tli, log, seg);
176}
177
178static inline bool
179IsXLogFileName(const char *fname)
180{
181 return (strlen(fname) == XLOG_FNAME_LEN && \
182 strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN);
183}
184
185/*
186 * XLOG segment with .partial suffix. Used by pg_receivewal and at end of
187 * archive recovery, when we want to archive a WAL segment but it might not
188 * be complete yet.
189 */
190static inline bool
191IsPartialXLogFileName(const char *fname)
192{
193 return (strlen(fname) == XLOG_FNAME_LEN + strlen(".partial") &&
194 strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN &&
195 strcmp(fname + XLOG_FNAME_LEN, ".partial") == 0);
196}
197
198static inline void
199XLogFromFileName(const char *fname, TimeLineID *tli, XLogSegNo *logSegNo, int wal_segsz_bytes)
200{
201 uint32 log;
202 uint32 seg;
203
204 sscanf(fname, "%08X%08X%08X", tli, &log, &seg);
206}
207
208static inline void
210{
211 snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X", tli,
214}
215
216static inline void
217TLHistoryFileName(char *fname, TimeLineID tli)
218{
219 snprintf(fname, MAXFNAMELEN, "%08X.history", tli);
220}
221
222static inline bool
223IsTLHistoryFileName(const char *fname)
224{
225 return (strlen(fname) == 8 + strlen(".history") &&
226 strspn(fname, "0123456789ABCDEF") == 8 &&
227 strcmp(fname + 8, ".history") == 0);
228}
229
230static inline void
231TLHistoryFilePath(char *path, TimeLineID tli)
232{
233 snprintf(path, MAXPGPATH, XLOGDIR "/%08X.history", tli);
234}
235
236static inline void
237StatusFilePath(char *path, const char *xlog, const char *suffix)
238{
239 snprintf(path, MAXPGPATH, XLOGDIR "/archive_status/%s%s", xlog, suffix);
240}
241
242static inline void
244{
245 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X.%08X.backup", tli,
248 (uint32) (XLogSegmentOffset(startpoint, wal_segsz_bytes)));
249}
250
251static inline bool
252IsBackupHistoryFileName(const char *fname)
253{
254 return (strlen(fname) > XLOG_FNAME_LEN &&
255 strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN &&
256 strcmp(fname + strlen(fname) - strlen(".backup"), ".backup") == 0);
257}
258
259static inline void
261{
262 snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X.%08X.backup", tli,
265 (uint32) (XLogSegmentOffset((startpoint), wal_segsz_bytes)));
266}
267
268/*
269 * Information logged when we detect a change in one of the parameters
270 * important for Hot Standby.
271 */
272typedef struct xl_parameter_change
273{
274 int MaxConnections;
276 int max_wal_senders;
279 int wal_level;
280 bool wal_log_hints;
283
284/* logs restore point */
285typedef struct xl_restore_point
286{
288 char rp_name[MAXFNAMELEN];
290
291/* Overwrite of prior contrecord */
292typedef struct xl_overwrite_contrecord
293{
297
298/* End of recovery mark, when we don't do an END_OF_RECOVERY checkpoint */
299typedef struct xl_end_of_recovery
300{
302 TimeLineID ThisTimeLineID; /* new TLI */
303 TimeLineID PrevTimeLineID; /* previous TLI we forked off from */
304 int wal_level;
306
307/*
308 * The functions in xloginsert.c construct a chain of XLogRecData structs
309 * to represent the final WAL record.
310 */
311typedef struct XLogRecData
312{
313 struct XLogRecData *next; /* next struct in chain, or NULL */
314 const void *data; /* start of rmgr data to include */
315 uint32 len; /* length of rmgr data to include */
317
319struct XLogRecordBuffer;
320
321/*
322 * Method table for resource managers.
323 *
324 * This struct must be kept in sync with the PG_RMGR definition in
325 * rmgr.c.
326 *
327 * rm_identify must return a name for the record based on xl_info (without
328 * reference to the rmid). For example, XLOG_BTREE_VACUUM would be named
329 * "VACUUM". rm_desc can then be called to obtain additional detail for the
330 * record, if available (e.g. the last block).
331 *
332 * rm_mask takes as input a page modified by the resource manager and masks
333 * out bits that shouldn't be flagged by wal_consistency_checking.
334 *
335 * RmgrTable[] is indexed by RmgrId values (see rmgrlist.h). If rm_name is
336 * NULL, the corresponding RmgrTable entry is considered invalid.
337 */
338typedef struct RmgrData
339{
340 const char *rm_name;
341 void (*rm_redo) (XLogReaderState *record);
343 const char *(*rm_identify) (uint8 info);
344 void (*rm_startup) (void);
345 void (*rm_cleanup) (void);
346 void (*rm_mask) (char *pagedata, BlockNumber blkno);
347 void (*rm_decode) (struct LogicalDecodingContext *ctx,
348 struct XLogRecordBuffer *buf);
349} RmgrData;
350
352extern void RmgrStartup(void);
353extern void RmgrCleanup(void);
354extern void RmgrNotFound(RmgrId rmid);
355extern void RegisterCustomRmgr(RmgrId rmid, const RmgrData *rmgr);
356
357#ifndef FRONTEND
358static inline bool
360{
361 return RmgrTable[rmid].rm_name != NULL;
362}
363
364static inline RmgrData
365GetRmgr(RmgrId rmid)
366{
367 if (unlikely(!RmgrIdExists(rmid)))
368 RmgrNotFound(rmid);
369 return RmgrTable[rmid];
370}
371#endif
372
373/*
374 * Exported to support xlog switching from checkpointer
375 */
378
380
383 uint32 *fpi_len);
384
385/*
386 * Exported for the functions in timeline.c and xlogarchive.c. Only valid
387 * in the startup process.
388 */
391extern PGDLLIMPORT bool StandbyMode;
393
394#endif /* XLOG_INTERNAL_H */
uint32 BlockNumber
Definition block.h:31
#define PGDLLIMPORT
Definition c.h:1328
uint8_t uint8
Definition c.h:544
uint64_t uint64
Definition c.h:547
#define unlikely(x)
Definition c.h:412
uint32_t uint32
Definition c.h:546
int64 TimestampTz
Definition timestamp.h:39
#define MAXPGPATH
static char buf[DEFAULT_XLOG_SEG_SIZE]
int64 pg_time_t
Definition pgtime.h:23
#define snprintf
Definition port.h:260
static int fb(int x)
uint8 RmgrId
Definition rmgr.h:11
void(* rm_mask)(char *pagedata, BlockNumber blkno)
void(* rm_redo)(XLogReaderState *record)
void(* rm_cleanup)(void)
void(* rm_decode)(struct LogicalDecodingContext *ctx, struct XLogRecordBuffer *buf)
const char * rm_name
void(* rm_startup)(void)
void(* rm_desc)(StringInfo buf, XLogReaderState *record)
const void * data
struct XLogRecData * next
XLogReaderState * record
Definition decode.h:21
TimeLineID PrevTimeLineID
TimeLineID ThisTimeLineID
char rp_name[MAXFNAMELEN]
TimestampTz rp_time
static RmgrData GetRmgr(RmgrId rmid)
XLogRecPtr RequestXLogSwitch(bool mark_unimportant)
Definition xlog.c:8195
PGDLLIMPORT bool ArchiveRecoveryRequested
#define XLogSegmentOffset(xlogptr, wal_segsz_bytes)
static bool IsXLogFileName(const char *fname)
void RmgrStartup(void)
Definition rmgr.c:58
static void XLogFromFileName(const char *fname, TimeLineID *tli, XLogSegNo *logSegNo, int wal_segsz_bytes)
void XLogRecGetBlockRefInfo(XLogReaderState *record, bool pretty, bool detailed_format, StringInfo buf, uint32 *fpi_len)
Definition xlogdesc.c:242
static bool IsTLHistoryFileName(const char *fname)
#define MAXFNAMELEN
pg_time_t GetLastSegSwitchData(XLogRecPtr *lastSwitchLSN)
Definition xlog.c:6711
#define XLOGDIR
void RmgrCleanup(void)
Definition rmgr.c:74
#define XLOG_FNAME_LEN
static bool IsBackupHistoryFileName(const char *fname)
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)
void RmgrNotFound(RmgrId rmid)
Definition rmgr.c:91
static void XLogFilePath(char *path, TimeLineID tli, XLogSegNo logSegNo, int wal_segsz_bytes)
PGDLLIMPORT bool StandbyMode
PGDLLIMPORT bool InArchiveRecovery
static void XLogFileNameById(char *fname, TimeLineID tli, uint32 log, uint32 seg)
void GetOldestRestartPoint(XLogRecPtr *oldrecptr, TimeLineID *oldtli)
Definition xlog.c:9626
static void TLHistoryFilePath(char *path, TimeLineID tli)
static void BackupHistoryFilePath(char *path, TimeLineID tli, XLogSegNo logSegNo, XLogRecPtr startpoint, int wal_segsz_bytes)
PGDLLIMPORT RmgrData RmgrTable[]
Definition rmgr.c:50
static bool RmgrIdExists(RmgrId rmid)
static void TLHistoryFileName(char *fname, TimeLineID tli)
#define XLogSegmentsPerXLogId(wal_segsz_bytes)
void RegisterCustomRmgr(RmgrId rmid, const RmgrData *rmgr)
Definition rmgr.c:107
PGDLLIMPORT char * recoveryRestoreCommand
static bool IsPartialXLogFileName(const char *fname)
uint64 XLogRecPtr
Definition xlogdefs.h:21
uint32 TimeLineID
Definition xlogdefs.h:63
uint64 XLogSegNo
Definition xlogdefs.h:52

◆ 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   0xD11B /* 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.

#define SizeOfXLogShortPHD

◆ 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

◆ xl_end_of_recovery

◆ xl_overwrite_contrecord

◆ xl_parameter_change

◆ xl_restore_point

◆ XLogLongPageHeader

◆ XLogLongPageHeaderData

◆ XLogPageHeader

◆ XLogPageHeaderData

◆ XLogRecData

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,
249 (uint32) (XLogSegmentOffset(startpoint, wal_segsz_bytes)));
250}

References fb(), 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,
266 (uint32) (XLogSegmentOffset((startpoint), wal_segsz_bytes)));
267}

References fb(), MAXPGPATH, snprintf, XLOGDIR, XLogSegmentOffset, and XLogSegmentsPerXLogId.

Referenced by do_pg_backup_stop().

◆ GetLastSegSwitchData()

pg_time_t GetLastSegSwitchData ( XLogRecPtr lastSwitchLSN)
extern

Definition at line 6711 of file xlog.c.

6712{
6713 pg_time_t result;
6714
6715 /* Need WALWriteLock, but shared lock is sufficient */
6717 result = XLogCtl->lastSegSwitchTime;
6720
6721 return result;
6722}
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition lwlock.c:1176
void LWLockRelease(LWLock *lock)
Definition lwlock.c:1793
@ LW_SHARED
Definition lwlock.h:113
pg_time_t lastSegSwitchTime
Definition xlog.c:469
XLogRecPtr lastSegSwitchLSN
Definition xlog.c:470
static XLogCtlData * XLogCtl
Definition xlog.c:568

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

Referenced by CheckArchiveTimeout().

◆ GetOldestRestartPoint()

void GetOldestRestartPoint ( XLogRecPtr oldrecptr,
TimeLineID oldtli 
)
extern

◆ GetRmgr()

◆ 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}

References fb(), and 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 fb(), and 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}

References fb().

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

◆ IsXLogFileName()

◆ RegisterCustomRmgr()

void RegisterCustomRmgr ( RmgrId  rmid,
const RmgrData rmgr 
)
extern

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
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)
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 */
131 {
133 continue;
134
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:1216
int errhint(const char *fmt,...)
Definition elog.c:1330
int errmsg(const char *fmt,...)
Definition elog.c:1080
#define LOG
Definition elog.h:31
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
bool process_shared_preload_libraries_in_progress
Definition miscinit.c:1786
int pg_strcasecmp(const char *s1, const char *s2)
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

References ereport, errdetail(), errhint(), errmsg(), ERROR, fb(), 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)
extern

Definition at line 8195 of file xlog.c.

8196{
8198
8199 /* XLOG SWITCH has no data */
8201
8202 if (mark_unimportant)
8205
8206 return RecPtr;
8207}
#define XLOG_SWITCH
Definition pg_control.h:73
#define XLOG_MARK_UNIMPORTANT
Definition xlog.h:166
XLogRecPtr XLogInsert(RmgrId rmid, uint8 info)
Definition xloginsert.c:478
void XLogSetRecordFlags(uint8 flags)
Definition xloginsert.c:460
void XLogBeginInsert(void)
Definition xloginsert.c:152

References fb(), 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  )
extern

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}

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

Referenced by PerformWalRecovery().

◆ RmgrIdExists()

static bool RmgrIdExists ( RmgrId  rmid)
inlinestatic

◆ RmgrNotFound()

void RmgrNotFound ( RmgrId  rmid)
extern

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  )
extern

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}

References fb(), 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

◆ 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 fb(), MAXFNAMELEN, and snprintf.

Referenced by SetWALFileNameForCleanup().

◆ XLogFilePath()

◆ XLogFromFileName()

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

◆ XLogRecGetBlockRefInfo()

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

Definition at line 242 of file xlogdesc.c.

245{
246 int block_id;
247
248 Assert(record != NULL);
249
250 if (detailed_format && pretty)
252
253 for (block_id = 0; block_id <= XLogRecMaxBlockId(record); block_id++)
254 {
255 RelFileLocator rlocator;
256 ForkNumber forknum;
258
260 &rlocator, &forknum, &blk, NULL))
261 continue;
262
263 if (detailed_format)
264 {
265 /* Get block references in detailed format. */
266
267 if (pretty)
269 else if (block_id > 0)
271
273 "blkref #%d: rel %u/%u/%u fork %s blk %u",
274 block_id,
275 rlocator.spcOid, rlocator.dbOid, rlocator.relNumber,
276 forkNames[forknum],
277 blk);
278
279 if (XLogRecHasBlockImage(record, block_id))
280 {
281 uint8 bimg_info = XLogRecGetBlock(record, block_id)->bimg_info;
282
283 /* Calculate the amount of FPI data in the record. */
284 if (fpi_len)
285 *fpi_len += XLogRecGetBlock(record, block_id)->bimg_len;
286
287 if (BKPIMAGE_COMPRESSED(bimg_info))
288 {
289 const char *method;
290
291 if ((bimg_info & BKPIMAGE_COMPRESS_PGLZ) != 0)
292 method = "pglz";
293 else if ((bimg_info & BKPIMAGE_COMPRESS_LZ4) != 0)
294 method = "lz4";
295 else if ((bimg_info & BKPIMAGE_COMPRESS_ZSTD) != 0)
296 method = "zstd";
297 else
298 method = "unknown";
299
301 " (FPW%s); hole: offset: %u, length: %u, "
302 "compression saved: %u, method: %s",
304 "" : " for WAL verification",
305 XLogRecGetBlock(record, block_id)->hole_offset,
306 XLogRecGetBlock(record, block_id)->hole_length,
307 BLCKSZ -
308 XLogRecGetBlock(record, block_id)->hole_length -
309 XLogRecGetBlock(record, block_id)->bimg_len,
310 method);
311 }
312 else
313 {
315 " (FPW%s); hole: offset: %u, length: %u",
317 "" : " for WAL verification",
318 XLogRecGetBlock(record, block_id)->hole_offset,
319 XLogRecGetBlock(record, block_id)->hole_length);
320 }
321 }
322
323 if (pretty)
325 }
326 else
327 {
328 /* Get block references in short format. */
329
330 if (forknum != MAIN_FORKNUM)
331 {
333 ", blkref #%d: rel %u/%u/%u fork %s blk %u",
334 block_id,
335 rlocator.spcOid, rlocator.dbOid, rlocator.relNumber,
336 forkNames[forknum],
337 blk);
338 }
339 else
340 {
342 ", blkref #%d: rel %u/%u/%u blk %u",
343 block_id,
344 rlocator.spcOid, rlocator.dbOid, rlocator.relNumber,
345 blk);
346 }
347
348 if (XLogRecHasBlockImage(record, block_id))
349 {
350 /* Calculate the amount of FPI data in the record. */
351 if (fpi_len)
352 *fpi_len += XLogRecGetBlock(record, block_id)->bimg_len;
353
354 if (XLogRecBlockImageApply(record, block_id))
356 else
357 appendStringInfoString(buf, " FPW for WAL verification");
358 }
359 }
360 }
361
362 if (!detailed_format && pretty)
364}
#define Assert(condition)
Definition c.h:873
const char *const forkNames[]
Definition relpath.c:33
ForkNumber
Definition relpath.h:56
@ MAIN_FORKNUM
Definition relpath.h:58
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition stringinfo.c:145
void appendStringInfoString(StringInfo str, const char *s)
Definition stringinfo.c:230
void appendStringInfoChar(StringInfo str, char ch)
Definition stringinfo.c:242
RelFileNumber relNumber
bool XLogRecGetBlockTagExtended(XLogReaderState *record, uint8 block_id, RelFileLocator *rlocator, ForkNumber *forknum, BlockNumber *blknum, Buffer *prefetch_buffer)
#define XLogRecBlockImageApply(decoder, block_id)
Definition xlogreader.h:424
#define XLogRecGetBlock(decoder, i)
Definition xlogreader.h:418
#define XLogRecMaxBlockId(decoder)
Definition xlogreader.h:417
#define XLogRecHasBlockImage(decoder, block_id)
Definition xlogreader.h:422
#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, fb(), 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 84 of file xlogrecovery.c.

◆ RmgrTable

PGDLLIMPORT RmgrData RmgrTable[]
extern

Definition at line 50 of file rmgr.c.

50 {
51#include "access/rmgrlist.h"
52};

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

◆ StandbyMode

PGDLLIMPORT bool StandbyMode
extern

Definition at line 149 of file xlogrecovery.c.