CWE-364: Signal Handler Race Condition

Description

The product uses a signal handler that introduces a race condition.

Submission Date :

July 19, 2006, midnight

Modification Date :

2023-06-29 00:00:00+00:00

Organization :

MITRE
Extended Description

Race conditions frequently occur in signal handlers, since signal handlers support asynchronous actions. These race conditions have a variety of root causes and symptoms. Attackers may be able to exploit a signal handler race condition to cause the product state to be corrupted, possibly leading to a denial of service or even code execution.

These issues occur when non-reentrant functions, or state-sensitive actions occur in the signal handler, where they may be called at any time. These behaviors can violate assumptions being made by the "regular" code that is interrupted, or by other signal handlers that may also be invoked. If these functions are called at an inopportune moment - such as while a non-reentrant function is already running - memory corruption could occur that may be exploitable for code execution. Another signal race condition commonly found occurs when free is called within a signal handler, resulting in a double free and therefore a write-what-where condition. Even if a given pointer is set to NULL after it has been freed, a race condition still exists between the time the memory was freed and the pointer was set to NULL. This is especially problematic if the same signal handler has been set for more than one signal -- since it means that the signal handler itself may be reentered.

There are several known behaviors related to signal handlers that have received the label of "signal handler race condition":

  • Shared state (e.g. global data or static variables) that are accessible to both a signal handler and "regular" code
  • Shared state between a signal handler and other signal handlers
  • Use of non-reentrant functionality within a signal handler - which generally implies that shared state is being used. For example, malloc() and free() are non-reentrant because they may use global or static data structures for managing memory, and they are indirectly used by innocent-seeming functions such as syslog(); these functions could be exploited for memory corruption and, possibly, code execution.
  • Association of the same signal handler function with multiple signals - which might imply shared state, since the same code and resources are accessed. For example, this can be a source of double-free and use-after-free weaknesses.
  • Use of setjmp and longjmp, or other mechanisms that prevent a signal handler from returning control back to the original functionality
  • While not technically a race condition, some signal handlers are designed to be called at most once, and being called more than once can introduce security problems, even when there are not any concurrent calls to the signal handler. This can be a source of double-free and use-after-free weaknesses.

    Signal handler vulnerabilities are often classified based on the absence of a specific protection mechanism, although this style of classification is discouraged in CWE because programmers often have a choice of several different mechanisms for addressing the weakness. Such protection mechanisms may preserve exclusivity of access to the shared resource, and behavioral atomicity for the relevant code:

    • Avoiding shared state
    • Using synchronization in the signal handler
    • Using synchronization in the regular code
    • Disabling or masking other signals, which provides atomicity (which effectively ensures exclusivity)

Example Vulnerable Codes

Example - 1

This code registers the same signal handler function with two different signals (CWE-831). If those signals are sent to the process, the handler creates a log message (specified in the first argument to the program) and exits.



// /* artificially increase the size of the timing window to make demonstration of this weakness easier. */// 
syslog(LOG_NOTICE, "%s\n", logMessage);free(logMessage);sleep(10);exit(0);

// /* Register signal handlers. */// 
// /* artificially increase the size of the timing window to make demonstration of this weakness easier. */// 
logMessage = strdup(argv[1]);signal(SIGHUP, handler);signal(SIGTERM, handler);sleep(10);char *logMessage;void handler (int sigNum) {}int main (int argc, char* argv[]) {}

The handler function uses global state (globalVar and logMessage), and it can be called by both the SIGHUP and SIGTERM signals. An attack scenario might follow these lines:

The program begins execution, initializes logMessage, and registers the signal handlers for SIGHUP and SIGTERM.The program begins its "normal" functionality, which is simplified as sleep(), but could be any functionality that consumes some time.The attacker sends SIGHUP, which invokes handler (call this "SIGHUP-handler").SIGHUP-handler begins to execute, calling syslog().syslog() calls malloc(), which is non-reentrant. malloc() begins to modify metadata to manage the heap.The attacker then sends SIGTERM.SIGHUP-handler is interrupted, but syslog's malloc call is still executing and has not finished modifying its metadata.The SIGTERM handler is invoked.SIGTERM-handler records the log message using syslog(), then frees the logMessage variable.

At this point, the state of the heap is uncertain, because malloc is still modifying the metadata for the heap; the metadata might be in an inconsistent state. The SIGTERM-handler call to free() is assuming that the metadata is inconsistent, possibly causing it to write data to the wrong location while managing the heap. The result is memory corruption, which could lead to a crash or even code execution, depending on the circumstances under which the code is running.

Note that this is an adaptation of a classic example as originally presented by Michal Zalewski [REF-360]; the original example was shown to be exploitable for code execution.

Also note that the strdup(argv[1]) call contains a potential buffer over-read (CWE-126) if the program is called without any arguments, because argc would be 0, and argv[1] would point outside the bounds of the array.

Example - 2

The following code registers a signal handler with multiple signals in order to log when a specific event occurs and to free associated memory before exiting.



// /* Sleep statements added to expand timing window for race condition */// 
syslog(LOG_NOTICE,"%s\n",what);free(global2);free(global1);sleep(10);exit(0);

// /* Sleep statements added to expand timing window for race condition */// 
what=argv[1];global1=strdup(argv[2]);global2=malloc(340);signal(SIGHUP,sh);signal(SIGTERM,sh);sleep(10);exit(0);#include <signal.h>#include <syslog.h>#include <string.h>#include <stdlib.h>void *global1, *global2;char *what;void sh (int dummy) {}int main (int argc,char* argv[]) {}

However, the following sequence of events may result in a double-free (CWE-415):

a SIGHUP is delivered to the processsh() is invoked to process the SIGHUPThis first invocation of sh() reaches the point where global1 is freedAt this point, a SIGTERM is sent to the processthe second invocation of sh() might do another free of global1this results in a double-free (CWE-415)

This is just one possible exploitation of the above code. As another example, the syslog call may use malloc calls which are not async-signal safe. This could cause corruption of the heap management structures. For more details, consult the example within "Delivering Signals for Fun and Profit" [REF-360].

Visit http://cwe.mitre.org/ for more details.