]> git.baikalelectronics.ru Git - kernel.git/commit
netfilter: nf_tables: use-after-free in dynamic operations
authorPablo Neira Ayuso <pablo@netfilter.org>
Mon, 11 Mar 2019 12:04:16 +0000 (13:04 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 11 Mar 2019 12:19:49 +0000 (13:19 +0100)
commitf71d621a3eb34ec7390f619438b7e471b0549c5e
treebf6c35773213c12d7ce84ae31baa456d17ae9d4f
parentfd1b49a128be73e3bf1d42722a9a91fe17033fe0
netfilter: nf_tables: use-after-free in dynamic operations

Smatch reports:

       net/netfilter/nf_tables_api.c:2167 nf_tables_expr_destroy()
        error: dereferencing freed memory 'expr->ops'

net/netfilter/nf_tables_api.c
    2162 static void nf_tables_expr_destroy(const struct nft_ctx *ctx,
    2163                                   struct nft_expr *expr)
    2164 {
    2165        if (expr->ops->destroy)
    2166                expr->ops->destroy(ctx, expr);
                                                ^^^^
--> 2167        module_put(expr->ops->type->owner);
                           ^^^^^^^^^
    2168 }

Smatch says there are three functions which free expr->ops.

Fixes: 6a14cce74950 ("netfilter: nft_compat: use .release_ops and remove list of extension")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_tables_api.c