The There are three character types: char
, signed char
, and unsigned char
are collectively called the character types. Compilers have the latitude to define char
to have the same range, representation, and behavior as either signed char
or unsigned char
. Irrespective of the choice made, {{char
}} is a separate type from the other two and is not compatible with either.
Use For characters in the basic character set, it does not matter which data type is used, except for type compatibility. Consequently, it is best to use plain char
for character data for compatibility with standard string-handling functions.
The only permissible In most cases, the only portable operators on plain char
types are assignment and equality operators (=
, ==
, !=
).
Non-Compliant Code Example
. An exception is the translation to and from digits. For example, if the char
c
is a digit, c - '0'
is a value between 0 and 9.
Noncompliant Code Example
This noncompliant code example simply shows the standard string-The following non-compliant code example simply illustrates calling the standard string handling function strlen()
being called with a plain character string, a signed character string, and an unsigned character string. The strlen()
function takes a single argument of type const char
*:
Code Block | ||||
---|---|---|---|---|
| ||||
#include <string.h> int main(void) { size_t len; char cstr[] = "char string"; signed char scstr[] = "signed char string"; unsigned char ucstr[] = "unsigned char string"; len = strlen(cstr); len = strlen(scstr); /* warnsWarns when char is unsigned */ len = strlen(ucstr); /* warnsWarns when char is signed */ return 0; } |
Compiling at high warning levels , in compliance with MSC00-AC. Compile cleanly at high warning levels causes warnings to be issue issued when converting
- Converting from
unsigned char[]
toconst char *
whenchar
is signed
...
- Converting from
signed char[]
toconst char *
whenchar
is defined to be unsigned
. Casts are required to eliminate these warnings, but excessive casts can make code difficult to read and hide legitimate warning messages.
If this C code were to compiled using a C++ compiler, conversions between from unsigned char[]
to const char *
and from signed char[]
to const char *
would be be flagged as errors requiring casts.
Compliant Solution
The compliant solution uses plain char
for character data.:
Code Block | ||||
---|---|---|---|---|
| ||||
#include <string.h> int main(void) { size_t len; char cstr[] = "char string"; len = strlen(cstr); return 0; } |
Risk Assessment
Conversions are not required, and the code compiles cleanly at high warning levels without casts.
Risk Assessment
Failing to use plain char
for characters in the basic character set can lead to excessive casts and less effective compiler diagnostics.
Recommendation |
---|
Severity | Likelihood | Remediation Cost | Priority | Level |
---|
STR07-A
1 (low)
1 (unlikely)
2 (medium)
P2
STR04-C | Low | Unlikely | Low | P3 | L3 |
Automated Detection
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
Astrée |
| Supported indirectly via MISRA C:2004 rule 6.1. | |||||||
Axivion Bauhaus Suite |
| CertC-STR04 | |||||||
CodeSonar |
| LANG.TYPE.IAT LANG.TYPE.ICA LANG.TYPE.IOT LANG.TYPE.MOT | Inappropriate assignment type Inappropriate character arithmetic Inappropriate operand type Mismatched operand types | ||||||
Compass/ROSE | |||||||||
ECLAIR |
| CC2.STR04 | Fully implemented | ||||||
EDG | |||||||||
Helix QAC |
| C0432, C0674, C0699 | |||||||
LDRA tool suite |
| 93 S, 101 S, 329 S, 432 S, 458 S | Partially implemented | ||||||
Parasoft C/C++test |
| CERT_C-STR04-a | The plain char type shall be used only for the storage and use of character values | ||||||
RuleChecker |
| Supported indirectly via MISRA C:2004 rule 6.1. | |||||||
SonarQube C/C++ Plugin |
| S810 |
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
References
Related Guidelines
SEI CERT C++ Coding Standard | VOID STR04-CPP. Use plain char for characters in the basic character set |
MISRA C:2012 | Rule 10.1 (required) |
...
\[[ISO/IEC 9899-1999|AA. C References#ISO/IEC 9899-1999]\] Section 6.2.5, "Types"
\[[MISRA 04|AA. C References#MISRA 04]\] Rule 6.1, "The plain char type shall be used only for the storage and use of character values." Wiki Markup