Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Variables and functions should be declared in the minimum scope from which all references to the identifier are still possible.

By using a When a larger scope than necessary is necessaryused, code becomes less readable, harder to maintain, and more likely to reference unintended variables . (See recommendation see DCL01-C. Do not reuse variable names in subscopes).)

Noncompliant Code Example

In this noncompliant code example, the function counter() increments the global variable count and then returns immediately if this variable exceeds a maximum value. :

Code Block
bgColor#ffcccc
langc

unsigned int count = 0;

void counter() {
  if (count++ > MAX_COUNT) return;
  /* ... */

}

...

In this compliant solution, the variable count is declared within the scope of the counter() function as a static variable. The static modifier, when applied to a local variable (one inside of a function), modifies the lifetime (duration) of the variable so that it persists for as long as the program does , and does not disappear between invocations of the function.

Code Block
bgColor#ccccff
langc


void counter() {
  static unsigned int count = 0;
  if (count++ > MAX_COUNT) return;
  /* ... */

}

The keyword static also prevents re-initialization reinitialization of the variable.

Noncompliant Code Example

The counter variable i is declared outside of the for loop. This , which goes against this recommendation because it is not declared in the block in which it is used. If this snippet this code were reused with another index variable j, but there was a previously declared variable i, the loop could iterate over the wrong variable.

Code Block
bgColor#ffcccc
langc
public void doStuff(...){
  size_t i = 0;

  for (i=0; i < 10; i++){
    /* Perform operations */
  }
}

Compliant Solution

Complying with this recommendation requires that you declare variables where they are used, thus improving which improves readability and reusability. In this example, this would be done by declaring the  you would declare the loop's index variable i within the initialization of the for loop. This requirement was recently relaxed in the C99 standardC Standard.

Code Block
bgColor#ccccff
langc

public void doStuff(...){
  for (size_t i=0; i < 10; i++) {
  /* Perform operations */
}

Noncompliant Code Example (Function Declaration)

In this noncompliant code example, the function f() is called only from within the function g(), which is defined in the same compilation unit. By default, function declarations are extern, meaning that these functions are placed in the global symbol table and are available from other compilation units.

Code Block
bgColor#ffcccc
langc
int f(int i) {
  /* Function definition */
}

int g(int i) {
  int j = f(i);
  /* ... */
} 

Compliant Solution

In this compliant solution, the function f() is declared with internal linkage. This practice limits the scope of the function declaration to the current compilation unit and prevents the function from being included in the external symbol table. It also limits cluttering in the global name space and prevents the function from being accidentally or intentionally invoked from another compilation unit. See DCL15-C. Declare file-scope objects or functions that do not need external linkage as static for more information.

Code Block
bgColor#ccccff
langc
static int f(int i) {
  /* Function definition */
}

int g(int i) {
  int j = f(i);
  /* ... */
}  Perform operations */
  }
}

Risk Assessment

Failure to minimize scope could result in less reliable, readable, and reusable code.

Recommendation

Severity

Likelihood

Detectable

Remediation Cost

Repairable

Priority

Level

DCL19-C

low

Low

Unlikely

unlikely

Yes

medium

Yes

P2

P3

L3

Automated Detection

Tool

Version

Checker

Description

section

Astrée
Include Page
Astrée_V
Astrée_V

local-object-scope

global-object-scope

Partially checked
Axivion Bauhaus Suite

Include Page
Axivion Bauhaus Suite_V
Axivion Bauhaus Suite_V

CertC-DCL19
CodeSonar
Include Page
CodeSonar_V
CodeSonar_V

LANG.STRUCT.SCOPE.FILE
LANG.STRUCT.SCOPE.LOCAL

Scope could be file static
Scope could be local static

ECLAIR

Include Page
c:
ECLAIR_V
c:ECLAIR_V
Section

minscope

Section

Fully Implemented

Related Guidelines

...

ECLAIR_V

CC2.DCL19

Fully implemented

Helix QAC

Include Page
Helix QAC_V
Helix QAC_V

C1504, C1505, C1531, C1532, C3210, C3218


Klocwork
Include Page
Klocwork_V
Klocwork_V

MISRA.VAR.MIN.VIS
CXX.ID_VIS.GLOBAL_VARIABLE.EXTERN
CXX.ID_VIS.GLOBAL_VARIABLE.STATIC
CERT.TU.UNUSED.GLOBAL.DECL
CERT.STATIC.SINGLE.USE


LDRA tool suite
 
Include Page
LDRA_V
LDRA_V
25 D, 61 D, 40 SFully implemented
Parasoft C/C++test
Include Page
Parasoft_V
Parasoft_V

CERT_C-DCL19-a

Declare variables as locally as possible

PC-lint Plus

Include Page
PC-lint Plus_V
PC-lint Plus_V

765, 9003

Partially supported

Polyspace Bug Finder

Include Page
Polyspace Bug Finder_V
Polyspace Bug Finder_V

CERT C: Rec. DCL19-C


Checks for:

  • Function or object declared without static specifier and referenced in only one file
  • Object defined beyond necessary scope

Rec. partially covered.

PVS-Studio

Include Page
PVS-Studio_V
PVS-Studio_V

V821
RuleChecker
Include Page
RuleChecker_V
RuleChecker_V

local-object-scope

global-object-scope

Partially checked

Related Vulnerabilities

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

Related Guidelines

ISO/IEC 9899:1999 Appendix D.1.15, "Declaration in for-Loop Statement"

Bibliography


...

Image Added Image Added Image AddedImage Removed      02. Declarations and Initialization (DCL)      DCL20-C. Always specify void even if a function accepts no arguments