netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH nf] netfilter: nf_tables: fix oob access
@ 2016-12-13 12:59 Florian Westphal
  2016-12-13 15:29 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Westphal @ 2016-12-13 12:59 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Florian Westphal

BUG: KASAN: slab-out-of-bounds in nf_tables_rule_destroy+0xf1/0x130 at addr ffff88006a4c35c8
Read of size 8 by task nft/1607

When we've destroyed last valid expr, nft_expr_next() returns an invalid expr.
We must not dereference it unless it passes != nft_expr_last() check.

Signed-off-by: Florian Westphal <fw@strlen.de>
---
 I dislike nft_expr_last() naming, it doesn't return last
 valid expression but an invalid address...

 net/netfilter/nf_tables_api.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index a019a87e58ee..0db5f9782265 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -2115,7 +2115,7 @@ static void nf_tables_rule_destroy(const struct nft_ctx *ctx,
 	 * is called on error from nf_tables_newrule().
 	 */
 	expr = nft_expr_first(rule);
-	while (expr->ops && expr != nft_expr_last(rule)) {
+	while (expr != nft_expr_last(rule) && expr->ops) {
 		nf_tables_expr_destroy(ctx, expr);
 		expr = nft_expr_next(expr);
 	}
-- 
2.7.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH nf] netfilter: nf_tables: fix oob access
  2016-12-13 12:59 [PATCH nf] netfilter: nf_tables: fix oob access Florian Westphal
@ 2016-12-13 15:29 ` Pablo Neira Ayuso
  2016-12-13 20:22   ` Florian Westphal
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo Neira Ayuso @ 2016-12-13 15:29 UTC (permalink / raw)
  To: Florian Westphal; +Cc: netfilter-devel

On Tue, Dec 13, 2016 at 01:59:33PM +0100, Florian Westphal wrote:
> BUG: KASAN: slab-out-of-bounds in nf_tables_rule_destroy+0xf1/0x130 at addr ffff88006a4c35c8
> Read of size 8 by task nft/1607
> 
> When we've destroyed last valid expr, nft_expr_next() returns an invalid expr.
> We must not dereference it unless it passes != nft_expr_last() check.
> 
> Signed-off-by: Florian Westphal <fw@strlen.de>
> ---
>  I dislike nft_expr_last() naming, it doesn't return last
>  valid expression but an invalid address...

Sure, send a patch for this, or simply update this oneliner in v2,
your call.  Thanks.

>  net/netfilter/nf_tables_api.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
> index a019a87e58ee..0db5f9782265 100644
> --- a/net/netfilter/nf_tables_api.c
> +++ b/net/netfilter/nf_tables_api.c
> @@ -2115,7 +2115,7 @@ static void nf_tables_rule_destroy(const struct nft_ctx *ctx,
>  	 * is called on error from nf_tables_newrule().
>  	 */
>  	expr = nft_expr_first(rule);
> -	while (expr->ops && expr != nft_expr_last(rule)) {
> +	while (expr != nft_expr_last(rule) && expr->ops) {
>  		nf_tables_expr_destroy(ctx, expr);
>  		expr = nft_expr_next(expr);
>  	}
> -- 
> 2.7.3
> 
> --
> 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 nf] netfilter: nf_tables: fix oob access
  2016-12-13 15:29 ` Pablo Neira Ayuso
@ 2016-12-13 20:22   ` Florian Westphal
  0 siblings, 0 replies; 3+ messages in thread
From: Florian Westphal @ 2016-12-13 20:22 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: Florian Westphal, netfilter-devel

Pablo Neira Ayuso <pablo@netfilter.org> wrote:
> On Tue, Dec 13, 2016 at 01:59:33PM +0100, Florian Westphal wrote:
> > BUG: KASAN: slab-out-of-bounds in nf_tables_rule_destroy+0xf1/0x130 at addr ffff88006a4c35c8
> > Read of size 8 by task nft/1607
> > 
> > When we've destroyed last valid expr, nft_expr_next() returns an invalid expr.
> > We must not dereference it unless it passes != nft_expr_last() check.
> > 
> > Signed-off-by: Florian Westphal <fw@strlen.de>
> > ---
> >  I dislike nft_expr_last() naming, it doesn't return last
> >  valid expression but an invalid address...
> 
> Sure, send a patch for this, or simply update this oneliner in v2,
> your call.  Thanks.

Ok, I will try to come up with a better name and send a patch once
next opens again. (what about rename to nft_expr_end()?)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-12-13 20:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-13 12:59 [PATCH nf] netfilter: nf_tables: fix oob access Florian Westphal
2016-12-13 15:29 ` Pablo Neira Ayuso
2016-12-13 20:22   ` Florian Westphal

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).