]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix: Use FREE_AND_NULL() for releasing workqueue resources
authorWaldemar Zimpel <w.zimpel@dev.utilizer.de>
Wed, 30 Oct 2024 01:51:20 +0000 (02:51 +0100)
committerDavid Goulet <dgoulet@torproject.org>
Thu, 31 Oct 2024 12:37:37 +0000 (08:37 -0400)
See issue #40989

changes/ticket40989 [new file with mode: 0644]
src/lib/evloop/workqueue.c
src/lib/evloop/workqueue.h

diff --git a/changes/ticket40989 b/changes/ticket40989
new file mode 100644 (file)
index 0000000..26e4b03
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (memory):
+    - Fix a pointer free that wasn't set to NULL afterwards which could be
+      reused by calling back in the free all function. Fixes bug 40989; bugfix
+      on 0.4.8.13.
index 20b611f7cb771ed5868062b178081af604df9500..17ab44e3ab08cbe00ed98be2ae5f4032ddbb9468 100644 (file)
@@ -143,8 +143,12 @@ typedef struct workerthread_t {
 } workerthread_t;
 
 static void queue_reply(replyqueue_t *queue, workqueue_entry_t *work);
-static void workerthread_free(workerthread_t *thread);
-static void replyqueue_free(replyqueue_t *queue);
+static void workerthread_free_(workerthread_t *thread);
+#define workerthread_free(thread) \
+  FREE_AND_NULL(workerthread_t, workerthread_free_, (thread))
+static void replyqueue_free_(replyqueue_t *queue);
+#define replyqueue_free(queue) \
+  FREE_AND_NULL(replyqueue_t, replyqueue_free_, (queue))
 
 /** Allocate and return a new workqueue_entry_t, set up to run the function
  * <b>fn</b> in the worker thread, and <b>reply_fn</b> in the main
@@ -369,7 +373,7 @@ workerthread_new(int32_t lower_priority_chance,
  * Free up the resources allocated by a worker thread.
  */
 static void
-workerthread_free(workerthread_t *thread)
+workerthread_free_(workerthread_t *thread)
 {
   tor_free(thread);
 }
@@ -589,7 +593,7 @@ threadpool_new(int n_threads,
  * Free up the resources allocated by worker threads, worker thread pool, ...
  */
 void
-threadpool_free(threadpool_t *pool)
+threadpool_free_(threadpool_t *pool)
 {
   if (!pool)
     return;
@@ -652,7 +656,7 @@ replyqueue_new(uint32_t alertsocks_flags)
  * Free up the resources allocated by a reply queue.
  */
 static void
-replyqueue_free(replyqueue_t *queue)
+replyqueue_free_(replyqueue_t *queue)
 {
   if (!queue)
     return;
index 9ed504249a9f67793b996be33f55d9586b9b9a9d..cd892a14c8ab88532d9c3fa8e9646f2ad90b6d62 100644 (file)
@@ -58,7 +58,9 @@ threadpool_t *threadpool_new(int n_threads,
                              void *(*new_thread_state_fn)(void*),
                              void (*free_thread_state_fn)(void*),
                              void *arg);
-void threadpool_free(threadpool_t *tp);
+void threadpool_free_(threadpool_t *tp);
+#define threadpool_free(pool) \
+  FREE_AND_NULL(threadpool_t, threadpool_free_, (pool))
 replyqueue_t *threadpool_get_replyqueue(threadpool_t *tp);
 
 replyqueue_t *replyqueue_new(uint32_t alertsocks_flags);