LCOV - differential code coverage report
Current view: top level - src/bin/pg_rewind - pg_rewind.c (source / functions) Coverage Total Hit UNC UBC GNC CBC DCB
Current: c70b6db34ffeab48beef1fb4ce61bcad3772b8dd vs 06473f5a344df8c9594ead90a609b86f6724cff8 Lines: 82.5 % 412 340 72 3 337 3
Current Date: 2025-09-06 07:49:51 +0900 Functions: 100.0 % 14 14 2 12
Baseline: lcov-20250906-005545-baseline Branches: 63.8 % 235 150 1 84 1 149
Baseline Date: 2025-09-05 08:21:35 +0100 Line coverage date bins:
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
(30,360] days: 100.0 % 9 9 3 6
(360..) days: 82.1 % 403 331 72 331
Function coverage date bins:
(360..) days: 100.0 % 14 14 2 12
Branch coverage date bins:
(30,360] days: 50.0 % 2 1 1 1
(360..) days: 63.9 % 233 149 84 149

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * pg_rewind.c
                                  4                 :                :  *    Synchronizes a PostgreSQL data directory to a new timeline
                                  5                 :                :  *
                                  6                 :                :  * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
                                  7                 :                :  *
                                  8                 :                :  *-------------------------------------------------------------------------
                                  9                 :                :  */
                                 10                 :                : #include "postgres_fe.h"
                                 11                 :                : 
                                 12                 :                : #include <sys/stat.h>
                                 13                 :                : #include <fcntl.h>
                                 14                 :                : #include <time.h>
                                 15                 :                : #include <unistd.h>
                                 16                 :                : 
                                 17                 :                : #include "access/timeline.h"
                                 18                 :                : #include "access/xlog_internal.h"
                                 19                 :                : #include "catalog/catversion.h"
                                 20                 :                : #include "catalog/pg_control.h"
                                 21                 :                : #include "common/controldata_utils.h"
                                 22                 :                : #include "common/file_perm.h"
                                 23                 :                : #include "common/restricted_token.h"
                                 24                 :                : #include "common/string.h"
                                 25                 :                : #include "fe_utils/option_utils.h"
                                 26                 :                : #include "fe_utils/recovery_gen.h"
                                 27                 :                : #include "fe_utils/string_utils.h"
                                 28                 :                : #include "file_ops.h"
                                 29                 :                : #include "filemap.h"
                                 30                 :                : #include "getopt_long.h"
                                 31                 :                : #include "pg_rewind.h"
                                 32                 :                : #include "rewind_source.h"
                                 33                 :                : #include "storage/bufpage.h"
                                 34                 :                : 
                                 35                 :                : static void usage(const char *progname);
                                 36                 :                : 
                                 37                 :                : static void perform_rewind(filemap_t *filemap, rewind_source *source,
                                 38                 :                :                            XLogRecPtr chkptrec,
                                 39                 :                :                            TimeLineID chkpttli,
                                 40                 :                :                            XLogRecPtr chkptredo);
                                 41                 :                : 
                                 42                 :                : static void createBackupLabel(XLogRecPtr startpoint, TimeLineID starttli,
                                 43                 :                :                               XLogRecPtr checkpointloc);
                                 44                 :                : 
                                 45                 :                : static void digestControlFile(ControlFileData *ControlFile,
                                 46                 :                :                               const char *content, size_t size);
                                 47                 :                : static void getRestoreCommand(const char *argv0);
                                 48                 :                : static void sanityChecks(void);
                                 49                 :                : static TimeLineHistoryEntry *getTimelineHistory(TimeLineID tli, bool is_source,
                                 50                 :                :                                                 int *nentries);
                                 51                 :                : static void findCommonAncestorTimeline(TimeLineHistoryEntry *a_history,
                                 52                 :                :                                        int a_nentries,
                                 53                 :                :                                        TimeLineHistoryEntry *b_history,
                                 54                 :                :                                        int b_nentries,
                                 55                 :                :                                        XLogRecPtr *recptr, int *tliIndex);
                                 56                 :                : static void ensureCleanShutdown(const char *argv0);
                                 57                 :                : static void disconnect_atexit(void);
                                 58                 :                : 
                                 59                 :                : static ControlFileData ControlFile_target;
                                 60                 :                : static ControlFileData ControlFile_source;
                                 61                 :                : static ControlFileData ControlFile_source_after;
                                 62                 :                : 
                                 63                 :                : static const char *progname;
                                 64                 :                : int         WalSegSz;
                                 65                 :                : 
                                 66                 :                : /* Configuration options */
                                 67                 :                : char       *datadir_target = NULL;
                                 68                 :                : static char *datadir_source = NULL;
                                 69                 :                : static char *connstr_source = NULL;
                                 70                 :                : static char *restore_command = NULL;
                                 71                 :                : static char *config_file = NULL;
                                 72                 :                : 
                                 73                 :                : static bool debug = false;
                                 74                 :                : bool        showprogress = false;
                                 75                 :                : bool        dry_run = false;
                                 76                 :                : bool        do_sync = true;
                                 77                 :                : static bool restore_wal = false;
                                 78                 :                : DataDirSyncMethod sync_method = DATA_DIR_SYNC_METHOD_FSYNC;
                                 79                 :                : 
                                 80                 :                : /* Target history */
                                 81                 :                : TimeLineHistoryEntry *targetHistory;
                                 82                 :                : int         targetNentries;
                                 83                 :                : 
                                 84                 :                : /* Progress counters */
                                 85                 :                : uint64      fetch_size;
                                 86                 :                : uint64      fetch_done;
                                 87                 :                : 
                                 88                 :                : static PGconn *conn;
                                 89                 :                : static rewind_source *source;
                                 90                 :                : 
                                 91                 :                : static void
 3820 heikki.linnakangas@i       92                 :CBC           1 : usage(const char *progname)
                                 93                 :                : {
 3729 peter_e@gmx.net            94                 :              1 :     printf(_("%s resynchronizes a PostgreSQL cluster with another copy of the cluster.\n\n"), progname);
 3820 heikki.linnakangas@i       95                 :              1 :     printf(_("Usage:\n  %s [OPTION]...\n\n"), progname);
                                 96                 :              1 :     printf(_("Options:\n"));
  477 peter@eisentraut.org       97                 :              1 :     printf(_("  -c, --restore-target-wal       use \"restore_command\" in target configuration to\n"
                                 98                 :                :              "                                 retrieve WAL files from archives\n"));
 3729 peter_e@gmx.net            99                 :              1 :     printf(_("  -D, --target-pgdata=DIRECTORY  existing data directory to modify\n"));
 3643                           100                 :              1 :     printf(_("      --source-pgdata=DIRECTORY  source data directory to synchronize with\n"));
                                101                 :              1 :     printf(_("      --source-server=CONNSTR    source server to synchronize with\n"));
 3729                           102                 :              1 :     printf(_("  -n, --dry-run                  stop before modifying anything\n"));
 2322 alvherre@alvh.no-ip.      103                 :              1 :     printf(_("  -N, --no-sync                  do not wait for changes to be written\n"
                                104                 :                :              "                                 safely to disk\n"));
 3729 peter_e@gmx.net           105                 :              1 :     printf(_("  -P, --progress                 write progress messages\n"));
 1954 peter@eisentraut.org      106                 :              1 :     printf(_("  -R, --write-recovery-conf      write configuration for replication\n"
                                107                 :                :              "                                 (requires --source-server)\n"));
 1244                           108                 :              1 :     printf(_("      --config-file=FILENAME     use specified main server configuration\n"
                                109                 :                :              "                                 file when running target cluster\n"));
 3729 peter_e@gmx.net           110                 :              1 :     printf(_("      --debug                    write a lot of debug messages\n"));
 1954 peter@eisentraut.org      111                 :              1 :     printf(_("      --no-ensure-shutdown       do not automatically fix unclean shutdown\n"));
  731 nathan@postgresql.or      112                 :              1 :     printf(_("      --sync-method=METHOD       set method for syncing files to disk\n"));
 3729 peter_e@gmx.net           113                 :              1 :     printf(_("  -V, --version                  output version information, then exit\n"));
                                114                 :              1 :     printf(_("  -?, --help                     show this help, then exit\n"));
 2017 peter@eisentraut.org      115                 :              1 :     printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
                                116                 :              1 :     printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
 3820 heikki.linnakangas@i      117                 :              1 : }
                                118                 :                : 
                                119                 :                : 
                                120                 :                : int
                                121                 :             25 : main(int argc, char **argv)
                                122                 :                : {
                                123                 :                :     static struct option long_options[] = {
                                124                 :                :         {"help", no_argument, NULL, '?'},
                                125                 :                :         {"target-pgdata", required_argument, NULL, 'D'},
                                126                 :                :         {"write-recovery-conf", no_argument, NULL, 'R'},
                                127                 :                :         {"source-pgdata", required_argument, NULL, 1},
                                128                 :                :         {"source-server", required_argument, NULL, 2},
                                129                 :                :         {"no-ensure-shutdown", no_argument, NULL, 4},
                                130                 :                :         {"config-file", required_argument, NULL, 5},
                                131                 :                :         {"version", no_argument, NULL, 'V'},
                                132                 :                :         {"restore-target-wal", no_argument, NULL, 'c'},
                                133                 :                :         {"dry-run", no_argument, NULL, 'n'},
                                134                 :                :         {"no-sync", no_argument, NULL, 'N'},
                                135                 :                :         {"progress", no_argument, NULL, 'P'},
                                136                 :                :         {"debug", no_argument, NULL, 3},
                                137                 :                :         {"sync-method", required_argument, NULL, 6},
                                138                 :                :         {NULL, 0, NULL, 0}
                                139                 :                :     };
                                140                 :                :     int         option_index;
                                141                 :                :     int         c;
                                142                 :                :     XLogRecPtr  divergerec;
                                143                 :                :     int         lastcommontliIndex;
                                144                 :                :     XLogRecPtr  chkptrec;
                                145                 :                :     TimeLineID  chkpttli;
                                146                 :                :     XLogRecPtr  chkptredo;
                                147                 :                :     TimeLineID  source_tli;
                                148                 :                :     TimeLineID  target_tli;
                                149                 :                :     XLogRecPtr  target_wal_endrec;
                                150                 :                :     size_t      size;
                                151                 :                :     char       *buffer;
 2171 alvherre@alvh.no-ip.      152                 :             25 :     bool        no_ensure_shutdown = false;
                                153                 :                :     bool        rewind_needed;
 2168                           154                 :             25 :     bool        writerecoveryconf = false;
                                155                 :                :     filemap_t  *filemap;
                                156                 :                : 
 2350 peter@eisentraut.org      157                 :             25 :     pg_logging_init(argv[0]);
 3805 heikki.linnakangas@i      158                 :             25 :     set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_rewind"));
 3820                           159                 :             25 :     progname = get_progname(argv[0]);
                                160                 :                : 
                                161                 :                :     /* Process command-line arguments */
                                162         [ +  - ]:             25 :     if (argc > 1)
                                163                 :                :     {
                                164   [ +  +  -  + ]:             25 :         if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
                                165                 :                :         {
                                166                 :              1 :             usage(progname);
                                167                 :              1 :             exit(0);
                                168                 :                :         }
                                169   [ +  +  -  + ]:             24 :         if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
                                170                 :                :         {
                                171                 :              1 :             puts("pg_rewind (PostgreSQL) " PG_VERSION);
                                172                 :              1 :             exit(0);
                                173                 :                :         }
                                174                 :                :     }
                                175                 :                : 
 1984 michael@paquier.xyz       176         [ +  + ]:            126 :     while ((c = getopt_long(argc, argv, "cD:nNPR", long_options, &option_index)) != -1)
                                177                 :                :     {
 3820 heikki.linnakangas@i      178   [ +  -  +  +  :            104 :         switch (c)
                                     +  +  +  +  +  
                                        +  +  -  + ]
                                179                 :                :         {
 1984 michael@paquier.xyz       180                 :              1 :             case 'c':
                                181                 :              1 :                 restore_wal = true;
                                182                 :              1 :                 break;
                                183                 :                : 
 3820 heikki.linnakangas@i      184                 :UBC           0 :             case 'P':
                                185                 :              0 :                 showprogress = true;
                                186                 :              0 :                 break;
                                187                 :                : 
 3820 heikki.linnakangas@i      188                 :CBC           1 :             case 'n':
                                189                 :              1 :                 dry_run = true;
                                190                 :              1 :                 break;
                                191                 :                : 
 2615 michael@paquier.xyz       192                 :             17 :             case 'N':
                                193                 :             17 :                 do_sync = false;
                                194                 :             17 :                 break;
                                195                 :                : 
 2168 alvherre@alvh.no-ip.      196                 :              6 :             case 'R':
                                197                 :              6 :                 writerecoveryconf = true;
                                198                 :              6 :                 break;
                                199                 :                : 
 3820 heikki.linnakangas@i      200                 :             21 :             case 3:
                                201                 :             21 :                 debug = true;
 1815 tgl@sss.pgh.pa.us         202                 :             21 :                 pg_logging_increase_verbosity();
 3820 heikki.linnakangas@i      203                 :             21 :                 break;
                                204                 :                : 
                                205                 :             22 :             case 'D':           /* -D or --target-pgdata */
                                206                 :             22 :                 datadir_target = pg_strdup(optarg);
                                207                 :             22 :                 break;
                                208                 :                : 
                                209                 :             15 :             case 1:             /* --source-pgdata */
                                210                 :             15 :                 datadir_source = pg_strdup(optarg);
                                211                 :             15 :                 break;
                                212                 :                : 
                                213                 :              7 :             case 2:             /* --source-server */
                                214                 :              7 :                 connstr_source = pg_strdup(optarg);
                                215                 :              7 :                 break;
                                216                 :                : 
 2171 alvherre@alvh.no-ip.      217                 :              3 :             case 4:
                                218                 :              3 :                 no_ensure_shutdown = true;
                                219                 :              3 :                 break;
                                220                 :                : 
 1248 michael@paquier.xyz       221                 :             10 :             case 5:
                                222                 :             10 :                 config_file = pg_strdup(optarg);
                                223                 :             10 :                 break;
                                224                 :                : 
  731 nathan@postgresql.or      225                 :UBC           0 :             case 6:
                                226         [ #  # ]:              0 :                 if (!parse_sync_method(optarg, &sync_method))
                                227                 :              0 :                     exit(1);
                                228                 :              0 :                 break;
                                229                 :                : 
 1247 tgl@sss.pgh.pa.us         230                 :CBC           1 :             default:
                                231                 :                :                 /* getopt_long already emitted a complaint */
                                232                 :              1 :                 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
                                233                 :              1 :                 exit(1);
                                234                 :                :         }
                                235                 :                :     }
                                236                 :                : 
 3820 heikki.linnakangas@i      237   [ +  +  +  + ]:             22 :     if (datadir_source == NULL && connstr_source == NULL)
                                238                 :                :     {
 2350 peter@eisentraut.org      239                 :              1 :         pg_log_error("no source specified (--source-pgdata or --source-server)");
 1247 tgl@sss.pgh.pa.us         240                 :              1 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 3820 heikki.linnakangas@i      241                 :              1 :         exit(1);
                                242                 :                :     }
                                243                 :                : 
 3256                           244   [ +  +  +  + ]:             21 :     if (datadir_source != NULL && connstr_source != NULL)
                                245                 :                :     {
 2350 peter@eisentraut.org      246                 :              1 :         pg_log_error("only one of --source-pgdata or --source-server can be specified");
 1247 tgl@sss.pgh.pa.us         247                 :              1 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 3256 heikki.linnakangas@i      248                 :              1 :         exit(1);
                                249                 :                :     }
                                250                 :                : 
 3820                           251         [ -  + ]:             20 :     if (datadir_target == NULL)
                                252                 :                :     {
 2350 peter@eisentraut.org      253                 :UBC           0 :         pg_log_error("no target data directory specified (--target-pgdata)");
 1247 tgl@sss.pgh.pa.us         254                 :              0 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 3820 heikki.linnakangas@i      255                 :              0 :         exit(1);
                                256                 :                :     }
                                257                 :                : 
 2168 alvherre@alvh.no-ip.      258   [ +  +  +  + ]:CBC          20 :     if (writerecoveryconf && connstr_source == NULL)
                                259                 :                :     {
 1956 peter@eisentraut.org      260                 :              1 :         pg_log_error("no source server information (--source-server) specified for --write-recovery-conf");
 1247 tgl@sss.pgh.pa.us         261                 :              1 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 2168 alvherre@alvh.no-ip.      262                 :              1 :         exit(1);
                                263                 :                :     }
                                264                 :                : 
 3729 peter_e@gmx.net           265         [ +  + ]:             19 :     if (optind < argc)
                                266                 :                :     {
 2350 peter@eisentraut.org      267                 :              1 :         pg_log_error("too many command-line arguments (first is \"%s\")",
                                268                 :                :                      argv[optind]);
 1247 tgl@sss.pgh.pa.us         269                 :              1 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
 3820 heikki.linnakangas@i      270                 :              1 :         exit(1);
                                271                 :                :     }
                                272                 :                : 
                                273                 :                :     /*
                                274                 :                :      * Don't allow pg_rewind to be run as root, to avoid overwriting the
                                275                 :                :      * ownership of files in the data directory. We need only check for root
                                276                 :                :      * -- any other user won't have sufficient permissions to modify files in
                                277                 :                :      * the data directory.
                                278                 :                :      */
                                279                 :                : #ifndef WIN32
 3805                           280         [ -  + ]:             18 :     if (geteuid() == 0)
                                281                 :                :     {
 2350 peter@eisentraut.org      282                 :UBC           0 :         pg_log_error("cannot be executed by \"root\"");
 1247 tgl@sss.pgh.pa.us         283                 :              0 :         pg_log_error_hint("You must run %s as the PostgreSQL superuser.",
                                284                 :                :                           progname);
 2707 magnus@hagander.net       285                 :              0 :         exit(1);
                                286                 :                :     }
                                287                 :                : #endif
                                288                 :                : 
 2350 peter@eisentraut.org      289                 :CBC          18 :     get_restricted_token();
                                290                 :                : 
                                291                 :                :     /* Set mask based on PGDATA permissions */
 2663 tgl@sss.pgh.pa.us         292         [ -  + ]:             18 :     if (!GetDataDirectoryCreatePerm(datadir_target))
 1247 tgl@sss.pgh.pa.us         293                 :UBC           0 :         pg_fatal("could not read permissions of directory \"%s\": %m",
                                294                 :                :                  datadir_target);
                                295                 :                : 
 2663 tgl@sss.pgh.pa.us         296                 :CBC          18 :     umask(pg_mode_mask);
                                297                 :                : 
 1984 michael@paquier.xyz       298                 :             18 :     getRestoreCommand(argv[0]);
                                299                 :                : 
 2168 alvherre@alvh.no-ip.      300                 :             18 :     atexit(disconnect_atexit);
                                301                 :                : 
                                302                 :                :     /*
                                303                 :                :      * Ok, we have all the options and we're ready to start. First, connect to
                                304                 :                :      * remote server.
                                305                 :                :      */
 1767 heikki.linnakangas@i      306         [ +  + ]:             18 :     if (connstr_source)
                                307                 :                :     {
                                308                 :              6 :         conn = PQconnectdb(connstr_source);
                                309                 :                : 
                                310         [ -  + ]:              6 :         if (PQstatus(conn) == CONNECTION_BAD)
 1764 peter@eisentraut.org      311                 :UBC           0 :             pg_fatal("%s", PQerrorMessage(conn));
                                312                 :                : 
 1767 heikki.linnakangas@i      313         [ -  + ]:CBC           6 :         if (showprogress)
 1767 heikki.linnakangas@i      314                 :UBC           0 :             pg_log_info("connected to server");
                                315                 :                : 
 1767 heikki.linnakangas@i      316                 :CBC           6 :         source = init_libpq_source(conn);
                                317                 :                :     }
                                318                 :                :     else
                                319                 :             12 :         source = init_local_source(datadir_source);
                                320                 :                : 
                                321                 :                :     /*
                                322                 :                :      * Check the status of the target instance.
                                323                 :                :      *
                                324                 :                :      * If the target instance was not cleanly shut down, start and stop the
                                325                 :                :      * target cluster once in single-user mode to enforce recovery to finish,
                                326                 :                :      * ensuring that the cluster can be used by pg_rewind.  Note that if
                                327                 :                :      * no_ensure_shutdown is specified, pg_rewind ignores this step, and users
                                328                 :                :      * need to make sure by themselves that the target cluster is in a clean
                                329                 :                :      * state.
                                330                 :                :      */
  152 fujii@postgresql.org      331                 :             18 :     buffer = slurpFile(datadir_target, XLOG_CONTROL_FILE, &size);
 1767 heikki.linnakangas@i      332                 :             18 :     digestControlFile(&ControlFile_target, buffer, size);
                                333                 :             18 :     pg_free(buffer);
                                334                 :                : 
 2171 alvherre@alvh.no-ip.      335         [ +  + ]:             18 :     if (!no_ensure_shutdown &&
                                336         [ +  + ]:             15 :         ControlFile_target.state != DB_SHUTDOWNED &&
                                337         [ +  + ]:             11 :         ControlFile_target.state != DB_SHUTDOWNED_IN_RECOVERY)
                                338                 :                :     {
                                339                 :             10 :         ensureCleanShutdown(argv[0]);
                                340                 :                : 
  152 fujii@postgresql.org      341                 :              9 :         buffer = slurpFile(datadir_target, XLOG_CONTROL_FILE, &size);
 2171 alvherre@alvh.no-ip.      342                 :              9 :         digestControlFile(&ControlFile_target, buffer, size);
                                343                 :              9 :         pg_free(buffer);
                                344                 :                :     }
                                345                 :                : 
  152 fujii@postgresql.org      346                 :             17 :     buffer = source->fetch_file(source, XLOG_CONTROL_FILE, &size);
 3820 heikki.linnakangas@i      347                 :             17 :     digestControlFile(&ControlFile_source, buffer, size);
                                348                 :             17 :     pg_free(buffer);
                                349                 :                : 
                                350                 :             17 :     sanityChecks();
                                351                 :                : 
                                352                 :                :     /*
                                353                 :                :      * Usually, the TLI can be found in the latest checkpoint record. But if
                                354                 :                :      * the source server is just being promoted (or it's a standby that's
                                355                 :                :      * following a primary that's just being promoted), and the checkpoint
                                356                 :                :      * requested by the promotion hasn't completed yet, the latest timeline is
                                357                 :                :      * in minRecoveryPoint. So we check which is later, the TLI of the
                                358                 :                :      * minRecoveryPoint or the latest checkpoint.
                                359                 :                :      */
  926                           360                 :             15 :     source_tli = Max(ControlFile_source.minRecoveryPointTLI,
                                361                 :                :                      ControlFile_source.checkPointCopy.ThisTimeLineID);
                                362                 :                : 
                                363                 :                :     /* Similarly for the target. */
                                364                 :             15 :     target_tli = Max(ControlFile_target.minRecoveryPointTLI,
                                365                 :                :                      ControlFile_target.checkPointCopy.ThisTimeLineID);
                                366                 :                : 
                                367                 :                :     /*
                                368                 :                :      * Find the common ancestor timeline between the clusters.
                                369                 :                :      *
                                370                 :                :      * If both clusters are already on the same timeline, there's nothing to
                                371                 :                :      * do.
                                372                 :                :      */
                                373         [ +  + ]:             15 :     if (target_tli == source_tli)
                                374                 :                :     {
 2350 peter@eisentraut.org      375                 :              1 :         pg_log_info("source and target cluster are on the same timeline");
 3565 peter_e@gmx.net           376                 :              1 :         rewind_needed = false;
 1738 heikki.linnakangas@i      377                 :              1 :         target_wal_endrec = 0;
                                378                 :                :     }
                                379                 :                :     else
                                380                 :                :     {
                                381                 :                :         XLogRecPtr  chkptendrec;
                                382                 :                :         TimeLineHistoryEntry *sourceHistory;
                                383                 :                :         int         sourceNentries;
                                384                 :                : 
                                385                 :                :         /*
                                386                 :                :          * Retrieve timelines for both source and target, and find the point
                                387                 :                :          * where they diverged.
                                388                 :                :          */
  926                           389                 :             14 :         sourceHistory = getTimelineHistory(source_tli, true, &sourceNentries);
                                390                 :             14 :         targetHistory = getTimelineHistory(target_tli, false, &targetNentries);
                                391                 :                : 
                                392                 :             14 :         findCommonAncestorTimeline(sourceHistory, sourceNentries,
                                393                 :                :                                    targetHistory, targetNentries,
                                394                 :                :                                    &divergerec, &lastcommontliIndex);
                                395                 :                : 
   61 alvherre@kurilemu.de      396                 :GNC          14 :         pg_log_info("servers diverged at WAL location %X/%08X on timeline %u",
                                397                 :                :                     LSN_FORMAT_ARGS(divergerec),
                                398                 :                :                     targetHistory[lastcommontliIndex].tli);
                                399                 :                : 
                                400                 :                :         /*
                                401                 :                :          * Don't need the source history anymore. The target history is still
                                402                 :                :          * needed by the routines in parsexlog.c, when we read the target WAL.
                                403                 :                :          */
  926 heikki.linnakangas@i      404                 :CBC          14 :         pfree(sourceHistory);
                                405                 :                : 
                                406                 :                : 
                                407                 :                :         /*
                                408                 :                :          * Determine the end-of-WAL on the target.
                                409                 :                :          *
                                410                 :                :          * The WAL ends at the last shutdown checkpoint, or at
                                411                 :                :          * minRecoveryPoint if it was a standby. (If we supported rewinding a
                                412                 :                :          * server that was not shut down cleanly, we would need to replay
                                413                 :                :          * until we reach the first invalid record, like crash recovery does.)
                                414                 :                :          */
                                415                 :                : 
                                416                 :                :         /* read the checkpoint record on the target to see where it ends. */
 1738                           417                 :             14 :         chkptendrec = readOneRecord(datadir_target,
                                418                 :                :                                     ControlFile_target.checkPoint,
                                419                 :                :                                     targetNentries - 1,
                                420                 :                :                                     restore_command);
                                421                 :                : 
                                422         [ +  + ]:             14 :         if (ControlFile_target.minRecoveryPoint > chkptendrec)
                                423                 :                :         {
                                424                 :              1 :             target_wal_endrec = ControlFile_target.minRecoveryPoint;
                                425                 :                :         }
                                426                 :                :         else
                                427                 :                :         {
                                428                 :             13 :             target_wal_endrec = chkptendrec;
                                429                 :                :         }
                                430                 :                : 
                                431                 :                :         /*
                                432                 :                :          * Check for the possibility that the target is in fact a direct
                                433                 :                :          * ancestor of the source. In that case, there is no divergent history
                                434                 :                :          * in the target that needs rewinding.
                                435                 :                :          */
                                436         [ +  - ]:             14 :         if (target_wal_endrec > divergerec)
                                437                 :                :         {
 3820                           438                 :             14 :             rewind_needed = true;
                                439                 :                :         }
                                440                 :                :         else
                                441                 :                :         {
                                442                 :                :             /* the last common checkpoint record must be part of target WAL */
 1738 heikki.linnakangas@i      443         [ #  # ]:UBC           0 :             Assert(target_wal_endrec == divergerec);
                                444                 :                : 
                                445                 :              0 :             rewind_needed = false;
                                446                 :                :         }
                                447                 :                :     }
                                448                 :                : 
 3820 heikki.linnakangas@i      449         [ +  + ]:CBC          15 :     if (!rewind_needed)
                                450                 :                :     {
 2350 peter@eisentraut.org      451                 :              1 :         pg_log_info("no rewind required");
 2164 michael@paquier.xyz       452   [ -  +  -  - ]:              1 :         if (writerecoveryconf && !dry_run)
 2168 alvherre@alvh.no-ip.      453                 :UBC           0 :             WriteRecoveryConfig(conn, datadir_target,
                                454                 :                :                                 GenerateRecoveryConfig(conn, NULL,
                                455                 :                :                                                        GetDbnameFromConnectionOptions(connstr_source)));
 3820 heikki.linnakangas@i      456                 :CBC           1 :         exit(0);
                                457                 :                :     }
                                458                 :                : 
                                459                 :                :     /* Initialize hashtable that tracks WAL files protected from removal */
  295 alvherre@alvh.no-ip.      460                 :             14 :     keepwal_init();
                                461                 :                : 
 1984 michael@paquier.xyz       462                 :             14 :     findLastCheckpoint(datadir_target, divergerec, lastcommontliIndex,
                                463                 :                :                        &chkptrec, &chkpttli, &chkptredo, restore_command);
   61 alvherre@kurilemu.de      464                 :GNC          14 :     pg_log_info("rewinding from last common checkpoint at %X/%08X on timeline %u",
                                465                 :                :                 LSN_FORMAT_ARGS(chkptrec), chkpttli);
                                466                 :                : 
                                467                 :                :     /* Initialize the hash table to track the status of each file */
 1767 heikki.linnakangas@i      468                 :CBC          14 :     filehash_init();
                                469                 :                : 
                                470                 :                :     /*
                                471                 :                :      * Collect information about all files in the both data directories.
                                472                 :                :      */
 2350 peter@eisentraut.org      473         [ -  + ]:             14 :     if (showprogress)
 2350 peter@eisentraut.org      474                 :UBC           0 :         pg_log_info("reading source file list");
 1767 heikki.linnakangas@i      475                 :CBC          14 :     source->traverse_files(source, &process_source_file);
                                476                 :                : 
 2350 peter@eisentraut.org      477         [ -  + ]:             14 :     if (showprogress)
 2350 peter@eisentraut.org      478                 :UBC           0 :         pg_log_info("reading target file list");
 3797 heikki.linnakangas@i      479                 :CBC          14 :     traverse_datadir(datadir_target, &process_target_file);
                                480                 :                : 
                                481                 :                :     /*
                                482                 :                :      * Read the target WAL from last checkpoint before the point of fork, to
                                483                 :                :      * extract all the pages that were modified on the target cluster after
                                484                 :                :      * the fork.
                                485                 :                :      */
 2350 peter@eisentraut.org      486         [ -  + ]:             14 :     if (showprogress)
 2350 peter@eisentraut.org      487                 :UBC           0 :         pg_log_info("reading WAL in target");
 3567 teodor@sigaev.ru          488                 :CBC          14 :     extractPageMap(datadir_target, chkptrec, lastcommontliIndex,
                                489                 :                :                    target_wal_endrec, restore_command);
                                490                 :                : 
                                491                 :                :     /*
                                492                 :                :      * We have collected all information we need from both systems. Decide
                                493                 :                :      * what to do with each file.
                                494                 :                :      */
 1767 heikki.linnakangas@i      495                 :             14 :     filemap = decide_file_actions();
 3820                           496         [ -  + ]:             14 :     if (showprogress)
 1767 heikki.linnakangas@i      497                 :UBC           0 :         calculate_totals(filemap);
                                498                 :                : 
                                499                 :                :     /* this is too verbose even for verbose mode */
 3820 heikki.linnakangas@i      500         [ +  - ]:CBC          14 :     if (debug)
 1767                           501                 :             14 :         print_filemap(filemap);
                                502                 :                : 
                                503                 :                :     /*
                                504                 :                :      * Ok, we're ready to start copying things over.
                                505                 :                :      */
 3820                           506         [ -  + ]:             14 :     if (showprogress)
                                507                 :                :     {
 2350 peter@eisentraut.org      508                 :UBC           0 :         pg_log_info("need to copy %lu MB (total source directory size is %lu MB)",
                                509                 :                :                     (unsigned long) (filemap->fetch_size / (1024 * 1024)),
                                510                 :                :                     (unsigned long) (filemap->total_size / (1024 * 1024)));
                                511                 :                : 
 3820 heikki.linnakangas@i      512                 :              0 :         fetch_size = filemap->fetch_size;
                                513                 :              0 :         fetch_done = 0;
                                514                 :                :     }
                                515                 :                : 
                                516                 :                :     /*
                                517                 :                :      * We have now collected all the information we need from both systems,
                                518                 :                :      * and we are ready to start modifying the target directory.
                                519                 :                :      *
                                520                 :                :      * This is the point of no return. Once we start copying things, there is
                                521                 :                :      * no turning back!
                                522                 :                :      */
 1767 heikki.linnakangas@i      523                 :CBC          14 :     perform_rewind(filemap, source, chkptrec, chkpttli, chkptredo);
                                524                 :                : 
                                525         [ -  + ]:             13 :     if (showprogress)
 1767 heikki.linnakangas@i      526                 :UBC           0 :         pg_log_info("syncing target data directory");
 1767 heikki.linnakangas@i      527                 :CBC          13 :     sync_target_dir();
                                528                 :                : 
                                529                 :                :     /* Also update the standby configuration, if requested. */
                                530   [ +  +  +  - ]:             13 :     if (writerecoveryconf && !dry_run)
                                531                 :              5 :         WriteRecoveryConfig(conn, datadir_target,
                                532                 :                :                             GenerateRecoveryConfig(conn, NULL,
                                533                 :                :                                                    GetDbnameFromConnectionOptions(connstr_source)));
                                534                 :                : 
                                535                 :                :     /* don't need the source connection anymore */
                                536                 :             13 :     source->destroy(source);
                                537         [ +  + ]:             13 :     if (conn)
                                538                 :                :     {
                                539                 :              6 :         PQfinish(conn);
                                540                 :              6 :         conn = NULL;
                                541                 :                :     }
                                542                 :                : 
                                543                 :             13 :     pg_log_info("Done!");
                                544                 :                : 
                                545                 :             13 :     return 0;
                                546                 :                : }
                                547                 :                : 
                                548                 :                : /*
                                549                 :                :  * Perform the rewind.
                                550                 :                :  *
                                551                 :                :  * We have already collected all the information we need from the
                                552                 :                :  * target and the source.
                                553                 :                :  */
                                554                 :                : static void
                                555                 :             14 : perform_rewind(filemap_t *filemap, rewind_source *source,
                                556                 :                :                XLogRecPtr chkptrec,
                                557                 :                :                TimeLineID chkpttli,
                                558                 :                :                XLogRecPtr chkptredo)
                                559                 :                : {
                                560                 :                :     XLogRecPtr  endrec;
                                561                 :                :     TimeLineID  endtli;
                                562                 :                :     ControlFileData ControlFile_new;
                                563                 :                :     size_t      size;
                                564                 :                :     char       *buffer;
                                565                 :                : 
                                566                 :                :     /*
                                567                 :                :      * Execute the actions in the file map, fetching data from the source
                                568                 :                :      * system as needed.
                                569                 :                :      */
                                570         [ +  + ]:          15930 :     for (int i = 0; i < filemap->nentries; i++)
                                571                 :                :     {
                                572                 :          15917 :         file_entry_t *entry = filemap->entries[i];
                                573                 :                : 
                                574                 :                :         /*
                                575                 :                :          * If this is a relation file, copy the modified blocks.
                                576                 :                :          *
                                577                 :                :          * This is in addition to any other changes.
                                578                 :                :          */
                                579         [ +  + ]:          15917 :         if (entry->target_pages_to_overwrite.bitmapsize > 0)
                                580                 :                :         {
                                581                 :                :             datapagemap_iterator_t *iter;
                                582                 :                :             BlockNumber blkno;
                                583                 :                :             off_t       offset;
                                584                 :                : 
                                585                 :            421 :             iter = datapagemap_iterate(&entry->target_pages_to_overwrite);
                                586         [ +  + ]:           2151 :             while (datapagemap_next(iter, &blkno))
                                587                 :                :             {
                                588                 :           1730 :                 offset = blkno * BLCKSZ;
                                589                 :           1730 :                 source->queue_fetch_range(source, entry->path, offset, BLCKSZ);
                                590                 :                :             }
                                591                 :            421 :             pg_free(iter);
                                592                 :                :         }
                                593                 :                : 
                                594   [ +  +  +  +  :          15917 :         switch (entry->action)
                                        +  +  -  - ]
                                595                 :                :         {
                                596                 :          10747 :             case FILE_ACTION_NONE:
                                597                 :                :                 /* nothing else to do */
                                598                 :          10747 :                 break;
                                599                 :                : 
                                600                 :           4437 :             case FILE_ACTION_COPY:
 1250 dgustafsson@postgres      601                 :           4437 :                 source->queue_fetch_file(source, entry->path, entry->source_size);
 1767 heikki.linnakangas@i      602                 :           4436 :                 break;
                                603                 :                : 
                                604                 :              4 :             case FILE_ACTION_TRUNCATE:
                                605                 :              4 :                 truncate_target_file(entry->path, entry->source_size);
                                606                 :              4 :                 break;
                                607                 :                : 
                                608                 :              5 :             case FILE_ACTION_COPY_TAIL:
                                609                 :              5 :                 source->queue_fetch_range(source, entry->path,
                                610                 :              5 :                                           entry->target_size,
                                611                 :              5 :                                           entry->source_size - entry->target_size);
                                612                 :              5 :                 break;
                                613                 :                : 
                                614                 :            715 :             case FILE_ACTION_REMOVE:
                                615                 :            715 :                 remove_target(entry);
                                616                 :            715 :                 break;
                                617                 :                : 
                                618                 :              9 :             case FILE_ACTION_CREATE:
                                619                 :              9 :                 create_target(entry);
                                620                 :              9 :                 break;
                                621                 :                : 
 1767 heikki.linnakangas@i      622                 :UBC           0 :             case FILE_ACTION_UNDECIDED:
 1576 peter@eisentraut.org      623                 :              0 :                 pg_fatal("no action decided for file \"%s\"", entry->path);
                                624                 :                :                 break;
                                625                 :                :         }
                                626                 :                :     }
                                627                 :                : 
                                628                 :                :     /* Complete any remaining range-fetches that we queued up above. */
 1767 heikki.linnakangas@i      629                 :CBC          13 :     source->finish_fetch(source);
                                630                 :                : 
                                631                 :             13 :     close_target_file();
                                632                 :                : 
 3820                           633                 :             13 :     progress_report(true);
                                634                 :                : 
                                635                 :                :     /*
                                636                 :                :      * Fetch the control file from the source last. This ensures that the
                                637                 :                :      * minRecoveryPoint is up-to-date.
                                638                 :                :      */
  152 fujii@postgresql.org      639                 :             13 :     buffer = source->fetch_file(source, XLOG_CONTROL_FILE, &size);
 1759 heikki.linnakangas@i      640                 :             13 :     digestControlFile(&ControlFile_source_after, buffer, size);
                                641                 :             13 :     pg_free(buffer);
                                642                 :                : 
                                643                 :                :     /*
                                644                 :                :      * Sanity check: If the source is a local system, the control file should
                                645                 :                :      * not have changed since we started.
                                646                 :                :      *
                                647                 :                :      * XXX: We assume it hasn't been modified, but actually, what could go
                                648                 :                :      * wrong? The logic handles a libpq source that's modified concurrently,
                                649                 :                :      * why not a local datadir?
                                650                 :                :      */
                                651         [ +  + ]:             13 :     if (datadir_source &&
                                652         [ -  + ]:              7 :         memcmp(&ControlFile_source, &ControlFile_source_after,
                                653                 :                :                sizeof(ControlFileData)) != 0)
                                654                 :                :     {
 1759 heikki.linnakangas@i      655                 :UBC           0 :         pg_fatal("source system was modified while pg_rewind was running");
                                656                 :                :     }
                                657                 :                : 
 2350 peter@eisentraut.org      658         [ -  + ]:CBC          13 :     if (showprogress)
 2350 peter@eisentraut.org      659                 :UBC           0 :         pg_log_info("creating backup label and updating control file");
                                660                 :                : 
                                661                 :                :     /*
                                662                 :                :      * Create a backup label file, to tell the target where to begin the WAL
                                663                 :                :      * replay. Normally, from the last common checkpoint between the source
                                664                 :                :      * and the target. But if the source is a standby server, it's possible
                                665                 :                :      * that the last common checkpoint is *after* the standby's restartpoint.
                                666                 :                :      * That implies that the source server has applied the checkpoint record,
                                667                 :                :      * but hasn't performed a corresponding restartpoint yet. Make sure we
                                668                 :                :      * start at the restartpoint's redo point in that case.
                                669                 :                :      *
                                670                 :                :      * Use the old version of the source's control file for this. The server
                                671                 :                :      * might have finished the restartpoint after we started copying files,
                                672                 :                :      * but we must begin from the redo point at the time that started copying.
                                673                 :                :      */
 1759 heikki.linnakangas@i      674         [ +  + ]:CBC          13 :     if (ControlFile_source.checkPointCopy.redo < chkptredo)
                                675                 :                :     {
                                676                 :              2 :         chkptredo = ControlFile_source.checkPointCopy.redo;
                                677                 :              2 :         chkpttli = ControlFile_source.checkPointCopy.ThisTimeLineID;
                                678                 :              2 :         chkptrec = ControlFile_source.checkPoint;
                                679                 :                :     }
                                680                 :             13 :     createBackupLabel(chkptredo, chkpttli, chkptrec);
                                681                 :                : 
                                682                 :                :     /*
                                683                 :                :      * Update control file of target, to tell the target how far it must
                                684                 :                :      * replay the WAL (minRecoveryPoint).
                                685                 :                :      */
 3820                           686         [ +  + ]:             13 :     if (connstr_source)
                                687                 :                :     {
                                688                 :                :         /*
                                689                 :                :          * The source is a live server. Like in an online backup, it's
                                690                 :                :          * important that we recover all the WAL that was generated while we
                                691                 :                :          * were copying files.
                                692                 :                :          */
 1759                           693         [ +  + ]:              6 :         if (ControlFile_source_after.state == DB_IN_ARCHIVE_RECOVERY)
                                694                 :                :         {
                                695                 :                :             /*
                                696                 :                :              * Source is a standby server. We must replay to its
                                697                 :                :              * minRecoveryPoint.
                                698                 :                :              */
                                699                 :              1 :             endrec = ControlFile_source_after.minRecoveryPoint;
                                700                 :              1 :             endtli = ControlFile_source_after.minRecoveryPointTLI;
                                701                 :                :         }
                                702                 :                :         else
                                703                 :                :         {
                                704                 :                :             /*
                                705                 :                :              * Source is a production, non-standby, server. We must replay to
                                706                 :                :              * the last WAL insert location.
                                707                 :                :              */
                                708         [ -  + ]:              5 :             if (ControlFile_source_after.state != DB_IN_PRODUCTION)
 1759 heikki.linnakangas@i      709                 :UBC           0 :                 pg_fatal("source system was in unexpected state at end of rewind");
                                710                 :                : 
 1759 heikki.linnakangas@i      711                 :CBC           5 :             endrec = source->get_current_wal_insert_lsn(source);
  926                           712                 :              5 :             endtli = Max(ControlFile_source_after.checkPointCopy.ThisTimeLineID,
                                713                 :                :                          ControlFile_source_after.minRecoveryPointTLI);
                                714                 :                :         }
                                715                 :                :     }
                                716                 :                :     else
                                717                 :                :     {
                                718                 :                :         /*
                                719                 :                :          * Source is a local data directory. It should've shut down cleanly,
                                720                 :                :          * and we must replay to the latest shutdown checkpoint.
                                721                 :                :          */
 1759                           722                 :              7 :         endrec = ControlFile_source_after.checkPoint;
                                723                 :              7 :         endtli = ControlFile_source_after.checkPointCopy.ThisTimeLineID;
                                724                 :                :     }
                                725                 :                : 
                                726                 :             13 :     memcpy(&ControlFile_new, &ControlFile_source_after, sizeof(ControlFileData));
 3820                           727                 :             13 :     ControlFile_new.minRecoveryPoint = endrec;
                                728                 :             13 :     ControlFile_new.minRecoveryPointTLI = endtli;
                                729                 :             13 :     ControlFile_new.state = DB_IN_ARCHIVE_RECOVERY;
 2164 michael@paquier.xyz       730         [ +  + ]:             13 :     if (!dry_run)
                                731                 :             12 :         update_controlfile(datadir_target, &ControlFile_new, do_sync);
 3820 heikki.linnakangas@i      732                 :             13 : }
                                733                 :                : 
                                734                 :                : static void
                                735                 :             17 : sanityChecks(void)
                                736                 :                : {
                                737                 :                :     /* TODO Check that there's no backup_label in either cluster */
                                738                 :                : 
                                739                 :                :     /* Check system_identifier match */
                                740         [ -  + ]:             17 :     if (ControlFile_target.system_identifier != ControlFile_source.system_identifier)
 2350 peter@eisentraut.org      741                 :UBC           0 :         pg_fatal("source and target clusters are from different systems");
                                742                 :                : 
                                743                 :                :     /* check version */
 3820 heikki.linnakangas@i      744         [ +  - ]:CBC          17 :     if (ControlFile_target.pg_control_version != PG_CONTROL_VERSION ||
                                745         [ +  - ]:             17 :         ControlFile_source.pg_control_version != PG_CONTROL_VERSION ||
                                746         [ +  - ]:             17 :         ControlFile_target.catalog_version_no != CATALOG_VERSION_NO ||
                                747         [ -  + ]:             17 :         ControlFile_source.catalog_version_no != CATALOG_VERSION_NO)
                                748                 :                :     {
 2350 peter@eisentraut.org      749                 :UBC           0 :         pg_fatal("clusters are not compatible with this version of pg_rewind");
                                750                 :                :     }
                                751                 :                : 
                                752                 :                :     /*
                                753                 :                :      * Target cluster need to use checksums or hint bit wal-logging, this to
                                754                 :                :      * prevent from data corruption that could occur because of hint bits.
                                755                 :                :      */
 3820 heikki.linnakangas@i      756         [ -  + ]:CBC          17 :     if (ControlFile_target.data_checksum_version != PG_DATA_CHECKSUM_VERSION &&
 3820 heikki.linnakangas@i      757         [ #  # ]:UBC           0 :         !ControlFile_target.wal_log_hints)
                                758                 :                :     {
 2350 peter@eisentraut.org      759                 :              0 :         pg_fatal("target server needs to use either data checksums or \"wal_log_hints = on\"");
                                760                 :                :     }
                                761                 :                : 
                                762                 :                :     /*
                                763                 :                :      * Target cluster better not be running. This doesn't guard against
                                764                 :                :      * someone starting the cluster concurrently. Also, this is probably more
                                765                 :                :      * strict than necessary; it's OK if the target node was not shut down
                                766                 :                :      * cleanly, as long as it isn't running at the moment.
                                767                 :                :      */
 3567 teodor@sigaev.ru          768         [ +  + ]:CBC          17 :     if (ControlFile_target.state != DB_SHUTDOWNED &&
                                769         [ +  + ]:              2 :         ControlFile_target.state != DB_SHUTDOWNED_IN_RECOVERY)
 2350 peter@eisentraut.org      770                 :              1 :         pg_fatal("target server must be shut down cleanly");
                                771                 :                : 
                                772                 :                :     /*
                                773                 :                :      * When the source is a data directory, also require that the source
                                774                 :                :      * server is shut down. There isn't any very strong reason for this
                                775                 :                :      * limitation, but better safe than sorry.
                                776                 :                :      */
 3567 teodor@sigaev.ru          777         [ +  + ]:             16 :     if (datadir_source &&
                                778         [ +  + ]:             10 :         ControlFile_source.state != DB_SHUTDOWNED &&
                                779         [ +  + ]:              2 :         ControlFile_source.state != DB_SHUTDOWNED_IN_RECOVERY)
 2350 peter@eisentraut.org      780                 :              1 :         pg_fatal("source data directory must be shut down cleanly");
 3820 heikki.linnakangas@i      781                 :             15 : }
                                782                 :                : 
                                783                 :                : /*
                                784                 :                :  * Print a progress report based on the fetch_size and fetch_done variables.
                                785                 :                :  *
                                786                 :                :  * Progress report is written at maximum once per second, except that the
                                787                 :                :  * last progress report is always printed.
                                788                 :                :  *
                                789                 :                :  * If finished is set to true, this is the last progress report. The cursor
                                790                 :                :  * is moved to the next line.
                                791                 :                :  */
                                792                 :                : void
 1846                           793                 :          62043 : progress_report(bool finished)
                                794                 :                : {
                                795                 :                :     static pg_time_t last_progress_report = 0;
                                796                 :                :     int         percent;
                                797                 :                :     char        fetch_done_str[32];
                                798                 :                :     char        fetch_size_str[32];
                                799                 :                :     pg_time_t   now;
                                800                 :                : 
 2307 tgl@sss.pgh.pa.us         801         [ +  - ]:          62043 :     if (!showprogress)
                                802                 :          62043 :         return;
                                803                 :                : 
 2307 tgl@sss.pgh.pa.us         804                 :UBC           0 :     now = time(NULL);
 1846 heikki.linnakangas@i      805   [ #  #  #  # ]:              0 :     if (now == last_progress_report && !finished)
 2307 tgl@sss.pgh.pa.us         806                 :              0 :         return;                 /* Max once per second */
                                807                 :                : 
                                808                 :              0 :     last_progress_report = now;
                                809         [ #  # ]:              0 :     percent = fetch_size ? (int) ((fetch_done) * 100 / fetch_size) : 0;
                                810                 :                : 
                                811                 :                :     /*
                                812                 :                :      * Avoid overflowing past 100% or the full size. This may make the total
                                813                 :                :      * size number change as we approach the end of the backup (the estimate
                                814                 :                :      * will always be wrong if WAL is included), but that's better than having
                                815                 :                :      * the done column be bigger than the total.
                                816                 :                :      */
                                817         [ #  # ]:              0 :     if (percent > 100)
                                818                 :              0 :         percent = 100;
                                819         [ #  # ]:              0 :     if (fetch_done > fetch_size)
                                820                 :              0 :         fetch_size = fetch_done;
                                821                 :                : 
 1452 peter@eisentraut.org      822                 :              0 :     snprintf(fetch_done_str, sizeof(fetch_done_str), UINT64_FORMAT,
                                823                 :                :              fetch_done / 1024);
                                824                 :              0 :     snprintf(fetch_size_str, sizeof(fetch_size_str), UINT64_FORMAT,
                                825                 :                :              fetch_size / 1024);
                                826                 :                : 
 2307 tgl@sss.pgh.pa.us         827                 :              0 :     fprintf(stderr, _("%*s/%s kB (%d%%) copied"),
 2299                           828                 :              0 :             (int) strlen(fetch_size_str), fetch_done_str, fetch_size_str,
                                829                 :                :             percent);
                                830                 :                : 
                                831                 :                :     /*
                                832                 :                :      * Stay on the same line if reporting to a terminal and we're not done
                                833                 :                :      * yet.
                                834                 :                :      */
 1845 heikki.linnakangas@i      835   [ #  #  #  # ]:              0 :     fputc((!finished && isatty(fileno(stderr))) ? '\r' : '\n', stderr);
                                836                 :                : }
                                837                 :                : 
                                838                 :                : /*
                                839                 :                :  * Find minimum from two WAL locations assuming InvalidXLogRecPtr means
                                840                 :                :  * infinity as src/include/access/timeline.h states. This routine should
                                841                 :                :  * be used only when comparing WAL locations related to history files.
                                842                 :                :  */
                                843                 :                : static XLogRecPtr
 3567 teodor@sigaev.ru          844                 :CBC          14 : MinXLogRecPtr(XLogRecPtr a, XLogRecPtr b)
                                845                 :                : {
                                846         [ +  + ]:             14 :     if (XLogRecPtrIsInvalid(a))
                                847                 :              1 :         return b;
                                848         [ +  - ]:             13 :     else if (XLogRecPtrIsInvalid(b))
                                849                 :             13 :         return a;
                                850                 :                :     else
 3567 teodor@sigaev.ru          851                 :UBC           0 :         return Min(a, b);
                                852                 :                : }
                                853                 :                : 
                                854                 :                : /*
                                855                 :                :  * Retrieve timeline history for the source or target system.
                                856                 :                :  */
                                857                 :                : static TimeLineHistoryEntry *
  926 heikki.linnakangas@i      858                 :CBC          28 : getTimelineHistory(TimeLineID tli, bool is_source, int *nentries)
                                859                 :                : {
                                860                 :                :     TimeLineHistoryEntry *history;
                                861                 :                : 
                                862                 :                :     /*
                                863                 :                :      * Timeline 1 does not have a history file, so there is no need to check
                                864                 :                :      * and fake an entry with infinite start and end positions.
                                865                 :                :      */
 3567 teodor@sigaev.ru          866         [ +  + ]:             28 :     if (tli == 1)
                                867                 :                :     {
                                868                 :             13 :         history = (TimeLineHistoryEntry *) pg_malloc(sizeof(TimeLineHistoryEntry));
                                869                 :             13 :         history->tli = tli;
                                870                 :             13 :         history->begin = history->end = InvalidXLogRecPtr;
                                871                 :             13 :         *nentries = 1;
                                872                 :                :     }
                                873                 :                :     else
                                874                 :                :     {
                                875                 :                :         char        path[MAXPGPATH];
                                876                 :                :         char       *histfile;
                                877                 :                : 
                                878                 :             15 :         TLHistoryFilePath(path, tli);
                                879                 :                : 
                                880                 :                :         /* Get history file from appropriate source */
  926 heikki.linnakangas@i      881         [ +  + ]:             15 :         if (is_source)
 1767                           882                 :             13 :             histfile = source->fetch_file(source, path, NULL);
                                883                 :                :         else
  926                           884                 :              2 :             histfile = slurpFile(datadir_target, path, NULL);
                                885                 :                : 
 3567 teodor@sigaev.ru          886                 :             15 :         history = rewind_parseTimeLineHistory(histfile, tli, nentries);
 3820 heikki.linnakangas@i      887                 :             15 :         pg_free(histfile);
                                888                 :                :     }
                                889                 :                : 
                                890                 :                :     /* In debugging mode, print what we read */
 3567 teodor@sigaev.ru          891         [ +  - ]:             28 :     if (debug)
                                892                 :                :     {
                                893                 :                :         int         i;
                                894                 :                : 
  926 heikki.linnakangas@i      895         [ +  + ]:             28 :         if (is_source)
 2350 peter@eisentraut.org      896         [ +  - ]:             14 :             pg_log_debug("Source timeline history:");
                                897                 :                :         else
  926 heikki.linnakangas@i      898         [ +  - ]:             14 :             pg_log_debug("Target timeline history:");
                                899                 :                : 
  394                           900         [ +  + ]:             72 :         for (i = 0; i < *nentries; i++)
                                901                 :                :         {
                                902                 :                :             TimeLineHistoryEntry *entry;
                                903                 :                : 
 3567 teodor@sigaev.ru          904                 :             44 :             entry = &history[i];
   61 alvherre@kurilemu.de      905         [ +  - ]:GNC          44 :             pg_log_debug("%u: %X/%08X - %X/%08X", entry->tli,
                                906                 :                :                          LSN_FORMAT_ARGS(entry->begin),
                                907                 :                :                          LSN_FORMAT_ARGS(entry->end));
                                908                 :                :         }
                                909                 :                :     }
                                910                 :                : 
 3567 teodor@sigaev.ru          911                 :CBC          28 :     return history;
                                912                 :                : }
                                913                 :                : 
                                914                 :                : /*
                                915                 :                :  * Determine the TLI of the last common timeline in the timeline history of
                                916                 :                :  * two clusters. *tliIndex is set to the index of last common timeline in
                                917                 :                :  * the arrays, and *recptr is set to the position where the timeline history
                                918                 :                :  * diverged (ie. the first WAL record that's not the same in both clusters).
                                919                 :                :  */
                                920                 :                : static void
  926 heikki.linnakangas@i      921                 :             14 : findCommonAncestorTimeline(TimeLineHistoryEntry *a_history, int a_nentries,
                                922                 :                :                            TimeLineHistoryEntry *b_history, int b_nentries,
                                923                 :                :                            XLogRecPtr *recptr, int *tliIndex)
                                924                 :                : {
                                925                 :                :     int         i,
                                926                 :                :                 n;
                                927                 :                : 
                                928                 :                :     /*
                                929                 :                :      * Trace the history forward, until we hit the timeline diverge. It may
                                930                 :                :      * still be possible that the source and target nodes used the same
                                931                 :                :      * timeline number in their history but with different start position
                                932                 :                :      * depending on the history files that each node has fetched in previous
                                933                 :                :      * recovery processes. Hence check the start position of the new timeline
                                934                 :                :      * as well and move down by one extra timeline entry if they do not match.
                                935                 :                :      */
                                936                 :             14 :     n = Min(a_nentries, b_nentries);
 3567 teodor@sigaev.ru          937         [ +  + ]:             29 :     for (i = 0; i < n; i++)
                                938                 :                :     {
  926 heikki.linnakangas@i      939         [ +  - ]:             15 :         if (a_history[i].tli != b_history[i].tli ||
                                940         [ +  - ]:             15 :             a_history[i].begin != b_history[i].begin)
                                941                 :                :             break;
                                942                 :                :     }
                                943                 :                : 
 3567 teodor@sigaev.ru          944         [ +  - ]:             14 :     if (i > 0)
                                945                 :                :     {
                                946                 :             14 :         i--;
  926 heikki.linnakangas@i      947                 :             14 :         *recptr = MinXLogRecPtr(a_history[i].end, b_history[i].end);
 3567 teodor@sigaev.ru          948                 :             14 :         *tliIndex = i;
                                949                 :             14 :         return;
                                950                 :                :     }
                                951                 :                :     else
                                952                 :                :     {
 2350 peter@eisentraut.org      953                 :UBC           0 :         pg_fatal("could not find common ancestor of the source and target cluster's timelines");
                                954                 :                :     }
                                955                 :                : }
                                956                 :                : 
                                957                 :                : 
                                958                 :                : /*
                                959                 :                :  * Create a backup_label file that forces recovery to begin at the last common
                                960                 :                :  * checkpoint.
                                961                 :                :  */
                                962                 :                : static void
 3820 heikki.linnakangas@i      963                 :CBC          13 : createBackupLabel(XLogRecPtr startpoint, TimeLineID starttli, XLogRecPtr checkpointloc)
                                964                 :                : {
                                965                 :                :     XLogSegNo   startsegno;
                                966                 :                :     time_t      stamp_time;
                                967                 :                :     char        strfbuf[128];
                                968                 :                :     char        xlogfilename[MAXFNAMELEN];
                                969                 :                :     struct tm  *tmp;
                                970                 :                :     char        buf[1000];
                                971                 :                :     int         len;
                                972                 :                : 
 2909 andres@anarazel.de        973                 :             13 :     XLByteToSeg(startpoint, startsegno, WalSegSz);
                                974                 :             13 :     XLogFileName(xlogfilename, starttli, startsegno, WalSegSz);
                                975                 :                : 
                                976                 :                :     /*
                                977                 :                :      * Construct backup label file
                                978                 :                :      */
 3820 heikki.linnakangas@i      979                 :             13 :     stamp_time = time(NULL);
                                980                 :             13 :     tmp = localtime(&stamp_time);
                                981                 :             13 :     strftime(strfbuf, sizeof(strfbuf), "%Y-%m-%d %H:%M:%S %Z", tmp);
                                982                 :                : 
                                983                 :             13 :     len = snprintf(buf, sizeof(buf),
                                984                 :                :                    "START WAL LOCATION: %X/%08X (file %s)\n"
                                985                 :                :                    "CHECKPOINT LOCATION: %X/%08X\n"
                                986                 :                :                    "BACKUP METHOD: pg_rewind\n"
                                987                 :                :                    "BACKUP FROM: standby\n"
                                988                 :                :                    "START TIME: %s\n",
                                989                 :                :     /* omit LABEL: line */
 1656 peter@eisentraut.org      990                 :             13 :                    LSN_FORMAT_ARGS(startpoint), xlogfilename,
                                991                 :             13 :                    LSN_FORMAT_ARGS(checkpointloc),
                                992                 :                :                    strfbuf);
 3820 heikki.linnakangas@i      993         [ -  + ]:             13 :     if (len >= sizeof(buf))
 2350 peter@eisentraut.org      994                 :UBC           0 :         pg_fatal("backup label buffer too small");    /* shouldn't happen */
                                995                 :                : 
                                996                 :                :     /* TODO: move old file out of the way, if any. */
 2999 tgl@sss.pgh.pa.us         997                 :CBC          13 :     open_target_file("backup_label", true); /* BACKUP_LABEL_FILE */
 3820 heikki.linnakangas@i      998                 :             13 :     write_target_range(buf, 0, len);
 3450 andres@anarazel.de        999                 :             13 :     close_target_file();
 3820 heikki.linnakangas@i     1000                 :             13 : }
                               1001                 :                : 
                               1002                 :                : /*
                               1003                 :                :  * Check CRC of control file
                               1004                 :                :  */
                               1005                 :                : static void
                               1006                 :             57 : checkControlFile(ControlFileData *ControlFile)
                               1007                 :                : {
                               1008                 :                :     pg_crc32c   crc;
                               1009                 :                : 
                               1010                 :                :     /* Calculate CRC */
                               1011                 :             57 :     INIT_CRC32C(crc);
  198 peter@eisentraut.org     1012                 :             57 :     COMP_CRC32C(crc, ControlFile, offsetof(ControlFileData, crc));
 3820 heikki.linnakangas@i     1013                 :             57 :     FIN_CRC32C(crc);
                               1014                 :                : 
                               1015                 :                :     /* And simply compare it */
                               1016         [ -  + ]:             57 :     if (!EQ_CRC32C(crc, ControlFile->crc))
 2350 peter@eisentraut.org     1017                 :UBC           0 :         pg_fatal("unexpected control file CRC");
 3820 heikki.linnakangas@i     1018                 :CBC          57 : }
                               1019                 :                : 
                               1020                 :                : /*
                               1021                 :                :  * Verify control file contents in the buffer 'content', and copy it to
                               1022                 :                :  * *ControlFile.
                               1023                 :                :  */
                               1024                 :                : static void
 1767                          1025                 :             57 : digestControlFile(ControlFileData *ControlFile, const char *content,
                               1026                 :                :                   size_t size)
                               1027                 :                : {
 2971 tgl@sss.pgh.pa.us        1028         [ -  + ]:             57 :     if (size != PG_CONTROL_FILE_SIZE)
 2350 peter@eisentraut.org     1029                 :UBC           0 :         pg_fatal("unexpected control file size %d, expected %d",
                               1030                 :                :                  (int) size, PG_CONTROL_FILE_SIZE);
                               1031                 :                : 
 1767 heikki.linnakangas@i     1032                 :CBC          57 :     memcpy(ControlFile, content, sizeof(ControlFileData));
                               1033                 :                : 
                               1034                 :                :     /* set and validate WalSegSz */
 2909 andres@anarazel.de       1035                 :             57 :     WalSegSz = ControlFile->xlog_seg_size;
                               1036                 :                : 
                               1037   [ +  -  +  -  :             57 :     if (!IsValidWalSegSize(WalSegSz))
                                        +  -  -  + ]
                               1038                 :                :     {
  740 peter@eisentraut.org     1039                 :UBC           0 :         pg_log_error(ngettext("invalid WAL segment size in control file (%d byte)",
                               1040                 :                :                               "invalid WAL segment size in control file (%d bytes)",
                               1041                 :                :                               WalSegSz),
                               1042                 :                :                      WalSegSz);
                               1043                 :              0 :         pg_log_error_detail("The WAL segment size must be a power of two between 1 MB and 1 GB.");
                               1044                 :              0 :         exit(1);
                               1045                 :                :     }
                               1046                 :                : 
                               1047                 :                :     /* Additional checks on control file */
 3820 heikki.linnakangas@i     1048                 :CBC          57 :     checkControlFile(ControlFile);
                               1049                 :             57 : }
                               1050                 :                : 
                               1051                 :                : /*
                               1052                 :                :  * Get value of GUC parameter restore_command from the target cluster.
                               1053                 :                :  *
                               1054                 :                :  * This uses a logic based on "postgres -C" to get the value from the
                               1055                 :                :  * cluster.
                               1056                 :                :  */
                               1057                 :                : static void
 1984 michael@paquier.xyz      1058                 :             18 : getRestoreCommand(const char *argv0)
                               1059                 :                : {
                               1060                 :                :     int         rc;
                               1061                 :                :     char        postgres_exec_path[MAXPGPATH];
                               1062                 :                :     PQExpBuffer postgres_cmd;
                               1063                 :                : 
                               1064         [ +  + ]:             18 :     if (!restore_wal)
                               1065                 :             17 :         return;
                               1066                 :                : 
                               1067                 :                :     /* find postgres executable */
                               1068                 :              1 :     rc = find_other_exec(argv0, "postgres",
                               1069                 :                :                          PG_BACKEND_VERSIONSTR,
                               1070                 :                :                          postgres_exec_path);
                               1071                 :                : 
                               1072         [ -  + ]:              1 :     if (rc < 0)
                               1073                 :                :     {
                               1074                 :                :         char        full_path[MAXPGPATH];
                               1075                 :                : 
 1984 michael@paquier.xyz      1076         [ #  # ]:UBC           0 :         if (find_my_exec(argv0, full_path) < 0)
                               1077                 :              0 :             strlcpy(full_path, progname, sizeof(full_path));
                               1078                 :                : 
                               1079         [ #  # ]:              0 :         if (rc == -1)
 1247 tgl@sss.pgh.pa.us        1080                 :              0 :             pg_fatal("program \"%s\" is needed by %s but was not found in the same directory as \"%s\"",
                               1081                 :                :                      "postgres", progname, full_path);
                               1082                 :                :         else
                               1083                 :              0 :             pg_fatal("program \"%s\" was found by \"%s\" but was not the same version as %s",
                               1084                 :                :                      "postgres", full_path, progname);
                               1085                 :                :     }
                               1086                 :                : 
                               1087                 :                :     /*
                               1088                 :                :      * Build a command able to retrieve the value of GUC parameter
                               1089                 :                :      * restore_command, if set.
                               1090                 :                :      */
 1285 michael@paquier.xyz      1091                 :CBC           1 :     postgres_cmd = createPQExpBuffer();
                               1092                 :                : 
                               1093                 :                :     /* path to postgres, properly quoted */
                               1094                 :              1 :     appendShellString(postgres_cmd, postgres_exec_path);
                               1095                 :                : 
                               1096                 :                :     /* add -D switch, with properly quoted data directory */
                               1097                 :              1 :     appendPQExpBufferStr(postgres_cmd, " -D ");
                               1098                 :              1 :     appendShellString(postgres_cmd, datadir_target);
                               1099                 :                : 
                               1100                 :                :     /* add custom configuration file only if requested */
 1248                          1101         [ +  - ]:              1 :     if (config_file != NULL)
                               1102                 :                :     {
                               1103                 :              1 :         appendPQExpBufferStr(postgres_cmd, " -c config_file=");
                               1104                 :              1 :         appendShellString(postgres_cmd, config_file);
                               1105                 :                :     }
                               1106                 :                : 
                               1107                 :                :     /* add -C switch, for restore_command */
 1285                          1108                 :              1 :     appendPQExpBufferStr(postgres_cmd, " -C restore_command");
                               1109                 :                : 
  575 dgustafsson@postgres     1110                 :              1 :     restore_command = pipe_read_line(postgres_cmd->data);
                               1111         [ -  + ]:              1 :     if (restore_command == NULL)
  367 michael@paquier.xyz      1112                 :UBC           0 :         pg_fatal("could not read \"restore_command\" from target cluster");
                               1113                 :                : 
  575 dgustafsson@postgres     1114                 :CBC           1 :     (void) pg_strip_crlf(restore_command);
                               1115                 :                : 
                               1116         [ -  + ]:              1 :     if (strcmp(restore_command, "") == 0)
  477 peter@eisentraut.org     1117                 :UBC           0 :         pg_fatal("\"restore_command\" is not set in the target cluster");
                               1118                 :                : 
  477 peter@eisentraut.org     1119         [ +  - ]:CBC           1 :     pg_log_debug("using for rewind \"restore_command = \'%s\'\"",
                               1120                 :                :                  restore_command);
                               1121                 :                : 
 1285 michael@paquier.xyz      1122                 :              1 :     destroyPQExpBuffer(postgres_cmd);
                               1123                 :                : }
                               1124                 :                : 
                               1125                 :                : 
                               1126                 :                : /*
                               1127                 :                :  * Ensure clean shutdown of target instance by launching single-user mode
                               1128                 :                :  * postgres to do crash recovery.
                               1129                 :                :  */
                               1130                 :                : static void
 2171 alvherre@alvh.no-ip.     1131                 :             10 : ensureCleanShutdown(const char *argv0)
                               1132                 :                : {
                               1133                 :                :     int         ret;
                               1134                 :                :     char        exec_path[MAXPGPATH];
                               1135                 :                :     PQExpBuffer postgres_cmd;
                               1136                 :                : 
                               1137                 :                :     /* locate postgres binary */
                               1138         [ -  + ]:             10 :     if ((ret = find_other_exec(argv0, "postgres",
                               1139                 :                :                                PG_BACKEND_VERSIONSTR,
                               1140                 :                :                                exec_path)) < 0)
                               1141                 :                :     {
                               1142                 :                :         char        full_path[MAXPGPATH];
                               1143                 :                : 
 2171 alvherre@alvh.no-ip.     1144         [ #  # ]:UBC           0 :         if (find_my_exec(argv0, full_path) < 0)
                               1145                 :              0 :             strlcpy(full_path, progname, sizeof(full_path));
                               1146                 :                : 
                               1147         [ #  # ]:              0 :         if (ret == -1)
 1247 tgl@sss.pgh.pa.us        1148                 :              0 :             pg_fatal("program \"%s\" is needed by %s but was not found in the same directory as \"%s\"",
                               1149                 :                :                      "postgres", progname, full_path);
                               1150                 :                :         else
                               1151                 :              0 :             pg_fatal("program \"%s\" was found by \"%s\" but was not the same version as %s",
                               1152                 :                :                      "postgres", full_path, progname);
                               1153                 :                :     }
                               1154                 :                : 
 2171 alvherre@alvh.no-ip.     1155                 :CBC          10 :     pg_log_info("executing \"%s\" for target server to complete crash recovery",
                               1156                 :                :                 exec_path);
                               1157                 :                : 
                               1158                 :                :     /*
                               1159                 :                :      * Skip processing if requested, but only after ensuring presence of
                               1160                 :                :      * postgres.
                               1161                 :                :      */
                               1162         [ -  + ]:             10 :     if (dry_run)
 2171 alvherre@alvh.no-ip.     1163                 :UBC           0 :         return;
                               1164                 :                : 
                               1165                 :                :     /*
                               1166                 :                :      * Finally run postgres in single-user mode.  There is no need to use
                               1167                 :                :      * fsync here.  This makes the recovery faster, and the target data folder
                               1168                 :                :      * is synced at the end anyway.
                               1169                 :                :      */
 1285 michael@paquier.xyz      1170                 :CBC          10 :     postgres_cmd = createPQExpBuffer();
                               1171                 :                : 
                               1172                 :                :     /* path to postgres, properly quoted */
                               1173                 :             10 :     appendShellString(postgres_cmd, exec_path);
                               1174                 :                : 
                               1175                 :                :     /* add set of options with properly quoted data directory */
                               1176                 :             10 :     appendPQExpBufferStr(postgres_cmd, " --single -F -D ");
                               1177                 :             10 :     appendShellString(postgres_cmd, datadir_target);
                               1178                 :                : 
                               1179                 :                :     /* add custom configuration file only if requested */
 1248                          1180         [ +  + ]:             10 :     if (config_file != NULL)
                               1181                 :                :     {
                               1182                 :              9 :         appendPQExpBufferStr(postgres_cmd, " -c config_file=");
                               1183                 :              9 :         appendShellString(postgres_cmd, config_file);
                               1184                 :                :     }
                               1185                 :                : 
                               1186                 :                :     /* finish with the database name, and a properly quoted redirection */
 1285                          1187                 :             10 :     appendPQExpBufferStr(postgres_cmd, " template1 < ");
                               1188                 :             10 :     appendShellString(postgres_cmd, DEVNULL);
                               1189                 :                : 
 1104 tgl@sss.pgh.pa.us        1190                 :             10 :     fflush(NULL);
 1285 michael@paquier.xyz      1191         [ +  + ]:             10 :     if (system(postgres_cmd->data) != 0)
                               1192                 :                :     {
 1947 peter@eisentraut.org     1193                 :              1 :         pg_log_error("postgres single-user mode in target cluster failed");
 1247 tgl@sss.pgh.pa.us        1194                 :              1 :         pg_log_error_detail("Command was: %s", postgres_cmd->data);
                               1195                 :              1 :         exit(1);
                               1196                 :                :     }
                               1197                 :                : 
 1285 michael@paquier.xyz      1198                 :              9 :     destroyPQExpBuffer(postgres_cmd);
                               1199                 :                : }
                               1200                 :                : 
                               1201                 :                : static void
 2168 alvherre@alvh.no-ip.     1202                 :             18 : disconnect_atexit(void)
                               1203                 :                : {
                               1204         [ -  + ]:             18 :     if (conn != NULL)
 2168 alvherre@alvh.no-ip.     1205                 :UBC           0 :         PQfinish(conn);
 2168 alvherre@alvh.no-ip.     1206                 :CBC          18 : }
        

Generated by: LCOV version 2.4-beta