Hi Pablo 09565a4b1ed4863d44c4509a93c50f44efd12771 (netlink_delinearize: consolidate range printing) causes nft to segfault on 32bit machine when printing l4proto ranges. The problem is that meta_expr_pctx_update() assumes that right is a value, but after this change it can also be a value. Thus, expr->value contents are undefined (its union). On x86_64 this is also broken but by virtue of struct layout and pointer sizes, value->_mp_size will almost always be 0 so mpz_get_uint8() returns 0. But on x86-32 _mp_size will be huge value (contains expr->right pointer of range), so we crash in libgmp. This fixes it for me: diff --git a/src/meta.c b/src/meta.c index bfc1258..e6d69e3 100644 --- a/src/meta.c +++ b/src/meta.c @@ -462,7 +462,7 @@ static void meta_expr_pctx_update(struct proto_ctx *ctx, { const struct hook_proto_desc *h = &hook_proto_desc[ctx->family]; const struct expr *left = expr->left, *right = expr->right; - const struct proto_desc *desc; + const struct proto_desc *desc = NULL; assert(expr->op == OP_EQ); @@ -485,8 +485,10 @@ static void meta_expr_pctx_update(struct proto_ctx *ctx, proto_ctx_update(ctx, PROTO_BASE_NETWORK_HDR, &expr->location, desc); break; case NFT_META_L4PROTO: - desc = proto_find_upper(&proto_inet_service, - mpz_get_uint8(right->value)); + if (right->ops->type == EXPR_VALUE) + desc = proto_find_upper(&proto_inet_service, + mpz_get_uint8(right->value)); + if (desc == NULL) desc = &proto_unknown; If you agree, I'll push this fix to nftables. -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html