mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 10:16:17 +01:00
Be more careful when calling destroy notifies
If we are, we can allow modification of the hash table from destroy notifies. https://bugzilla.gnome.org/show_bug.cgi?id=650459
This commit is contained in:
parent
7c63370e3a
commit
afc5319a27
116
glib/ghash.c
116
glib/ghash.c
@ -345,8 +345,8 @@ g_hash_table_set_shift_from_size (GHashTable *hash_table, gint size)
|
|||||||
*/
|
*/
|
||||||
static inline guint
|
static inline guint
|
||||||
g_hash_table_lookup_node (GHashTable *hash_table,
|
g_hash_table_lookup_node (GHashTable *hash_table,
|
||||||
gconstpointer key,
|
gconstpointer key,
|
||||||
guint *hash_return)
|
guint *hash_return)
|
||||||
{
|
{
|
||||||
guint node_index;
|
guint node_index;
|
||||||
guint hash_value;
|
guint hash_value;
|
||||||
@ -373,7 +373,7 @@ g_hash_table_lookup_node (GHashTable *hash_table,
|
|||||||
|
|
||||||
if (node_hash == hash_value)
|
if (node_hash == hash_value)
|
||||||
{
|
{
|
||||||
gpointer node_key = hash_table->keys[node_index];
|
gpointer node_key = hash_table->keys[node_index];
|
||||||
|
|
||||||
if (hash_table->key_equal_func)
|
if (hash_table->key_equal_func)
|
||||||
{
|
{
|
||||||
@ -419,11 +419,11 @@ g_hash_table_remove_node (GHashTable *hash_table,
|
|||||||
int i,
|
int i,
|
||||||
gboolean notify)
|
gboolean notify)
|
||||||
{
|
{
|
||||||
if (notify && hash_table->key_destroy_func)
|
gpointer key;
|
||||||
hash_table->key_destroy_func (hash_table->keys[i]);
|
gpointer value;
|
||||||
|
|
||||||
if (notify && hash_table->value_destroy_func)
|
key = hash_table->keys[i];
|
||||||
hash_table->value_destroy_func (hash_table->values[i]);
|
value = hash_table->values[i];
|
||||||
|
|
||||||
/* Erect tombstone */
|
/* Erect tombstone */
|
||||||
hash_table->hashes[i] = 1;
|
hash_table->hashes[i] = 1;
|
||||||
@ -433,6 +433,13 @@ g_hash_table_remove_node (GHashTable *hash_table,
|
|||||||
hash_table->values[i] = NULL;
|
hash_table->values[i] = NULL;
|
||||||
|
|
||||||
hash_table->nnodes--;
|
hash_table->nnodes--;
|
||||||
|
|
||||||
|
if (notify && hash_table->key_destroy_func)
|
||||||
|
hash_table->key_destroy_func (key);
|
||||||
|
|
||||||
|
if (notify && hash_table->value_destroy_func)
|
||||||
|
hash_table->value_destroy_func (value);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -451,33 +458,41 @@ g_hash_table_remove_all_nodes (GHashTable *hash_table,
|
|||||||
gboolean notify)
|
gboolean notify)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
gpointer key;
|
||||||
if (notify &&
|
gpointer value;
|
||||||
(hash_table->key_destroy_func != NULL ||
|
|
||||||
hash_table->value_destroy_func != NULL))
|
|
||||||
{
|
|
||||||
for (i = 0; i < hash_table->size; i++)
|
|
||||||
{
|
|
||||||
if (HASH_IS_REAL (hash_table->hashes[i]))
|
|
||||||
{
|
|
||||||
if (hash_table->key_destroy_func != NULL)
|
|
||||||
hash_table->key_destroy_func (hash_table->keys[i]);
|
|
||||||
|
|
||||||
if (hash_table->value_destroy_func != NULL)
|
|
||||||
hash_table->value_destroy_func (hash_table->values[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* We need to set node->key_hash = 0 for all nodes - might as well be GC
|
|
||||||
* friendly and clear everything
|
|
||||||
*/
|
|
||||||
memset (hash_table->hashes, 0, hash_table->size * sizeof (guint));
|
|
||||||
memset (hash_table->keys, 0, hash_table->size * sizeof (gpointer));
|
|
||||||
memset (hash_table->values, 0, hash_table->size * sizeof (gpointer));
|
|
||||||
|
|
||||||
hash_table->nnodes = 0;
|
hash_table->nnodes = 0;
|
||||||
hash_table->noccupied = 0;
|
hash_table->noccupied = 0;
|
||||||
|
|
||||||
|
if (!notify ||
|
||||||
|
(hash_table->key_destroy_func == NULL &&
|
||||||
|
hash_table->value_destroy_func == NULL))
|
||||||
|
{
|
||||||
|
memset (hash_table->hashes, 0, hash_table->size * sizeof (guint));
|
||||||
|
memset (hash_table->keys, 0, hash_table->size * sizeof (gpointer));
|
||||||
|
memset (hash_table->values, 0, hash_table->size * sizeof (gpointer));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < hash_table->size; i++)
|
||||||
|
{
|
||||||
|
if (HASH_IS_REAL (hash_table->hashes[i]))
|
||||||
|
{
|
||||||
|
key = hash_table->keys[i];
|
||||||
|
value = hash_table->values[i];
|
||||||
|
|
||||||
|
hash_table->hashes[i] = 0;
|
||||||
|
hash_table->keys[i] = NULL;
|
||||||
|
hash_table->values[i] = NULL;
|
||||||
|
|
||||||
|
if (hash_table->key_destroy_func != NULL)
|
||||||
|
hash_table->key_destroy_func (key);
|
||||||
|
|
||||||
|
if (hash_table->value_destroy_func != NULL)
|
||||||
|
hash_table->value_destroy_func (value);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -662,7 +677,7 @@ g_hash_table_new_full (GHashFunc hash_func,
|
|||||||
**/
|
**/
|
||||||
void
|
void
|
||||||
g_hash_table_iter_init (GHashTableIter *iter,
|
g_hash_table_iter_init (GHashTableIter *iter,
|
||||||
GHashTable *hash_table)
|
GHashTable *hash_table)
|
||||||
{
|
{
|
||||||
RealIter *ri = (RealIter *) iter;
|
RealIter *ri = (RealIter *) iter;
|
||||||
|
|
||||||
@ -692,8 +707,8 @@ g_hash_table_iter_init (GHashTableIter *iter,
|
|||||||
**/
|
**/
|
||||||
gboolean
|
gboolean
|
||||||
g_hash_table_iter_next (GHashTableIter *iter,
|
g_hash_table_iter_next (GHashTableIter *iter,
|
||||||
gpointer *key,
|
gpointer *key,
|
||||||
gpointer *value)
|
gpointer *value)
|
||||||
{
|
{
|
||||||
RealIter *ri = (RealIter *) iter;
|
RealIter *ri = (RealIter *) iter;
|
||||||
gint position;
|
gint position;
|
||||||
@ -969,6 +984,8 @@ g_hash_table_insert_internal (GHashTable *hash_table,
|
|||||||
guint node_index;
|
guint node_index;
|
||||||
guint key_hash;
|
guint key_hash;
|
||||||
guint old_hash;
|
guint old_hash;
|
||||||
|
gpointer old_key;
|
||||||
|
gpointer old_value;
|
||||||
|
|
||||||
g_return_if_fail (hash_table != NULL);
|
g_return_if_fail (hash_table != NULL);
|
||||||
g_return_if_fail (hash_table->ref_count > 0);
|
g_return_if_fail (hash_table->ref_count > 0);
|
||||||
@ -979,24 +996,13 @@ g_hash_table_insert_internal (GHashTable *hash_table,
|
|||||||
node_index = g_hash_table_lookup_node (hash_table, key, &key_hash);
|
node_index = g_hash_table_lookup_node (hash_table, key, &key_hash);
|
||||||
|
|
||||||
old_hash = hash_table->hashes[node_index];
|
old_hash = hash_table->hashes[node_index];
|
||||||
|
old_key = hash_table->keys[node_index];
|
||||||
|
old_value = hash_table->values[node_index];
|
||||||
|
|
||||||
if (HASH_IS_REAL (old_hash))
|
if (HASH_IS_REAL (old_hash))
|
||||||
{
|
{
|
||||||
if (hash_table->value_destroy_func)
|
|
||||||
hash_table->value_destroy_func (hash_table->values[node_index]);
|
|
||||||
|
|
||||||
if (keep_new_key)
|
if (keep_new_key)
|
||||||
{
|
hash_table->keys[node_index] = key;
|
||||||
if (hash_table->key_destroy_func)
|
|
||||||
hash_table->key_destroy_func (hash_table->keys[node_index]);
|
|
||||||
hash_table->keys[node_index] = key;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (hash_table->key_destroy_func)
|
|
||||||
hash_table->key_destroy_func (key);
|
|
||||||
}
|
|
||||||
|
|
||||||
hash_table->values[node_index] = value;
|
hash_table->values[node_index] = value;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1018,6 +1024,14 @@ g_hash_table_insert_internal (GHashTable *hash_table,
|
|||||||
hash_table->version++;
|
hash_table->version++;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (HASH_IS_REAL (old_hash))
|
||||||
|
{
|
||||||
|
if (hash_table->key_destroy_func)
|
||||||
|
hash_table->key_destroy_func (keep_new_key ? old_key : key);
|
||||||
|
if (hash_table->value_destroy_func)
|
||||||
|
hash_table->value_destroy_func (old_value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1208,7 +1222,7 @@ g_hash_table_steal_all (GHashTable *hash_table)
|
|||||||
*/
|
*/
|
||||||
static guint
|
static guint
|
||||||
g_hash_table_foreach_remove_or_steal (GHashTable *hash_table,
|
g_hash_table_foreach_remove_or_steal (GHashTable *hash_table,
|
||||||
GHRFunc func,
|
GHRFunc func,
|
||||||
gpointer user_data,
|
gpointer user_data,
|
||||||
gboolean notify)
|
gboolean notify)
|
||||||
{
|
{
|
||||||
@ -1222,7 +1236,7 @@ g_hash_table_foreach_remove_or_steal (GHashTable *hash_table,
|
|||||||
gpointer node_value = hash_table->values[i];
|
gpointer node_value = hash_table->values[i];
|
||||||
|
|
||||||
if (HASH_IS_REAL (node_hash) &&
|
if (HASH_IS_REAL (node_hash) &&
|
||||||
(* func) (node_key, node_value, user_data))
|
(* func) (node_key, node_value, user_data))
|
||||||
{
|
{
|
||||||
g_hash_table_remove_node (hash_table, i, notify);
|
g_hash_table_remove_node (hash_table, i, notify);
|
||||||
deleted++;
|
deleted++;
|
||||||
@ -1373,7 +1387,7 @@ g_hash_table_find (GHashTable *hash_table,
|
|||||||
gpointer node_value = hash_table->values[i];
|
gpointer node_value = hash_table->values[i];
|
||||||
|
|
||||||
if (HASH_IS_REAL (node_hash) &&
|
if (HASH_IS_REAL (node_hash) &&
|
||||||
predicate (node_key, node_value, user_data))
|
predicate (node_key, node_value, user_data))
|
||||||
return node_value;
|
return node_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -825,6 +825,34 @@ set_ref_hash_test (void)
|
|||||||
key_unref (key2);
|
key_unref (key2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GHashTable *h;
|
||||||
|
|
||||||
|
static void
|
||||||
|
value_destroy_insert (gpointer value)
|
||||||
|
{
|
||||||
|
g_hash_table_remove_all (h);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
test_destroy_modify (void)
|
||||||
|
{
|
||||||
|
g_test_bug ("650459");
|
||||||
|
|
||||||
|
h = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, value_destroy_insert);
|
||||||
|
|
||||||
|
g_hash_table_insert (h, g_strdup ("a"), g_strdup ("b"));
|
||||||
|
g_hash_table_insert (h, g_strdup ("c"), g_strdup ("d"));
|
||||||
|
g_hash_table_insert (h, g_strdup ("e"), g_strdup ("f"));
|
||||||
|
g_hash_table_insert (h, g_strdup ("g"), g_strdup ("h"));
|
||||||
|
g_hash_table_insert (h, g_strdup ("h"), g_strdup ("k"));
|
||||||
|
g_hash_table_insert (h, g_strdup ("a"), g_strdup ("c"));
|
||||||
|
|
||||||
|
g_hash_table_remove (h, "c");
|
||||||
|
g_hash_table_remove (h, "e");
|
||||||
|
|
||||||
|
g_hash_table_unref (h);
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char *argv[])
|
main (int argc, char *argv[])
|
||||||
{
|
{
|
||||||
@ -846,6 +874,7 @@ main (int argc, char *argv[])
|
|||||||
|
|
||||||
/* tests for individual bugs */
|
/* tests for individual bugs */
|
||||||
g_test_add_func ("/hash/lookup-null-key", test_lookup_null_key);
|
g_test_add_func ("/hash/lookup-null-key", test_lookup_null_key);
|
||||||
|
g_test_add_func ("/hash/destroy-modify", test_destroy_modify);
|
||||||
|
|
||||||
return g_test_run ();
|
return g_test_run ();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user