mirror of
https://github.com/torvalds/linux
synced 2024-11-02 18:48:59 +00:00
evm: check hash algorithm passed to init_desc()
This patch prevents memory access beyond the evm_tfm array by checking the
validity of the index (hash algorithm) passed to init_desc(). The hash
algorithm can be arbitrarily set if the security.ima xattr type is not
EVM_XATTR_HMAC.
Fixes: 5feeb61183
("evm: Allow non-SHA1 digital signatures")
Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com>
Cc: stable@vger.kernel.org
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
This commit is contained in:
parent
f40019475b
commit
221be106d7
1 changed files with 3 additions and 0 deletions
|
@ -89,6 +89,9 @@ static struct shash_desc *init_desc(char type, uint8_t hash_algo)
|
||||||
tfm = &hmac_tfm;
|
tfm = &hmac_tfm;
|
||||||
algo = evm_hmac;
|
algo = evm_hmac;
|
||||||
} else {
|
} else {
|
||||||
|
if (hash_algo >= HASH_ALGO__LAST)
|
||||||
|
return ERR_PTR(-EINVAL);
|
||||||
|
|
||||||
tfm = &evm_tfm[hash_algo];
|
tfm = &evm_tfm[hash_algo];
|
||||||
algo = hash_algo_name[hash_algo];
|
algo = hash_algo_name[hash_algo];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue