Skip to content

Package Declarations2 #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@
"DeadCode",
"Declarations",
"Declarations1",
"Declarations2",
"Exceptions1",
"Exceptions2",
"Expressions",
Expand Down
129 changes: 129 additions & 0 deletions c/cert/src/rules/DCL38-C/DeclaringAFlexibleArrayMember.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
# DCL38-C: Use the correct syntax when declaring a flexible array member

This query implements the CERT-C rule DCL38-C:

> Use the correct syntax when declaring a flexible array member


## Description

Flexible array members are a special type of array in which the last element of a structure with more than one named member has an incomplete array type; that is, the size of the array is not specified explicitly within the structure. This "struct hack" was widely used in practice and supported by a variety of compilers. Consequently, a variety of different syntaxes have been used for declaring flexible array members. For conforming C implementations, use the syntax guaranteed to be valid by the C Standard.

Flexible array members are defined in the C Standard, 6.7.2.1, paragraph 18 \[[ISO/IEC 9899:2011](https://wiki.sei.cmu.edu/confluence/display/c/AA.+Bibliography#AA.Bibliography-ISO-IEC9899-2011)\], as follows:

> As a special case, the last element of a structure with more than one named member may have an incomplete array type; this is called a *flexible array member*. In most situations, the flexible array member is ignored. In particular, the size of the structure is as if the flexible array member were omitted except that it may have more trailing padding than the omission would imply. However, when a `**.**`(or `**->**`) operator has a left operand that is (a pointer to) a structure with a flexible array member and the right operand names that member, it behaves as if that member were replaced with the longest array (with the same element type) that would not make the structure larger than the object being accessed; the offset of the array shall remain that of the flexible array member, even if this would differ from that of the replacement array. If this array would have no elements, it behaves as if it had one element but the behavior is undefined if any attempt is made to access that element or to generate a pointer one past it.


Structures with a flexible array member can be used to produce code with defined behavior. However, some restrictions apply:

1. The incomplete array type *must* be the last element within the structure.
1. There cannot be an array of structures that contain a flexible array member.
1. Structures that contain a flexible array member cannot be used as a member of another structure.
1. The structure must contain at least one named member in addition to the flexible array member.

## Noncompliant Code Example

Before the introduction of flexible array members in the C Standard, structures with a one-element array as the final member were used to achieve similar functionality. This noncompliant code example illustrates how `struct flexArrayStruct` is declared in this case.

This noncompliant code example attempts to allocate a flexible array-like member with a one-element array as the final member. When the structure is instantiated, the size computed for `malloc()` is modified to account for the actual size of the dynamic array.

```cpp
#include <stdlib.h>

struct flexArrayStruct {
int num;
int data[1];
};

void func(size_t array_size) {
/* Space is allocated for the struct */
struct flexArrayStruct *structP
= (struct flexArrayStruct *)
malloc(sizeof(struct flexArrayStruct)
+ sizeof(int) * (array_size - 1));
if (structP == NULL) {
/* Handle malloc failure */
}

structP->num = array_size;

/*
* Access data[] as if it had been allocated
* as data[array_size].
*/
for (size_t i = 0; i < array_size; ++i) {
structP->data[i] = 1;
}
}
```
This example has [undefined behavior](https://wiki.sei.cmu.edu/confluence/display/c/BB.+Definitions#BB.Definitions-undefinedbehavior) when accessing any element other than the first element of the `data` array. (See the C Standard, 6.5.6.) Consequently, the compiler can generate code that does not return the expected value when accessing the second element of data.

This approach may be the only alternative for compilers that do not yet implement the standard C syntax.

## Compliant Solution

This compliant solution uses a flexible array member to achieve a dynamically sized structure:

```cpp
#include <stdlib.h>

struct flexArrayStruct{
int num;
int data[];
};

void func(size_t array_size) {
/* Space is allocated for the struct */
struct flexArrayStruct *structP
= (struct flexArrayStruct *)
malloc(sizeof(struct flexArrayStruct)
+ sizeof(int) * array_size);
if (structP == NULL) {
/* Handle malloc failure */
}

structP->num = array_size;

/*
* Access data[] as if it had been allocated
* as data[array_size].
*/
for (size_t i = 0; i < array_size; ++i) {
structP->data[i] = 1;
}
}
```
This compliant solution allows the structure to be treated as if its member `data[]` was declared to be `data[array_size]` in a manner that conforms to the C Standard.

## Risk Assessment

Failing to use the correct syntax when declaring a flexible array member can result in [undefined behavior](https://wiki.sei.cmu.edu/confluence/display/c/BB.+Definitions#BB.Definitions-undefinedbehavior), although the incorrect syntax will work on most implementations.

<table> <tbody> <tr> <th> Rule </th> <th> Severity </th> <th> Likelihood </th> <th> Remediation Cost </th> <th> Priority </th> <th> Level </th> </tr> <tr> <td> DCL38-C </td> <td> Low </td> <td> Unlikely </td> <td> Low </td> <td> <strong>P3</strong> </td> <td> <strong>L3</strong> </td> </tr> </tbody> </table>


## Automated Detection

<table> <tbody> <tr> <th> Tool </th> <th> Version </th> <th> Checker </th> <th> Description </th> </tr> <tr> <td> <a> Astrée </a> </td> <td> 22.04 </td> <td> <strong>array_out_of_bounds</strong> </td> <td> Supported Astrée reports all out-of-bounds array access. </td> </tr> <tr> <td> <a> Axivion Bauhaus Suite </a> </td> <td> 7.2.0 </td> <td> <strong>CertC-DCL38</strong> </td> <td> Detects if the final member of struct which is declared as an array of small bound, is used as a flexible array member. </td> </tr> <tr> <td> <a> Compass/ROSE </a> </td> <td> </td> <td> </td> <td> Can detect some violations of this rule. In particular, it warns if the last element of a <code>struct</code> is an array with a small index (0 or 1) </td> </tr> <tr> <td> <a> Helix QAC </a> </td> <td> 2022.2 </td> <td> <strong>C1037, C1039</strong> </td> <td> </td> </tr> <tr> <td> <a> Klocwork </a> </td> <td> 2022.2 </td> <td> <strong>CERT.STRUCT.FLEXIBLE_ARRAY_MEMBER</strong> </td> <td> </td> </tr> <tr> <td> <a> LDRA tool suite </a> </td> <td> 9.7.1 </td> <td> <strong>648 S</strong> </td> <td> Fully implemented </td> </tr> <tr> <td> <a> Parasoft C/C++test </a> </td> <td> 2022.1 </td> <td> <strong>CERT_C-DCL38-a</strong> </td> <td> The final member of a structure should not be an array of size '0' or '1' </td> </tr> <tr> <td> <a> PC-lint Plus </a> </td> <td> 1.4 </td> <td> <strong>9040</strong> </td> <td> Fully supported </td> </tr> <tr> <td> <a> Polyspace Bug Finder </a> </td> <td> R2022a </td> <td> <a> CERT C: Rule DCL38-C </a> </td> <td> Checks for incorrect syntax of flexible array member size (rule fully covered) </td> </tr> <tr> <td> <a> PRQA QA-C </a> </td> <td> 9.7 </td> <td> <strong>1037 1039</strong> </td> <td> </td> </tr> <tr> <td> <a> TrustInSoft Analyzer </a> </td> <td> 1.38 </td> <td> <strong>index_bound</strong> </td> <td> Exhaustively detects out-of-bounds array access (see <a> the compliant and the non-compliant example </a> ). </td> </tr> </tbody> </table>


## Related Vulnerabilities

Search for [vulnerabilities](https://wiki.sei.cmu.edu/confluence/display/c/BB.+Definitions#BB.Definitions-vulnerability) resulting from the violation of this rule on the [CERT website](https://www.kb.cert.org/vulnotes/bymetric?searchview&query=FIELD+KEYWORDS+contains+DCL38-C).

## Related Guidelines

This rule supplements [MEM33-C. Allocate and copy structures containing a flexible array member dynamically](https://wiki.sei.cmu.edu/confluence/display/c/MEM33-C.++Allocate+and+copy+structures+containing+a+flexible+array+member+dynamically)

## Bibliography

<table> <tbody> <tr> <td> \[ <a> ISO/IEC 9899:2011 </a> \] </td> <td> 6.5.6, "Additive Operators" 6.7.2.1, "Structure and Union Specifiers" </td> </tr> <tr> <td> \[ <a> McCluskey 2001 </a> \] </td> <td> " <a> Flexible Array Members and Designators in C9X </a> " </td> </tr> </tbody> </table>


## Implementation notes

None

## References

* CERT-C: [DCL38-C: Use the correct syntax when declaring a flexible array member](https://wiki.sei.cmu.edu/confluence/display/c)
43 changes: 43 additions & 0 deletions c/cert/src/rules/DCL38-C/DeclaringAFlexibleArrayMember.ql
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/**
* @id c/cert/declaring-a-flexible-array-member
* @name DCL38-C: Use the correct syntax when declaring a flexible array member
* @description Structures with flexible array members can be declared in ways that will lead to
* undefined behaviour.
* @kind problem
* @precision very-high
* @problem.severity error
* @tags external/cert/id/dcl38-c
* correctness
* maintainability
* readability
* external/cert/obligation/rule
*/

import cpp
import codingstandards.c.cert

/**
* A member with the type array that is last in a struct
* includes any sized array (either specified or not)
*/
class FlexibleArrayMember extends MemberVariable {
Struct s;

FlexibleArrayMember() {
this.getType() instanceof ArrayType and
this.getDeclaringType() = s and
not exists(int i, int j |
s.getAMember(i) = this and
exists(s.getAMember(j)) and
j > i
)
}
}

from VariableDeclarationEntry m, ArrayType a
where
not isExcluded(m, Declarations2Package::declaringAFlexibleArrayMemberQuery()) and
m.getType() = a and
m.getVariable() instanceof FlexibleArrayMember and
a.getArraySize() = 1
select m, "Incorrect syntax used for declaring this flexible array member."
Loading