Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8c99200 authored by Jia-Ju Bai's avatar Jia-Ju Bai Committed by Ilya Dryomov
Browse files

libceph: don't call crypto_free_sync_skcipher() on a NULL tfm



In set_secret(), key->tfm is assigned to NULL on line 55, and then
ceph_crypto_key_destroy(key) is executed.

ceph_crypto_key_destroy(key)
  crypto_free_sync_skcipher(key->tfm)
    crypto_free_skcipher(&tfm->base);

This happens to work because crypto_sync_skcipher is a trivial wrapper
around crypto_skcipher: &tfm->base is still 0 and crypto_free_skcipher()
handles that.  Let's not rely on the layout of crypto_sync_skcipher.

This bug is found by a static analysis tool STCheck written by us.

Fixes: 69d6302b ("libceph: Remove VLA usage of skcipher").
Signed-off-by: default avatarJia-Ju Bai <baijiaju1990@gmail.com>
Reviewed-by: default avatarIlya Dryomov <idryomov@gmail.com>
Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent a55aa89a
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -136,10 +136,12 @@ void ceph_crypto_key_destroy(struct ceph_crypto_key *key)
	if (key) {
		kfree(key->key);
		key->key = NULL;
		if (key->tfm) {
			crypto_free_sync_skcipher(key->tfm);
			key->tfm = NULL;
		}
	}
}

static const u8 *aes_iv = (u8 *)CEPH_AES_IV;