]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ecryptfs: fix a memory leak bug in parse_tag_1_packet()
authorWenwen Wang <wenwen@cs.uga.edu>
Tue, 20 Aug 2019 05:16:40 +0000 (00:16 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Feb 2020 16:23:28 +0000 (17:23 +0100)
commit5306c45f5b9178147a307166b1cf58681af41f24
tree3a21a580ea023ae4c59d384019f6d9a4b469e86c
parent30a57e3974cf6c955fd6b356b23c9d897fc00f4e
ecryptfs: fix a memory leak bug in parse_tag_1_packet()

commit fe2e082f5da5b4a0a92ae32978f81507ef37ec66 upstream.

In parse_tag_1_packet(), if tag 1 packet contains a key larger than
ECRYPTFS_MAX_ENCRYPTED_KEY_BYTES, no cleanup is executed, leading to a
memory leak on the allocated 'auth_tok_list_item'. To fix this issue, go to
the label 'out_free' to perform the cleanup work.

Cc: stable@vger.kernel.org
Fixes: dddfa461fc89 ("[PATCH] eCryptfs: Public key; packet management")
Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu>
Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ecryptfs/keystore.c