Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: s/inclusion guard/include guard/g;

Until the early 1980s, large software development projects had a continual problem with the inclusion of headers. One group might have produced a graphics.h, for example, which started by including io.h. Another group might have produced keyboard.h, which also included io.h. If io.h could not safely be included several times, arguments would break out about which header should include it. Sometimes an agreement was reached that each header should include no other headers, and as a result, some application programs started with dozens of #include lines, and sometimes they got the ordering wrong or forgot a required header.

Compliant Solution

All these complications disappeared with the discovery of a simple technique: each header should #define a symbol that means "I have already been included." The entire header is then enclosed in an inclusion include guard:

Code Block
bgColor#ccccFF
langc
#ifndef HEADER_H
#define HEADER_H

/* ... Contents of <header.h> ... */

#endif /* HEADER_H */

...

Note that it is a common mistake to choose a reserved name for the name of the macro used in the inclusion include guard. See DCL37-C. Do not declare or define a reserved identifier.

Risk Assessment

Failure to include header files in an inclusion include guard can result in unexpected behavior.

Recommendation

Severity

Likelihood

Remediation Cost

Priority

Level

PRE06-C

Low

Unlikely

Low

P3

L3

Automated Detection

ToolVersionCheckerDescription
Astrée
Include Page
Astrée_V
Astrée_V
multiple-includePartially checked

ECLAIR

Include Page
ECLAIR_V
ECLAIR_V

CC2.PRE06

Fully implemented
Klocwork
Include Page
Klocwork_V
Klocwork_V
MISRA.INCGUARD
 

LDRA tool suite
Include Page
LDRA_V
LDRA_V

243 S

Fully implemented
Parasoft C/C++test9.5PFO-02Fully implemented
PRQA QA-C
Include Page
PRQA QA-C_v
PRQA QA-C_v
0883Fully implemented
RuleChecker
Include Page
RuleChecker_V
RuleChecker_V
multiple-includePartially checked

Related Vulnerabilities

Search for vulnerabilities resulting from the violation of this rule on the CERT website.

Related Guidelines

Bibliography

[Plum 1985]Rule 1-14

...


...