From: Pablo Neira Ayuso <pablo@netfilter.org>
To: wenxu@ucloud.cn
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nft v5] meta: add ibrpvid and ibrvproto support
Date: Mon, 26 Aug 2019 12:26:15 +0200 [thread overview]
Message-ID: <20190826102615.cqfidve47clkhzdr@salvia> (raw)
In-Reply-To: <1566567928-18121-1-git-send-email-wenxu@ucloud.cn>
On Fri, Aug 23, 2019 at 09:45:28PM +0800, wenxu@ucloud.cn wrote:
> From: wenxu <wenxu@ucloud.cn>
>
> This allows you to match the bridge pvid and vlan protocol, for
> instance:
>
> nft add rule bridge firewall zones meta ibrvproto 0x8100
> nft add rule bridge firewall zones meta ibrpvid 100
When running python nft-tests.py with -j, I get this here:
bridge/meta.t: WARNING: line 7: '{"nftables": [{"add": {"rule":
{"table": "test-bridge", "chain": "input", "family": "bridge", "expr":
[{"match": {"op": "==", "right": "0x8100", "left": {"meta": {"key":
"ibrvproto"}}}}]}}}]}': '[{"match": {"left": {"meta": {"key":
"ibrvproto"}}, "op": "==", "right": "0x8100"}}]' mismatches
'[{"match": {"left": {"meta": {"key": "ibrvproto"}}, "op": "==",
"right": 33024}}]'
/tmp/nftables/tests/py/bridge/meta.t.json.output.got:
WARNING: line 2: Wrote JSON output for rule meta ibrvproto 0x8100
Then, if I type:
nft rule x y meta protocol vlan
Then, printing shows:
table ip x {
chain y {
meta protocol vlan
}
}
However, with:
nft rule x y meta ibrvproto vlan
I get this:
table bridge x {
chain y {
meta ibrvproto 0x8100
}
}
I think the problem the endianess in the new key definitions are not
correct.
The br_vlan_get_proto() in the kernel returns a value in network byte
order.
I think this does not match either then? Because bytecode is
incorrect?
Thanks.
next prev parent reply other threads:[~2019-08-26 10:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-23 13:45 [PATCH nft v5] meta: add ibrpvid and ibrvproto support wenxu
2019-08-26 10:26 ` Pablo Neira Ayuso [this message]
2019-08-26 13:51 ` wenxu
2019-08-26 14:37 ` Pablo Neira Ayuso
2019-08-27 3:10 ` wenxu
2019-08-28 8:30 ` 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=20190826102615.cqfidve47clkhzdr@salvia \
--to=pablo@netfilter.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=wenxu@ucloud.cn \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).