lib/ctf-ir/utils.c: lazy-initialize the hash table of reserved keywords
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Wed, 6 Sep 2017 01:09:13 +0000 (21:09 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Sun, 17 Sep 2017 18:10:51 +0000 (14:10 -0400)
This fixes bugs in static build context on platforms where the calling
order of library constructors is undefined: this constructor could be
called before GLib's constructor, in which case you cannot call
g_hash_table_new() because GLib's slice allocator is not initialized.

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
lib/ctf-ir/utils.c

index 0ab0df2464c72df45ecb898f886c5c8522824b89..0b08652991afdb7e29891aaf2622c8381676f9d5 100644 (file)
@@ -29,7 +29,7 @@
 #define BT_LOG_TAG "CTF-IR-UTILS"
 #include <babeltrace/lib-logging-internal.h>
 
-#include <string.h>
+#include <assert.h>
 #include <stdlib.h>
 #include <glib.h>
 #include <babeltrace/ctf-ir/utils.h>
@@ -43,21 +43,21 @@ const char * const reserved_keywords_str[] = {"align", "callsite",
 
 static GHashTable *reserved_keywords_set;
 static int init_done;
-static int global_data_refcount;
 
-static __attribute__((constructor))
-void trace_init(void)
+static
+void try_init_reserved_keywords(void)
 {
        size_t i;
        const size_t reserved_keywords_count =
                sizeof(reserved_keywords_str) / sizeof(char *);
 
-       global_data_refcount++;
-       if (init_done) {
+       if (reserved_keywords_set) {
                return;
        }
 
        reserved_keywords_set = g_hash_table_new(g_direct_hash, g_direct_equal);
+       assert(reserved_keywords_set);
+
        for (i = 0; i < reserved_keywords_count; i++) {
                gpointer quark = GINT_TO_POINTER(g_quark_from_string(
                        reserved_keywords_str[i]));
@@ -71,7 +71,7 @@ void trace_init(void)
 static __attribute__((destructor))
 void trace_finalize(void)
 {
-       if (--global_data_refcount == 0) {
+       if (reserved_keywords_set) {
                g_hash_table_destroy(reserved_keywords_set);
        }
 }
@@ -88,6 +88,8 @@ int bt_ctf_validate_identifier(const char *input_string)
                goto end;
        }
 
+       try_init_reserved_keywords();
+
        if (input_string[0] == '\0') {
                ret = -1;
                goto end;
This page took 0.025206 seconds and 4 git commands to generate.