From d79e398a8b089c3268f4aaf3aff12fea888d5264 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 20 Aug 2019 17:38:31 +0100 Subject: [Minor] Some fixes to ids propagation --- src/libserver/rspamd_symcache.c | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'src/libserver/rspamd_symcache.c') diff --git a/src/libserver/rspamd_symcache.c b/src/libserver/rspamd_symcache.c index 900a1894c..69080eb18 100644 --- a/src/libserver/rspamd_symcache.c +++ b/src/libserver/rspamd_symcache.c @@ -542,6 +542,8 @@ rspamd_symcache_propagate_dep (struct rspamd_symcache *cache, const guint *ids; guint nids = 0; + msg_debug_cache ("check id propagation for dependency %s from %s", + it->symbol, dit->symbol); ids = rspamd_symcache_get_allowed_settings_ids (cache, dit->symbol, &nids); /* TODO: merge? */ @@ -573,12 +575,15 @@ rspamd_symcache_process_dep (struct rspamd_symcache *cache, struct cache_dependency *rdep; if (dep->id >= 0) { + msg_debug_cache ("process real dependency %s on %s", it->symbol, dep->sym); dit = rspamd_symcache_find_filter (cache, dep->sym, true); } if (dep->vid >= 0) { /* Case of the virtual symbol that depends on another (maybe virtual) symbol */ vdit = rspamd_symcache_find_filter (cache, dep->sym, false); + msg_debug_cache ("process virtual dependency %s(%d) on %s(%d)", it->symbol, + dep->vid, vdit->symbol, vdit->id); } else { vdit = dit; @@ -686,7 +691,8 @@ rspamd_symcache_post_init (struct rspamd_symcache *cache) else { msg_debug_cache ("delayed between %s(%d:%d) -> %s", ddep->from, it->id, vit->id, ddep->to); - rspamd_symcache_add_dependency (cache, it->id, ddep->to, vit->id); + rspamd_symcache_add_dependency (cache, it->id, ddep->to, vit != it ? + vit->id : -1); } cur = g_list_next (cur); @@ -730,6 +736,14 @@ rspamd_symcache_post_init (struct rspamd_symcache *cache) } } + /* Special case for virtual symbols */ + PTR_ARRAY_FOREACH (cache->virtual, i, it) { + + PTR_ARRAY_FOREACH (it->deps, j, dep) { + rspamd_symcache_process_dep (cache, it, dep); + } + } + g_ptr_array_sort_with_data (cache->prefilters_empty, prefilters_cmp, cache); g_ptr_array_sort_with_data (cache->prefilters, prefilters_cmp, cache); g_ptr_array_sort_with_data (cache->postfilters, postfilters_cmp, cache); @@ -2485,7 +2499,7 @@ rspamd_symcache_add_dependency (struct rspamd_symcache *cache, g_assert (id_from >= 0 && id_from < (gint)cache->items_by_id->len); - source = g_ptr_array_index (cache->items_by_id, id_from); + source = (struct rspamd_symcache_item *)g_ptr_array_index (cache->items_by_id, id_from); dep = rspamd_mempool_alloc (cache->static_pool, sizeof (*dep)); dep->id = id_from; dep->sym = rspamd_mempool_strdup (cache->static_pool, to); @@ -2494,11 +2508,13 @@ rspamd_symcache_add_dependency (struct rspamd_symcache *cache, dep->vid = -1; g_ptr_array_add (source->deps, dep); - if (id_from != virtual_id_from) { + if (virtual_id_from >= 0) { + g_assert (virtual_id_from < (gint)cache->virtual->len); /* We need that for settings id propagation */ - vsource = g_ptr_array_index (cache->items_by_id, virtual_id_from); + vsource = (struct rspamd_symcache_item *) + g_ptr_array_index (cache->virtual, virtual_id_from); dep = rspamd_mempool_alloc (cache->static_pool, sizeof (*dep)); - dep->vid = id_from; + dep->vid = virtual_id_from; dep->id = -1; dep->sym = rspamd_mempool_strdup (cache->static_pool, to); /* Will be filled later */ -- cgit v1.2.3