LCOV - code coverage report
Current view: top level - src/bin/pg_controldata - pg_controldata.c (source / functions) Hit Total Coverage
Test: PostgreSQL 18devel Lines: 133 149 89.3 %
Date: 2025-02-22 07:14:56 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * pg_controldata
       3             :  *
       4             :  * reads the data from $PGDATA/global/pg_control
       5             :  *
       6             :  * copyright (c) Oliver Elphick <olly@lfix.co.uk>, 2001;
       7             :  * license: BSD
       8             :  *
       9             :  * src/bin/pg_controldata/pg_controldata.c
      10             :  */
      11             : 
      12             : /*
      13             :  * We have to use postgres.h not postgres_fe.h here, because there's so much
      14             :  * backend-only stuff in the XLOG include files we need.  But we need a
      15             :  * frontend-ish environment otherwise.  Hence this ugly hack.
      16             :  */
      17             : #define FRONTEND 1
      18             : 
      19             : #include "postgres.h"
      20             : 
      21             : #include <time.h>
      22             : 
      23             : #include "access/transam.h"
      24             : #include "access/xlog.h"
      25             : #include "access/xlog_internal.h"
      26             : #include "catalog/pg_control.h"
      27             : #include "common/controldata_utils.h"
      28             : #include "common/logging.h"
      29             : #include "getopt_long.h"
      30             : #include "pg_getopt.h"
      31             : 
      32             : static void
      33           2 : usage(const char *progname)
      34             : {
      35           2 :     printf(_("%s displays control information of a PostgreSQL database cluster.\n\n"), progname);
      36           2 :     printf(_("Usage:\n"));
      37           2 :     printf(_("  %s [OPTION] [DATADIR]\n"), progname);
      38           2 :     printf(_("\nOptions:\n"));
      39           2 :     printf(_(" [-D, --pgdata=]DATADIR  data directory\n"));
      40           2 :     printf(_("  -V, --version          output version information, then exit\n"));
      41           2 :     printf(_("  -?, --help             show this help, then exit\n"));
      42           2 :     printf(_("\nIf no data directory (DATADIR) is specified, "
      43             :              "the environment variable PGDATA\nis used.\n\n"));
      44           2 :     printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
      45           2 :     printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
      46           2 : }
      47             : 
      48             : 
      49             : static const char *
      50          76 : dbState(DBState state)
      51             : {
      52          76 :     switch (state)
      53             :     {
      54           2 :         case DB_STARTUP:
      55           2 :             return _("starting up");
      56          68 :         case DB_SHUTDOWNED:
      57          68 :             return _("shut down");
      58           4 :         case DB_SHUTDOWNED_IN_RECOVERY:
      59           4 :             return _("shut down in recovery");
      60           0 :         case DB_SHUTDOWNING:
      61           0 :             return _("shutting down");
      62           0 :         case DB_IN_CRASH_RECOVERY:
      63           0 :             return _("in crash recovery");
      64           0 :         case DB_IN_ARCHIVE_RECOVERY:
      65           0 :             return _("in archive recovery");
      66           2 :         case DB_IN_PRODUCTION:
      67           2 :             return _("in production");
      68             :     }
      69           0 :     return _("unrecognized status code");
      70             : }
      71             : 
      72             : static const char *
      73          76 : wal_level_str(WalLevel wal_level)
      74             : {
      75          76 :     switch (wal_level)
      76             :     {
      77          28 :         case WAL_LEVEL_MINIMAL:
      78          28 :             return "minimal";
      79          34 :         case WAL_LEVEL_REPLICA:
      80          34 :             return "replica";
      81          14 :         case WAL_LEVEL_LOGICAL:
      82          14 :             return "logical";
      83             :     }
      84           0 :     return _("unrecognized \"wal_level\"");
      85             : }
      86             : 
      87             : 
      88             : int
      89         126 : main(int argc, char *argv[])
      90             : {
      91             :     static struct option long_options[] = {
      92             :         {"pgdata", required_argument, NULL, 'D'},
      93             :         {NULL, 0, NULL, 0}
      94             :     };
      95             : 
      96             :     ControlFileData *ControlFile;
      97             :     bool        crc_ok;
      98         126 :     char       *DataDir = NULL;
      99             :     time_t      time_tmp;
     100             :     struct tm  *tm_tmp;
     101             :     char        pgctime_str[128];
     102             :     char        ckpttime_str[128];
     103             :     char        mock_auth_nonce_str[MOCK_AUTH_NONCE_LEN * 2 + 1];
     104         126 :     const char *strftime_fmt = "%c";
     105             :     const char *progname;
     106             :     char        xlogfilename[MAXFNAMELEN];
     107             :     int         c;
     108             :     int         i;
     109             :     int         WalSegSz;
     110             : 
     111         126 :     pg_logging_init(argv[0]);
     112         126 :     set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_controldata"));
     113         126 :     progname = get_progname(argv[0]);
     114             : 
     115         126 :     if (argc > 1)
     116             :     {
     117         124 :         if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
     118             :         {
     119           2 :             usage(progname);
     120           2 :             exit(0);
     121             :         }
     122         122 :         if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
     123             :         {
     124          42 :             puts("pg_controldata (PostgreSQL) " PG_VERSION);
     125          42 :             exit(0);
     126             :         }
     127             :     }
     128             : 
     129          82 :     while ((c = getopt_long(argc, argv, "D:", long_options, NULL)) != -1)
     130             :     {
     131           2 :         switch (c)
     132             :         {
     133           0 :             case 'D':
     134           0 :                 DataDir = optarg;
     135           0 :                 break;
     136             : 
     137           2 :             default:
     138             :                 /* getopt_long already emitted a complaint */
     139           2 :                 pg_log_error_hint("Try \"%s --help\" for more information.", progname);
     140           2 :                 exit(1);
     141             :         }
     142             :     }
     143             : 
     144          80 :     if (DataDir == NULL)
     145             :     {
     146          80 :         if (optind < argc)
     147          78 :             DataDir = argv[optind++];
     148             :         else
     149           2 :             DataDir = getenv("PGDATA");
     150             :     }
     151             : 
     152             :     /* Complain if any arguments remain */
     153          80 :     if (optind < argc)
     154             :     {
     155           0 :         pg_log_error("too many command-line arguments (first is \"%s\")",
     156             :                      argv[optind]);
     157           0 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
     158           0 :         exit(1);
     159             :     }
     160             : 
     161          80 :     if (DataDir == NULL)
     162             :     {
     163           2 :         pg_log_error("no data directory specified");
     164           2 :         pg_log_error_hint("Try \"%s --help\" for more information.", progname);
     165           2 :         exit(1);
     166             :     }
     167             : 
     168             :     /* get a copy of the control file */
     169          78 :     ControlFile = get_controlfile(DataDir, &crc_ok);
     170          76 :     if (!crc_ok)
     171             :     {
     172           2 :         pg_log_warning("calculated CRC checksum does not match value stored in control file");
     173           2 :         pg_log_warning_detail("Either the control file is corrupt, or it has a different layout than this program "
     174             :                               "is expecting.  The results below are untrustworthy.");
     175             :     }
     176             : 
     177             :     /* set wal segment size */
     178          76 :     WalSegSz = ControlFile->xlog_seg_size;
     179             : 
     180          76 :     if (!IsValidWalSegSize(WalSegSz))
     181             :     {
     182           2 :         pg_log_warning(ngettext("invalid WAL segment size in control file (%d byte)",
     183             :                                 "invalid WAL segment size in control file (%d bytes)",
     184             :                                 WalSegSz),
     185             :                        WalSegSz);
     186           2 :         pg_log_warning_detail("The WAL segment size must be a power of two between 1 MB and 1 GB.");
     187           2 :         pg_log_warning_detail("The file is corrupt and the results below are untrustworthy.");
     188             :     }
     189             : 
     190             :     /*
     191             :      * This slightly-chintzy coding will work as long as the control file
     192             :      * timestamps are within the range of time_t; that should be the case in
     193             :      * all foreseeable circumstances, so we don't bother importing the
     194             :      * backend's timezone library into pg_controldata.
     195             :      *
     196             :      * Use variable for format to suppress overly-anal-retentive gcc warning
     197             :      * about %c
     198             :      */
     199          76 :     time_tmp = (time_t) ControlFile->time;
     200          76 :     tm_tmp = localtime(&time_tmp);
     201             : 
     202          76 :     if (tm_tmp != NULL)
     203          76 :         strftime(pgctime_str, sizeof(pgctime_str), strftime_fmt, tm_tmp);
     204             :     else
     205           0 :         snprintf(pgctime_str, sizeof(pgctime_str), _("???"));
     206             : 
     207          76 :     time_tmp = (time_t) ControlFile->checkPointCopy.time;
     208          76 :     tm_tmp = localtime(&time_tmp);
     209             : 
     210          76 :     if (tm_tmp != NULL)
     211          76 :         strftime(ckpttime_str, sizeof(ckpttime_str), strftime_fmt, tm_tmp);
     212             :     else
     213           0 :         snprintf(ckpttime_str, sizeof(ckpttime_str), _("???"));
     214             : 
     215             :     /*
     216             :      * Calculate name of the WAL file containing the latest checkpoint's REDO
     217             :      * start point.
     218             :      *
     219             :      * A corrupted control file could report a WAL segment size of 0 or
     220             :      * negative value, and to guard against division by zero, we need to treat
     221             :      * that specially.
     222             :      */
     223          76 :     if (WalSegSz > 0)
     224             :     {
     225             :         XLogSegNo   segno;
     226             : 
     227          74 :         XLByteToSeg(ControlFile->checkPointCopy.redo, segno, WalSegSz);
     228          74 :         XLogFileName(xlogfilename, ControlFile->checkPointCopy.ThisTimeLineID,
     229             :                      segno, WalSegSz);
     230             :     }
     231             :     else
     232           2 :         strcpy(xlogfilename, _("???"));
     233             : 
     234        2508 :     for (i = 0; i < MOCK_AUTH_NONCE_LEN; i++)
     235        2432 :         snprintf(&mock_auth_nonce_str[i * 2], 3, "%02x",
     236        2432 :                  (unsigned char) ControlFile->mock_authentication_nonce[i]);
     237             : 
     238          76 :     printf(_("pg_control version number:            %u\n"),
     239             :            ControlFile->pg_control_version);
     240          76 :     printf(_("Catalog version number:               %u\n"),
     241             :            ControlFile->catalog_version_no);
     242          76 :     printf(_("Database system identifier:           %llu\n"),
     243             :            (unsigned long long) ControlFile->system_identifier);
     244          76 :     printf(_("Database cluster state:               %s\n"),
     245             :            dbState(ControlFile->state));
     246          76 :     printf(_("pg_control last modified:             %s\n"),
     247             :            pgctime_str);
     248          76 :     printf(_("Latest checkpoint location:           %X/%X\n"),
     249             :            LSN_FORMAT_ARGS(ControlFile->checkPoint));
     250          76 :     printf(_("Latest checkpoint's REDO location:    %X/%X\n"),
     251             :            LSN_FORMAT_ARGS(ControlFile->checkPointCopy.redo));
     252          76 :     printf(_("Latest checkpoint's REDO WAL file:    %s\n"),
     253             :            xlogfilename);
     254          76 :     printf(_("Latest checkpoint's TimeLineID:       %u\n"),
     255             :            ControlFile->checkPointCopy.ThisTimeLineID);
     256          76 :     printf(_("Latest checkpoint's PrevTimeLineID:   %u\n"),
     257             :            ControlFile->checkPointCopy.PrevTimeLineID);
     258          76 :     printf(_("Latest checkpoint's full_page_writes: %s\n"),
     259             :            ControlFile->checkPointCopy.fullPageWrites ? _("on") : _("off"));
     260          76 :     printf(_("Latest checkpoint's NextXID:          %u:%u\n"),
     261             :            EpochFromFullTransactionId(ControlFile->checkPointCopy.nextXid),
     262             :            XidFromFullTransactionId(ControlFile->checkPointCopy.nextXid));
     263          76 :     printf(_("Latest checkpoint's NextOID:          %u\n"),
     264             :            ControlFile->checkPointCopy.nextOid);
     265          76 :     printf(_("Latest checkpoint's NextMultiXactId:  %u\n"),
     266             :            ControlFile->checkPointCopy.nextMulti);
     267          76 :     printf(_("Latest checkpoint's NextMultiOffset:  %u\n"),
     268             :            ControlFile->checkPointCopy.nextMultiOffset);
     269          76 :     printf(_("Latest checkpoint's oldestXID:        %u\n"),
     270             :            ControlFile->checkPointCopy.oldestXid);
     271          76 :     printf(_("Latest checkpoint's oldestXID's DB:   %u\n"),
     272             :            ControlFile->checkPointCopy.oldestXidDB);
     273          76 :     printf(_("Latest checkpoint's oldestActiveXID:  %u\n"),
     274             :            ControlFile->checkPointCopy.oldestActiveXid);
     275          76 :     printf(_("Latest checkpoint's oldestMultiXid:   %u\n"),
     276             :            ControlFile->checkPointCopy.oldestMulti);
     277          76 :     printf(_("Latest checkpoint's oldestMulti's DB: %u\n"),
     278             :            ControlFile->checkPointCopy.oldestMultiDB);
     279          76 :     printf(_("Latest checkpoint's oldestCommitTsXid:%u\n"),
     280             :            ControlFile->checkPointCopy.oldestCommitTsXid);
     281          76 :     printf(_("Latest checkpoint's newestCommitTsXid:%u\n"),
     282             :            ControlFile->checkPointCopy.newestCommitTsXid);
     283          76 :     printf(_("Time of latest checkpoint:            %s\n"),
     284             :            ckpttime_str);
     285          76 :     printf(_("Fake LSN counter for unlogged rels:   %X/%X\n"),
     286             :            LSN_FORMAT_ARGS(ControlFile->unloggedLSN));
     287          76 :     printf(_("Minimum recovery ending location:     %X/%X\n"),
     288             :            LSN_FORMAT_ARGS(ControlFile->minRecoveryPoint));
     289          76 :     printf(_("Min recovery ending loc's timeline:   %u\n"),
     290             :            ControlFile->minRecoveryPointTLI);
     291          76 :     printf(_("Backup start location:                %X/%X\n"),
     292             :            LSN_FORMAT_ARGS(ControlFile->backupStartPoint));
     293          76 :     printf(_("Backup end location:                  %X/%X\n"),
     294             :            LSN_FORMAT_ARGS(ControlFile->backupEndPoint));
     295          76 :     printf(_("End-of-backup record required:        %s\n"),
     296             :            ControlFile->backupEndRequired ? _("yes") : _("no"));
     297          76 :     printf(_("wal_level setting:                    %s\n"),
     298             :            wal_level_str(ControlFile->wal_level));
     299          76 :     printf(_("wal_log_hints setting:                %s\n"),
     300             :            ControlFile->wal_log_hints ? _("on") : _("off"));
     301          76 :     printf(_("max_connections setting:              %d\n"),
     302             :            ControlFile->MaxConnections);
     303          76 :     printf(_("max_worker_processes setting:         %d\n"),
     304             :            ControlFile->max_worker_processes);
     305          76 :     printf(_("max_wal_senders setting:              %d\n"),
     306             :            ControlFile->max_wal_senders);
     307          76 :     printf(_("max_prepared_xacts setting:           %d\n"),
     308             :            ControlFile->max_prepared_xacts);
     309          76 :     printf(_("max_locks_per_xact setting:           %d\n"),
     310             :            ControlFile->max_locks_per_xact);
     311          76 :     printf(_("track_commit_timestamp setting:       %s\n"),
     312             :            ControlFile->track_commit_timestamp ? _("on") : _("off"));
     313          76 :     printf(_("Maximum data alignment:               %u\n"),
     314             :            ControlFile->maxAlign);
     315             :     /* we don't print floatFormat since can't say much useful about it */
     316          76 :     printf(_("Database block size:                  %u\n"),
     317             :            ControlFile->blcksz);
     318          76 :     printf(_("Blocks per segment of large relation: %u\n"),
     319             :            ControlFile->relseg_size);
     320          76 :     printf(_("WAL block size:                       %u\n"),
     321             :            ControlFile->xlog_blcksz);
     322          76 :     printf(_("Bytes per WAL segment:                %u\n"),
     323             :            ControlFile->xlog_seg_size);
     324          76 :     printf(_("Maximum length of identifiers:        %u\n"),
     325             :            ControlFile->nameDataLen);
     326          76 :     printf(_("Maximum columns in an index:          %u\n"),
     327             :            ControlFile->indexMaxKeys);
     328          76 :     printf(_("Maximum size of a TOAST chunk:        %u\n"),
     329             :            ControlFile->toast_max_chunk_size);
     330          76 :     printf(_("Size of a large-object chunk:         %u\n"),
     331             :            ControlFile->loblksize);
     332             :     /* This is no longer configurable, but users may still expect to see it: */
     333          76 :     printf(_("Date/time type storage:               %s\n"),
     334             :            _("64-bit integers"));
     335          76 :     printf(_("Float8 argument passing:              %s\n"),
     336             :            (ControlFile->float8ByVal ? _("by value") : _("by reference")));
     337          76 :     printf(_("Data page checksum version:           %u\n"),
     338             :            ControlFile->data_checksum_version);
     339          76 :     printf(_("Default char data signedness:         %s\n"),
     340             :            (ControlFile->default_char_signedness ? _("signed") : _("unsigned")));
     341          76 :     printf(_("Mock authentication nonce:            %s\n"),
     342             :            mock_auth_nonce_str);
     343          76 :     return 0;
     344             : }

Generated by: LCOV version 1.14