]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Conf: Fix symbol lookup
authorOndrej Zajicek <santiago@crfreenet.org>
Thu, 27 Apr 2023 15:09:00 +0000 (17:09 +0200)
committerMaria Matejka <mq@ucw.cz>
Tue, 10 Oct 2023 12:27:36 +0000 (14:27 +0200)
The symbol table used just symbol name as a key, and used a trick with
active flag to find symbols in active scopes with one hash table lookup.

The disadvantage is that it can degenerate to O(n) for negative queries
in situations where are many symbols with the same name in different
scopes.

Thanks to Yanko Kaneti for the bugreport.

conf/cf-lex.l
conf/conf.h
lib/hash.h

index ceedee8a55252c80dbf970ad7d778340659312cf..0a02dd73675f91351cfe6796bc932407001a637a 100644 (file)
@@ -73,10 +73,10 @@ static uint cf_hash(const byte *c);
 #define KW_FN(k)               cf_hash(k)
 #define KW_ORDER               8 /* Fixed */
 
-#define SYM_KEY(n)             n->name, n->scope->active
+#define SYM_KEY(n)             n->name, n->scope
 #define SYM_NEXT(n)            n->next
 #define SYM_EQ(a,s1,b,s2)      !strcmp(a,b) && s1 == s2
-#define SYM_FN(k,s)            cf_hash(k)
+#define SYM_FN(k,s)            cf_hash(k) ^ ptr_hash(s)
 #define SYM_ORDER              6 /* Initial */
 
 #define SYM_REHASH             sym_rehash
@@ -602,29 +602,31 @@ cf_new_symbol(const byte *c)
 }
 
 /**
- * cf_find_symbol - find a symbol by name
+ * cf_find_local_symbol - find a symbol by name
  * @cfg: specificed config
+ * @scope: specified symbol scope
  * @c: symbol name
  *
  * This functions searches the symbol table in the config @cfg for a symbol of
- * given name. First it examines the current scope, then the second recent one
+ * given name. First it examines the scope @scope, then the parent scope
  * and so on until it either finds the symbol and returns a pointer to its
  * &symbol structure or reaches the end of the scope chain and returns %NULL to
  * signify no match.
  */
 struct symbol *
-cf_find_symbol(const struct config *cfg, const byte *c)
+cf_find_local_symbol(const struct config *cfg, const struct sym_scope *scope, const byte *c)
 {
   struct symbol *s;
 
-  if (cfg->sym_hash.data &&
-      (s = HASH_FIND(cfg->sym_hash, SYM, c, 1)))
-    return s;
+  if (cfg->sym_hash.data)
+    for (; scope; scope = scope->next)
+      if (s = HASH_FIND(cfg->sym_hash, SYM, c, scope))
+       return s;
 
   /* In CLI command parsing, fallback points to the current config, otherwise it is NULL. */
   if (cfg->fallback &&
       cfg->fallback->sym_hash.data &&
-      (s = HASH_FIND(cfg->fallback->sym_hash, SYM, c, 1)))
+      (s = HASH_FIND(cfg->fallback->sym_hash, SYM, c, cfg->fallback->root_scope)))
     return s;
 
   return NULL;
@@ -642,7 +644,7 @@ cf_find_symbol(const struct config *cfg, const byte *c)
 struct symbol *
 cf_get_symbol(const byte *c)
 {
-  return cf_find_symbol(new_config, c) ?: cf_new_symbol(c);
+  return cf_find_local_symbol(new_config, conf_this_scope, c) ?: cf_new_symbol(c);
 }
 
 /**
index b409750e7bcff3d19421af9841f9ce2423c573e2..cb47e7d0fa83a214aa763c920ab8071d6152742e 100644 (file)
@@ -187,7 +187,9 @@ int cf_lex(void);
 void cf_lex_init(int is_cli, struct config *c);
 void cf_lex_unwind(void);
 
-struct symbol *cf_find_symbol(const struct config *cfg, const byte *c);
+struct symbol *cf_find_local_symbol(const struct config *cfg, const struct sym_scope *scope, const byte *c);
+static inline struct symbol *cf_find_symbol(const struct config *cfg, const byte *c)
+{ return cf_find_local_symbol(cfg, cfg->root_scope, c); }
 
 struct symbol *cf_get_symbol(const byte *c);
 struct symbol *cf_default_name(char *template, int *counter);
index 8febb33fa99117a7c411ee9ca151f8a9d74f3580..b30f7830744a84917548c2345d559b897360e7d0 100644 (file)
@@ -237,7 +237,7 @@ mem_hash(const void *p, uint s)
 }
 
 static inline uint
-ptr_hash(void *ptr)
+ptr_hash(const void *ptr)
 {
   uintptr_t p = (uintptr_t) ptr;
   return p ^ (p << 8) ^ (p >> 16);