flags |= NFT_CACHE_FULL | NFT_CACHE_REFRESH;
break;
+ case CMD_OBJ_SET:
+ case CMD_OBJ_MAP:
+ if (filter && cmd->handle.table.name && cmd->handle.set.name) {
+ filter->table = cmd->handle.table.name;
+ filter->set = cmd->handle.set.name;
+ }
+ flags |= NFT_CACHE_FULL | NFT_CACHE_REFRESH;
+ break;
case CMD_OBJ_CHAINS:
flags |= NFT_CACHE_TABLE | NFT_CACHE_CHAIN;
break;
struct set_cache_dump_ctx {
struct netlink_ctx *nlctx;
struct table *table;
+ const struct nft_cache_filter *filter;
};
static int set_cache_cb(struct nftnl_set *nls, void *arg)
if (!set)
return -1;
+ if (ctx->filter && ctx->filter->set &&
+ (strcmp(ctx->filter->set, set->handle.set.name))) {
+ set_free(set);
+ return 0;
+ }
+
set_name = nftnl_set_get_str(nls, NFTNL_SET_NAME);
hash = djb_hash(set_name) % NFT_CACHE_HSIZE;
cache_add(&set->cache, &ctx->table->set_cache, hash);
}
static int set_cache_init(struct netlink_ctx *ctx, struct table *table,
- struct nftnl_set_list *set_list)
+ struct nftnl_set_list *set_list,
+ const struct nft_cache_filter *filter)
{
struct set_cache_dump_ctx dump_ctx = {
.nlctx = ctx,
.table = table,
+ .filter = filter,
};
nftnl_set_list_foreach(set_list, set_cache_cb, &dump_ctx);
ret = -1;
goto cache_fails;
}
- ret = set_cache_init(ctx, table, set_list);
+ ret = set_cache_init(ctx, table, set_list, filter);
nftnl_set_list_free(set_list);