Kingdom: Code Quality
Poor code quality leads to unpredictable behavior. From a user's perspective that often manifests itself as poor usability. For an attacker it provides an opportunity to stress the system in unexpected ways.
Code Correctness: Premature Thread Termination
Abstract
If a parent process finishes execution normally before the threads it has spawned, the threads can be terminated prematurely.
Explanation
Threads spawned by calling
Example 1: The following code uses
pthread_create()
from the main()
function of the parent process will be terminated prematurely if the parent process finishes execution before any the threads it has spawned without calling pthread_exit()
. Calling pthread_exit()
guarantees that the parent process will be kept alive until all of its threads have finished execution. Alternatively, the parent process can call pthread_join
on all of the child threads and ensure they will complete before the process concludes.Example 1: The following code uses
pthread_create()
to create a thread and then exits normally. If the child thread has not completed its execution by the time the main()
function returns, then it will be terminated prematurely.
void *Simple(void *threadid)
{
...
pthread_exit(NULL);
}
int main(int argc, char *argv[]) {
int rc;
pthread_t pt;
rc = pthread_create(&pt, NULL, Simple, (void *)t);
if (rc){
exit(-1);
}
}
References
[1] Standards Mapping - Motor Industry Software Reliability Association (MISRA) C Guidelines 2012 Rule 1.3
[2] Standards Mapping - Motor Industry Software Reliability Association (MISRA) C Guidelines 2023 Rule 1.3
[3] Standards Mapping - Motor Industry Software Reliability Association (MISRA) C++ Guidelines 2023 Rule 4.1.3
desc.controlflow.cpp.code_correctness_premature_thread_termination