* [PATCH nft v2] payload: fix endianess issue in payload_expr_pctx_update()
@ 2014-12-04 13:36 Pablo Neira Ayuso
2014-12-05 6:39 ` leroy christophe
0 siblings, 1 reply; 3+ messages in thread
From: Pablo Neira Ayuso @ 2014-12-04 13:36 UTC (permalink / raw)
To: netfilter-devel; +Cc: kaber, christophe.leroy
Use constant_data_ptr() to point to the right memory position on
big endian when exporting data that is stored in a larger variable.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
v2: this also fixes the printing of 1 byte fields that are converted to
symbolic constant.
src/datatype.c | 4 ++--
src/payload.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/datatype.c b/src/datatype.c
index fd3573e..729e63b 100644
--- a/src/datatype.c
+++ b/src/datatype.c
@@ -158,8 +158,8 @@ void symbolic_constant_print(const struct symbol_table *tbl,
/* Export the data in the correct byteorder for comparison */
assert(expr->len / BITS_PER_BYTE <= sizeof(val));
- mpz_export_data(&val, expr->value, expr->byteorder,
- expr->len / BITS_PER_BYTE);
+ mpz_export_data(constant_data_ptr(val, expr->len), expr->value,
+ expr->byteorder, expr->len / BITS_PER_BYTE);
for (s = tbl->symbols; s->identifier != NULL; s++) {
if (val == s->value)
diff --git a/src/payload.c b/src/payload.c
index ebf8079..83742fb 100644
--- a/src/payload.c
+++ b/src/payload.c
@@ -79,8 +79,8 @@ static void payload_expr_pctx_update(struct proto_ctx *ctx,
/* Export the data in the correct byte order */
assert(right->len / BITS_PER_BYTE <= sizeof(proto));
- mpz_export_data(&proto, right->value, right->byteorder,
- right->len / BITS_PER_BYTE);
+ mpz_export_data(constant_data_ptr(proto, right->len), right->value,
+ right->byteorder, right->len / BITS_PER_BYTE);
base = ctx->protocol[left->payload.base].desc;
desc = proto_find_upper(base, proto);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH nft v2] payload: fix endianess issue in payload_expr_pctx_update()
2014-12-04 13:36 [PATCH nft v2] payload: fix endianess issue in payload_expr_pctx_update() Pablo Neira Ayuso
@ 2014-12-05 6:39 ` leroy christophe
2014-12-05 10:44 ` Pablo Neira Ayuso
0 siblings, 1 reply; 3+ messages in thread
From: leroy christophe @ 2014-12-05 6:39 UTC (permalink / raw)
To: Pablo Neira Ayuso, netfilter-devel; +Cc: kaber
Tested-by: Christophe Leroy <christophe.leroy@c-s.fr>
Le 04/12/2014 14:36, Pablo Neira Ayuso a écrit :
> Use constant_data_ptr() to point to the right memory position on
> big endian when exporting data that is stored in a larger variable.
>
> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
> ---
> v2: this also fixes the printing of 1 byte fields that are converted to
> symbolic constant.
>
> src/datatype.c | 4 ++--
> src/payload.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/src/datatype.c b/src/datatype.c
> index fd3573e..729e63b 100644
> --- a/src/datatype.c
> +++ b/src/datatype.c
> @@ -158,8 +158,8 @@ void symbolic_constant_print(const struct symbol_table *tbl,
>
> /* Export the data in the correct byteorder for comparison */
> assert(expr->len / BITS_PER_BYTE <= sizeof(val));
> - mpz_export_data(&val, expr->value, expr->byteorder,
> - expr->len / BITS_PER_BYTE);
> + mpz_export_data(constant_data_ptr(val, expr->len), expr->value,
> + expr->byteorder, expr->len / BITS_PER_BYTE);
>
> for (s = tbl->symbols; s->identifier != NULL; s++) {
> if (val == s->value)
> diff --git a/src/payload.c b/src/payload.c
> index ebf8079..83742fb 100644
> --- a/src/payload.c
> +++ b/src/payload.c
> @@ -79,8 +79,8 @@ static void payload_expr_pctx_update(struct proto_ctx *ctx,
>
> /* Export the data in the correct byte order */
> assert(right->len / BITS_PER_BYTE <= sizeof(proto));
> - mpz_export_data(&proto, right->value, right->byteorder,
> - right->len / BITS_PER_BYTE);
> + mpz_export_data(constant_data_ptr(proto, right->len), right->value,
> + right->byteorder, right->len / BITS_PER_BYTE);
>
> base = ctx->protocol[left->payload.base].desc;
> desc = proto_find_upper(base, proto);
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH nft v2] payload: fix endianess issue in payload_expr_pctx_update()
2014-12-05 6:39 ` leroy christophe
@ 2014-12-05 10:44 ` Pablo Neira Ayuso
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2014-12-05 10:44 UTC (permalink / raw)
To: leroy christophe; +Cc: netfilter-devel, kaber
On Fri, Dec 05, 2014 at 07:39:23AM +0100, leroy christophe wrote:
> Tested-by: Christophe Leroy <christophe.leroy@c-s.fr>
Applied, thanks for reporting and testing.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-12-05 10:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-04 13:36 [PATCH nft v2] payload: fix endianess issue in payload_expr_pctx_update() Pablo Neira Ayuso
2014-12-05 6:39 ` leroy christophe
2014-12-05 10:44 ` Pablo Neira Ayuso
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).