Have strftime() check its time tuple argument to make sure the tuple's values
are within proper boundaries as specified in the docs. This can break possible code (datetime module needed changing, for instance) that uses 0 for values that need to be greater 1 or greater (month, day, and day of year). Fixes bug #897625.
This commit is contained in:
parent
0a4977c2f3
commit
d1080a3418
|
@ -211,8 +211,11 @@ Convert a tuple or \class{struct_time} representing a time as returned
|
||||||
by \function{gmtime()} or \function{localtime()} to a string as
|
by \function{gmtime()} or \function{localtime()} to a string as
|
||||||
specified by the \var{format} argument. If \var{t} is not
|
specified by the \var{format} argument. If \var{t} is not
|
||||||
provided, the current time as returned by \function{localtime()} is
|
provided, the current time as returned by \function{localtime()} is
|
||||||
used. \var{format} must be a string.
|
used. \var{format} must be a string. \exception{ValueError} is raised
|
||||||
|
if any field in \var{t} is outside of the allowed range.
|
||||||
\versionchanged[Allowed \var{t} to be omitted]{2.1}
|
\versionchanged[Allowed \var{t} to be omitted]{2.1}
|
||||||
|
\versionchanged[\exception{ValueError} raised if a field in \var{t} is
|
||||||
|
out of range.]{2.4}
|
||||||
|
|
||||||
The following directives can be embedded in the \var{format} string.
|
The following directives can be embedded in the \var{format} string.
|
||||||
They are shown without the optional field width and precision
|
They are shown without the optional field width and precision
|
||||||
|
|
|
@ -38,7 +38,7 @@ def strftest(now):
|
||||||
if now[3] < 12: ampm='(AM|am)'
|
if now[3] < 12: ampm='(AM|am)'
|
||||||
else: ampm='(PM|pm)'
|
else: ampm='(PM|pm)'
|
||||||
|
|
||||||
jan1 = time.localtime(time.mktime((now[0], 1, 1) + (0,)*6))
|
jan1 = time.localtime(time.mktime((now[0], 1, 1, 0, 0, 0, 0, 1, 0)))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if now[8]: tz = time.tzname[1]
|
if now[8]: tz = time.tzname[1]
|
||||||
|
|
|
@ -37,6 +37,62 @@ class TimeTestCase(unittest.TestCase):
|
||||||
except ValueError:
|
except ValueError:
|
||||||
self.fail('conversion specifier: %r failed.' % format)
|
self.fail('conversion specifier: %r failed.' % format)
|
||||||
|
|
||||||
|
def test_strftime_bounds_checking(self):
|
||||||
|
# Make sure that strftime() checks the bounds of the various parts
|
||||||
|
#of the time tuple.
|
||||||
|
|
||||||
|
# Check year
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1899, 1, 1, 0, 0, 0, 0, 1, -1))
|
||||||
|
if time.accept2dyear:
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(-1, 1, 1, 0, 0, 0, 0, 1, -1))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(100, 1, 1, 0, 0, 0, 0, 1, -1))
|
||||||
|
# Check month
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 0, 1, 0, 0, 0, 0, 1, -1))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 13, 1, 0, 0, 0, 0, 1, -1))
|
||||||
|
# Check day of month
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 0, 0, 0, 0, 0, 1, -1))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 32, 0, 0, 0, 0, 1, -1))
|
||||||
|
# Check hour
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, -1, 0, 0, 0, 1, -1))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 24, 0, 0, 0, 1, -1))
|
||||||
|
# Check minute
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, -1, 0, 0, 1, -1))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 60, 0, 0, 1, -1))
|
||||||
|
# Check second
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, -1, 0, 1, -1))
|
||||||
|
# C99 only requires allowing for one leap second, but Python's docs say
|
||||||
|
# allow two leap seconds (0..61)
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, 62, 0, 1, -1))
|
||||||
|
# No check for upper-bound day of week;
|
||||||
|
# value forced into range by a ``% 7`` calculation.
|
||||||
|
# Start check at -2 since gettmarg() increments value before taking
|
||||||
|
# modulo.
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, 0, -2, 1, -1))
|
||||||
|
# Check day of the year
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, 0, 0, 0, -1))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, 0, 0, 367, -1))
|
||||||
|
# Check daylight savings flag
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, 0, 0, 1, -2))
|
||||||
|
self.assertRaises(ValueError, time.strftime, '',
|
||||||
|
(1900, 1, 1, 0, 0, 0, 0, 1, 2))
|
||||||
|
|
||||||
def test_strptime(self):
|
def test_strptime(self):
|
||||||
tt = time.gmtime(self.t)
|
tt = time.gmtime(self.t)
|
||||||
for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'H', 'I',
|
for directive in ('a', 'A', 'b', 'B', 'c', 'd', 'H', 'I',
|
||||||
|
|
|
@ -167,6 +167,13 @@ Core and builtins
|
||||||
Extension modules
|
Extension modules
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- time.strftime() now checks that the values in its time tuple argument
|
||||||
|
are within the proper boundaries to prevent possible crashes from the
|
||||||
|
platform's C library implementation of strftime(). Can possibly
|
||||||
|
break code that uses values outside the range that didn't cause
|
||||||
|
problems previously (such as sitting day of year to 0). Fixes bug
|
||||||
|
#897625.
|
||||||
|
|
||||||
- The socket module now supports Bluetooth sockets, if the
|
- The socket module now supports Bluetooth sockets, if the
|
||||||
system has <bluetooth/bluetooth.h>
|
system has <bluetooth/bluetooth.h>
|
||||||
|
|
||||||
|
|
|
@ -3189,11 +3189,11 @@ time_strftime(PyDateTime_Time *self, PyObject *args, PyObject *kw)
|
||||||
* 1900 to worm around that.
|
* 1900 to worm around that.
|
||||||
*/
|
*/
|
||||||
tuple = Py_BuildValue("iiiiiiiii",
|
tuple = Py_BuildValue("iiiiiiiii",
|
||||||
1900, 0, 0, /* year, month, day */
|
1900, 1, 1, /* year, month, day */
|
||||||
TIME_GET_HOUR(self),
|
TIME_GET_HOUR(self),
|
||||||
TIME_GET_MINUTE(self),
|
TIME_GET_MINUTE(self),
|
||||||
TIME_GET_SECOND(self),
|
TIME_GET_SECOND(self),
|
||||||
0, 0, -1); /* weekday, daynum, dst */
|
0, 1, -1); /* weekday, daynum, dst */
|
||||||
if (tuple == NULL)
|
if (tuple == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
assert(PyTuple_Size(tuple) == 9);
|
assert(PyTuple_Size(tuple) == 9);
|
||||||
|
|
|
@ -346,6 +346,48 @@ time_strftime(PyObject *self, PyObject *args)
|
||||||
} else if (!gettmarg(tup, &buf))
|
} else if (!gettmarg(tup, &buf))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
/* Checks added to make sure strftime() does not crash Python by
|
||||||
|
indexing blindly into some array for a textual representation
|
||||||
|
by some bad index (fixes bug #897625).
|
||||||
|
|
||||||
|
No check for year since handled in gettmarg().
|
||||||
|
*/
|
||||||
|
if (buf.tm_mon < 0 || buf.tm_mon > 11) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "month out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (buf.tm_mday < 1 || buf.tm_mday > 31) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "day of month out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (buf.tm_hour < 0 || buf.tm_hour > 23) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "hour out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (buf.tm_min < 0 || buf.tm_min > 59) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "minute out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (buf.tm_sec < 0 || buf.tm_sec > 61) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "seconds out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
/* tm_wday does not need checking of its upper-bound since taking
|
||||||
|
``% 7`` in gettmarg() automatically restricts the range. */
|
||||||
|
if (buf.tm_wday < 0) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "day of week out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (buf.tm_yday < 0 || buf.tm_yday > 365) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "day of year out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
if (buf.tm_isdst < -1 || buf.tm_isdst > 1) {
|
||||||
|
PyErr_SetString(PyExc_ValueError,
|
||||||
|
"daylight savings flag out of range");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
fmtlen = strlen(fmt);
|
fmtlen = strlen(fmt);
|
||||||
|
|
||||||
/* I hate these functions that presume you know how big the output
|
/* I hate these functions that presume you know how big the output
|
||||||
|
|
Loading…
Reference in New Issue