]> git.baikalelectronics.ru Git - kernel.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)
committerTyler Hicks <tyhicks@canonical.com>
Tue, 20 Aug 2019 07:02:03 +0000 (07:02 +0000)
commita0002f7eb0d493ceaafed6e95dfdd3a955caebf8
treec43e27c36b574ade0667ea67cc60685cfc4a87ef
parente7ce07a60f77312cacf1aba0d25ce03310e3c6a8
ecryptfs: fix a memory leak bug in parse_tag_1_packet()

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: e571f2b1c703 ("[PATCH] eCryptfs: Public key; packet management")
Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu>
Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
fs/ecryptfs/keystore.c