LCOV - differential code coverage report
Current view: top level - contrib/pg_walinspect - pg_walinspect.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 90.0 % 329 296 33 296
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 23 23 23
Baseline: 16@8cea358b128 Branches: 62.0 % 166 103 63 103
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 90.0 % 329 296 33 296
Function coverage date bins:
(240..) days: 100.0 % 23 23 23
Branch coverage date bins:
(240..) days: 62.0 % 166 103 63 103

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pg_walinspect.c
                                  4                 :                :  *        Functions to inspect contents of PostgreSQL Write-Ahead Log
                                  5                 :                :  *
                                  6                 :                :  * Copyright (c) 2022-2024, PostgreSQL Global Development Group
                                  7                 :                :  *
                                  8                 :                :  * IDENTIFICATION
                                  9                 :                :  *        contrib/pg_walinspect/pg_walinspect.c
                                 10                 :                :  *
                                 11                 :                :  *-------------------------------------------------------------------------
                                 12                 :                :  */
                                 13                 :                : #include "postgres.h"
                                 14                 :                : 
                                 15                 :                : #include "access/xlog.h"
                                 16                 :                : #include "access/xlog_internal.h"
                                 17                 :                : #include "access/xlogreader.h"
                                 18                 :                : #include "access/xlogrecovery.h"
                                 19                 :                : #include "access/xlogstats.h"
                                 20                 :                : #include "access/xlogutils.h"
                                 21                 :                : #include "funcapi.h"
                                 22                 :                : #include "miscadmin.h"
                                 23                 :                : #include "utils/array.h"
                                 24                 :                : #include "utils/builtins.h"
                                 25                 :                : #include "utils/pg_lsn.h"
                                 26                 :                : 
                                 27                 :                : /*
                                 28                 :                :  * NOTE: For any code change or issue fix here, it is highly recommended to
                                 29                 :                :  * give a thought about doing the same in pg_waldump tool as well.
                                 30                 :                :  */
                                 31                 :                : 
  737 jdavis@postgresql.or       32                 :CBC           8 : PG_MODULE_MAGIC;
                                 33                 :                : 
  401 michael@paquier.xyz        34                 :              6 : PG_FUNCTION_INFO_V1(pg_get_wal_block_info);
  737 jdavis@postgresql.or       35                 :              6 : PG_FUNCTION_INFO_V1(pg_get_wal_record_info);
                                 36                 :              9 : PG_FUNCTION_INFO_V1(pg_get_wal_records_info);
                                 37                 :              6 : PG_FUNCTION_INFO_V1(pg_get_wal_records_info_till_end_of_wal);
                                 38                 :              6 : PG_FUNCTION_INFO_V1(pg_get_wal_stats);
                                 39                 :              6 : PG_FUNCTION_INFO_V1(pg_get_wal_stats_till_end_of_wal);
                                 40                 :                : 
                                 41                 :                : static void ValidateInputLSNs(XLogRecPtr start_lsn, XLogRecPtr *end_lsn);
                                 42                 :                : static XLogRecPtr GetCurrentLSN(void);
                                 43                 :                : static XLogReaderState *InitXLogReaderState(XLogRecPtr lsn);
                                 44                 :                : static XLogRecord *ReadNextXLogRecord(XLogReaderState *xlogreader);
                                 45                 :                : static void GetWALRecordInfo(XLogReaderState *record, Datum *values,
                                 46                 :                :                              bool *nulls, uint32 ncols);
                                 47                 :                : static void GetWALRecordsInfo(FunctionCallInfo fcinfo,
                                 48                 :                :                               XLogRecPtr start_lsn,
                                 49                 :                :                               XLogRecPtr end_lsn);
                                 50                 :                : static void GetXLogSummaryStats(XLogStats *stats, ReturnSetInfo *rsinfo,
                                 51                 :                :                                 Datum *values, bool *nulls, uint32 ncols,
                                 52                 :                :                                 bool stats_per_record);
                                 53                 :                : static void FillXLogStatsRow(const char *name, uint64 n, uint64 total_count,
                                 54                 :                :                              uint64 rec_len, uint64 total_rec_len,
                                 55                 :                :                              uint64 fpi_len, uint64 total_fpi_len,
                                 56                 :                :                              uint64 tot_len, uint64 total_len,
                                 57                 :                :                              Datum *values, bool *nulls, uint32 ncols);
                                 58                 :                : static void GetWalStats(FunctionCallInfo fcinfo,
                                 59                 :                :                         XLogRecPtr start_lsn,
                                 60                 :                :                         XLogRecPtr end_lsn,
                                 61                 :                :                         bool stats_per_record);
                                 62                 :                : static void GetWALBlockInfo(FunctionCallInfo fcinfo, XLogReaderState *record,
                                 63                 :                :                             bool show_data);
                                 64                 :                : 
                                 65                 :                : /*
                                 66                 :                :  * Return the LSN up to which the server has WAL.
                                 67                 :                :  */
                                 68                 :                : static XLogRecPtr
  397 michael@paquier.xyz        69                 :             30 : GetCurrentLSN(void)
                                 70                 :                : {
                                 71                 :                :     XLogRecPtr  curr_lsn;
                                 72                 :                : 
                                 73                 :                :     /*
                                 74                 :                :      * We determine the current LSN of the server similar to how page_read
                                 75                 :                :      * callback read_local_xlog_page_no_wait does.
                                 76                 :                :      */
  737 jdavis@postgresql.or       77         [ +  - ]:             30 :     if (!RecoveryInProgress())
  397 michael@paquier.xyz        78                 :             30 :         curr_lsn = GetFlushRecPtr(NULL);
                                 79                 :                :     else
  397 michael@paquier.xyz        80                 :UBC           0 :         curr_lsn = GetXLogReplayRecPtr(NULL);
                                 81                 :                : 
  397 michael@paquier.xyz        82         [ -  + ]:CBC          30 :     Assert(!XLogRecPtrIsInvalid(curr_lsn));
                                 83                 :                : 
                                 84                 :             30 :     return curr_lsn;
                                 85                 :                : }
                                 86                 :                : 
                                 87                 :                : /*
                                 88                 :                :  * Initialize WAL reader and identify first valid LSN.
                                 89                 :                :  */
                                 90                 :                : static XLogReaderState *
  605 jdavis@postgresql.or       91                 :             21 : InitXLogReaderState(XLogRecPtr lsn)
                                 92                 :                : {
                                 93                 :                :     XLogReaderState *xlogreader;
                                 94                 :                :     ReadLocalXLogPageNoWaitPrivate *private_data;
                                 95                 :                :     XLogRecPtr  first_valid_record;
                                 96                 :                : 
                                 97                 :                :     /*
                                 98                 :                :      * Reading WAL below the first page of the first segments isn't allowed.
                                 99                 :                :      * This is a bootstrap WAL page and the page_read callback fails to read
                                100                 :                :      * it.
                                101                 :                :      */
  737                           102         [ +  + ]:             21 :     if (lsn < XLOG_BLCKSZ)
                                103         [ +  - ]:              4 :         ereport(ERROR,
                                104                 :                :                 (errmsg("could not read WAL at LSN %X/%X",
                                105                 :                :                         LSN_FORMAT_ARGS(lsn))));
                                106                 :                : 
                                107                 :                :     private_data = (ReadLocalXLogPageNoWaitPrivate *)
  703 tgl@sss.pgh.pa.us         108                 :             17 :         palloc0(sizeof(ReadLocalXLogPageNoWaitPrivate));
                                109                 :                : 
  737 jdavis@postgresql.or      110                 :             17 :     xlogreader = XLogReaderAllocate(wal_segment_size, NULL,
                                111                 :             17 :                                     XL_ROUTINE(.page_read = &read_local_xlog_page_no_wait,
                                112                 :                :                                                .segment_open = &wal_segment_open,
                                113                 :                :                                                .segment_close = &wal_segment_close),
                                114                 :                :                                     private_data);
                                115                 :                : 
                                116         [ -  + ]:             17 :     if (xlogreader == NULL)
  737 jdavis@postgresql.or      117         [ #  # ]:UBC           0 :         ereport(ERROR,
                                118                 :                :                 (errcode(ERRCODE_OUT_OF_MEMORY),
                                119                 :                :                  errmsg("out of memory"),
                                120                 :                :                  errdetail("Failed while allocating a WAL reading processor.")));
                                121                 :                : 
                                122                 :                :     /* first find a valid recptr to start from */
  605 jdavis@postgresql.or      123                 :CBC          17 :     first_valid_record = XLogFindNextRecord(xlogreader, lsn);
                                124                 :                : 
                                125         [ -  + ]:             17 :     if (XLogRecPtrIsInvalid(first_valid_record))
  737 jdavis@postgresql.or      126         [ #  # ]:UBC           0 :         ereport(ERROR,
                                127                 :                :                 (errmsg("could not find a valid record after %X/%X",
                                128                 :                :                         LSN_FORMAT_ARGS(lsn))));
                                129                 :                : 
  737 jdavis@postgresql.or      130                 :CBC          17 :     return xlogreader;
                                131                 :                : }
                                132                 :                : 
                                133                 :                : /*
                                134                 :                :  * Read next WAL record.
                                135                 :                :  *
                                136                 :                :  * By design, to be less intrusive in a running system, no slot is allocated
                                137                 :                :  * to reserve the WAL we're about to read. Therefore this function can
                                138                 :                :  * encounter read errors for historical WAL.
                                139                 :                :  *
                                140                 :                :  * We guard against ordinary errors trying to read WAL that hasn't been
                                141                 :                :  * written yet by limiting end_lsn to the flushed WAL, but that can also
                                142                 :                :  * encounter errors if the flush pointer falls in the middle of a record. In
                                143                 :                :  * that case we'll return NULL.
                                144                 :                :  */
                                145                 :                : static XLogRecord *
  605                           146                 :          34396 : ReadNextXLogRecord(XLogReaderState *xlogreader)
                                147                 :                : {
                                148                 :                :     XLogRecord *record;
                                149                 :                :     char       *errormsg;
                                150                 :                : 
  737                           151                 :          34396 :     record = XLogReadRecord(xlogreader, &errormsg);
                                152                 :                : 
                                153         [ +  + ]:          34396 :     if (record == NULL)
                                154                 :                :     {
                                155                 :                :         ReadLocalXLogPageNoWaitPrivate *private_data;
                                156                 :                : 
                                157                 :                :         /* return NULL, if end of WAL is reached */
  715                           158                 :             10 :         private_data = (ReadLocalXLogPageNoWaitPrivate *)
                                159                 :                :             xlogreader->private_data;
                                160                 :                : 
                                161         [ +  - ]:             10 :         if (private_data->end_of_wal)
                                162                 :             10 :             return NULL;
                                163                 :                : 
  737 jdavis@postgresql.or      164         [ #  # ]:UBC           0 :         if (errormsg)
                                165         [ #  # ]:              0 :             ereport(ERROR,
                                166                 :                :                     (errcode_for_file_access(),
                                167                 :                :                      errmsg("could not read WAL at %X/%X: %s",
                                168                 :                :                             LSN_FORMAT_ARGS(xlogreader->EndRecPtr), errormsg)));
                                169                 :                :         else
                                170         [ #  # ]:              0 :             ereport(ERROR,
                                171                 :                :                     (errcode_for_file_access(),
                                172                 :                :                      errmsg("could not read WAL at %X/%X",
                                173                 :                :                             LSN_FORMAT_ARGS(xlogreader->EndRecPtr))));
                                174                 :                :     }
                                175                 :                : 
  737 jdavis@postgresql.or      176                 :CBC       34386 :     return record;
                                177                 :                : }
                                178                 :                : 
                                179                 :                : /*
                                180                 :                :  * Output values that make up a row describing caller's WAL record.
                                181                 :                :  *
                                182                 :                :  * This function leaks memory.  Caller may need to use its own custom memory
                                183                 :                :  * context.
                                184                 :                :  *
                                185                 :                :  * Keep this in sync with GetWALBlockInfo.
                                186                 :                :  */
                                187                 :                : static void
  605                           188                 :          34340 : GetWALRecordInfo(XLogReaderState *record, Datum *values,
                                189                 :                :                  bool *nulls, uint32 ncols)
                                190                 :                : {
                                191                 :                :     const char *record_type;
                                192                 :                :     RmgrData    desc;
  703 tgl@sss.pgh.pa.us         193                 :          34340 :     uint32      fpi_len = 0;
                                194                 :                :     StringInfoData rec_desc;
                                195                 :                :     StringInfoData rec_blk_ref;
                                196                 :          34340 :     int         i = 0;
                                197                 :                : 
  737 jdavis@postgresql.or      198                 :          34340 :     desc = GetRmgr(XLogRecGetRmid(record));
  381 pg@bowt.ie                199                 :          34340 :     record_type = desc.rm_identify(XLogRecGetInfo(record));
                                200                 :                : 
                                201         [ -  + ]:          34340 :     if (record_type == NULL)
  381 pg@bowt.ie                202                 :UBC           0 :         record_type = psprintf("UNKNOWN (%x)", XLogRecGetInfo(record) & ~XLR_INFO_MASK);
                                203                 :                : 
  737 jdavis@postgresql.or      204                 :CBC       34340 :     initStringInfo(&rec_desc);
                                205                 :          34340 :     desc.rm_desc(&rec_desc, record);
                                206                 :                : 
  383 pg@bowt.ie                207         [ +  + ]:          34340 :     if (XLogRecHasAnyBlockRefs(record))
                                208                 :                :     {
                                209                 :          34319 :         initStringInfo(&rec_blk_ref);
                                210                 :          34319 :         XLogRecGetBlockRefInfo(record, false, true, &rec_blk_ref, &fpi_len);
                                211                 :                :     }
                                212                 :                : 
  605 jdavis@postgresql.or      213                 :          34340 :     values[i++] = LSNGetDatum(record->ReadRecPtr);
  737                           214                 :          34340 :     values[i++] = LSNGetDatum(record->EndRecPtr);
                                215                 :          34340 :     values[i++] = LSNGetDatum(XLogRecGetPrev(record));
                                216                 :          34340 :     values[i++] = TransactionIdGetDatum(XLogRecGetXid(record));
                                217                 :          34340 :     values[i++] = CStringGetTextDatum(desc.rm_name);
  381 pg@bowt.ie                218                 :          34340 :     values[i++] = CStringGetTextDatum(record_type);
  737 jdavis@postgresql.or      219                 :          34340 :     values[i++] = UInt32GetDatum(XLogRecGetTotalLen(record));
  384 michael@paquier.xyz       220                 :          34340 :     values[i++] = UInt32GetDatum(XLogRecGetDataLen(record));
  737 jdavis@postgresql.or      221                 :          34340 :     values[i++] = UInt32GetDatum(fpi_len);
                                222                 :                : 
  384 michael@paquier.xyz       223         [ +  + ]:          34340 :     if (rec_desc.len > 0)
                                224                 :          34328 :         values[i++] = CStringGetTextDatum(rec_desc.data);
                                225                 :                :     else
                                226                 :             12 :         nulls[i++] = true;
                                227                 :                : 
                                228         [ +  + ]:          34340 :     if (XLogRecHasAnyBlockRefs(record))
                                229                 :          34319 :         values[i++] = CStringGetTextDatum(rec_blk_ref.data);
                                230                 :                :     else
                                231                 :             21 :         nulls[i++] = true;
                                232                 :                : 
  737 jdavis@postgresql.or      233         [ -  + ]:          34340 :     Assert(i == ncols);
                                234                 :          34340 : }
                                235                 :                : 
                                236                 :                : 
                                237                 :                : /*
                                238                 :                :  * Output one or more rows in rsinfo tuple store, each describing a single
                                239                 :                :  * block reference from caller's WAL record. (Should only be called with
                                240                 :                :  * records that have block references.)
                                241                 :                :  *
                                242                 :                :  * This function leaks memory.  Caller may need to use its own custom memory
                                243                 :                :  * context.
                                244                 :                :  *
                                245                 :                :  * Keep this in sync with GetWALRecordInfo.
                                246                 :                :  */
                                247                 :                : static void
  380 pg@bowt.ie                248                 :             17 : GetWALBlockInfo(FunctionCallInfo fcinfo, XLogReaderState *record,
                                249                 :                :                 bool show_data)
                                250                 :                : {
                                251                 :                : #define PG_GET_WAL_BLOCK_INFO_COLS 20
                                252                 :                :     int         block_id;
  447 michael@paquier.xyz       253                 :             17 :     ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
                                254                 :                :     RmgrData    desc;
                                255                 :                :     const char *record_type;
                                256                 :                :     StringInfoData rec_desc;
                                257                 :                : 
  381 pg@bowt.ie                258         [ -  + ]:             17 :     Assert(XLogRecHasAnyBlockRefs(record));
                                259                 :                : 
                                260                 :             17 :     desc = GetRmgr(XLogRecGetRmid(record));
                                261                 :             17 :     record_type = desc.rm_identify(XLogRecGetInfo(record));
                                262                 :                : 
                                263         [ -  + ]:             17 :     if (record_type == NULL)
  381 pg@bowt.ie                264                 :UBC           0 :         record_type = psprintf("UNKNOWN (%x)",
                                265                 :              0 :                                XLogRecGetInfo(record) & ~XLR_INFO_MASK);
                                266                 :                : 
  381 pg@bowt.ie                267                 :CBC          17 :     initStringInfo(&rec_desc);
                                268                 :             17 :     desc.rm_desc(&rec_desc, record);
                                269                 :                : 
  447 michael@paquier.xyz       270         [ +  + ]:             34 :     for (block_id = 0; block_id <= XLogRecMaxBlockId(record); block_id++)
                                271                 :                :     {
                                272                 :                :         DecodedBkpBlock *blk;
                                273                 :                :         BlockNumber blkno;
                                274                 :                :         RelFileLocator rnode;
                                275                 :                :         ForkNumber  forknum;
  401                           276                 :             17 :         Datum       values[PG_GET_WAL_BLOCK_INFO_COLS] = {0};
                                277                 :             17 :         bool        nulls[PG_GET_WAL_BLOCK_INFO_COLS] = {0};
  381 pg@bowt.ie                278                 :             17 :         uint32      block_data_len = 0,
                                279                 :             17 :                     block_fpi_len = 0;
                                280                 :             17 :         ArrayType  *block_fpi_info = NULL;
  447 michael@paquier.xyz       281                 :             17 :         int         i = 0;
                                282                 :                : 
                                283   [ +  -  -  + ]:             17 :         if (!XLogRecHasBlockRef(record, block_id))
  447 michael@paquier.xyz       284                 :UBC           0 :             continue;
                                285                 :                : 
  401 michael@paquier.xyz       286                 :CBC          17 :         blk = XLogRecGetBlock(record, block_id);
                                287                 :                : 
  447                           288                 :             17 :         (void) XLogRecGetBlockTagExtended(record, block_id,
                                289                 :                :                                           &rnode, &forknum, &blkno, NULL);
                                290                 :                : 
                                291                 :                :         /* Save block_data_len */
  381 pg@bowt.ie                292         [ +  + ]:             17 :         if (blk->has_data)
                                293                 :             16 :             block_data_len = blk->data_len;
                                294                 :                : 
                                295         [ +  + ]:             17 :         if (blk->has_image)
                                296                 :                :         {
                                297                 :                :             /* Block reference has an FPI, so prepare relevant output */
                                298                 :                :             int         bitcnt;
                                299                 :              1 :             int         cnt = 0;
                                300                 :                :             Datum      *flags;
                                301                 :                : 
                                302                 :                :             /* Save block_fpi_len */
                                303                 :              1 :             block_fpi_len = blk->bimg_len;
                                304                 :                : 
                                305                 :                :             /* Construct and save block_fpi_info */
                                306                 :              1 :             bitcnt = pg_popcount((const char *) &blk->bimg_info,
                                307                 :                :                                  sizeof(uint8));
                                308                 :              1 :             flags = (Datum *) palloc0(sizeof(Datum) * bitcnt);
                                309         [ +  - ]:              1 :             if ((blk->bimg_info & BKPIMAGE_HAS_HOLE) != 0)
                                310                 :              1 :                 flags[cnt++] = CStringGetTextDatum("HAS_HOLE");
                                311         [ +  - ]:              1 :             if (blk->apply_image)
                                312                 :              1 :                 flags[cnt++] = CStringGetTextDatum("APPLY");
                                313         [ -  + ]:              1 :             if ((blk->bimg_info & BKPIMAGE_COMPRESS_PGLZ) != 0)
  381 pg@bowt.ie                314                 :UBC           0 :                 flags[cnt++] = CStringGetTextDatum("COMPRESS_PGLZ");
  381 pg@bowt.ie                315         [ -  + ]:CBC           1 :             if ((blk->bimg_info & BKPIMAGE_COMPRESS_LZ4) != 0)
  381 pg@bowt.ie                316                 :UBC           0 :                 flags[cnt++] = CStringGetTextDatum("COMPRESS_LZ4");
  381 pg@bowt.ie                317         [ -  + ]:CBC           1 :             if ((blk->bimg_info & BKPIMAGE_COMPRESS_ZSTD) != 0)
  381 pg@bowt.ie                318                 :UBC           0 :                 flags[cnt++] = CStringGetTextDatum("COMPRESS_ZSTD");
                                319                 :                : 
  381 pg@bowt.ie                320         [ -  + ]:CBC           1 :             Assert(cnt <= bitcnt);
                                321                 :              1 :             block_fpi_info = construct_array_builtin(flags, cnt, TEXTOID);
                                322                 :                :         }
                                323                 :                : 
                                324                 :                :         /* start_lsn, end_lsn, prev_lsn, and blockid outputs */
  447 michael@paquier.xyz       325                 :             17 :         values[i++] = LSNGetDatum(record->ReadRecPtr);
  381 pg@bowt.ie                326                 :             17 :         values[i++] = LSNGetDatum(record->EndRecPtr);
                                327                 :             17 :         values[i++] = LSNGetDatum(XLogRecGetPrev(record));
  401 michael@paquier.xyz       328                 :             17 :         values[i++] = Int16GetDatum(block_id);
                                329                 :                : 
                                330                 :                :         /* relfile and block related outputs */
                                331                 :             17 :         values[i++] = ObjectIdGetDatum(blk->rlocator.spcOid);
                                332                 :             17 :         values[i++] = ObjectIdGetDatum(blk->rlocator.dbOid);
                                333                 :             17 :         values[i++] = ObjectIdGetDatum(blk->rlocator.relNumber);
  381 pg@bowt.ie                334                 :             17 :         values[i++] = Int16GetDatum(forknum);
  401 michael@paquier.xyz       335                 :             17 :         values[i++] = Int64GetDatum((int64) blkno);
                                336                 :                : 
                                337                 :                :         /* xid, resource_manager, and record_type outputs */
  381 pg@bowt.ie                338                 :             17 :         values[i++] = TransactionIdGetDatum(XLogRecGetXid(record));
                                339                 :             17 :         values[i++] = CStringGetTextDatum(desc.rm_name);
                                340                 :             17 :         values[i++] = CStringGetTextDatum(record_type);
                                341                 :                : 
                                342                 :                :         /*
                                343                 :                :          * record_length, main_data_length, block_data_len, and
                                344                 :                :          * block_fpi_length outputs
                                345                 :                :          */
                                346                 :             17 :         values[i++] = UInt32GetDatum(XLogRecGetTotalLen(record));
                                347                 :             17 :         values[i++] = UInt32GetDatum(XLogRecGetDataLen(record));
                                348                 :             17 :         values[i++] = UInt32GetDatum(block_data_len);
                                349                 :             17 :         values[i++] = UInt32GetDatum(block_fpi_len);
                                350                 :                : 
                                351                 :                :         /* block_fpi_info (text array) output */
                                352         [ +  + ]:             17 :         if (block_fpi_info)
                                353                 :              1 :             values[i++] = PointerGetDatum(block_fpi_info);
                                354                 :                :         else
                                355                 :             16 :             nulls[i++] = true;
                                356                 :                : 
                                357                 :                :         /* description output (describes WAL record) */
                                358         [ +  - ]:             17 :         if (rec_desc.len > 0)
                                359                 :             17 :             values[i++] = CStringGetTextDatum(rec_desc.data);
                                360                 :                :         else
  381 pg@bowt.ie                361                 :UBC           0 :             nulls[i++] = true;
                                362                 :                : 
                                363                 :                :         /* block_data output */
  380 pg@bowt.ie                364   [ +  +  +  - ]:CBC          17 :         if (blk->has_data && show_data)
  401 michael@paquier.xyz       365                 :             16 :         {
                                366                 :                :             bytea      *block_data;
                                367                 :                : 
  381 pg@bowt.ie                368                 :             16 :             block_data = (bytea *) palloc(block_data_len + VARHDRSZ);
                                369                 :             16 :             SET_VARSIZE(block_data, block_data_len + VARHDRSZ);
                                370                 :             16 :             memcpy(VARDATA(block_data), blk->data, block_data_len);
                                371                 :             16 :             values[i++] = PointerGetDatum(block_data);
                                372                 :                :         }
                                373                 :                :         else
  401 michael@paquier.xyz       374                 :              1 :             nulls[i++] = true;
                                375                 :                : 
                                376                 :                :         /* block_fpi_data output */
  380 pg@bowt.ie                377   [ +  +  +  - ]:             17 :         if (blk->has_image && show_data)
  401 michael@paquier.xyz       378                 :              1 :         {
                                379                 :                :             PGAlignedBlock buf;
                                380                 :                :             Page        page;
                                381                 :                :             bytea      *block_fpi_data;
                                382                 :                : 
                                383                 :              1 :             page = (Page) buf.data;
                                384         [ -  + ]:              1 :             if (!RestoreBlockImage(record, block_id, page))
  401 michael@paquier.xyz       385         [ #  # ]:UBC           0 :                 ereport(ERROR,
                                386                 :                :                         (errcode(ERRCODE_INTERNAL_ERROR),
                                387                 :                :                          errmsg_internal("%s", record->errormsg_buf)));
                                388                 :                : 
  381 pg@bowt.ie                389                 :CBC           1 :             block_fpi_data = (bytea *) palloc(BLCKSZ + VARHDRSZ);
                                390                 :              1 :             SET_VARSIZE(block_fpi_data, BLCKSZ + VARHDRSZ);
                                391                 :              1 :             memcpy(VARDATA(block_fpi_data), page, BLCKSZ);
                                392                 :              1 :             values[i++] = PointerGetDatum(block_fpi_data);
                                393                 :                :         }
                                394                 :                :         else
                                395                 :             16 :             nulls[i++] = true;
                                396                 :                : 
  401 michael@paquier.xyz       397         [ -  + ]:             17 :         Assert(i == PG_GET_WAL_BLOCK_INFO_COLS);
                                398                 :                : 
                                399                 :                :         /* Store a tuple for this block reference */
  447                           400                 :             17 :         tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc,
                                401                 :                :                              values, nulls);
                                402                 :                :     }
                                403                 :                : 
                                404                 :                : #undef PG_GET_WAL_BLOCK_INFO_COLS
                                405                 :             17 : }
                                406                 :                : 
                                407                 :                : /*
                                408                 :                :  * Get WAL record info, unnested by block reference
                                409                 :                :  */
                                410                 :                : Datum
  401                           411                 :              7 : pg_get_wal_block_info(PG_FUNCTION_ARGS)
                                412                 :                : {
  397                           413                 :              7 :     XLogRecPtr  start_lsn = PG_GETARG_LSN(0);
                                414                 :              7 :     XLogRecPtr  end_lsn = PG_GETARG_LSN(1);
  380 pg@bowt.ie                415                 :              7 :     bool        show_data = PG_GETARG_BOOL(2);
                                416                 :                :     XLogReaderState *xlogreader;
                                417                 :                :     MemoryContext old_cxt;
                                418                 :                :     MemoryContext tmp_cxt;
                                419                 :                : 
  397 michael@paquier.xyz       420                 :              7 :     ValidateInputLSNs(start_lsn, &end_lsn);
                                421                 :                : 
  447                           422                 :              5 :     InitMaterializedSRF(fcinfo, 0);
                                423                 :                : 
                                424                 :              5 :     xlogreader = InitXLogReaderState(start_lsn);
                                425                 :                : 
  419 jdavis@postgresql.or      426                 :              4 :     tmp_cxt = AllocSetContextCreate(CurrentMemoryContext,
                                427                 :                :                                     "pg_get_wal_block_info temporary cxt",
                                428                 :                :                                     ALLOCSET_DEFAULT_SIZES);
                                429                 :                : 
  447 michael@paquier.xyz       430         [ +  + ]:             29 :     while (ReadNextXLogRecord(xlogreader) &&
                                431         [ +  + ]:             26 :            xlogreader->EndRecPtr <= end_lsn)
                                432                 :                :     {
  384                           433         [ -  + ]:             25 :         CHECK_FOR_INTERRUPTS();
                                434                 :                : 
                                435         [ +  + ]:             25 :         if (!XLogRecHasAnyBlockRefs(xlogreader))
                                436                 :              8 :             continue;
                                437                 :                : 
                                438                 :                :         /* Use the tmp context so we can clean up after each tuple is done */
  419 jdavis@postgresql.or      439                 :             17 :         old_cxt = MemoryContextSwitchTo(tmp_cxt);
                                440                 :                : 
  380 pg@bowt.ie                441                 :             17 :         GetWALBlockInfo(fcinfo, xlogreader, show_data);
                                442                 :                : 
                                443                 :                :         /* clean up and switch back */
  419 jdavis@postgresql.or      444                 :             17 :         MemoryContextSwitchTo(old_cxt);
                                445                 :             17 :         MemoryContextReset(tmp_cxt);
                                446                 :                :     }
                                447                 :                : 
                                448                 :              4 :     MemoryContextDelete(tmp_cxt);
  447 michael@paquier.xyz       449                 :              4 :     pfree(xlogreader->private_data);
                                450                 :              4 :     XLogReaderFree(xlogreader);
                                451                 :                : 
                                452                 :              4 :     PG_RETURN_VOID();
                                453                 :                : }
                                454                 :                : 
                                455                 :                : /*
                                456                 :                :  * Get WAL record info.
                                457                 :                :  */
                                458                 :                : Datum
  737 jdavis@postgresql.or      459                 :              4 : pg_get_wal_record_info(PG_FUNCTION_ARGS)
                                460                 :                : {
                                461                 :                : #define PG_GET_WAL_RECORD_INFO_COLS 11
                                462                 :                :     Datum       result;
  638 peter@eisentraut.org      463                 :              4 :     Datum       values[PG_GET_WAL_RECORD_INFO_COLS] = {0};
                                464                 :              4 :     bool        nulls[PG_GET_WAL_RECORD_INFO_COLS] = {0};
                                465                 :                :     XLogRecPtr  lsn;
                                466                 :                :     XLogRecPtr  curr_lsn;
                                467                 :                :     XLogReaderState *xlogreader;
                                468                 :                :     TupleDesc   tupdesc;
                                469                 :                :     HeapTuple   tuple;
                                470                 :                : 
  737 jdavis@postgresql.or      471                 :              4 :     lsn = PG_GETARG_LSN(0);
  397 michael@paquier.xyz       472                 :              4 :     curr_lsn = GetCurrentLSN();
                                473                 :                : 
                                474         [ +  + ]:              4 :     if (lsn > curr_lsn)
  737 jdavis@postgresql.or      475         [ +  - ]:              1 :         ereport(ERROR,
                                476                 :                :                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                477                 :                :                  errmsg("WAL input LSN must be less than current LSN"),
                                478                 :                :                  errdetail("Current WAL LSN on the database system is at %X/%X.",
                                479                 :                :                            LSN_FORMAT_ARGS(curr_lsn))));
                                480                 :                : 
                                481                 :                :     /* Build a tuple descriptor for our result type. */
                                482         [ -  + ]:              3 :     if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE)
  737 jdavis@postgresql.or      483         [ #  # ]:UBC           0 :         elog(ERROR, "return type must be a row type");
                                484                 :                : 
  605 jdavis@postgresql.or      485                 :CBC           3 :     xlogreader = InitXLogReaderState(lsn);
                                486                 :                : 
                                487         [ -  + ]:              2 :     if (!ReadNextXLogRecord(xlogreader))
  715 jdavis@postgresql.or      488         [ #  # ]:UBC           0 :         ereport(ERROR,
                                489                 :                :                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                490                 :                :                  errmsg("could not read WAL at %X/%X",
                                491                 :                :                         LSN_FORMAT_ARGS(xlogreader->EndRecPtr))));
                                492                 :                : 
  605 jdavis@postgresql.or      493                 :CBC           2 :     GetWALRecordInfo(xlogreader, values, nulls, PG_GET_WAL_RECORD_INFO_COLS);
                                494                 :                : 
  715                           495                 :              2 :     pfree(xlogreader->private_data);
  737                           496                 :              2 :     XLogReaderFree(xlogreader);
                                497                 :                : 
                                498                 :              2 :     tuple = heap_form_tuple(tupdesc, values, nulls);
                                499                 :              2 :     result = HeapTupleGetDatum(tuple);
                                500                 :                : 
                                501                 :              2 :     PG_RETURN_DATUM(result);
                                502                 :                : #undef PG_GET_WAL_RECORD_INFO_COLS
                                503                 :                : }
                                504                 :                : 
                                505                 :                : /*
                                506                 :                :  * Validate start and end LSNs coming from the function inputs.
                                507                 :                :  *
                                508                 :                :  * If end_lsn is found to be higher than the current LSN reported by the
                                509                 :                :  * cluster, use the current LSN as the upper bound.
                                510                 :                :  */
                                511                 :                : static void
  397 michael@paquier.xyz       512                 :             22 : ValidateInputLSNs(XLogRecPtr start_lsn, XLogRecPtr *end_lsn)
                                513                 :                : {
                                514                 :             22 :     XLogRecPtr  curr_lsn = GetCurrentLSN();
                                515                 :                : 
                                516         [ +  + ]:             22 :     if (start_lsn > curr_lsn)
  737 jdavis@postgresql.or      517         [ +  - ]:              3 :         ereport(ERROR,
                                518                 :                :                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                519                 :                :                  errmsg("WAL start LSN must be less than current LSN"),
                                520                 :                :                  errdetail("Current WAL LSN on the database system is at %X/%X.",
                                521                 :                :                            LSN_FORMAT_ARGS(curr_lsn))));
                                522                 :                : 
  397 michael@paquier.xyz       523         [ +  + ]:             19 :     if (start_lsn > *end_lsn)
  737 jdavis@postgresql.or      524         [ +  - ]:              3 :         ereport(ERROR,
                                525                 :                :                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                526                 :                :                  errmsg("WAL start LSN must be less than end LSN")));
                                527                 :                : 
  397 michael@paquier.xyz       528         [ +  + ]:             16 :     if (*end_lsn > curr_lsn)
                                529                 :              4 :         *end_lsn = curr_lsn;
  737 jdavis@postgresql.or      530                 :             16 : }
                                531                 :                : 
                                532                 :                : /*
                                533                 :                :  * Get info of all WAL records between start LSN and end LSN.
                                534                 :                :  */
                                535                 :                : static void
                                536                 :              9 : GetWALRecordsInfo(FunctionCallInfo fcinfo, XLogRecPtr start_lsn,
                                537                 :                :                   XLogRecPtr end_lsn)
                                538                 :                : {
                                539                 :                : #define PG_GET_WAL_RECORDS_INFO_COLS 11
                                540                 :                :     XLogReaderState *xlogreader;
                                541                 :              9 :     ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
                                542                 :                :     MemoryContext old_cxt;
                                543                 :                :     MemoryContext tmp_cxt;
                                544                 :                : 
  397 michael@paquier.xyz       545         [ -  + ]:              9 :     Assert(start_lsn <= end_lsn);
                                546                 :                : 
  544                           547                 :              9 :     InitMaterializedSRF(fcinfo, 0);
                                548                 :                : 
  605 jdavis@postgresql.or      549                 :              9 :     xlogreader = InitXLogReaderState(start_lsn);
                                550                 :                : 
  419                           551                 :              8 :     tmp_cxt = AllocSetContextCreate(CurrentMemoryContext,
                                552                 :                :                                     "GetWALRecordsInfo temporary cxt",
                                553                 :                :                                     ALLOCSET_DEFAULT_SIZES);
                                554                 :                : 
  605                           555         [ +  + ]:          34346 :     while (ReadNextXLogRecord(xlogreader) &&
  715                           556         [ +  + ]:          34341 :            xlogreader->EndRecPtr <= end_lsn)
                                557                 :                :     {
  384 michael@paquier.xyz       558                 :          34338 :         Datum       values[PG_GET_WAL_RECORDS_INFO_COLS] = {0};
                                559                 :          34338 :         bool        nulls[PG_GET_WAL_RECORDS_INFO_COLS] = {0};
                                560                 :                : 
                                561                 :                :         /* Use the tmp context so we can clean up after each tuple is done */
  419 jdavis@postgresql.or      562                 :          34338 :         old_cxt = MemoryContextSwitchTo(tmp_cxt);
                                563                 :                : 
  605                           564                 :          34338 :         GetWALRecordInfo(xlogreader, values, nulls,
                                565                 :                :                          PG_GET_WAL_RECORDS_INFO_COLS);
                                566                 :                : 
  715                           567                 :          34338 :         tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc,
                                568                 :                :                              values, nulls);
                                569                 :                : 
                                570                 :                :         /* clean up and switch back */
  419                           571                 :          34338 :         MemoryContextSwitchTo(old_cxt);
                                572                 :          34338 :         MemoryContextReset(tmp_cxt);
                                573                 :                : 
  737                           574         [ -  + ]:          34338 :         CHECK_FOR_INTERRUPTS();
                                575                 :                :     }
                                576                 :                : 
  419                           577                 :              8 :     MemoryContextDelete(tmp_cxt);
  715                           578                 :              8 :     pfree(xlogreader->private_data);
  737                           579                 :              8 :     XLogReaderFree(xlogreader);
                                580                 :                : 
                                581                 :                : #undef PG_GET_WAL_RECORDS_INFO_COLS
                                582                 :              8 : }
                                583                 :                : 
                                584                 :                : /*
                                585                 :                :  * Get info of all WAL records between start LSN and end LSN.
                                586                 :                :  */
                                587                 :                : Datum
                                588                 :             10 : pg_get_wal_records_info(PG_FUNCTION_ARGS)
                                589                 :                : {
  397 michael@paquier.xyz       590                 :             10 :     XLogRecPtr  start_lsn = PG_GETARG_LSN(0);
                                591                 :             10 :     XLogRecPtr  end_lsn = PG_GETARG_LSN(1);
                                592                 :                : 
                                593                 :             10 :     ValidateInputLSNs(start_lsn, &end_lsn);
  737 jdavis@postgresql.or      594                 :              8 :     GetWALRecordsInfo(fcinfo, start_lsn, end_lsn);
                                595                 :                : 
                                596                 :              7 :     PG_RETURN_VOID();
                                597                 :                : }
                                598                 :                : 
                                599                 :                : /*
                                600                 :                :  * Fill single row of record counts and sizes for an rmgr or record.
                                601                 :                :  */
                                602                 :                : static void
                                603                 :             66 : FillXLogStatsRow(const char *name,
                                604                 :                :                  uint64 n, uint64 total_count,
                                605                 :                :                  uint64 rec_len, uint64 total_rec_len,
                                606                 :                :                  uint64 fpi_len, uint64 total_fpi_len,
                                607                 :                :                  uint64 tot_len, uint64 total_len,
                                608                 :                :                  Datum *values, bool *nulls, uint32 ncols)
                                609                 :                : {
                                610                 :                :     double      n_pct,
                                611                 :                :                 rec_len_pct,
                                612                 :                :                 fpi_len_pct,
                                613                 :                :                 tot_len_pct;
  703 tgl@sss.pgh.pa.us         614                 :             66 :     int         i = 0;
                                615                 :                : 
  737 jdavis@postgresql.or      616                 :             66 :     n_pct = 0;
                                617         [ +  - ]:             66 :     if (total_count != 0)
                                618                 :             66 :         n_pct = 100 * (double) n / total_count;
                                619                 :                : 
                                620                 :             66 :     rec_len_pct = 0;
                                621         [ +  - ]:             66 :     if (total_rec_len != 0)
                                622                 :             66 :         rec_len_pct = 100 * (double) rec_len / total_rec_len;
                                623                 :                : 
                                624                 :             66 :     fpi_len_pct = 0;
                                625         [ -  + ]:             66 :     if (total_fpi_len != 0)
  737 jdavis@postgresql.or      626                 :UBC           0 :         fpi_len_pct = 100 * (double) fpi_len / total_fpi_len;
                                627                 :                : 
  737 jdavis@postgresql.or      628                 :CBC          66 :     tot_len_pct = 0;
                                629         [ +  - ]:             66 :     if (total_len != 0)
                                630                 :             66 :         tot_len_pct = 100 * (double) tot_len / total_len;
                                631                 :                : 
                                632                 :             66 :     values[i++] = CStringGetTextDatum(name);
                                633                 :             66 :     values[i++] = Int64GetDatum(n);
  580 peter@eisentraut.org      634                 :             66 :     values[i++] = Float8GetDatum(n_pct);
  737 jdavis@postgresql.or      635                 :             66 :     values[i++] = Int64GetDatum(rec_len);
  580 peter@eisentraut.org      636                 :             66 :     values[i++] = Float8GetDatum(rec_len_pct);
  737 jdavis@postgresql.or      637                 :             66 :     values[i++] = Int64GetDatum(fpi_len);
  580 peter@eisentraut.org      638                 :             66 :     values[i++] = Float8GetDatum(fpi_len_pct);
  737 jdavis@postgresql.or      639                 :             66 :     values[i++] = Int64GetDatum(tot_len);
  580 peter@eisentraut.org      640                 :             66 :     values[i++] = Float8GetDatum(tot_len_pct);
                                641                 :                : 
  737 jdavis@postgresql.or      642         [ -  + ]:             66 :     Assert(i == ncols);
                                643                 :             66 : }
                                644                 :                : 
                                645                 :                : /*
                                646                 :                :  * Get summary statistics about the records seen so far.
                                647                 :                :  */
                                648                 :                : static void
                                649                 :              3 : GetXLogSummaryStats(XLogStats *stats, ReturnSetInfo *rsinfo,
                                650                 :                :                     Datum *values, bool *nulls, uint32 ncols,
                                651                 :                :                     bool stats_per_record)
                                652                 :                : {
                                653                 :                :     MemoryContext old_cxt;
                                654                 :                :     MemoryContext tmp_cxt;
  397 michael@paquier.xyz       655                 :              3 :     uint64      total_count = 0;
                                656                 :              3 :     uint64      total_rec_len = 0;
                                657                 :              3 :     uint64      total_fpi_len = 0;
                                658                 :              3 :     uint64      total_len = 0;
                                659                 :                :     int         ri;
                                660                 :                : 
                                661                 :                :     /*
                                662                 :                :      * Each row shows its percentages of the total, so make a first pass to
                                663                 :                :      * calculate column totals.
                                664                 :                :      */
  737 jdavis@postgresql.or      665         [ +  + ]:            771 :     for (ri = 0; ri <= RM_MAX_ID; ri++)
                                666                 :                :     {
                                667   [ +  +  +  + ]:            768 :         if (!RmgrIdIsValid(ri))
                                668                 :            318 :             continue;
                                669                 :                : 
                                670                 :            450 :         total_count += stats->rmgr_stats[ri].count;
                                671                 :            450 :         total_rec_len += stats->rmgr_stats[ri].rec_len;
                                672                 :            450 :         total_fpi_len += stats->rmgr_stats[ri].fpi_len;
                                673                 :                :     }
                                674                 :              3 :     total_len = total_rec_len + total_fpi_len;
                                675                 :                : 
  419                           676                 :              3 :     tmp_cxt = AllocSetContextCreate(CurrentMemoryContext,
                                677                 :                :                                     "GetXLogSummaryStats temporary cxt",
                                678                 :                :                                     ALLOCSET_DEFAULT_SIZES);
                                679                 :                : 
  737                           680         [ +  + ]:            771 :     for (ri = 0; ri <= RM_MAX_ID; ri++)
                                681                 :                :     {
                                682                 :                :         uint64      count;
                                683                 :                :         uint64      rec_len;
                                684                 :                :         uint64      fpi_len;
                                685                 :                :         uint64      tot_len;
                                686                 :                :         RmgrData    desc;
                                687                 :                : 
                                688   [ +  +  +  + ]:            768 :         if (!RmgrIdIsValid(ri))
                                689                 :            702 :             continue;
                                690                 :                : 
                                691         [ +  + ]:            450 :         if (!RmgrIdExists(ri))
                                692                 :            384 :             continue;
                                693                 :                : 
                                694                 :             66 :         desc = GetRmgr(ri);
                                695                 :                : 
                                696         [ -  + ]:             66 :         if (stats_per_record)
                                697                 :                :         {
                                698                 :                :             int         rj;
                                699                 :                : 
  737 jdavis@postgresql.or      700         [ #  # ]:UBC           0 :             for (rj = 0; rj < MAX_XLINFO_TYPES; rj++)
                                701                 :                :             {
                                702                 :                :                 const char *id;
                                703                 :                : 
                                704                 :              0 :                 count = stats->record_stats[ri][rj].count;
                                705                 :              0 :                 rec_len = stats->record_stats[ri][rj].rec_len;
                                706                 :              0 :                 fpi_len = stats->record_stats[ri][rj].fpi_len;
                                707                 :              0 :                 tot_len = rec_len + fpi_len;
                                708                 :                : 
                                709                 :                :                 /* Skip undefined combinations and ones that didn't occur */
                                710         [ #  # ]:              0 :                 if (count == 0)
                                711                 :              0 :                     continue;
                                712                 :                : 
  419                           713                 :              0 :                 old_cxt = MemoryContextSwitchTo(tmp_cxt);
                                714                 :                : 
                                715                 :                :                 /* the upper four bits in xl_info are the rmgr's */
  737                           716                 :              0 :                 id = desc.rm_identify(rj << 4);
                                717         [ #  # ]:              0 :                 if (id == NULL)
                                718                 :              0 :                     id = psprintf("UNKNOWN (%x)", rj << 4);
                                719                 :                : 
                                720                 :              0 :                 FillXLogStatsRow(psprintf("%s/%s", desc.rm_name, id), count,
                                721                 :                :                                  total_count, rec_len, total_rec_len, fpi_len,
                                722                 :                :                                  total_fpi_len, tot_len, total_len,
                                723                 :                :                                  values, nulls, ncols);
                                724                 :                : 
                                725                 :              0 :                 tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc,
                                726                 :                :                                      values, nulls);
                                727                 :                : 
                                728                 :                :                 /* clean up and switch back */
  419                           729                 :              0 :                 MemoryContextSwitchTo(old_cxt);
                                730                 :              0 :                 MemoryContextReset(tmp_cxt);
                                731                 :                :             }
                                732                 :                :         }
                                733                 :                :         else
                                734                 :                :         {
  737 jdavis@postgresql.or      735                 :CBC          66 :             count = stats->rmgr_stats[ri].count;
                                736                 :             66 :             rec_len = stats->rmgr_stats[ri].rec_len;
                                737                 :             66 :             fpi_len = stats->rmgr_stats[ri].fpi_len;
                                738                 :             66 :             tot_len = rec_len + fpi_len;
                                739                 :                : 
  419                           740                 :             66 :             old_cxt = MemoryContextSwitchTo(tmp_cxt);
                                741                 :                : 
  737                           742                 :             66 :             FillXLogStatsRow(desc.rm_name, count, total_count, rec_len,
                                743                 :                :                              total_rec_len, fpi_len, total_fpi_len, tot_len,
                                744                 :                :                              total_len, values, nulls, ncols);
                                745                 :                : 
                                746                 :             66 :             tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc,
                                747                 :                :                                  values, nulls);
                                748                 :                : 
                                749                 :                :             /* clean up and switch back */
  419                           750                 :             66 :             MemoryContextSwitchTo(old_cxt);
                                751                 :             66 :             MemoryContextReset(tmp_cxt);
                                752                 :                :         }
                                753                 :                :     }
                                754                 :                : 
                                755                 :              3 :     MemoryContextDelete(tmp_cxt);
  737                           756                 :              3 : }
                                757                 :                : 
                                758                 :                : /*
                                759                 :                :  * Get WAL stats between start LSN and end LSN.
                                760                 :                :  */
                                761                 :                : static void
  397 michael@paquier.xyz       762                 :              4 : GetWalStats(FunctionCallInfo fcinfo, XLogRecPtr start_lsn, XLogRecPtr end_lsn,
                                763                 :                :             bool stats_per_record)
                                764                 :                : {
                                765                 :                : #define PG_GET_WAL_STATS_COLS 9
                                766                 :                :     XLogReaderState *xlogreader;
  638 peter@eisentraut.org      767                 :              4 :     XLogStats   stats = {0};
  737 jdavis@postgresql.or      768                 :              4 :     ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
  638 peter@eisentraut.org      769                 :              4 :     Datum       values[PG_GET_WAL_STATS_COLS] = {0};
                                770                 :              4 :     bool        nulls[PG_GET_WAL_STATS_COLS] = {0};
                                771                 :                : 
  397 michael@paquier.xyz       772         [ -  + ]:              4 :     Assert(start_lsn <= end_lsn);
                                773                 :                : 
  544                           774                 :              4 :     InitMaterializedSRF(fcinfo, 0);
                                775                 :                : 
  605 jdavis@postgresql.or      776                 :              4 :     xlogreader = InitXLogReaderState(start_lsn);
                                777                 :                : 
                                778         [ +  + ]:             22 :     while (ReadNextXLogRecord(xlogreader) &&
  715                           779         [ +  + ]:             17 :            xlogreader->EndRecPtr <= end_lsn)
                                780                 :                :     {
                                781                 :             16 :         XLogRecStoreStats(&stats, xlogreader);
                                782                 :                : 
  737                           783         [ -  + ]:             16 :         CHECK_FOR_INTERRUPTS();
                                784                 :                :     }
                                785                 :                : 
  715                           786                 :              3 :     pfree(xlogreader->private_data);
  737                           787                 :              3 :     XLogReaderFree(xlogreader);
                                788                 :                : 
                                789                 :              3 :     GetXLogSummaryStats(&stats, rsinfo, values, nulls,
                                790                 :                :                         PG_GET_WAL_STATS_COLS,
                                791                 :                :                         stats_per_record);
                                792                 :                : 
                                793                 :                : #undef PG_GET_WAL_STATS_COLS
                                794                 :              3 : }
                                795                 :                : 
                                796                 :                : /*
                                797                 :                :  * Get stats of all WAL records between start LSN and end LSN.
                                798                 :                :  */
                                799                 :                : Datum
                                800                 :              5 : pg_get_wal_stats(PG_FUNCTION_ARGS)
                                801                 :                : {
  397 michael@paquier.xyz       802                 :              5 :     XLogRecPtr  start_lsn = PG_GETARG_LSN(0);
                                803                 :              5 :     XLogRecPtr  end_lsn = PG_GETARG_LSN(1);
                                804                 :              5 :     bool        stats_per_record = PG_GETARG_BOOL(2);
                                805                 :                : 
                                806                 :              5 :     ValidateInputLSNs(start_lsn, &end_lsn);
  737 jdavis@postgresql.or      807                 :              3 :     GetWalStats(fcinfo, start_lsn, end_lsn, stats_per_record);
                                808                 :                : 
                                809                 :              2 :     PG_RETURN_VOID();
                                810                 :                : }
                                811                 :                : 
                                812                 :                : /*
                                813                 :                :  * The following functions have been removed in newer versions in 1.1, but
                                814                 :                :  * they are kept around for compatibility.
                                815                 :                :  */
                                816                 :                : Datum
  397 michael@paquier.xyz       817                 :              2 : pg_get_wal_records_info_till_end_of_wal(PG_FUNCTION_ARGS)
                                818                 :                : {
                                819                 :              2 :     XLogRecPtr  start_lsn = PG_GETARG_LSN(0);
                                820                 :              2 :     XLogRecPtr  end_lsn = GetCurrentLSN();
                                821                 :                : 
                                822         [ +  + ]:              2 :     if (start_lsn > end_lsn)
                                823         [ +  - ]:              1 :         ereport(ERROR,
                                824                 :                :                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                825                 :                :                  errmsg("WAL start LSN must be less than current LSN"),
                                826                 :                :                  errdetail("Current WAL LSN on the database system is at %X/%X.",
                                827                 :                :                            LSN_FORMAT_ARGS(end_lsn))));
                                828                 :                : 
                                829                 :              1 :     GetWALRecordsInfo(fcinfo, start_lsn, end_lsn);
                                830                 :                : 
                                831                 :              1 :     PG_RETURN_VOID();
                                832                 :                : }
                                833                 :                : 
                                834                 :                : Datum
                                835                 :              2 : pg_get_wal_stats_till_end_of_wal(PG_FUNCTION_ARGS)
                                836                 :                : {
                                837                 :              2 :     XLogRecPtr  start_lsn = PG_GETARG_LSN(0);
                                838                 :              2 :     XLogRecPtr  end_lsn = GetCurrentLSN();
                                839                 :              2 :     bool        stats_per_record = PG_GETARG_BOOL(1);
                                840                 :                : 
                                841         [ +  + ]:              2 :     if (start_lsn > end_lsn)
                                842         [ +  - ]:              1 :         ereport(ERROR,
                                843                 :                :                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                844                 :                :                  errmsg("WAL start LSN must be less than current LSN"),
                                845                 :                :                  errdetail("Current WAL LSN on the database system is at %X/%X.",
                                846                 :                :                            LSN_FORMAT_ARGS(end_lsn))));
                                847                 :                : 
  737 jdavis@postgresql.or      848                 :              1 :     GetWalStats(fcinfo, start_lsn, end_lsn, stats_per_record);
                                849                 :                : 
                                850                 :              1 :     PG_RETURN_VOID();
                                851                 :                : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622