|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* TEMPLATE GENERATED TESTCASE FILE
- Filename: CWE476_NULL_Pointer_Dereference__binary_if_01.c
- Label Definition File: CWE476_NULL_Pointer_Dereference.pointflaw.label.xml
- Template File: point-flaw-01.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: 01 Baseline
- *
- * */
-
- #include "std_testcase.h"
-
- #ifndef OMITBAD
-
- void CWE476_NULL_Pointer_Dereference__binary_if_01_bad()
- {
- {
- 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
-
- static void good1()
- {
- {
- 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_01_good()
- {
- good1();
- }
-
- #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_01_good();
- printLine("Finished good()");
- #endif /* OMITGOOD */
- #ifndef OMITBAD
- printLine("Calling bad()...");
- CWE476_NULL_Pointer_Dereference__binary_if_01_bad();
- printLine("Finished bad()");
- #endif /* OMITBAD */
- return 0;
- }
-
- #endif
|