debuginfod: Use gmtime_r instead of gmtime to avoid data race
authorMark Wielaard <mark@klomp.org>
Wed, 1 Dec 2021 12:42:50 +0000 (13:42 +0100)
committerMark Wielaard <mark@klomp.org>
Fri, 3 Dec 2021 12:29:21 +0000 (13:29 +0100)
Since we are multi-threaded using gmtime might cause a data race
because gmtime reuses a global struct to write data into. Make
sure that each thread uses their own struct tm and use gmtime_r
instead.

Signed-off-by: Mark Wielaard <mark@klomp.org>
debuginfod/ChangeLog
debuginfod/debuginfod.cxx

index 822bd63..625dead 100644 (file)
@@ -1,3 +1,8 @@
+2021-12-01  Mark Wielaard  <mark@klomp.org>
+
+       * debuginfod-client.c (timestamp): Use gmtime_r instead of gmtime.
+       (add_mhd_last_modified): Likewise.
+
 2021-11-10  Érico N. Rolim  <erico.erc@gmail.com>
 
        * debuginfod.cxx: include "system.h" under 'extern "C"' block.
index 764e7b9..0bbaae9 100644 (file)
@@ -852,10 +852,11 @@ timestamp (ostream &o)
   char datebuf[80];
   char *now2 = NULL;
   time_t now_t = time(NULL);
-  struct tm *now = gmtime (&now_t);
-  if (now)
+  struct tm now;
+  struct tm *nowp = gmtime_r (&now_t, &now);
+  if (nowp)
     {
-      (void) strftime (datebuf, sizeof (datebuf), "%c", now);
+      (void) strftime (datebuf, sizeof (datebuf), "%c", nowp);
       now2 = datebuf;
     }
 
@@ -1070,11 +1071,13 @@ conninfo (struct MHD_Connection * conn)
 static void
 add_mhd_last_modified (struct MHD_Response *resp, time_t mtime)
 {
-  struct tm *now = gmtime (&mtime);
-  if (now != NULL)
+  struct tm now;
+  struct tm *nowp = gmtime_r (&mtime, &now);
+  if (nowp != NULL)
     {
       char datebuf[80];
-      size_t rc = strftime (datebuf, sizeof (datebuf), "%a, %d %b %Y %T GMT", now);
+      size_t rc = strftime (datebuf, sizeof (datebuf), "%a, %d %b %Y %T GMT",
+                            nowp);
       if (rc > 0 && rc < sizeof (datebuf))
         (void) MHD_add_response_header (resp, "Last-Modified", datebuf);
     }