According to the C Standard, 6.4.5, paragraph 3 [ISO/IEC 9899:20112024]:
A A character string literal is a sequence of zero or more multibyte characters enclosed in double-quotes, as in "xyz". A UTF−8 UTF-8 string literal is the same, except prefixed by u8. A wide wchar_t string literal is the same, except prefixed by the letter L
, u
, or U
L. A UTF-16 string literal is the same, except prefixed by u. A UTF-32 string literal is the same, except prefixed by U. Collectively, wchar_t, UTF-16, and UTF-32 string literals are called wide string literals.
At compile time, string literals are used to create an array of static storage duration of sufficient length to contain the character sequence and a terminating null character. String literals are usually referred to by a pointer to (or array of) characters. Ideally, they should be assigned only to pointers to (or arrays of) const char
or const wchar_t
. It is unspecified whether these arrays of string literals are distinct from each other. The behavior is undefined if a program attempts to modify any portion of a string literal. Modifying a string literal frequently results in an access violation because string literals are typically stored in read-only memory. (See undefined behavior 33.)
...
Tool | Version | Checker | Description |
---|
Astrée | | string-literal-modfication write-to-string-literal | Fully checked |
Axivion Bauhaus Suite | Include Page |
---|
| Axivion Bauhaus Suite_V |
---|
| Axivion Bauhaus Suite_V |
---|
|
| CertC-STR30 | Fully implementedSupported, but no explicit checker |
Compass/ROSE |
|
| Can detect simple violations of this rule |
Coverity | | PW | Deprecates conversion from a string literal to "char *" |
Helix QAC | | C0556, C0752, C0753, C0754 C++3063, C++3064, C++3605, C++3606, C++3607 |
|
Klocwork | | CERT.STR.ARG.CONST_TO_NONCONST CERT.STR.ASSIGN.CONST_TO_NONCONST |
|
LDRA tool suite | | 157 S | Partially implemented |
Parasoft C/C++test | | CERT_C-STR30-a CERT_C-STR30-b | A string literal shall not be modified Do not modify string literals |
PC-lint Plus | | PB-27 | Implemented | 489, 1776 | Partially supported |
Polyspace Bug Finder | Include Page |
---|
| Polyspace Bug Finder_V |
---|
| Polyspace Bug Finder_V |
---|
|
| CERT C: Rule STR30-C | Checks for writing Writing to const qualified object | Object declared with a const qualifier is modified | (rule fully covered)
|
PVS-StudioPRQA QA-C | | V675 |
|
0556RuleChecker0752 | 0753 | Partially implemented | PRQA QA-C++ | 4.2 | 3063, 3064, 3605, 3606, 3607, 3842 | PVS-Studio | Include Page |
---|
PVS-Studio_V | PVS-Studio_V | V675 | Splint | Include Page |
---|
Splint_V | Splint_V | | RuleChecker_V |
---|
| RuleChecker_V |
---|
|
| string-literal-modfication | Partially checked |
Splint | |
|
|
TrustInSoft Analyzer | Include Page |
---|
| TrustInSoft Analyzer_V |
---|
| TrustInSoft Analyzer_V |
---|
|
| mem_access | Exhaustively verified (see one compliant and one non-compliant example). |
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
...
Bibliography
...