|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /* TEMPLATE GENERATED TESTCASE FILE
- Filename: CWE476_NULL_Pointer_Dereference__binary_if_03.c
- Label Definition File: CWE476_NULL_Pointer_Dereference.pointflaw.label.xml
- Template File: point-flaw-03.tmpl.c
- */
- /*
- * @description
- * CWE: 476 NULL Pointer Dereference
- * Sinks: binary_if
- * GoodSink: Do not check for NULL after the pointer has been dereferenced
- * BadSink : Check for NULL after a pointer has already been dereferenced
- * Flow Variant: 03 Control flow: if(5==5) and if(5!=5)
- *
- * */
-
- #include "std_testcase.h"
-
- #ifndef OMITBAD
-
- void CWE476_NULL_Pointer_Dereference__binary_if_03_bad()
- {
- if(5==5)
- {
- {
- twoIntsStruct *twoIntsStructPointer = NULL;
- /* FLAW: Using a single & in the if statement will cause both sides of the expression to be evaluated
- * thus causing a NPD */
- if ((twoIntsStructPointer != NULL) & (twoIntsStructPointer->intOne == 5))
- {
- printLine("intOne == 5");
- }
- }
- }
- }
-
- #endif /* OMITBAD */
-
- #ifndef OMITGOOD
-
- /* good1() uses if(5!=5) instead of if(5==5) */
- static void good1()
- {
- if(5!=5)
- {
- /* INCIDENTAL: CWE 561 Dead Code, the code below will never run */
- printLine("Benign, fixed string");
- }
- else
- {
- {
- twoIntsStruct *twoIntsStructPointer = NULL;
- /* FIX: Use && in the if statement so that if the left side of the expression fails then
- * the right side will not be evaluated */
- if ((twoIntsStructPointer != NULL) && (twoIntsStructPointer->intOne == 5))
- {
- printLine("intOne == 5");
- }
- }
- }
- }
-
- /* good2() reverses the bodies in the if statement */
- static void good2()
- {
- if(5==5)
- {
- {
- twoIntsStruct *twoIntsStructPointer = NULL;
- /* FIX: Use && in the if statement so that if the left side of the expression fails then
- * the right side will not be evaluated */
- if ((twoIntsStructPointer != NULL) && (twoIntsStructPointer->intOne == 5))
- {
- printLine("intOne == 5");
- }
- }
- }
- }
-
- void CWE476_NULL_Pointer_Dereference__binary_if_03_good()
- {
- good1();
- good2();
- }
-
- #endif /* OMITGOOD */
-
- /* Below is the main(). It is only used when building this testcase on
- its own for testing or for building a binary to use in testing binary
- analysis tools. It is not used when compiling all the testcases as one
- application, which is how source code analysis tools are tested. */
-
- #ifdef INCLUDEMAIN
-
- int main(int argc, char * argv[])
- {
- /* seed randomness */
- srand( (unsigned)time(NULL) );
- #ifndef OMITGOOD
- printLine("Calling good()...");
- CWE476_NULL_Pointer_Dereference__binary_if_03_good();
- printLine("Finished good()");
- #endif /* OMITGOOD */
- #ifndef OMITBAD
- printLine("Calling bad()...");
- CWE476_NULL_Pointer_Dereference__binary_if_03_bad();
- printLine("Finished bad()");
- #endif /* OMITBAD */
- return 0;
- }
-
- #endif
|