Bug 90681

Summary: dm-crypt.c 708 the compiler could delete the 'memset' function call
Product: Drivers Reporter: Arman (aa-c-aa)
Component: OtherAssignee: drivers_other
Status: NEW ---    
Severity: normal CC: george.shuklin
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: 3.18.1 Subsystem:
Regression: No Bisected commit-id:

Description Arman 2015-01-03 15:40:39 UTC
The compiler could delete the 'memset' function call, which is used to flush 'buf' buffer. The RtlSecureZeroMemory() function should be used to erase the private data. dm-crypt.c : 708

static int crypt_iv_tcw_whitening(....)
{
...
out:
  memset(buf, 0, sizeof(buf));
  return r;
}
...
Comment 1 Arman 2015-01-03 15:42:55 UTC
there is no RtlSecureZeroMemory()
Comment 2 George Shuklin 2015-01-03 17:51:12 UTC
I think the issue is not with alternative name, but the possible missoptimization of the memset call.

And that one is sensitive...
Comment 3 Arman 2015-01-03 19:05:38 UTC
it's missoptimization : RtlSecureZeroMemory() alternative for linux must be used