pgsql: Tighten parsing of datetime input.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Tighten parsing of datetime input.
Date: 2025-05-28 19:10:56
Message-ID: E1uKMAx-000Spm-24@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Tighten parsing of datetime input.

ParseFraction only expects to deal with fields that contain a decimal
point and digit(s). However it's possible in some edge cases for it
to be passed input that doesn't look like that. In particular the
input could look like a valid floating-point number, such as ".123e6".
strtod() will happily eat that, possibly producing a result that is
not within the expected range 0..1, which can result in integer
overflow in the callers. That doesn't have any security consequences,
but it's still not very desirable. Fix by checking that the input
has the expected form.

Similarly, DecodeNumberField only expects to deal with fields that
contain a decimal point and digit(s), but it's sometimes abused to
parse strings that might not look like that. This could result in
failure to reject bogus input, yielding silly results. Again, fix
by rejecting input that doesn't look as-expected. That decision
also means that we can affirmatively answer the very old comment
questioning whether we couldn't save some duplicative code by
using ParseFractionalSecond here.

While these changes should only reject input that nobody would
consider valid, it still doesn't seem like a change to make in
stable branches. Apply to HEAD only.

Reported-by: Evgeniy Gorbanev <gorbanev(dot)es(at)gmail(dot)com>
Author: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Discussion: https://postgr.es/m/1328335.1748371099@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e5d64fd6545d1339b58e604b812f1a1200b48839

Modified Files
--------------
src/backend/utils/adt/datetime.c | 44 +++++++++++++++++++---------------
src/test/regress/expected/horology.out | 9 +++++++
src/test/regress/sql/horology.sql | 4 ++++
3 files changed, 38 insertions(+), 19 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2025-05-28 22:43:56 pgsql: doc PG 18 relnotes: move ANALYZE item,split ANALYZE/EXPLAIN item
Previous Message Tom Lane 2025-05-28 17:29:57 pgsql: Fix memory leakage when function compilation fails.