When adding declared chains to the cache, we may hold more than one single reference from struct cmd and the cache. Signed-off-by: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> --- include/rule.h | 3 +++ src/rule.c | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/include/rule.h b/include/rule.h index cc4e5c2..7e8be7c 100644 --- a/include/rule.h +++ b/include/rule.h @@ -110,6 +110,7 @@ enum chain_flags { * @list: list node in table list * @handle: chain handle * @location: location the chain was defined at + * @refcnt: reference counter * @flags: chain flags * @hookstr: unified and human readable hook name (base chains) * @hooknum: hook number (base chains) @@ -122,6 +123,7 @@ struct chain { struct list_head list; struct handle handle; struct location location; + unsigned int refcnt; uint32_t flags; const char *hookstr; unsigned int hooknum; @@ -135,6 +137,7 @@ struct chain { extern const char *chain_type_name_lookup(const char *name); extern const char *chain_hookname_lookup(const char *name); extern struct chain *chain_alloc(const char *name); +extern struct chain *chain_get(struct chain *chain); extern void chain_free(struct chain *chain); extern void chain_add_hash(struct chain *chain, struct table *table); extern struct chain *chain_lookup(const struct table *table, diff --git a/src/rule.c b/src/rule.c index 7f2a27f..8461461 100644 --- a/src/rule.c +++ b/src/rule.c @@ -443,6 +443,7 @@ struct chain *chain_alloc(const char *name) struct chain *chain; chain = xzalloc(sizeof(*chain)); + chain->refcnt = 1; init_list_head(&chain->rules); init_list_head(&chain->scope.symbols); if (name != NULL) @@ -452,10 +453,18 @@ struct chain *chain_alloc(const char *name) return chain; } +struct chain *chain_get(struct chain *chain) +{ + chain->refcnt++; + return chain; +} + void chain_free(struct chain *chain) { struct rule *rule, *next; + if (--chain->refcnt > 0) + return; list_for_each_entry_safe(rule, next, &chain->rules, list) rule_free(rule); handle_free(&chain->handle); -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html