From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Jeremy Sowden <jeremy@azazel.net>
Cc: Netfilter Devel <netfilter-devel@vger.kernel.org>
Subject: Re: [PATCH nft v2] evaluate: fix expr_set_context call for shift binops.
Date: Mon, 6 Jan 2020 10:28:42 +0100 [thread overview]
Message-ID: <20200106092842.tp2pxubgmfcptthq@salvia> (raw)
In-Reply-To: <20191224231428.1972155-1-jeremy@azazel.net>
Hi Jeremy,
On Tue, Dec 24, 2019 at 11:14:28PM +0000, Jeremy Sowden wrote:
> expr_evaluate_binop calls expr_set_context for shift expressions to set
> the context data-type to `integer`. This clobbers the byte-order of the
> context, resulting in unexpected conversions to NBO. For example:
>
> $ sudo nft flush ruleset
> $ sudo nft add table t
> $ sudo nft add chain t c '{ type filter hook output priority mangle; }'
> $ sudo nft add rule t c oif lo tcp dport ssh ct mark set '0x10 | 0xe'
> $ sudo nft add rule t c oif lo tcp dport ssh ct mark set '0xf << 1'
> $ sudo nft list table t
> table ip t {
> chain c {
> type filter hook output priority mangle; policy accept;
> oif "lo" tcp dport 22 ct mark set 0x0000001e
> oif "lo" tcp dport 22 ct mark set 0x1e000000
> }
> }
>
> Replace it with a call to __expr_set_context in order to preserve host
> endianness.
>
> Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
> ---
> src/evaluate.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> Change-log:
>
> In v1, I just dropped the expr_set_context call; however, it is needed
> to ensure that the right operand has integer type. Instead, I now
> change it to __expr_set_context in order to ensure that the byte-order
> is correct.
>
> diff --git a/src/evaluate.c b/src/evaluate.c
> index a865902c0fc7..43637e1cf6c8 100644
> --- a/src/evaluate.c
> +++ b/src/evaluate.c
> @@ -1145,7 +1145,8 @@ static int expr_evaluate_binop(struct eval_ctx *ctx, struct expr **expr)
> left = op->left;
>
> if (op->op == OP_LSHIFT || op->op == OP_RSHIFT)
> - expr_set_context(&ctx->ectx, &integer_type, ctx->ectx.len);
> + __expr_set_context(&ctx->ectx, &integer_type,
> + BYTEORDER_HOST_ENDIAN, ctx->ectx.len, 0);
tests/py spews a few warnings after this patch.
next prev parent reply other threads:[~2020-01-06 9:28 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-20 19:02 [PATCH nftables] evaluate: remove expr_set_context call Jeremy Sowden
2019-12-24 23:12 ` Jeremy Sowden
2019-12-24 23:16 ` Jeremy Sowden
2019-12-24 23:14 ` [PATCH nft v2] evaluate: fix expr_set_context call for shift binops Jeremy Sowden
2020-01-06 9:28 ` Pablo Neira Ayuso [this message]
2020-01-06 9:31 ` Jeremy Sowden
2020-01-06 22:35 ` [PATCH nft v3] " Jeremy Sowden
2020-01-08 22:35 ` 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=20200106092842.tp2pxubgmfcptthq@salvia \
--to=pablo@netfilter.org \
--cc=jeremy@azazel.net \
--cc=netfilter-devel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox