From: Kevin Day Date: Thu, 9 Mar 2023 02:27:46 +0000 (-0600) Subject: Bugfix: Multiple cancellations may occur, use mutex lock to prevent. X-Git-Tag: 0.6.4~15 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=f6c71b6b6d123594e7fd2544b7c4ec34f97c609f;p=fll Bugfix: Multiple cancellations may occur, use mutex lock to prevent. There is an existing check that prevents the cancellation from being called more than once. What is not being considered is that if the main thread calls cancellation while another cancellation is active then the controller_thread_process_exit() gets called. The controller_thread_process_exit() function will begin more forcibly shutting things down. Avoid this by providing a mutex lock to lock the cancellation. Only once the first cancellation is complete will the second (or more) then return without doing anything. --- diff --git a/level_3/controller/c/common/private-lock.c b/level_3/controller/c/common/private-lock.c index 84cc685..eec15c2 100644 --- a/level_3/controller/c/common/private-lock.c +++ b/level_3/controller/c/common/private-lock.c @@ -45,6 +45,7 @@ extern "C" { void controller_lock_delete_simple(controller_lock_t * const lock) { controller_lock_delete_mutex(&lock->alert); + controller_lock_delete_mutex(&lock->cancel); controller_lock_delete_mutex(&lock->print); controller_lock_delete_rw(&lock->process); diff --git a/level_3/controller/c/common/private-lock.h b/level_3/controller/c/common/private-lock.h index 59e2d88..965e3ec 100644 --- a/level_3/controller/c/common/private-lock.h +++ b/level_3/controller/c/common/private-lock.h @@ -16,11 +16,13 @@ extern "C" { * A structure for sharing mutexes globally between different threads. * * The alert lock is intended for a generic waiting on alerts operations. + * The cancel lock is intended for preventing double cancellation calls (which can happen due to interrupts). * The print lock is intended to lock any activity printing to stdout/stderr. * The process lock is intended to lock any activity on the processs structure. * The rule lock is intended to lock any activity on the rules structure. * * alert: The alert mutex lock for waking up on alerts. + * cancel: The cancel mutex lock for locking the cancel operation. * print: The print mutex lock. * process: The process r/w lock. * rule: The rule r/w lock. @@ -29,6 +31,7 @@ extern "C" { #ifndef _di_controller_lock_t_ typedef struct { f_thread_mutex_t alert; + f_thread_mutex_t cancel; f_thread_mutex_t print; f_thread_lock_t process; @@ -40,6 +43,7 @@ extern "C" { #define controller_lock_t_initialize { \ f_thread_mutex_t_initialize, \ f_thread_mutex_t_initialize, \ + f_thread_mutex_t_initialize, \ f_thread_lock_t_initialize, \ f_thread_lock_t_initialize, \ f_thread_condition_t_initialize, \ diff --git a/level_3/controller/c/lock/private-lock.c b/level_3/controller/c/lock/private-lock.c index ee3c08f..311d2e8 100644 --- a/level_3/controller/c/lock/private-lock.c +++ b/level_3/controller/c/lock/private-lock.c @@ -14,6 +14,9 @@ extern "C" { f_status_t status = f_thread_mutex_create(0, &lock->alert); if (F_status_is_error(status)) return status; + status = f_thread_mutex_create(0, &lock->cancel); + if (F_status_is_error(status)) return status; + status = f_thread_mutex_create(0, &lock->print); if (F_status_is_error(status)) return status; diff --git a/level_3/controller/c/thread/private-thread_process.c b/level_3/controller/c/thread/private-thread_process.c index 29f5444..07f170d 100644 --- a/level_3/controller/c/thread/private-thread_process.c +++ b/level_3/controller/c/thread/private-thread_process.c @@ -45,8 +45,13 @@ extern "C" { #ifndef _di_controller_thread_process_cancel_ void controller_thread_process_cancel(const controller_global_t global, const bool is_normal, const uint8_t by, controller_process_t * const caller) { + f_thread_mutex_lock(&global.thread->lock.cancel); + // Only cancel when enabled. if (!controller_thread_is_enabled(is_normal, global.thread)) { + + f_thread_mutex_unlock(&global.thread->lock.cancel); + return; } @@ -300,6 +305,8 @@ extern "C" { --process->path_pids.used; } // while } // for + + f_thread_mutex_unlock(&global.thread->lock.cancel); } #endif // _di_controller_thread_process_cancel_