Re: Strange timezone 'math' in 9.6.8

From: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
To: Ervin Weber <webervin(at)gmail(dot)com>, pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Strange timezone 'math' in 9.6.8
Date: 2018-03-28 11:50:46
Message-ID: 1522237846.2820.26.camel@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Ervin Weber wrote:
> Seems that PostgreSQL does do math inside invalid time zone names,
> without reporting any errors to client if time zone name has sign and
> number inside range.
>
> staging=# show server_version;
> server_version
> ----------------
> 9.6.8
> (1 row)
>
> staging=# select now(), now() at time zone 'fubar+167';
> now | timezone
> -------------------------------+----------------------------
> 2018-03-28 09:16:25.897444+00 | 2018-03-21 10:16:25.897444
> (1 row)
>
> staging=# select now(), now() at time zone 'fubar+168';
> ERROR: time zone "fubar+168" not recognized

The cause of the error is the following code in src/timezone/localtime.c,
in function "getsecs":

/*
* Given a pointer into a time zone string, extract a number of seconds,
* in hh[:mm[:ss]] form, from the string.
* If any error occurs, return NULL.
* Otherwise, return a pointer to the first character not part of the number
* of seconds.
*/
static const char *
getsecs(const char *strp, int32 *secsp)
{
int num;

/*
* 'HOURSPERDAY * DAYSPERWEEK - 1' allows quasi-Posix rules like
* "M10.4.6/26", which does not conform to Posix, but which specifies the
* equivalent of "02:00 on the first Sunday on or after 23 Oct".
*/
strp = getnum(strp, &num, 0, HOURSPERDAY * DAYSPERWEEK - 1);
if (strp == NULL)
return NULL;

So any time zone offset that is one week or more fails.

The seemingly arbitrary limit is explained by the comment; the code
serves several purposes.

One could argue that time zones offsets beyound 12 or 24 hours should
cause an error, but apart from that the behavior is correct, right?

Yours,
Laurenz Albe
--
Cybertec | https://www.cybertec-postgresql.com

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2018-03-28 14:17:31 Re: Strange timezone 'math' in 9.6.8
Previous Message Ervin Weber 2018-03-28 09:24:38 Strange timezone 'math' in 9.6.8