Skip to content

Commit 4dffce0

Browse files
authored
Merge pull request #84 from knewbury01/knewbury01/Declarations2
Package Declarations2
2 parents a2012a2 + e80bb55 commit 4dffce0

38 files changed

+1440
-40
lines changed

.vscode/tasks.json

+1
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@
202202
"DeadCode",
203203
"Declarations",
204204
"Declarations1",
205+
"Declarations2",
205206
"Exceptions1",
206207
"Exceptions2",
207208
"Expressions",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# DCL38-C: Use the correct syntax when declaring a flexible array member
2+
3+
This query implements the CERT-C rule DCL38-C:
4+
5+
> Use the correct syntax when declaring a flexible array member
6+
7+
8+
## Description
9+
10+
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.
11+
12+
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:
13+
14+
> 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.
15+
16+
17+
Structures with a flexible array member can be used to produce code with defined behavior. However, some restrictions apply:
18+
19+
1. The incomplete array type *must* be the last element within the structure.
20+
1. There cannot be an array of structures that contain a flexible array member.
21+
1. Structures that contain a flexible array member cannot be used as a member of another structure.
22+
1. The structure must contain at least one named member in addition to the flexible array member.
23+
24+
## Noncompliant Code Example
25+
26+
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.
27+
28+
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.
29+
30+
```cpp
31+
#include <stdlib.h>
32+
33+
struct flexArrayStruct {
34+
int num;
35+
int data[1];
36+
};
37+
38+
void func(size_t array_size) {
39+
/* Space is allocated for the struct */
40+
struct flexArrayStruct *structP
41+
= (struct flexArrayStruct *)
42+
malloc(sizeof(struct flexArrayStruct)
43+
+ sizeof(int) * (array_size - 1));
44+
if (structP == NULL) {
45+
/* Handle malloc failure */
46+
}
47+
48+
structP->num = array_size;
49+
50+
/*
51+
* Access data[] as if it had been allocated
52+
* as data[array_size].
53+
*/
54+
for (size_t i = 0; i < array_size; ++i) {
55+
structP->data[i] = 1;
56+
}
57+
}
58+
```
59+
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.
60+
61+
This approach may be the only alternative for compilers that do not yet implement the standard C syntax.
62+
63+
## Compliant Solution
64+
65+
This compliant solution uses a flexible array member to achieve a dynamically sized structure:
66+
67+
```cpp
68+
#include <stdlib.h>
69+
70+
struct flexArrayStruct{
71+
int num;
72+
int data[];
73+
};
74+
75+
void func(size_t array_size) {
76+
/* Space is allocated for the struct */
77+
struct flexArrayStruct *structP
78+
= (struct flexArrayStruct *)
79+
malloc(sizeof(struct flexArrayStruct)
80+
+ sizeof(int) * array_size);
81+
if (structP == NULL) {
82+
/* Handle malloc failure */
83+
}
84+
85+
structP->num = array_size;
86+
87+
/*
88+
* Access data[] as if it had been allocated
89+
* as data[array_size].
90+
*/
91+
for (size_t i = 0; i < array_size; ++i) {
92+
structP->data[i] = 1;
93+
}
94+
}
95+
```
96+
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.
97+
98+
## Risk Assessment
99+
100+
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.
101+
102+
<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>
103+
104+
105+
## Automated Detection
106+
107+
<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>
108+
109+
110+
## Related Vulnerabilities
111+
112+
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).
113+
114+
## Related Guidelines
115+
116+
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)
117+
118+
## Bibliography
119+
120+
<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>
121+
122+
123+
## Implementation notes
124+
125+
None
126+
127+
## References
128+
129+
* CERT-C: [DCL38-C: Use the correct syntax when declaring a flexible array member](https://wiki.sei.cmu.edu/confluence/display/c)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/**
2+
* @id c/cert/declaring-a-flexible-array-member
3+
* @name DCL38-C: Use the correct syntax when declaring a flexible array member
4+
* @description Structures with flexible array members can be declared in ways that will lead to
5+
* undefined behaviour.
6+
* @kind problem
7+
* @precision very-high
8+
* @problem.severity error
9+
* @tags external/cert/id/dcl38-c
10+
* correctness
11+
* maintainability
12+
* readability
13+
* external/cert/obligation/rule
14+
*/
15+
16+
import cpp
17+
import codingstandards.c.cert
18+
19+
/**
20+
* A member with the type array that is last in a struct
21+
* includes any sized array (either specified or not)
22+
*/
23+
class FlexibleArrayMember extends MemberVariable {
24+
Struct s;
25+
26+
FlexibleArrayMember() {
27+
this.getType() instanceof ArrayType and
28+
this.getDeclaringType() = s and
29+
not exists(int i, int j |
30+
s.getAMember(i) = this and
31+
exists(s.getAMember(j)) and
32+
j > i
33+
)
34+
}
35+
}
36+
37+
from VariableDeclarationEntry m, ArrayType a
38+
where
39+
not isExcluded(m, Declarations2Package::declaringAFlexibleArrayMemberQuery()) and
40+
m.getType() = a and
41+
m.getVariable() instanceof FlexibleArrayMember and
42+
a.getArraySize() = 1
43+
select m, "Incorrect syntax used for declaring this flexible array member."

0 commit comments

Comments
 (0)