Copying data to a buffer that is not large enough to hold that data results in a buffer overflow. While not limited to null-terminated byte strings (NTBS), buffer overflows often occurs when manipulating NTBS data. To prevent such errors, limit copies either through truncation (although consult [[STR03-A. Do not inadvertently truncate a null-terminated byte string]] for problems that may cause) or, preferably, ensure that the destination is of sufficient size to hold the character data to be copied and the null-termination character.
Non-Compliant Code Example (off-by-1 error)
This non-compliant code example demonstrates what is commonly referred to as an off-by-one error [[Dowd 06]]. The loop copies data from src
to dest
. However, the null terminator may incorrectly be written one byte past the end of dest
. The flaw exists because the loop does not account for the null-termination character that must be appended to dest
.
char dest[ARRAY_SIZE]; char src[ARRAY_SIZE]; size_t i; /* ... */ for (i=0; src[i] && (i < sizeof(dest)); i++) { dest[i] = src[i]; } dest[i] = '\0'; /* ... */
Compliant Solution (off-by-1 error)
To correct this example, the loop termination condition must be modified to account for the null-termination character that is appended to dest
.
char dest[ARRAY_SIZE]; char src[ARRAY_SIZE]; size_t i; /* ... */ for (i=0; src[i] && (i < sizeof(dest)-1); i++) { dest[i] = src[i]; } dest[i] = '\0'; /* ... */
Non-Compliant Code Example ( argv
)
Arguments read from the command line are stored in process memory. The function main()
, called at program startup, is typically declared as follows when the program accepts command-line arguments:
int main(int argc, char *argv[]) { /* ... */ }
Command-line arguments are passed to main()
as pointers to null-terminated byte strings in the array members argv[0]
through argv[argc-1]
. If the value of argc
is greater than zero, the string pointed to by argv[0]
represents the program name. If the value of argc
is greater than one, the strings pointed to by argv[1]
through argv[argc-1]
represent the program parameters.
The parameters argc
and argv
and the strings pointed to by the argv
array are not modifiable by the program and retain their last-stored values between program startup and program termination. This requires that a copy of these parameters be made before the strings can be modified. Vulnerabilities can occur when inadequate space is allocated to copy a command-line argument. In this non-compliant code example, the contents of argv[0]
can be manipulated by an attacker to cause a buffer overflow:
int main(int argc, char *argv[]) { /* ... */ char prog_name[128]; strcpy(prog_name, argv[0]); /* ... */ }
Compliant Solution ( argv
)
The strlen()
function can be used to determine the length of the strings referenced by argv[0]
through argv[argc-1]
so that adequate memory can be dynamically allocated:
int main(int argc, char *argv[]) { /* ... */ char *prog_name = (char *)malloc(strlen(argv[0])+1); if (prog_name != NULL) { strcpy(prog_name, argv[0]); } else { /* Couldn't get the memory - recover */ } /* ... */ }
Remember to add a byte to accommodate the null-terminated byte string.
Compliant Solution (argv
) (strcpy_s()
)
The strcpy_s()
function provides additional safeguards, including accepting the size of the destination buffer as an additional argument [[STR07-A. Use TR 24731 for remediation of existing string manipulation code]].
int main(int argc, char *argv[]) { /* ... */ char * prog_name; size_t prog_size; prog_size = strlen(argv[0])+1; prog_name = (char *)malloc(prog_size); if (prog_name != NULL) { if (strcpy_s(prog_name, prog_size, argv[0])) { /* Handle strcpy_s() error */ } } else { /* Couldn't get the memory - recover */ } /* ... */ }
The strcpy_s()
function can be used to copy data to or from dynamically allocated memory or a statically allocated array. If insufficient space is available strcpy_s()
returns an error.
Compliant Solution (argv
) (memcpy()
)
The C standard memcpy()
function provide a similar capability to strcpy_s()
, but is universally available.
int main(int argc, char *argv[]) { /* ... */ char *prog_name; size_t prog_size; prog_size = strlen(argv[0])+1; prog_name = (char *)malloc(prog_size); if (prog_name != NULL) { memcpy(prog_name, argv[0], prog_size); } else { /* Couldn't get the memory - recover */ } /* ... */ }
The memcpy()
function differs from strcpy_s()
in that it never returns an error. It always returns a pointer to the destination string (e.g., its first argument). However, memcpy()
does not validate that the destination pointer has enough space for the memory being copied, and cannot be used if the source and destination strings overlap.
Non-Compliant Code Example ( getenv()
)
The getenv()
function searches an environment list, provided by the host environment, for a string that matches the string pointed to by name. The set of environment names and the method for altering the environment list are implementation-defined. Environment variables can be arbitrarily large, and copying them into fixed-length arrays without first determining the size and allocating adequate storage can result in a buffer overflow.
/* ... */ char buff[256]; if (getenv("EDITOR") == NULL) { /* No EDITOR environment variable! */ } else { strcpy(buff, getenv("EDITOR")); } /* ... */
Compliant Solution
Environmental variables are loaded into process memory when the program is loaded. As a result, the length of these null-terminated byte strings can be determined by calling the strlen()
function and the resulting length used to allocate adequate dynamic memory:
/* ... */ char *editor; char *buff; editor = getenv("EDITOR"); if (!editor) { /* No EDITOR environment variable! */ } else { size_t len = strlen(editor)+1; buff = (char *)malloc(len); if (!buff) { /* Handle malloc() Error */ } memcpy(buff, editor, len); } /* ... */
Risk Assessment
Copying NTBS data to a buffer that is too small to hold that data results in a buffer overflow. Attackers can exploit this condition to execute arbitrary code with the permissions of the vulnerable process.
Rule |
Severity |
Likelihood |
Remediation Cost |
Priority |
Level |
---|---|---|---|---|---|
STR31-C |
high |
likely |
medium |
P18 |
L1 |
Automated Detection
The LDRA tool suite V 7.6.0 is able to detect violations of this rule.
Fortify SCA Version 5.0 is able to detect violations of this rule.
The tool Compass Rose can detect violations of the rule except for strcpy_s and manual string copies such as the first example.
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
References
[[Dowd 06]] Chapter 7, "Program Building Blocks" (Loop Constructs 327-336)
[[ISO/IEC 9899-1999]] Section 7.1.1, "Definitions of terms," Section 7.21, "String handling <string.h>," Section 5.1.2.2.1, "Program startup," and Section 7.20.4.5, "The getenv function"
[[Seacord 05]] Chapter 2, "Strings"
Vulnerabilities
07. Characters and Strings (STR) STR32-C. Null-terminate byte strings as required