pgsql: Fix portability issues with parsing of recovery_target_xid - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Fix portability issues with parsing of recovery_target_xid
Date
Msg-id E1krvCl-0002B4-5g@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix portability issues with parsing of recovery_target_xid

The parsing of this parameter has been using strtoul(), which is not
portable across platforms.  On most Unix platforms, unsigned long has a
size of 64 bits, while on Windows it is 32 bits.  It is common in
recovery scenarios to rely on the output of txid_current() or even the
newer pg_current_xact_id() to get a transaction ID for setting up
recovery_target_xid.  The value returned by those functions includes the
epoch in the computed result, which would cause strtoul() to fail where
unsigned long has a size of 32 bits once the epoch is incremented.

WAL records and 2PC data include only information about 32-bit XIDs and
it is not possible to have XIDs across more than one epoch, so
discarding the high bits from the transaction ID set has no impact on
recovery.  On the contrary, the use of strtoul() prevents a consistent
behavior across platforms depending on the size of unsigned long.

This commit changes the parsing of recovery_target_xid to use
pg_strtouint64() instead, available down to 9.6.  There is one TAP test
stressing recovery with recovery_target_xid, where a tweak based on
pg_reset{xlog,wal} is added to bump the XID epoch so as this change gets
tested, as per an idea from Alexander Lakhin.

Reported-by: Alexander Lakhin
Discussion: https://postgr.es/m/16780-107fd0c0385b1035@postgresql.org
Backpatch-through: 9.6

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/0b54a80a38c79e2fda049c1a2f43de6ef7d45d7a

Modified Files
--------------
src/backend/access/transam/xlog.c           | 2 +-
src/test/recovery/t/003_recovery_targets.pl | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Improve autoprewarm's handling of early-shutdown scenarios.
Next
From: Bruce Momjian
Date:
Subject: pgsql: dummy commit