From: Phil Sutter <phil@nwl.cc>
To: Pablo Neira Ayuso <pablo@netfilter.org>
Cc: netfilter-devel@vger.kernel.org, fw@strlen.de
Subject: Re: [PATCH nft 3/5] src: add cache level flags
Date: Mon, 17 Jun 2019 17:57:07 +0200 [thread overview]
Message-ID: <20190617155707.GR31548@orbyte.nwl.cc> (raw)
In-Reply-To: <20190617122518.10486-3-pablo@netfilter.org>
Hi,
On Mon, Jun 17, 2019 at 02:25:16PM +0200, Pablo Neira Ayuso wrote:
> The score approach based on command type is confusing.
>
> This patch introduces cache level flags, each flag specifies what kind
> of object type is needed. These flags are set on/off depending on the
> list of commands coming in this batch.
>
> cache_is_complete() now checks if the cache contains the objects that
> are needed in the cache through these new flags.
Thanks for committing to getting the cache stuff right!
[...]
> +enum cache_level_flags {
> + NFT_CACHE_EMPTY = 0,
> + NFT_CACHE_TABLE = (1 << 0),
> + NFT_CACHE_CHAIN = (1 << 1),
> + NFT_CACHE_SET = (1 << 2),
> + NFT_CACHE_FLOWTABLE = (1 << 3),
> + NFT_CACHE_OBJECT = (1 << 4),
> + NFT_CACHE_SETELEM = (1 << 5),
> + NFT_CACHE_RULE = (1 << 6),
> + NFT_CACHE_FULL = (NFT_CACHE_TABLE |
> + NFT_CACHE_CHAIN |
> + NFT_CACHE_SET |
> + NFT_CACHE_FLOWTABLE |
> + NFT_CACHE_OBJECT |
> + NFT_CACHE_SETELEM |
> + NFT_CACHE_RULE),
> +};
I think we can do this in a way which reflects the implicit dependencies
when fetching ruleset elements. I think of something like:
| enum nft_cache_bits {
| NFT_CACHE_TABLE_BIT = (1 << 0),
| NFT_CACHE_CHAIN_BIT = (1 << 1),
| NFT_CACHE_SET_BIT = (1 << 2),
| NFT_CACHE_FLOWTABLE_BIT = (1 << 3),
| NFT_CACHE_OBJECT_BIT = (1 << 4),
| NFT_CACHE_SETELEM_BIT = (1 << 5),
| NFT_CACHE_RULE_BIT = (1 << 6),
| __NFT_CACHE_MAX_BIT = (1 << 7),
| };
|
| enum cache_level_flags {
| NFT_CACHE_EMPTY = 0,
| NFT_CACHE_TABLE = NFT_CACHE_TABLE_BIT,
| NFT_CACHE_CHAIN = NFT_CACHE_TABLE_BIT
| | NFT_CACHE_CHAIN_BIT,
| NFT_CACHE_SET = NFT_CACHE_TABLE_BIT
| | NFT_CACHE_SET_BIT,
| NFT_CACHE_FLOWTABLE = NFT_CACHE_TABLE_BIT
| | NFT_CACHE_FLOWTABLE_BIT,
| NFT_CACHE_OBJECT = NFT_CACHE_TABLE_BIT
| | NFT_CACHE_OBJECT_BIT,
| NFT_CACHE_SETELEM = NFT_CACHE_TABLE_BIT
| | NFT_CACHE_SET_BIT
| | NFT_CACHE_SETELEM_BIT,
| NFT_CACHE_RULE = NFT_CACHE_TABLE_BIT
| | NFT_CACHE_CHAIN_BIT
| | NFT_CACHE_SETELEM_BIT
| | NFT_CACHE_RULE_BIT,
| NFT_CACHE_FULL = __NFT_CACHE_MAX_BIT - 1,
| };
This removes these dependency details from cache_evaluate() functions.
What do you think?
Cheers, Phil
next prev parent reply other threads:[~2019-06-17 15:57 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-17 12:25 [PATCH nft 1/5] src: remove useless parameter from cache_flush() Pablo Neira Ayuso
2019-06-17 12:25 ` [PATCH nft 2/5] tests: shell: cannot use handle for non-existing rule in kernel Pablo Neira Ayuso
2019-06-17 16:00 ` Phil Sutter
2019-06-17 16:06 ` Pablo Neira Ayuso
2019-06-17 16:29 ` Phil Sutter
2019-06-17 12:25 ` [PATCH nft 3/5] src: add cache level flags Pablo Neira Ayuso
2019-06-17 15:57 ` Phil Sutter [this message]
2019-06-17 16:11 ` Phil Sutter
2019-06-17 16:28 ` Pablo Neira Ayuso
2019-06-17 16:45 ` Phil Sutter
2019-06-17 17:24 ` Pablo Neira Ayuso
2019-06-17 17:28 ` Phil Sutter
2019-06-17 17:33 ` Pablo Neira Ayuso
2019-06-17 20:37 ` Phil Sutter
2019-06-17 12:25 ` [PATCH nft 4/5] rule: skip cache population from do_command_monitor() Pablo Neira Ayuso
2019-06-17 12:25 ` [PATCH nft 5/5] netlink: remove netlink_list_table() Pablo Neira Ayuso
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190617155707.GR31548@orbyte.nwl.cc \
--to=phil@nwl.cc \
--cc=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.