Description
Description
Some parts of LibTomCrypt
have been imported in an open source project OP-TEE
[1] for implementing crypto in software (imported code can be found here [2]). But recently we have enabled LTC_CLEAN_STACK
so that LibTomCrypt
wipes out key material and other sensitive data once no longer used.
Given stack space is quiet expensive for optee_os
and currently its limited to 2k only. So while testing on ARM64 machine with LTC_CLEAN_STACK
enabled, burn_stack()
behaved inappropriately burning stack space 2 times the actual requirement leading to corruption of stack canaries.
Looking deeper into burn_stack()
api [3], it seems to be a recursive function which assumes that only 32 bytes of stack space is utilized in every recursive call. But this assumption is incorrect as it doesn't take into account the usage of stack space during function calls. Specifically for function return pointer, stack frame pointer, any padding compiler introduces etc.
[1] https://optee.readthedocs.io/
[2] https://github.com/OP-TEE/optee_os/tree/master/core/lib/libtomcrypt/src
[3] https://github.com/libtom/libtomcrypt/blob/develop/src/misc/burn_stack.c
Steps to Reproduce
Simply add a debug print to dump address of 32 bytes buffer kept on stack in burn_stack()
api as follows:
void burn_stack(unsigned long len)
{
unsigned char buf[32];
+ printf("buf addr: %p\n", buf);
zeromem(buf, sizeof(buf));
if (len > (unsigned long)sizeof(buf)) {
burn_stack(len - sizeof(buf));
}
}
Following are buf addr
dumps which are taken on ARM64 machine where burn_stack()
api is used to clean stack for _sha512_compress()
api. Size to be cleared: 724 bytes but actual size cleared from below dump: 1472 bytes.
buf addr: 0xfc0b6380
buf addr: 0xfc0b6340
buf addr: 0xfc0b6300
buf addr: 0xfc0b62c0
buf addr: 0xfc0b6280
buf addr: 0xfc0b6240
buf addr: 0xfc0b6200
buf addr: 0xfc0b61c0
buf addr: 0xfc0b6180
buf addr: 0xfc0b6140
buf addr: 0xfc0b6100
buf addr: 0xfc0b60c0
buf addr: 0xfc0b6080
buf addr: 0xfc0b6040
buf addr: 0xfc0b6000
buf addr: 0xfc0b5fc0
buf addr: 0xfc0b5f80
buf addr: 0xfc0b5f40
buf addr: 0xfc0b5f00
buf addr: 0xfc0b5ec0
buf addr: 0xfc0b5e80
buf addr: 0xfc0b5e40
buf addr: 0xfc0b5e00
Version
This could be reproduced on latest upstream develop
branch.
Suggestion
We would suggest to clean stack in corresponding function only where it is being used. As it seems one can't assume anything about what stack space has been consumed by the compiler for a given function call.