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   0xD11C /* 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_FIRST_IS_OVERWRITE_CONTRECORD   0x0004
 
#define XLP_ALL_FLAGS   0x0007
 
#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 90 of file xlog_internal.h.

◆ DEFAULT_MIN_WAL_SEGS

#define DEFAULT_MIN_WAL_SEGS   5

Definition at line 89 of file xlog_internal.h.

◆ IsPowerOf2

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

Definition at line 93 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 94 of file xlog_internal.h.

164{
165 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X", tli,
168}
169
170static inline void
171XLogFileNameById(char *fname, TimeLineID tli, uint32 log, uint32 seg)
172{
173 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X", tli, log, seg);
174}
175
176static inline bool
177IsXLogFileName(const char *fname)
178{
179 return (strlen(fname) == XLOG_FNAME_LEN && \
180 strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN);
181}
182
183/*
184 * XLOG segment with .partial suffix. Used by pg_receivewal and at end of
185 * archive recovery, when we want to archive a WAL segment but it might not
186 * be complete yet.
187 */
188static inline bool
189IsPartialXLogFileName(const char *fname)
190{
191 return (strlen(fname) == XLOG_FNAME_LEN + strlen(".partial") &&
192 strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN &&
193 strcmp(fname + XLOG_FNAME_LEN, ".partial") == 0);
194}
195
196static inline void
197XLogFromFileName(const char *fname, TimeLineID *tli, XLogSegNo *logSegNo, int wal_segsz_bytes)
198{
199 uint32 log;
200 uint32 seg;
201
202 sscanf(fname, "%08X%08X%08X", tli, &log, &seg);
204}
205
206static inline void
208{
209 snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X", tli,
212}
213
214static inline void
215TLHistoryFileName(char *fname, TimeLineID tli)
216{
217 snprintf(fname, MAXFNAMELEN, "%08X.history", tli);
218}
219
220static inline bool
221IsTLHistoryFileName(const char *fname)
222{
223 return (strlen(fname) == 8 + strlen(".history") &&
224 strspn(fname, "0123456789ABCDEF") == 8 &&
225 strcmp(fname + 8, ".history") == 0);
226}
227
228static inline void
229TLHistoryFilePath(char *path, TimeLineID tli)
230{
231 snprintf(path, MAXPGPATH, XLOGDIR "/%08X.history", tli);
232}
233
234static inline void
235StatusFilePath(char *path, const char *xlog, const char *suffix)
236{
237 snprintf(path, MAXPGPATH, XLOGDIR "/archive_status/%s%s", xlog, suffix);
238}
239
240static inline void
242{
243 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X.%08X.backup", tli,
246 (uint32) (XLogSegmentOffset(startpoint, wal_segsz_bytes)));
247}
248
249static inline bool
250IsBackupHistoryFileName(const char *fname)
251{
252 return (strlen(fname) > XLOG_FNAME_LEN &&
253 strspn(fname, "0123456789ABCDEF") == XLOG_FNAME_LEN &&
254 strcmp(fname + strlen(fname) - strlen(".backup"), ".backup") == 0);
255}
256
257static inline void
259{
260 snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X.%08X.backup", tli,
263 (uint32) (XLogSegmentOffset((startpoint), wal_segsz_bytes)));
264}
265
266/*
267 * Information logged when we detect a change in one of the parameters
268 * important for Hot Standby.
269 */
270typedef struct xl_parameter_change
271{
272 int MaxConnections;
274 int max_wal_senders;
277 int wal_level;
278 bool wal_log_hints;
281
282/* logs restore point */
283typedef struct xl_restore_point
284{
286 char rp_name[MAXFNAMELEN];
288
289/* Overwrite of prior contrecord */
290typedef struct xl_overwrite_contrecord
291{
295
296/* End of recovery mark, when we don't do an END_OF_RECOVERY checkpoint */
297typedef struct xl_end_of_recovery
298{
300 TimeLineID ThisTimeLineID; /* new TLI */
301 TimeLineID PrevTimeLineID; /* previous TLI we forked off from */
302 int wal_level;
304
305/*
306 * The functions in xloginsert.c construct a chain of XLogRecData structs
307 * to represent the final WAL record.
308 */
309typedef struct XLogRecData
310{
311 struct XLogRecData *next; /* next struct in chain, or NULL */
312 const void *data; /* start of rmgr data to include */
313 uint32 len; /* length of rmgr data to include */
315
317struct XLogRecordBuffer;
318
319/*
320 * Method table for resource managers.
321 *
322 * This struct must be kept in sync with the PG_RMGR definition in
323 * rmgr.c.
324 *
325 * rm_identify must return a name for the record based on xl_info (without
326 * reference to the rmid). For example, XLOG_BTREE_VACUUM would be named
327 * "VACUUM". rm_desc can then be called to obtain additional detail for the
328 * record, if available (e.g. the last block).
329 *
330 * rm_mask takes as input a page modified by the resource manager and masks
331 * out bits that shouldn't be flagged by wal_consistency_checking.
332 *
333 * RmgrTable[] is indexed by RmgrId values (see rmgrlist.h). If rm_name is
334 * NULL, the corresponding RmgrTable entry is considered invalid.
335 */
336typedef struct RmgrData
337{
338 const char *rm_name;
339 void (*rm_redo) (XLogReaderState *record);
341 const char *(*rm_identify) (uint8 info);
342 void (*rm_startup) (void);
343 void (*rm_cleanup) (void);
344 void (*rm_mask) (char *pagedata, BlockNumber blkno);
345 void (*rm_decode) (struct LogicalDecodingContext *ctx,
346 struct XLogRecordBuffer *buf);
347} RmgrData;
348
350extern void RmgrStartup(void);
351extern void RmgrCleanup(void);
352extern void RmgrNotFound(RmgrId rmid);
353extern void RegisterCustomRmgr(RmgrId rmid, const RmgrData *rmgr);
354
355#ifndef FRONTEND
356static inline bool
358{
359 return RmgrTable[rmid].rm_name != NULL;
360}
361
362static inline RmgrData
363GetRmgr(RmgrId rmid)
364{
365 if (unlikely(!RmgrIdExists(rmid)))
366 RmgrNotFound(rmid);
367 return RmgrTable[rmid];
368}
369#endif
370
371/*
372 * Exported to support xlog switching from checkpointer
373 */
376
378
381 uint32 *fpi_len);
382
383/*
384 * Exported for the functions in timeline.c and xlogarchive.c. Only valid
385 * in the startup process.
386 */
389extern PGDLLIMPORT bool StandbyMode;
391
392#endif /* XLOG_INTERNAL_H */
uint32 BlockNumber
Definition block.h:31
#define PGDLLIMPORT
Definition c.h:1393
uint8_t uint8
Definition c.h:586
uint64_t uint64
Definition c.h:589
#define unlikely(x)
Definition c.h:432
uint32_t uint32
Definition c.h:588
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:8189
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:6695
#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:9614
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 154 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 87 of file xlog_internal.h.

◆ WalSegMinSize

#define WalSegMinSize   1024 * 1024

Definition at line 86 of file xlog_internal.h.

◆ XLByteInPrevSeg

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

Definition at line 137 of file xlog_internal.h.

◆ XLByteInSeg

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

Definition at line 134 of file xlog_internal.h.

◆ XLByteToPrevSeg

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

Definition at line 118 of file xlog_internal.h.

◆ XLByteToSeg

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

Definition at line 115 of file xlog_internal.h.

◆ XLOG_CONTROL_FILE

#define XLOG_CONTROL_FILE   "global/pg_control"

Definition at line 148 of file xlog_internal.h.

◆ XLOG_FNAME_LEN

#define XLOG_FNAME_LEN   24

Definition at line 157 of file xlog_internal.h.

◆ XLOG_PAGE_MAGIC

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

Definition at line 34 of file xlog_internal.h.

◆ XLOGDIR

#define XLOGDIR   "pg_wal"

Definition at line 147 of file xlog_internal.h.

◆ XLogMBVarToSegs

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

Definition at line 125 of file xlog_internal.h.

◆ XLogPageHeaderSize

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

Definition at line 82 of file xlog_internal.h.

#define SizeOfXLogShortPHD

◆ XLogSegmentOffset

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

Definition at line 104 of file xlog_internal.h.

◆ XLogSegmentsPerXLogId

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

Definition at line 98 of file xlog_internal.h.

◆ XLogSegNoOffsetToRecPtr

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

Definition at line 101 of file xlog_internal.h.

◆ XLP_ALL_FLAGS

#define XLP_ALL_FLAGS   0x0007

Definition at line 80 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   0x0004

Definition at line 78 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 141 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 242 of file xlog_internal.h.

243{
244 snprintf(fname, MAXFNAMELEN, "%08X%08X%08X.%08X.backup", tli,
247 (uint32) (XLogSegmentOffset(startpoint, wal_segsz_bytes)));
248}

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 259 of file xlog_internal.h.

260{
261 snprintf(path, MAXPGPATH, XLOGDIR "/%08X%08X%08X.%08X.backup", tli,
264 (uint32) (XLogSegmentOffset((startpoint), wal_segsz_bytes)));
265}

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 6695 of file xlog.c.

6696{
6697 pg_time_t result;
6698
6699 /* Need WALWriteLock, but shared lock is sufficient */
6701 result = XLogCtl->lastSegSwitchTime;
6704
6705 return result;
6706}
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition lwlock.c:1177
void LWLockRelease(LWLock *lock)
Definition lwlock.c:1794
@ LW_SHARED
Definition lwlock.h:113
pg_time_t lastSegSwitchTime
Definition xlog.c:470
XLogRecPtr lastSegSwitchLSN
Definition xlog.c:471
static XLogCtlData * XLogCtl
Definition xlog.c:569

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 251 of file xlog_internal.h.

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

References fb(), and XLOG_FNAME_LEN.

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

◆ IsPartialXLogFileName()

static bool IsPartialXLogFileName ( const char fname)
inlinestatic

Definition at line 190 of file xlog_internal.h.

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

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 222 of file xlog_internal.h.

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

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}
#define LOG
Definition elog.h:31
int errhint(const char *fmt,...) pg_attribute_printf(1
int errdetail(const char *fmt,...) pg_attribute_printf(1
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
bool process_shared_preload_libraries_in_progress
Definition miscinit.c:1787
static char * errmsg
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 8189 of file xlog.c.

8190{
8192
8193 /* XLOG SWITCH has no data */
8195
8196 if (mark_unimportant)
8199
8200 return RecPtr;
8201}
#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 172 of file xlog_internal.h.

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

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:915
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 85 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 150 of file xlogrecovery.c.