Description
The product defines a signal handler that contains code sequences that are not asynchronous-safe, i.e., the functionality is not reentrant, or it can be interrupted.
This can lead to an unexpected system state with a variety of potential consequences depending on context, including denial of service and code execution. Signal handlers are typically intended to interrupt normal functionality of a program, or even other signals, in order to notify the process of an event. When a signal handler uses global or static variables, or invokes functions that ultimately depend on such state or its associated metadata, then it could corrupt system state that is being used by normal functionality. This could subject the program to race conditions or other weaknesses that allow an attacker to cause the program state to be corrupted. While denial of service is frequently the consequence, in some cases this weakness could be leveraged for code execution. There are several different scenarios that introduce this issue: Note that in some environments or contexts, it might be possible for the signal handler to be interrupted itself. If both a signal handler and the normal behavior of the product have to operate on the same set of state variables, and a signal is received in the middle of the normal execution's modifications of those variables, the variables may be in an incorrect or corrupt state during signal handler execution, and possibly still incorrect or corrupt upon return.
Potential Impact
Integrity, Confidentiality, Availability
DoS: Crash, Exit, or Restart, Execute Unauthorized Code or Commands
Demonstrative Examples
char *logMessage;
void handler (int sigNum) {
syslog(LOG_NOTICE, "%s\n", logMessage);free(logMessage);
/* artificially increase the size of the timing window to make demonstration of this weakness easier. */
sleep(10);exit(0);
}
int main (int argc, char* argv[]) {
logMessage = strdup(argv[1]);
/* Register signal handlers. */
signal(SIGHUP, handler);signal(SIGTERM, handler);
/* artificially increase the size of the timing window to make demonstration of this weakness easier. */
sleep(10);
}#include <signal.h>#include <syslog.h>#include <string.h>#include <stdlib.h>
void *global1, *global2;char *what;void sh (int dummy) {
syslog(LOG_NOTICE,"%s\n",what);free(global2);free(global1);
/* Sleep statements added to expand timing window for race condition */
sleep(10);exit(0);
}
int main (int argc,char* argv[]) {
what=argv[1];global1=strdup(argv[2]);global2=malloc(340);signal(SIGHUP,sh);signal(SIGTERM,sh);
/* Sleep statements added to expand timing window for race condition */
sleep(10);exit(0);
}Mitigations & Prevention
Eliminate the usage of non-reentrant functionality inside of signal handlers. This includes replacing all non-reentrant library calls with reentrant calls. Note: This will not always be possible and may require large portions of the product to be rewritten or even redesigned. Sometimes reentrant-safe library alternatives will not be available. Sometimes non-reentrant interaction between the state of the system and the signal handler will be required by design.
Where non-reentrant functionality must be leveraged within a signal handler, be sure to block or mask signals appropriately. This includes blocking other signals within the signal handler itself that may also leverage the functionality. It also includes blocking all signals reliant upon the functionality when it is being accessed or modified by the normal behaviors of the product.
Detection Methods
- Automated Static Analysis — Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then sea
Real-World CVE Examples
| CVE ID | Description |
|---|---|
| CVE-2008-4109 | Signal handler uses functions that ultimately call the unsafe syslog/malloc/s*printf, leading to denial of service via multiple login attempts |
| CVE-2006-5051 | Chain: Signal handler contains too much functionality (CWE-828), introducing a race condition (CWE-362) that leads to a double free (CWE-415). |
| CVE-2001-1349 | unsafe calls to library functions from signal handler |
| CVE-2004-0794 | SIGURG can be used to remotely interrupt signal handler; other variants exist. |
| CVE-2004-2259 | SIGCHLD signal to FTP server can cause crash under heavy load while executing non-reentrant functions like malloc/free. |
| CVE-2002-1563 | SIGCHLD not blocked in a daemon loop while counter is modified, causing counter to get out of sync. |
Related Weaknesses
Taxonomy Mappings
- CERT C Secure Coding: SIG31-C — Do not access or modify shared objects in signal handlers
Frequently Asked Questions
What is CWE-828?
CWE-828 (Signal Handler with Functionality that is not Asynchronous-Safe) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Variant-level weakness. The product defines a signal handler that contains code sequences that are not asynchronous-safe, i.e., the functionality is not reentrant, or it can be interrupted.
How can CWE-828 be exploited?
Attackers can exploit CWE-828 (Signal Handler with Functionality that is not Asynchronous-Safe) to dos: crash, exit, or restart, execute unauthorized code or commands. This weakness is typically introduced during the Implementation phase of software development.
How do I prevent CWE-828?
Key mitigations include: Eliminate the usage of non-reentrant functionality inside of signal handlers. This includes replacing all non-reentrant library calls with reentrant calls. Note: This will not alwa
What is the severity of CWE-828?
CWE-828 is classified as a Variant-level weakness (Low-Medium abstraction). It has been observed in 6 real-world CVEs.