Checker | Guideline |
---|
ALLOC_FREE_MISMATCH | MEM31-C. Free dynamically allocated memory when no longer needed |
ALLOC_FREE_MISMATCH | CON30-C. Clean up thread-specific storage |
ALLOC_FREE_MISMATCH (needs improvement) | WIN30-C. Properly pair allocation and deallocation functions |
ARRAY_VS_SINGLETON | ARR30-C. Do not form or use out-of-bounds pointers or array subscripts |
ARRAY_VS_SINGLETON | ARR37-C. Do not add or subtract an integer to a pointer to a non-array object |
ASSERT_SIDE_EFFECT | MSC11-C. Incorporate diagnostic tests using assertions |
ASSERT_SIDE_EFFECTS | PRE31-C. Avoid side effects in arguments to unsafe macros |
BAD_ALLOC_ARITHMETIC | ARR38-C. Guarantee that library functions do not form invalid pointers |
BAD_ALLOC_STRLEN | ARR38-C. Guarantee that library functions do not form invalid pointers |
BAD_ALLOC_STRLEN | MEM35-C. Allocate sufficient memory for an object |
BAD_CHECK_OF_WAIT_COND | CON41-C. Wrap functions that can fail spuriously in a loop | C checkers | CERT C Secure Coding Standard |
---|
BAD_COMPARE | MSC02 EXP16-A. Avoid errors of omissionC. Do not compare function pointers to constant values |
BAD_FREE | MEM34-C. Only free memory allocated dynamically |
BAD_SHIFT | INT32-C. Ensure that operations on signed integers do not result in overflow |
BAD_SHIFT | INT34-C. Do not shift an expression by a negative number of bits or by greater than or equal to the number of bits that exist in the operand |
BAD_SIZEOF | ARR38-C. Guarantee that library functions do not form invalid pointers |
BAD_SIZEOF | ARR39-C. Do not add or subtract a scaled integer to a pointer |
BUFFER_SIZE | ARR30-C. Do not form or use out-of-bounds pointers or array subscripts |
BUFFER_SIZE | ARR38-C. Guarantee that library functions do not form invalid pointers |
BUFFER_SIZE | STR31-C. Guarantee that storage for strings has sufficient space for character data and the null terminator |
CHAR_IO | FIO34-C. Distinguish between characters read from a file and EOF or WEOF |
CHECKED_RETURN | EXP34-C. Do not dereference null pointers | CHAR_IO | FIO34-C. Use int to capture the return value of character IO functions |
CHECKED_RETURN | FIO33 POS54-C. Detect and handle input output errors resulting in undefined behaviorPOSIX library errors |
CHECKED_RETURN | EXP12-C. Do not ignore values returned by functions |
CONSTANT_EXPRESSION_RESULT | EXP46-C. Do not use a bitwise operator with a Boolean-like operand |
DEADCODE | MSC07-AC. Detect and remove dead code |
FORWARD_NULL | EXP34-C. Ensure a pointer is valid before dereferencing it |
MISSING_RETURN | MSC02-A. Avoid errors of omission |
|
DEADCODE | MSC12-C. Detect and remove code that has no effect or is never executed |
DIVIDE_BY_ZERO | INT33-C. Ensure that division and remainder operations do not result in divide-by-zero errors |
DONT_CALL | ENV33-C. Do not call system() |
DONTCALL | MSC30-C. Do not use the rand() function for generating pseudorandom numbers |
EVALUATION_ORDER | EXP30-C. Do not depend on the order of evaluation for side effects |
EVALUATION_ORDER | EXP10-C. Do not depend on the order of evaluation of subexpressions or the order in which side effects take place |
EVALUATION_ORDER (partial) | CON40-C. Do not refer to an atomic variable twice in an expression |
FORWARD_NULL | EXP34-C. Do not dereference null pointers |
INTEGER_OVERFLOW | INT30 | NEGATIVE_RETURNS | INT31-C. Ensure that unsigned integer conversions do not result in lost or misinterpreted data |
NO_EFFECT | MSC12-A. Detect and remove code that has no effect |
NULL_RETURNS | EXP34-C. Ensure a pointer is valid before dereferencing it |
OVERRUN_STATIC | STR34-C. Do not copy data from an unbounded source to a fixed-length array |
OVERRUN_DYNAMIC | STR34-C. Do not copy data from an unbounded source to a fixed-length array |
RESOURCE_LEAK | MEM31-C. Free dynamically allocated memory exactly once |
RETURN_LOCAL | DCL30-C. Do not refer to an object outside of its lifetime |
REVERSE_INULL | EXP34-C. Ensure a pointer is valid before dereferencing it |
operations do not wrap |
LOCK | CON01-C. Acquire and release synchronization primitives in the same module, at the same level of abstraction |
MISRA 2012 Rule 13.2 | CON40-C. Do not refer to an atomic variable twice in an expression |
MISRA C 2004 17.2 | ARR36-C. Do not subtract or compare two pointers that do not refer to the same array |
MISRA C 2004 17.3 | ARR36-C. Do not subtract or compare two pointers that do not refer to the same array |
MISRA C 2004 Rule 10.x (needs investigation) | FLP36-C. Preserve precision when converting integral values to floating-point type |
MISRA C 2004 Rule 11.4 | EXP36-C. Do not cast pointers into more strictly aligned pointer types |
MISRA C 2004 Rule 11.5 | EXP40-C. Do not modify constant objects |
MISRA C 2004 Rule 12.3 | EXP44-C. Do not rely on side effects in operands to sizeof, _Alignof, or _Generic |
MISRA C 2004 Rule 13.4 | FLP30-C. Do not use floating-point variables as loop counters |
MISRA C 2004 Rule 15.0 | DCL41-C. Do not declare variables inside a switch statement before the first case label |
MISRA C 2004 Rule 20.1 | DCL37-C. Do not declare or define a reserved identifier |
MISRA C 2004 Rule 20.2 | DCL37-C. Do not declare or define a reserved identifier |
MISRA C 2012 18.2 | ARR36-C. Do not subtract or compare two pointers that do not refer to the same array |
MISRA C 2012 18.3 | ARR36-C. Do not subtract or compare two pointers that do not refer to the same array |
MISRA C 2012 Rule 8.1 | DCL31-C. Declare identifiers before using them |
MISRA C 2012 Rule 8.2 | EXP37-C. Call functions with the correct number and type of arguments |
MISRA C 2012 Rule 8.4 | DCL40-C. Do not create incompatible declarations of the same function or object |
MISRA C 2012 Rule 8.14 | EXP43-C. Avoid undefined behavior when using restrict-qualified pointers |
MISRA C 2012 Rule 10.1 | STR34-C. Cast characters to unsigned char before converting to larger integer sizes |
MISRA C 2012 Rule 10.2 | STR34-C. Cast characters to unsigned char before converting to larger integer sizes |
MISRA C 2012 Rule 10.3 | STR34-C. Cast characters to unsigned char before converting to larger integer sizes |
MISRA C 2012 Rule 10.4 | STR34-C. Cast characters to unsigned char before converting to larger integer sizes |
MISRA C 2012 Rule 11.1 | EXP36-C. Do not cast pointers into more strictly aligned pointer types |
MISRA C 2012 Rule 11.2 | EXP36-C. Do not cast pointers into more strictly aligned pointer types |
MISRA C 2012 Rule 11.5 | EXP36-C. Do not cast pointers into more strictly aligned pointer types |
MISRA C 2012 Rule 11.7 | EXP36-C. Do not cast pointers into more strictly aligned pointer types |
MISRA C 2012 Rule 11.8 | EXP32-C. Do not access a volatile object through a nonvolatile reference |
MISRA C 2012 Rule 14.1 | FLP30-C. Do not use floating-point variables as loop counters |
MISRA C 2012 Rule 16.1 | DCL41-C. Do not declare variables inside a switch statement before the first case label |
MISRA C 2012 Rule 17.3 | EXP37-C. Call functions with the correct number and type of arguments |
MISRA C 2012 Rule 21.1 | DCL37-C. Do not declare or define a reserved identifier |
MISRA C 2012 Rule 21.2 | DCL37-C. Do not declare or define a reserved identifier |
MISRA C 2012 Rule 21.5 | CON37-C. Do not call signal() in a multithreaded program |
MISRA C 2012 Rule 22.5 | FIO38-C. Do not copy a FILE object |
MISRA C 2012 Rule 22.8 | ERR30-C. Take care when reading errno |
MISRA C 2012 Rule 22.8 | ERR32-C. Do not rely on indeterminate values of errno |
MISRA C 2012 Rule 22.8 | ERR33-C. Detect and handle standard library errors |
MISRA C 2012 Rule 22.9 | ERR30-C. Take care when reading errno |
MISRA C 2012 Rule 22.9 | ERR32-C. Do not rely on indeterminate values of errno |
MISRA C 2012 Rule 22.9 | ERR33-C. Detect and handle standard library errors |
MISRA C 2012 Rule 22.10 | ERR30-C. Take care when reading errno |
MISRA C 2012 Rule 22.10 | ERR32-C. Do not rely on indeterminate values of errno |
MISRA C 2012 Rule 22.10 | ERR33-C. Detect and handle standard library errors |
MISRA_CAST REVERSE_NEGATIVE | INT31-C. Ensure that integer conversions do not result in lost or misinterpreted data |
SIZECHECK | No equivalent |
STACK_USE | MEM05-A. Avoid large stack allocations |
UNINIT | EXP33-C. Do not reference uninitialized variables |
UNUSED_VALUE | No equivalent |
USE_AFTER_FREE | MEM30-C. Do not access freed memory |
VARARGS | No equivalent |