Skip to content

Commit

Permalink
datetime: Clean up all constructors to fail gracefully if invalid dat…
Browse files Browse the repository at this point in the history
…es/times are provided

And also don't crash dereferencing a NULL pointer if the GDateTime
functions return NULL.

Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/632

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/706>
  • Loading branch information
sdroege committed Dec 7, 2020
1 parent 2bedcba commit 9f23808
Showing 1 changed file with 107 additions and 36 deletions.
143 changes: 107 additions & 36 deletions gst/gstdatetime.c
Expand Up @@ -361,7 +361,8 @@ gst_date_time_get_time_zone_offset (const GstDateTime * datetime)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new_y (gint year)
Expand All @@ -384,7 +385,8 @@ gst_date_time_new_y (gint year)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new_ym (gint year, gint month)
Expand All @@ -411,7 +413,8 @@ gst_date_time_new_ym (gint year, gint month)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new_ymd (gint year, gint month, gint day)
Expand All @@ -428,14 +431,18 @@ gst_date_time_new_ymd (gint year, gint month, gint day)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new_from_unix_epoch_local_time (gint64 secs)
{
GDateTime *datetime;

datetime = g_date_time_new_from_unix_local (secs);
if (!datetime)
return NULL;

return gst_date_time_new_from_g_date_time (datetime);
}

Expand All @@ -448,15 +455,19 @@ gst_date_time_new_from_unix_epoch_local_time (gint64 secs)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new_from_unix_epoch_utc (gint64 secs)
{
GstDateTime *datetime;
datetime =
gst_date_time_new_from_g_date_time (g_date_time_new_from_unix_utc (secs));
return datetime;
GDateTime *datetime;

datetime = g_date_time_new_from_unix_utc (secs);
if (!datetime)
return NULL;

return gst_date_time_new_from_g_date_time (datetime);
}

/**
Expand All @@ -466,7 +477,8 @@ gst_date_time_new_from_unix_epoch_utc (gint64 secs)
* Creates a new #GstDateTime using the time since Jan 1, 1970 specified by
* @usecs. The #GstDateTime is in the local timezone.
*
* Returns: (transfer full) (nullable): a newly created #GstDateTime
* Returns: (transfer full) (nullable): a newly created #GstDateTime, or %NULL
* on error.
*
* Since: 1.18
*/
Expand All @@ -478,8 +490,13 @@ gst_date_time_new_from_unix_epoch_local_time_usecs (gint64 usecs)
gint64 usec_part = usecs % G_USEC_PER_SEC;

dt = g_date_time_new_from_unix_local (secs);
if (!dt)
return NULL;
datetime = g_date_time_add_seconds (dt, (gdouble) usec_part / G_USEC_PER_SEC);
g_date_time_unref (dt);
if (!datetime)
return NULL;

return gst_date_time_new_from_g_date_time (datetime);
}

Expand All @@ -490,7 +507,8 @@ gst_date_time_new_from_unix_epoch_local_time_usecs (gint64 usecs)
* Creates a new #GstDateTime using the time since Jan 1, 1970 specified by
* @usecs. The #GstDateTime is in UTC.
*
* Returns: (transfer full) (nullable): a newly created #GstDateTime
* Returns: (transfer full) (nullable): a newly created #GstDateTime, or %NULL
* on error.
*
* Since: 1.18
*/
Expand All @@ -502,8 +520,13 @@ gst_date_time_new_from_unix_epoch_utc_usecs (gint64 usecs)
gint64 usec_part = usecs % G_USEC_PER_SEC;

dt = g_date_time_new_from_unix_utc (secs);
if (!dt)
return NULL;
datetime = g_date_time_add_seconds (dt, (gdouble) usec_part / G_USEC_PER_SEC);
g_date_time_unref (dt);
if (!datetime)
return NULL;

return gst_date_time_new_from_g_date_time (datetime);
}

Expand Down Expand Up @@ -556,28 +579,43 @@ gst_date_time_check_fields (gint * year, gint * month, gint * day,
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new_local_time (gint year, gint month, gint day, gint hour,
gint minute, gdouble seconds)
{
GstDateTimeFields fields;
GDateTime *dt;
GstDateTime *datetime;

g_return_val_if_fail (year > 0 && year <= 9999, NULL);
g_return_val_if_fail ((month > 0 && month <= 12) || month == -1, NULL);
g_return_val_if_fail ((day > 0 && day <= 31) || day == -1, NULL);
g_return_val_if_fail ((hour >= 0 && hour < 24) || hour == -1, NULL);
g_return_val_if_fail ((minute >= 0 && minute < 60) || minute == -1, NULL);
g_return_val_if_fail ((seconds >= 0 && seconds < 60) || seconds == -1, NULL);
if (year <= 0 || year > 9999)
return NULL;

if ((month <= 0 || month > 12) && month != -1)
return NULL;

if ((day <= 0 || day > 31) && day != -1)
return NULL;

if ((hour < 0 || hour >= 24) && hour != -1)
return NULL;

if ((minute < 0 || minute >= 60) && minute != -1)
return NULL;

if ((seconds < 0 || seconds >= 60) && seconds != -1)
return NULL;

fields = gst_date_time_check_fields (&year, &month, &day,
&hour, &minute, &seconds);

datetime = gst_date_time_new_from_g_date_time (g_date_time_new_local (year,
month, day, hour, minute, seconds));
dt = g_date_time_new_local (year, month, day, hour, minute, seconds);
if (dt == NULL)
return NULL;

datetime = gst_date_time_new_from_g_date_time (dt);
if (datetime == NULL)
return NULL;

Expand All @@ -592,13 +630,19 @@ gst_date_time_new_local_time (gint year, gint month, gint day, gint hour,
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full): the newly created #GstDateTime which should
* be freed with gst_date_time_unref().
* Return value: (transfer full) (nullable): the newly created #GstDateTime which should
* be freed with gst_date_time_unref(), or %NULL on error.
*/
GstDateTime *
gst_date_time_new_now_local_time (void)
{
return gst_date_time_new_from_g_date_time (g_date_time_new_now_local ());
GDateTime *dt;

dt = g_date_time_new_now_local ();
if (!dt)
return NULL;

return gst_date_time_new_from_g_date_time (dt);
}

/**
Expand All @@ -609,13 +653,19 @@ gst_date_time_new_now_local_time (void)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full): the newly created #GstDateTime which should
* be freed with gst_date_time_unref().
* Return value: (transfer full) (nullable): the newly created #GstDateTime which should
* be freed with gst_date_time_unref(), or %NULL on error.
*/
GstDateTime *
gst_date_time_new_now_utc (void)
{
return gst_date_time_new_from_g_date_time (g_date_time_new_now_utc ());
GDateTime *dt;

dt = g_date_time_new_now_utc ();
if (!dt)
return NULL;

return gst_date_time_new_from_g_date_time (dt);
}

gint
Expand Down Expand Up @@ -668,7 +718,8 @@ __gst_date_time_compare (const GstDateTime * dt1, const GstDateTime * dt2)
*
* Free-function: gst_date_time_unref
*
* Return value: (transfer full) (nullable): the newly created #GstDateTime
* Return value: (transfer full) (nullable): the newly created #GstDateTime,
* or %NULL on error.
*/
GstDateTime *
gst_date_time_new (gfloat tzoffset, gint year, gint month, gint day, gint hour,
Expand All @@ -681,15 +732,30 @@ gst_date_time_new (gfloat tzoffset, gint year, gint month, gint day, gint hour,
GstDateTime *datetime;
gint tzhour, tzminute;

g_return_val_if_fail (year > 0 && year <= 9999, NULL);
g_return_val_if_fail ((month > 0 && month <= 12) || month == -1, NULL);
g_return_val_if_fail ((day > 0 && day <= 31) || day == -1, NULL);
g_return_val_if_fail ((hour >= 0 && hour < 24) || hour == -1, NULL);
g_return_val_if_fail ((minute >= 0 && minute < 60) || minute == -1, NULL);
g_return_val_if_fail ((seconds >= 0 && seconds < 60) || seconds == -1, NULL);
g_return_val_if_fail (tzoffset >= -12.0 && tzoffset <= 12.0, NULL);
g_return_val_if_fail ((hour >= 0 && minute >= 0) ||
(hour == -1 && minute == -1 && seconds == -1 && tzoffset == 0.0), NULL);
if (year <= 0 || year > 9999)
return NULL;

if ((month <= 0 || month > 12) && month != -1)
return NULL;

if ((day <= 0 || day > 31) && day != -1)
return NULL;

if ((hour < 0 || hour >= 24) && hour != -1)
return NULL;

if ((minute < 0 || minute >= 60) && minute != -1)
return NULL;

if ((seconds < 0 || seconds >= 60) && seconds != -1)
return NULL;

if (tzoffset < -12.0 || tzoffset > 12.0)
return NULL;

if ((hour < 0 || minute < 0) &&
(hour != -1 || minute != -1 || seconds != -1 || tzoffset != 0.0))
return NULL;

tzhour = (gint) ABS (tzoffset);
tzminute = (gint) ((ABS (tzoffset) - tzhour) * 60);
Expand Down Expand Up @@ -959,6 +1025,9 @@ gst_date_time_new_from_iso8601_string (const gchar * string)

/* No date was supplied: make it today */
now_utc = g_date_time_new_now_utc ();
if (!now_utc)
return NULL;

if (tzoffset != 0.0) {
/* If a timezone offset was supplied, get the date of that timezone */
g_assert (gmt_offset_min != -99);
Expand All @@ -967,6 +1036,8 @@ gst_date_time_new_from_iso8601_string (const gchar * string)
g_date_time_add_minutes (now_utc,
(60 * gmt_offset_hour) + gmt_offset_min);
g_date_time_unref (now_utc);
if (!now_in_given_tz)
return NULL;
} else {
now_in_given_tz = now_utc;
}
Expand Down

0 comments on commit 9f23808

Please sign in to comment.