]> granicus.if.org Git - postgresql/commitdiff
Expand the allowed range of timezone offsets to +/-15:59:59 from Greenwich.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 30 May 2012 23:58:47 +0000 (19:58 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 30 May 2012 23:58:47 +0000 (19:58 -0400)
We used to only allow offsets less than +/-13 hours, then it was +/14,
then it was +/-15.  That's still not good enough though, as per today's bug
report from Patric Bechtel.  This time I actually looked through the Olson
timezone database to find the largest offsets used anywhere.  The winners
are Asia/Manila, at -15:56:00 until 1844, and America/Metlakatla, at
+15:13:42 until 1867.  So we'd better allow offsets less than +/-16 hours.

Given the history, we are way overdue to have some greppable #define
symbols controlling this, so make some ... and also remove an obsolete
comment that didn't get fixed the last time.

Back-patch to all supported branches.

src/backend/utils/adt/date.c
src/backend/utils/adt/datetime.c
src/include/utils/timestamp.h

index c97ecf4a1add9adcd14bdc682e70a41c160cbc88..c10931317ef80e6adfced3d9c24756ee70ca83f6 100644 (file)
@@ -1924,9 +1924,8 @@ timetz_recv(PG_FUNCTION_ARGS)
 
        result->zone = pq_getmsgint(buf, sizeof(result->zone));
 
-       /* we allow GMT displacements up to 14:59:59, cf DecodeTimezone() */
-       if (result->zone <= -15 * SECS_PER_HOUR ||
-               result->zone >= 15 * SECS_PER_HOUR)
+       /* Check for sane GMT displacement; see notes in utils/timestamp.h */
+       if (result->zone <= -TZDISP_LIMIT || result->zone >= TZDISP_LIMIT)
                ereport(ERROR,
                                (errcode(ERRCODE_INVALID_TIME_ZONE_DISPLACEMENT_VALUE),
                                 errmsg("time zone displacement out of range")));
index 705fcf195c2e2300d92680f90cee278fdcf11355..b82aad0f7e04373a2247cdcb01f41007bbb3004d 100644 (file)
@@ -2699,9 +2699,6 @@ DecodeNumberField(int len, char *str, int fmask,
  * Return 0 if okay (and set *tzp), a DTERR code if not okay.
  *
  * NB: this must *not* ereport on failure; see commands/variable.c.
- *
- * Note: we allow timezone offsets up to 13:59.  There are places that
- * use +1300 summer time.
  */
 static int
 DecodeTimezone(char *str, int *tzp)
@@ -2746,7 +2743,8 @@ DecodeTimezone(char *str, int *tzp)
        else
                min = 0;
 
-       if (hr < 0 || hr > 14)
+       /* Range-check the values; see notes in utils/timestamp.h */
+       if (hr < 0 || hr > MAX_TZDISP_HOUR)
                return DTERR_TZDISP_OVERFLOW;
        if (min < 0 || min >= 60)
                return DTERR_TZDISP_OVERFLOW;
index ee42eb498e145c228e7ed225a11910cb6d5ab5cb..f1ae1ff97888855ed8d74008192b3dccfabefca8 100644 (file)
@@ -100,6 +100,16 @@ typedef struct
 #define USECS_PER_SEC  INT64CONST(1000000)
 #endif
 
+/*
+ * We allow numeric timezone offsets up to 15:59:59 either way from Greenwich.
+ * Currently, the record holders for wackiest offsets in actual use are zones
+ * Asia/Manila, at -15:56:00 until 1844, and America/Metlakatla, at +15:13:42
+ * until 1867.  If we were to reject such values we would fail to dump and
+ * restore old timestamptz values with these zone settings.
+ */
+#define MAX_TZDISP_HOUR                15                              /* maximum allowed hour part */
+#define TZDISP_LIMIT           ((MAX_TZDISP_HOUR + 1) * SECS_PER_HOUR)
+
 /*
  * Macros for fmgr-callable functions.
  *