forked from FreeRTOS/FreeRTOS-Kernel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update coverity violation for SMP (#81)
* Update coverity violation for SMP ( code surrounded by configNUMBER_OF_CORES > 1 ). * Single core and common code are still scanned by lint tool.
- Loading branch information
1 parent
b40b9e3
commit c4a8d7a
Showing
4 changed files
with
305 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -317,6 +317,7 @@ coproc | |
coprocessor | ||
coprocessors | ||
coreid | ||
coverity | ||
covfs | ||
cp | ||
cpacr | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# MISRA Compliance | ||
|
||
FreeRTOS-Kernel conforms to [MISRA C:2012](https://www.misra.org.uk/misra-c) | ||
guidelines, with the deviations listed below. Compliance is checked with | ||
Coverity static analysis. Since the FreeRTOS kernel is designed for | ||
small-embedded devices, it needs to have a very small memory footprint and | ||
has to be efficient. To achieve that and to increase the performance, it | ||
deviates from some MISRA rules. The specific deviations, suppressed inline, | ||
are listed below. | ||
|
||
Additionally, [MISRA configuration](#misra-configuration) contains project | ||
wide deviations. | ||
|
||
### Suppressed with Coverity Comments | ||
To find the violation references in the source files run grep on the source code | ||
with ( Assuming rule 8.4 violation; with justification in point 1 ): | ||
``` | ||
grep 'MISRA Ref 8.4.1' . -rI | ||
``` | ||
|
||
#### Rule 8.4 | ||
|
||
_Ref 8.4.1_ | ||
|
||
- MISRA C:2012 Rule 8.4: A compatible declaration shall be visible when an | ||
object or function with external linkage is defined. | ||
This rule requires that a compatible declaration is made available | ||
in a header file when an object with external linkage is defined. | ||
pxCurrentTCB(s) is defined with external linkage but it is only | ||
referenced from the assembly code in the port files. Therefore, adding | ||
a declaration in header file is not useful as the assembly code will | ||
still need to declare it separately. | ||
|
||
### MISRA configuration | ||
|
||
Copy below content to `misra.conf` to run Coverity on FreeRTOS-Kernel. | ||
|
||
``` | ||
// MISRA C-2012 Rules | ||
{ | ||
version : "2.0", | ||
standard : "c2012", | ||
title: "Coverity MISRA Configuration", | ||
deviations : [ | ||
// Disable the following rules. | ||
{ | ||
deviation: "Directive 4.8", | ||
reason: "HeapRegion_t and HeapStats_t are used only in heap files but declared in portable.h which is included in multiple source files. As a result, these definitions appear in multiple source files where they are not used." | ||
}, | ||
{ | ||
deviation: "Directive 4.9", | ||
reason: "FreeRTOS-Kernel is optimised to work on small micro-controllers. To achieve that, function-like macros are used." | ||
}, | ||
{ | ||
deviation: "Rule 1.2", | ||
reason: "The __attribute__ tags are used via macros which are defined in port files." | ||
}, | ||
{ | ||
deviation: "Rule 3.1", | ||
reason: "We post HTTP links in code comments which contain // inside comments blocks." | ||
}, | ||
{ | ||
deviation: "Rule 8.7", | ||
reason: "API functions are not used by the library outside of the files they are defined; however, they must be externally visible in order to be used by an application." | ||
}, | ||
{ | ||
deviation: "Rule 11.5", | ||
reason: "Allow casts from `void *`. List owner, pvOwner, is stored as `void *` and are cast to various types for use in functions." | ||
} | ||
] | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.