Skip to content

Latest commit

 

History

History
95 lines (70 loc) · 4.03 KB

MISRA.md

File metadata and controls

95 lines (70 loc) · 4.03 KB

MISRA Compliance

The HTTP Client library files conform to the MISRA C:2012 guidelines, with some noted exceptions. Compliance is checked with Coverity static analysis. The specific deviations, suppressed inline, are listed below.

Additionally, MISRA configuration file contains the project wide deviations.

Suppressed with Coverity Comments

To find the deviation references in the source files run grep on the source code with ( Assuming rule 5.4 violation; with justification in point 2 ):

grep 'MISRA Ref 5.4.2' . -rI

Rule 5.4

Ref 5.4-1

  • MISRA Rule 5.4 flags the following macro's name as ambiguous from the one postfixed with _LEN. This rule is suppressed for naming consistency with other HTTP header field and value string and length macros in this file.

Ref 5.4-2

  • MISRA Rule 5.4 flags the following macro's name as ambiguous from the one above it. This rule is suppressed for naming consistency with other HTTP header field and value string and length macros in this file.

Ref 5.4-3

  • MISRA Rule 5.4 flags the following macro's name as ambiguous from the one postfixed with _LEN. This rule is suppressed for naming consistency with other HTTP header field and value string and length macros in this file.

Ref 5.4-4

  • MISRA Rule 5.4 flags the following macro's name as ambiguous from the one above it. This rule is suppressed for naming consistency with other HTTP header field and value string and length macros in this file.

Ref 5.4-5

  • MISRA Rule 5.4 flags the following macro's name as ambiguous from the one postfixed with _LEN. This rule is suppressed for naming consistency with other HTTP header field and value string and length macros in this file.

Ref 5.4-6

  • MISRA Rule 5.4 flags the following macro's name as ambiguous from the one above it. This rule is suppressed for naming consistency with other HTTP header field and value string and length macros in this file.

Rule 10.8

Ref 10.8.1

  • MISRA Rule 10.8 The size of the headers is found by taking the current location being parsed and subtracting it from the start of the headers. The start of the headers is set on the first header field found from http-parser. This always comes before finding the header length; if it does not, an assertion is triggered. This rule is suppressed because in the previous statement it is asserted that the pointer difference will never be negative.

Rule 14.3

Ref 14.3.1

  • MISRA Rule 14.3 The third-party http-parser library sets a uint64_t type field to ULLONG_MAX or ( ( uint64_t ) -1 ), during its internal parsing. Coverity MISRA does not detect that this variable changes. This field is checked by the HTTP Client library. If the Content-Length header was found, then pHttpParser->content_length will not be equal to the maximum 64 bit integer.

Rule 11.8

Ref 11.8.1

  • MISRA Rule 11.8 flags casting away the const qualifier in the pointer type. This rule is suppressed because when the body is of transfer encoding chunked, the body must be copied over the chunk headers that precede it. This is done to have a contiguous response body. This does affect future parsing as the changed segment will always be before the next place to parse.

Rule 18.3

Ref 18.3.1

  • MISRA Rule 18.3 flags pLoc and pNextWriteLoc as pointing to two different objects. This rule is suppressed because both pNextWriteLoc and pLoc point to a location in the response buffer.

Rule 21.13

Ref 21.13.1

  • MISRA Rule 21.13 flags any value passed into a ctype.h function that isn't cast as an unsigned char. Thorough testing by use of our CBMC proofs shows that adding the cast to ( unsigned char ) inside of the toupper() call has potential to lead to errors. Due to this we supress this warning for our use case.