Software vulnerabilities can result when a programmer fails to consider all possible data states.
Noncompliant Code Example (if
Chain)
This noncompliant code example fails to test for conditions in which a
is neither b
nor c
. This may be the correct behavior in this case, but failure to account for all the values of a
can result in logic errors if a
unexpectedly assumes a different value.
Code Block | ||
---|---|---|
| ||
if (a == b) { /* ... */ } else if (a == c) { /* ... */ } |
Compliant Solution (if
Chain)
This compliant solution explicitly checks for the unexpected condition and handles it appropriately:
Code Block | ||
---|---|---|
| ||
if (a == b) { /* ... */ } else if (a == c) { /* ... */ } else { /* Handle error condition */ } |
Noncompliant Code Example (switch
)
Even though x
is supposed to represent a bit (0 or 1) in this noncompliant code example, some previous error may have allowed x
to assume a different value. Detecting and dealing with that inconsistent state sooner rather than later makes the error easier to find.
Code Block | ||
---|---|---|
| ||
switch(x) { case 0: foo(); break; case 1: bar(); break; } |
Compliant Solution (switch
)
This compliant solution provides the default
label to handle all possible values of type int
:
Code Block | ||
---|---|---|
| ||
switch(x) { case 0: foo(); break; case 1: bar(); break; default: /* Handle error */ break; } |
Noncompliant Code Example (Zune 30)
This noncompliant code example is adapted from C code that appeared in the Zune 30 media player, causing many players to lock up on December 30, 2008, at midnight PST. It contains incomplete logic that causes a denial of service when converting dates.
...
The flaw in the code occurs when days
has the value 366 because the loop never terminates. This bug manifested itself on the 366th day of 2008, which was the first leap year in which this code was active.
Compliant Solution (Zune 30)
This proposed rewrite is provided by "A Lesson on Infinite Loops" by Bryant Zadegan [Zadegan 2009]. The loop is guaranteed to exit, as days
decreases for each iteration of the loop, unless the while
condition fails, in which case the loop terminates.
...
This compliant solution is for illustrative purposes and may differ from the solution implemented by Microsoft.
Applicability
Failing to take into account all possibilities within a logic statement can lead to a corrupted running state, potentially resulting in unintentional information disclosure or abnormal termination.
Bibliography
[Hatton 1995] | §2.7.2, "Errors of Omission and Addition" |
[Viega 2005] | §5.2.17, "Failure to Account for Default Case in Switch" |
[Zadegan 2009] | A Lesson on Infinite Loops |
...