]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
apparmor: fix a memleak in multi_transaction_new()
authorGaosheng Cui <cuigaosheng1@huawei.com>
Tue, 23 Aug 2022 01:15:03 +0000 (09:15 +0800)
committerJohn Johansen <john.johansen@canonical.com>
Mon, 3 Oct 2022 21:48:54 +0000 (14:48 -0700)
commitc73275cf6834787ca090317f1d20dbfa3b7f05aa
treef4f9f85efcdd62d31e8f6789da75b99b538a86e9
parent3cc40a443a04d52b0c95255dce264068b01e9bfe
apparmor: fix a memleak in multi_transaction_new()

In multi_transaction_new(), the variable t is not freed or passed out
on the failure of copy_from_user(t->data, buf, size), which could lead
to a memleak.

Fix this bug by adding a put_multi_transaction(t) in the error path.

Fixes: 1dea3b41e84c5 ("apparmor: speed up transactional queries")
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Signed-off-by: John Johansen <john.johansen@canonical.com>
security/apparmor/apparmorfs.c