...
In this noncompliant code example, the function mbrlen()
is passed the address of an automatic mbstate_t
object that has not been properly initialized, leading to undefined behavior. See undefined behavior 200 in Annex J of the C Standard [ISO/IEC 9899:2011].
Code Block | ||||
---|---|---|---|---|
| ||||
void f(const char *mbs) { size_t len; mbstate_t state; len = mbrlen(mbs, strlen(mbs), &state); /* ... */ } |
...
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
| 57 D | Fully implemented. | |||||||
Fortify SCA | Can detect violations of this rule, but will return false positives if the initialization was done in another function. | ||||||||
Splint | V. 3.1.1 | ||||||||
GCC | V 4.3.5 | Can detect some violations of this rule when the | |||||||
Compass/ROSE | Automatically detects simple violations of this rule, although it may return some false positives. It may not catch more complex violations, such as initialization within functions taking uninitialized variables as arguments. It does catch the second noncompliant code example, and can be extended to catch the first as well. | ||||||||
V. 5.0 | NO_EFFECT | Can find cases of an uninitialized variable being used before it is initialized, although it cannot detect cases of uninitialized members of a struct . Because Coverity Prevent cannot discover all violations of this rule, further verification is necessary. | |||||||
V. 9.1 | UNINIT.HEAP.MIGHT | ||||||||
PRQA QA-C |
| 2961 (D) 2962 (A) 2963 (S) 2971 (D) 2972 (A) | Fully implemented. |
...
CVE-2009-1888 results from a violation of this recommendation. Some versions of SAMBA (up to 3.3.5) call a function which takes in two potentially unitiliazed uninitialized variables involving access rights. An attacker can exploit this to bypass the access control list and gain access to protected files [xorl 2009].
...
CERT C++ Secure Coding Standard | EXP33-CPP. Do not reference uninitialized memory | ||
---|---|---|---|
ISO/IEC TR 24772 | Initialization of variables [LAV] | ||
ISO/IEC TS 17961 | (Draft) Referencing uninitialized memory [uninitref] | ISO/IEC TR 24772 | Initialization of variables [LAV] |
Bibliography
[Flake 2006] | |
---|---|
[ISO/IEC 9899:2011] | Section 6.7.9, "Initialization" |
[Mercy 2006] | |
[Wang 2012] | "More Randomness or Less" |
[xorl 2009] | "CVE-2009-1888: SAMBA ACLs Uninitialized Memory Read" |
...